]> git.openstreetmap.org Git - rails.git/commitdiff
Cleanup the Relation.from_xml to come in line with the Way and Node versions. Include...
authorShaun McDonald <shaun@shaunmcdonald.me.uk>
Wed, 10 Jun 2009 17:17:03 +0000 (17:17 +0000)
committerShaun McDonald <shaun@shaunmcdonald.me.uk>
Wed, 10 Jun 2009 17:17:03 +0000 (17:17 +0000)
app/models/relation.rb
test/functional/relation_controller_test.rb
test/unit/node_test.rb
test/unit/relation_test.rb
test/unit/way_test.rb

index fda5e5677fe57a4fb5c49218d1248b76b4f93920..28fa326ba9142374509be04d06dfd4bc93d92354 100644 (file)
@@ -41,25 +41,23 @@ class Relation < ActiveRecord::Base
   def self.from_xml_node(pt, create=false)
     relation = Relation.new
 
   def self.from_xml_node(pt, create=false)
     relation = Relation.new
 
-    if !create and pt['id'] != '0'
-      relation.id = pt['id'].to_i
-    end
-
-    raise OSM::APIBadXMLError.new("relation", pt, "You are missing the required changeset in the relation") if pt['changeset'].nil?
+    raise OSM::APIBadXMLError.new("relation", pt, "Version is required when updating") unless create or not pt['version'].nil?
+    relation.version = pt['version']
+    raise OSM::APIBadXMLError.new("relation", pt, "Changeset id is missing") if pt['changeset'].nil?
     relation.changeset_id = pt['changeset']
     relation.changeset_id = pt['changeset']
-
-    # The follow block does not need to be executed because they are dealt with 
-    # in create_with_history, update_from and delete_with_history
-    if create
-      relation.timestamp = Time.now.getutc
-      relation.visible = true
-      relation.version = 0
-    else
-      if pt['timestamp']
-        relation.timestamp = Time.parse(pt['timestamp'])
-      end
-      relation.version = pt['version']
+    
+    unless create
+      raise OSM::APIBadXMLError.new("relation", pt, "ID is required when updating") if pt['id'].nil?
+      relation.id = pt['id'].to_i
+      # .to_i will return 0 if there is no number that can be parsed. 
+      # We want to make sure that there is no id with zero anyway
+      raise OSM::APIBadUserInput.new("ID of relation cannot be zero when updating.") if relation.id == 0
     end
     end
+    
+    # We don't care about the timestamp nor the visibility as these are either
+    # set explicitly or implicit in the action. The visibility is set to true, 
+    # and manually set to false before the actual delete.
+    relation.visible = true
 
     pt.find('tag').each do |tag|
       relation.add_tag_keyval(tag['k'], tag['v'])
 
     pt.find('tag').each do |tag|
       relation.add_tag_keyval(tag['k'], tag['v'])
index 10762f48d84911cacc2166aa036cf64ad5514661..19b3617fcf41ddb0dcbc62fb777ee299c589a436 100644 (file)
@@ -433,10 +433,10 @@ class RelationControllerTest < ActionController::TestCase
     assert_response :bad_request
 
     # try to delete without specifying a changeset
     assert_response :bad_request
 
     # try to delete without specifying a changeset
-    content "<osm><relation id='#{current_relations(:visible_relation).id}'/></osm>"
+    content "<osm><relation id='#{current_relations(:visible_relation).id}' version='#{current_relations(:visible_relation).version}' /></osm>"
     delete :delete, :id => current_relations(:visible_relation).id
     assert_response :bad_request
     delete :delete, :id => current_relations(:visible_relation).id
     assert_response :bad_request
-    assert_match(/You are missing the required changeset in the relation/, @response.body)
+    assert_match(/Changeset id is missing/, @response.body)
 
     # try to delete with an invalid (closed) changeset
     content update_changeset(current_relations(:visible_relation).to_xml,
 
     # try to delete with an invalid (closed) changeset
     content update_changeset(current_relations(:visible_relation).to_xml,
index 11b745f5ed649620c54af4449817a63b0b0184f4..8e71233e64eb59b9cd76932303443511692a9e4f 100644 (file)
@@ -267,6 +267,6 @@ class NodeTest < ActiveSupport::TestCase
     message_update = assert_raise(OSM::APIBadXMLError) {
       Node.from_xml(no_text, false)
     }
     message_update = assert_raise(OSM::APIBadXMLError) {
       Node.from_xml(no_text, false)
     }
-    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_update.message
   end
 end
   end
 end
index 6b23630259a2736f1f4b4a65cf3f72243e6025ba..1c46c70122c77e4ba1befeb0be139a83373957b4 100644 (file)
@@ -7,4 +7,63 @@ class RelationTest < ActiveSupport::TestCase
     assert_equal 6, Relation.count
   end
   
     assert_equal 6, Relation.count
   end
   
+  def test_from_xml_no_id
+    noid = "<osm><relation version='12' changeset='23' /></osm>"
+    assert_nothing_raised(OSM::APIBadXMLError) {
+      Relation.from_xml(noid, true)
+    }
+    message = assert_raise(OSM::APIBadXMLError) {
+      Relation.from_xml(noid, false)
+    }
+    assert_match /ID is required when updating/, message.message
+  end
+  
+  def test_from_xml_no_changeset_id
+    nocs = "<osm><relation id='123' version='12' /></osm>"
+    message_create = assert_raise(OSM::APIBadXMLError) {
+      Relation.from_xml(nocs, true)
+    }
+    assert_match /Changeset id is missing/, message_create.message
+    message_update = assert_raise(OSM::APIBadXMLError) {
+      Relation.from_xml(nocs, false)
+    }
+    assert_match /Changeset id is missing/, message_update.message
+  end
+  
+  def test_from_xml_no_version
+    no_version = "<osm><relation id='123' changeset='23' /></osm>"
+    assert_nothing_raised(OSM::APIBadXMLError) {
+      Relation.from_xml(no_version, true)
+    }
+    message_update = assert_raise(OSM::APIBadXMLError) {
+      Relation.from_xml(no_version, false)
+    }
+    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 = "<osm><relation id='#{id}' changeset='332' version='23' /></osm>"
+      assert_nothing_raised(OSM::APIBadUserInput) {
+        Relation.from_xml(zero_id, true)
+      }
+      message_update = assert_raise(OSM::APIBadUserInput) {
+        Relation.from_xml(zero_id, false)
+      }
+      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) {
+      Relation.from_xml(no_text, true)
+    }
+    assert_match /Must specify a string with one or more characters/, message_create.message
+    message_update = assert_raise(OSM::APIBadXMLError) {
+      Relation.from_xml(no_text, false)
+    }
+    assert_match /Must specify a string with one or more characters/, message_update.message
+  end
 end
 end
index afbe36252161fb66b58c2f28aeb18f58488a5830..bdf4ab3657875bc7b716e30531b8181afbb5e1b5 100644 (file)
@@ -94,6 +94,6 @@ class WayTest < ActiveSupport::TestCase
     message_update = assert_raise(OSM::APIBadXMLError) {
       Way.from_xml(no_text, false)
     }
     message_update = assert_raise(OSM::APIBadXMLError) {
       Way.from_xml(no_text, false)
     }
-    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_update.message
   end
 end
   end
 end