X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/37df03a0432c0fcbc1c1b91af741a5cc135bea34..17a1e22df96e76d9f863fc82e4d8fcb0487f6ac7:/test/unit/relation_test.rb diff --git a/test/unit/relation_test.rb b/test/unit/relation_test.rb index 1c46c7012..a878be8cb 100644 --- a/test/unit/relation_test.rb +++ b/test/unit/relation_test.rb @@ -66,4 +66,24 @@ 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 = "" + assert_nothing_raised(OSM::APIBadUserInput, OSM::APIBadXMLError) { + Relation.from_xml(nokv, true) + Relation.from_xml(nokv, false) + } + end + + def test_from_xml_duplicate_k + dupk = "" + message_create = assert_raise(OSM::APIDuplicateTagsError) { + Relation.from_xml(dupk, true) + } + assert_equal "Element relation/ has duplicate tags with key dup", message_create.message + message_update = assert_raise(OSM::APIDuplicateTagsError) { + Relation.from_xml(dupk, false) + } + assert_equal "Element relation/23 has duplicate tags with key dup", message_update.message + end end