]> git.openstreetmap.org Git - rails.git/commitdiff
Avoid parsing of XML requests with ; in the body
authorTom Hughes <tom@compton.nu>
Fri, 20 Dec 2024 10:18:12 +0000 (10:18 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 20 Mar 2025 11:38:27 +0000 (11:38 +0000)
test/integration/node_versions_test.rb

index 71251aae9e6bd514c72c078c13c506931d8f05d0..4d8a705cbf600246dec7c05092d9819ee472cf5d 100644 (file)
@@ -15,7 +15,7 @@ class NodeVersionsTest < ActionDispatch::IntegrationTest
     propagate_tags(node, node.old_nodes.last)
 
     ## First try this with a non-public user
-    auth_header = bearer_authorization_header private_user
+    auth_header = request_headers private_user
 
     # setup a simple XML node
     xml_doc = xml_for_node(private_node)
@@ -62,7 +62,7 @@ class NodeVersionsTest < ActionDispatch::IntegrationTest
     # probably should check that they didn't get written to the database
 
     ## Now do it with the public user
-    auth_header = bearer_authorization_header user
+    auth_header = request_headers user
 
     # setup a simple XML node
 
@@ -191,4 +191,8 @@ class NodeVersionsTest < ActionDispatch::IntegrationTest
       create(:old_node_tag, :old_node => old_node, :k => k, :v => v)
     end
   end
+
+  def request_headers(user)
+    bearer_authorization_header(user).merge("Content-Type" => "application/xml")
+  end
 end