else
# no other actions to choose from, so it must be the users fault!
- raise "Unknown action #{action_name}, choices are create, modify, delete."
+ raise OSM::APIChangesetActionInvalid.new(action_name)
end
end
"#{@allowed} is allowed.", :status => :conflict }
end
end
+
+ # Raised when a diff upload has an unknown action. You can only have create,
+ # modify, or delete
+ class APIChangesetActionInvalid < APIError
+ def initialize(provided)
+ @provided = provided
+ end
+
+ def render_opts
+ { :text => "Unknown action #{@provided}, choices are create, modify, delete.",
+ :status => :bad_request }
+ end
+ end
# Raised when bad XML is encountered which stops things parsing as
# they should.
"can't upload a complex diff to changeset: #{@response.body}"
# check the returned payload
- assert_select "osm[version=#{API_VERSION}][generator=\"OpenStreetMap server\"]", 1
+ assert_select "osm[version=#{API_VERSION}][generator=\"#{GENERATOR}\"]", 1
assert_select "osm>node", 1
assert_select "osm>way", 1
assert_select "osm>relation", 1
assert_response :bad_request,
"shouldn't be able to upload an element without version: #{@response.body}"
end
+
+ ##
+ # try to upload with commands other than create, modify, or delete
+ def test_action_upload_invalid
+ basic_authorization "test@openstreetmap.org", "test"
+
+ diff = <<EOF
+<osmChange>
+ <ping>
+ <node id='1' lon='1' lat='1' changeset='1' />
+ </ping>
+</osmChange>
+EOF
+ content diff
+ post :upload, :id => 1
+ assert_response :bad_request, "Shouldn't be able to upload a diff with the action ping"
+ assert_equal @response.body, "Unknown action ping, choices are create, modify, delete."
+ end
##
# when we make some simple changes we get the same changes back from the