X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b095b59d5e0ee805e49980af80b21bd1acff1345..34e3e51456774127d43408b7ab65c24f41373f62:/test/models/relation_test.rb diff --git a/test/models/relation_test.rb b/test/models/relation_test.rb index 7141f54f0..33e2fa0b0 100644 --- a/test/models/relation_test.rb +++ b/test/models/relation_test.rb @@ -2,11 +2,11 @@ require 'test_helper' class RelationTest < ActiveSupport::TestCase api_fixtures - + def test_relation_count assert_equal 8, Relation.count end - + def test_from_xml_no_id noid = "" assert_nothing_raised(OSM::APIBadXMLError) { @@ -17,7 +17,7 @@ class RelationTest < ActiveSupport::TestCase } assert_match /ID is required when updating/, message.message end - + def test_from_xml_no_changeset_id nocs = "" message_create = assert_raise(OSM::APIBadXMLError) { @@ -29,7 +29,7 @@ class RelationTest < ActiveSupport::TestCase } assert_match /Changeset id is missing/, message_update.message end - + def test_from_xml_no_version no_version = "" assert_nothing_raised(OSM::APIBadXMLError) { @@ -40,7 +40,7 @@ class RelationTest < ActiveSupport::TestCase } 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| @@ -54,7 +54,7 @@ class RelationTest < ActiveSupport::TestCase assert_match /ID of relation cannot be zero when updating/, message_update.message end end - + def test_from_xml_no_text no_text = "" message_create = assert_raise(OSM::APIBadXMLError) { @@ -66,7 +66,7 @@ class RelationTest < ActiveSupport::TestCase } assert_match /Must specify a string with one or more characters/, message_update.message end - + def test_from_xml_no_k_v nokv = "" message_create = assert_raise(OSM::APIBadXMLError) { @@ -78,7 +78,7 @@ class RelationTest < ActiveSupport::TestCase } assert_match /tag is missing key/, message_update.message end - + def test_from_xml_no_v no_v = "" message_create = assert_raise(OSM::APIBadXMLError) { @@ -90,7 +90,7 @@ class RelationTest < ActiveSupport::TestCase } assert_match /tag is missing value/, message_update.message end - + def test_from_xml_duplicate_k dupk = "" message_create = assert_raise(OSM::APIDuplicateTagsError) { @@ -131,7 +131,7 @@ class RelationTest < ActiveSupport::TestCase relation = current_relations(:relation_with_versions) tags = Relation.find(relation.id).relation_tags.order(:k) assert_equal 2, tags.count - assert_equal "testing", tags[0].k + assert_equal "testing", tags[0].k assert_equal "added in relation version 3", tags[0].v assert_equal "testing two", tags[1].k assert_equal "modified in relation version 4", tags[1].v @@ -144,4 +144,21 @@ class RelationTest < ActiveSupport::TestCase assert_equal "added in relation version 3", tags["testing"] assert_equal "modified in relation version 4", tags["testing two"] end + + def test_containing_relation_members + relation = current_relations(:used_relation) + crm = Relation.find(relation.id).containing_relation_members.order(:relation_id) +# assert_equal 1, crm.size + assert_equal 1, crm.first.relation_id + assert_equal "Relation", crm.first.member_type + assert_equal relation.id, crm.first.member_id + assert_equal 1, crm.first.relation.id + end + + def test_containing_relations + relation = current_relations(:used_relation) + cr = Relation.find(relation.id).containing_relations.order(:id) + assert_equal 1, cr.size + assert_equal 1, cr.first.id + end end