]> git.openstreetmap.org Git - rails.git/blobdiff - test/functional/amf_controller_test.rb
Update Potlatch 2 to 0.5-291-g0c68ba6 build
[rails.git] / test / functional / amf_controller_test.rb
index 3bb1d273e948d4b06e7c2e08bc2753b23831eaf1..2c76dfc9cc29b5058c9a7d5404f886d73f7ebb04 100644 (file)
@@ -529,6 +529,24 @@ class AmfControllerTest < ActionController::TestCase
     
   end
 
+  def test_startchangeset_invalid_xmlchar_comment
+    invalid = "\035\022"
+    comment = "foo#{invalid}bar"
+      
+    amf_content "startchangeset", "/1", ["test@example.com:test", Hash.new, nil, comment, 1]
+    post :amf_write
+    assert_response :success
+    amf_parse_response
+    result = amf_result("/1")
+
+    assert_equal 3, result.size, result.inspect
+    assert_equal 0, result[0]
+    new_cs_id = result[2]
+
+    cs = Changeset.find(new_cs_id)
+    assert_equal "foobar", cs.tags["comment"]
+  end
+
   # ************************************************************
   # AMF Helper functions