X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3ef6fa4aa94676e2544284ddff114ae6910992cc..874fddf49945443e5af47812fa3a30e96375ce9c:/test/models/way_test.rb diff --git a/test/models/way_test.rb b/test/models/way_test.rb index ed8a6cea3..fb37be1b4 100644 --- a/test/models/way_test.rb +++ b/test/models/way_test.rb @@ -1,14 +1,6 @@ require "test_helper" class WayTest < ActiveSupport::TestCase - api_fixtures - - # Check that we have the correct number of currnet ways in the db - # This will need to updated whenever the current_ways.yml is updated - def test_db_count - assert_equal 7, Way.count - end - def test_bbox node = create(:node) visible_way = create(:way) @@ -50,13 +42,13 @@ class WayTest < ActiveSupport::TestCase def test_from_xml_no_id noid = "" - assert_nothing_raised(OSM::APIBadXMLError) do + assert_nothing_raised do Way.from_xml(noid, true) end message = assert_raise(OSM::APIBadXMLError) do Way.from_xml(noid, false) end - assert_match /ID is required when updating/, message.message + assert_match(/ID is required when updating/, message.message) end def test_from_xml_no_changeset_id @@ -64,35 +56,35 @@ class WayTest < ActiveSupport::TestCase message_create = assert_raise(OSM::APIBadXMLError) do Way.from_xml(nocs, true) end - assert_match /Changeset id is missing/, message_create.message + assert_match(/Changeset id is missing/, message_create.message) message_update = assert_raise(OSM::APIBadXMLError) do Way.from_xml(nocs, false) end - assert_match /Changeset id is missing/, message_update.message + assert_match(/Changeset id is missing/, message_update.message) end def test_from_xml_no_version no_version = "" - assert_nothing_raised(OSM::APIBadXMLError) do + assert_nothing_raised do Way.from_xml(no_version, true) end message_update = assert_raise(OSM::APIBadXMLError) do Way.from_xml(no_version, false) end - assert_match /Version is required when updating/, message_update.message + assert_match(/Version is required when updating/, message_update.message) end def test_from_xml_id_zero id_list = ["", "0", "00", "0.0", "a"] id_list.each do |id| zero_id = "" - assert_nothing_raised(OSM::APIBadUserInput) do + assert_nothing_raised do Way.from_xml(zero_id, true) end message_update = assert_raise(OSM::APIBadUserInput) do Way.from_xml(zero_id, false) end - assert_match /ID of way cannot be zero when updating/, message_update.message + assert_match(/ID of way cannot be zero when updating/, message_update.message) end end @@ -101,11 +93,11 @@ class WayTest < ActiveSupport::TestCase message_create = assert_raise(OSM::APIBadXMLError) do Way.from_xml(no_text, true) end - assert_match /Must specify a string with one or more characters/, message_create.message + assert_match(/Must specify a string with one or more characters/, message_create.message) message_update = assert_raise(OSM::APIBadXMLError) do Way.from_xml(no_text, false) end - assert_match /Must specify a string with one or more characters/, message_update.message + assert_match(/Must specify a string with one or more characters/, message_update.message) end def test_from_xml_no_k_v @@ -113,11 +105,11 @@ class WayTest < ActiveSupport::TestCase message_create = assert_raise(OSM::APIBadXMLError) do Way.from_xml(nokv, true) end - assert_match /tag is missing key/, message_create.message + assert_match(/tag is missing key/, message_create.message) message_update = assert_raise(OSM::APIBadXMLError) do Way.from_xml(nokv, false) end - assert_match /tag is missing key/, message_update.message + assert_match(/tag is missing key/, message_update.message) end def test_from_xml_no_v @@ -125,11 +117,11 @@ class WayTest < ActiveSupport::TestCase message_create = assert_raise(OSM::APIBadXMLError) do Way.from_xml(no_v, true) end - assert_match /tag is missing value/, message_create.message + assert_match(/tag is missing value/, message_create.message) message_update = assert_raise(OSM::APIBadXMLError) do Way.from_xml(no_v, false) end - assert_match /tag is missing value/, message_update.message + assert_match(/tag is missing value/, message_update.message) end def test_from_xml_duplicate_k