1 require File.dirname(__FILE__) + '/../test_helper'
2 require 'changeset_controller'
4 class ChangesetControllerTest < ActionController::TestCase
7 def basic_authorization(user, pass)
8 @request.env["HTTP_AUTHORIZATION"] = "Basic %s" % Base64.encode64("#{user}:#{pass}")
12 @request.env["RAW_POST_DATA"] = c.to_s
15 # -----------------------
16 # Test simple changeset creation
17 # -----------------------
20 basic_authorization "test@openstreetmap.org", "test"
22 # Create the first user's changeset
23 content "<osm><changeset>" +
24 "<tag k='created_by' v='osm test suite checking changesets'/>" +
28 assert_response :success, "Creation of changeset did not return sucess status"
29 newid = @response.body.to_i
31 # check end time, should be an hour ahead of creation time
32 cs = Changeset.find(newid)
33 duration = cs.closed_at - cs.created_at
34 # the difference can either be a rational, or a floating point number
35 # of seconds, depending on the code path taken :-(
36 if duration.class == Rational
37 assert_equal Rational(1,24), duration , "initial idle timeout should be an hour (#{cs.created_at} -> #{cs.closed_at})"
39 # must be number of seconds...
40 assert_equal 3600.0, duration , "initial idle timeout should be an hour (#{cs.created_at} -> #{cs.closed_at})"
44 def test_create_invalid
45 basic_authorization "test@openstreetmap.org", "test"
46 content "<osm><changeset></osm>"
48 assert_response :bad_request, "creating a invalid changeset should fail"
52 # check that the changeset can be read and returns the correct
55 changeset_id = changesets(:normal_user_first_change).id
56 get :read, :id => changeset_id
57 assert_response :success, "cannot get first changeset"
59 assert_select "osm[version=#{API_VERSION}][generator=\"OpenStreetMap server\"]", 1
60 assert_select "osm>changeset[id=#{changeset_id}]", 1
64 # test that the user who opened a change can close it
66 basic_authorization "test@openstreetmap.org", "test"
68 cs_id = changesets(:normal_user_first_change).id
69 put :close, :id => cs_id
70 assert_response :success
72 # test that it really is closed now
73 cs = Changeset.find(cs_id)
75 "changeset should be closed now (#{cs.closed_at} > #{Time.now}.")
79 # test that a different user can't close another user's changeset
80 def test_close_invalid
81 basic_authorization "test@example.com", "test"
83 put :close, :id => changesets(:normal_user_first_change).id
84 assert_response :conflict
85 assert_equal "The user doesn't own that changeset", @response.body
89 # upload something simple, but valid and check that it can
91 def test_upload_simple_valid
92 basic_authorization "test@openstreetmap.org", "test"
94 # simple diff to change a node, way and relation by removing
99 <node id='1' lon='0' lat='0' changeset='1' version='1'/>
100 <way id='1' changeset='1' version='1'>
105 <relation id='1' changeset='1' version='1'>
106 <member type='way' role='some' ref='3'/>
107 <member type='node' role='some' ref='5'/>
108 <member type='relation' role='some' ref='3'/>
116 post :upload, :id => 1
117 assert_response :success,
118 "can't upload a simple valid diff to changeset: #{@response.body}"
120 # check that the changes made it into the database
121 assert_equal 0, Node.find(1).tags.size, "node 1 should now have no tags"
122 assert_equal 0, Way.find(1).tags.size, "way 1 should now have no tags"
123 assert_equal 0, Relation.find(1).tags.size, "relation 1 should now have no tags"
127 # upload something which creates new objects using placeholders
128 def test_upload_create_valid
129 basic_authorization "test@openstreetmap.org", "test"
131 # simple diff to create a node way and relation using placeholders
135 <node id='-1' lon='0' lat='0' changeset='1'>
136 <tag k='foo' v='bar'/>
137 <tag k='baz' v='bat'/>
139 <way id='-1' changeset='1'>
144 <relation id='-1' changeset='1'>
145 <member type='way' role='some' ref='3'/>
146 <member type='node' role='some' ref='5'/>
147 <member type='relation' role='some' ref='3'/>
155 post :upload, :id => 1
156 assert_response :success,
157 "can't upload a simple valid creation to changeset: #{@response.body}"
159 # check the returned payload
160 assert_select "diffResult[version=#{API_VERSION}][generator=\"OpenStreetMap server\"]", 1
161 assert_select "diffResult>node", 1
162 assert_select "diffresult>way", 1
163 assert_select "diffResult>relation", 1
165 # inspect the response to find out what the new element IDs are
166 doc = XML::Parser.string(@response.body).parse
167 new_node_id = doc.find("//diffResult/node").first["new_id"].to_i
168 new_way_id = doc.find("//diffResult/way").first["new_id"].to_i
169 new_rel_id = doc.find("//diffResult/relation").first["new_id"].to_i
171 # check the old IDs are all present and negative one
172 assert_equal -1, doc.find("//diffResult/node").first["old_id"].to_i
173 assert_equal -1, doc.find("//diffResult/way").first["old_id"].to_i
174 assert_equal -1, doc.find("//diffResult/relation").first["old_id"].to_i
176 # check the versions are present and equal one
177 assert_equal 1, doc.find("//diffResult/node").first["new_version"].to_i
178 assert_equal 1, doc.find("//diffResult/way").first["new_version"].to_i
179 assert_equal 1, doc.find("//diffResult/relation").first["new_version"].to_i
181 # check that the changes made it into the database
182 assert_equal 2, Node.find(new_node_id).tags.size, "new node should have two tags"
183 assert_equal 0, Way.find(new_way_id).tags.size, "new way should have no tags"
184 assert_equal 0, Relation.find(new_rel_id).tags.size, "new relation should have no tags"
188 # test a complex delete where we delete elements which rely on eachother
189 # in the same transaction.
190 def test_upload_delete
191 basic_authorization "test@openstreetmap.org", "test"
193 diff = XML::Document.new
194 diff.root = XML::Node.new "osmChange"
195 delete = XML::Node.new "delete"
197 delete << current_relations(:visible_relation).to_xml_node
198 delete << current_relations(:used_relation).to_xml_node
199 delete << current_ways(:used_way).to_xml_node
200 delete << current_nodes(:node_used_by_relationship).to_xml_node
204 post :upload, :id => 1
205 assert_response :success,
206 "can't upload a deletion diff to changeset: #{@response.body}"
208 # check the response is well-formed
209 assert_select "diffResult>node", 1
210 assert_select "diffResult>way", 1
211 assert_select "diffResult>relation", 2
213 # check that everything was deleted
214 assert_equal false, Node.find(current_nodes(:node_used_by_relationship).id).visible
215 assert_equal false, Way.find(current_ways(:used_way).id).visible
216 assert_equal false, Relation.find(current_relations(:visible_relation).id).visible
217 assert_equal false, Relation.find(current_relations(:used_relation).id).visible
221 # test that deleting stuff in a transaction doesn't bypass the checks
222 # to ensure that used elements are not deleted.
223 def test_upload_delete_invalid
224 basic_authorization "test@openstreetmap.org", "test"
226 diff = XML::Document.new
227 diff.root = XML::Node.new "osmChange"
228 delete = XML::Node.new "delete"
230 delete << current_relations(:visible_relation).to_xml_node
231 delete << current_ways(:used_way).to_xml_node
232 delete << current_nodes(:node_used_by_relationship).to_xml_node
236 post :upload, :id => 1
237 assert_response :precondition_failed,
238 "shouldn't be able to upload a invalid deletion diff: #{@response.body}"
240 # check that nothing was, in fact, deleted
241 assert_equal true, Node.find(current_nodes(:node_used_by_relationship).id).visible
242 assert_equal true, Way.find(current_ways(:used_way).id).visible
243 assert_equal true, Relation.find(current_relations(:visible_relation).id).visible
247 # upload something which creates new objects and inserts them into
248 # existing containers using placeholders.
249 def test_upload_complex
250 basic_authorization "test@openstreetmap.org", "test"
252 # simple diff to create a node way and relation using placeholders
256 <node id='-1' lon='0' lat='0' changeset='1'>
257 <tag k='foo' v='bar'/>
258 <tag k='baz' v='bat'/>
262 <way id='1' changeset='1' version='1'>
266 <relation id='1' changeset='1' version='1'>
267 <member type='way' role='some' ref='3'/>
268 <member type='node' role='some' ref='-1'/>
269 <member type='relation' role='some' ref='3'/>
277 post :upload, :id => 1
278 assert_response :success,
279 "can't upload a complex diff to changeset: #{@response.body}"
281 # check the returned payload
282 assert_select "diffResult[version=#{API_VERSION}][generator=\"#{GENERATOR}\"]", 1
283 assert_select "diffResult>node", 1
284 assert_select "diffResult>way", 1
285 assert_select "diffResult>relation", 1
287 # inspect the response to find out what the new element IDs are
288 doc = XML::Parser.string(@response.body).parse
289 new_node_id = doc.find("//diffResult/node").first["new_id"].to_i
291 # check that the changes made it into the database
292 assert_equal 2, Node.find(new_node_id).tags.size, "new node should have two tags"
293 assert_equal [new_node_id, 3], Way.find(1).nds, "way nodes should match"
294 Relation.find(1).members.each do |type,id,role|
296 assert_equal new_node_id, id, "relation should contain new node"
302 # create a diff which references several changesets, which should cause
303 # a rollback and none of the diff gets committed
304 def test_upload_invalid_changesets
305 basic_authorization "test@openstreetmap.org", "test"
307 # simple diff to create a node way and relation using placeholders
311 <node id='1' lon='0' lat='0' changeset='1' version='1'/>
312 <way id='1' changeset='1' version='1'>
317 <relation id='1' changeset='1' version='1'>
318 <member type='way' role='some' ref='3'/>
319 <member type='node' role='some' ref='5'/>
320 <member type='relation' role='some' ref='3'/>
324 <node id='-1' lon='0' lat='0' changeset='4'>
325 <tag k='foo' v='bar'/>
326 <tag k='baz' v='bat'/>
331 # cache the objects before uploading them
332 node = current_nodes(:visible_node)
333 way = current_ways(:visible_way)
334 rel = current_relations(:visible_relation)
338 post :upload, :id => 1
339 assert_response :conflict,
340 "uploading a diff with multiple changsets should have failed"
342 # check that objects are unmodified
343 assert_nodes_are_equal(node, Node.find(1))
344 assert_ways_are_equal(way, Way.find(1))
348 # upload multiple versions of the same element in the same diff.
349 def test_upload_multiple_valid
350 basic_authorization "test@openstreetmap.org", "test"
352 # change the location of a node multiple times, each time referencing
353 # the last version. doesn't this depend on version numbers being
358 <node id='1' lon='0' lat='0' changeset='1' version='1'/>
359 <node id='1' lon='1' lat='0' changeset='1' version='2'/>
360 <node id='1' lon='1' lat='1' changeset='1' version='3'/>
361 <node id='1' lon='1' lat='2' changeset='1' version='4'/>
362 <node id='1' lon='2' lat='2' changeset='1' version='5'/>
363 <node id='1' lon='3' lat='2' changeset='1' version='6'/>
364 <node id='1' lon='3' lat='3' changeset='1' version='7'/>
365 <node id='1' lon='9' lat='9' changeset='1' version='8'/>
372 post :upload, :id => 1
373 assert_response :success,
374 "can't upload multiple versions of an element in a diff: #{@response.body}"
376 # check the response is well-formed. its counter-intuitive, but the
377 # API will return multiple elements with the same ID and different
378 # version numbers for each change we made.
379 assert_select "diffResult>node", 8
383 # upload multiple versions of the same element in the same diff, but
384 # keep the version numbers the same.
385 def test_upload_multiple_duplicate
386 basic_authorization "test@openstreetmap.org", "test"
391 <node id='1' lon='0' lat='0' changeset='1' version='1'/>
392 <node id='1' lon='1' lat='1' changeset='1' version='1'/>
399 post :upload, :id => 1
400 assert_response :conflict,
401 "shouldn't be able to upload the same element twice in a diff: #{@response.body}"
405 # try to upload some elements without specifying the version
406 def test_upload_missing_version
407 basic_authorization "test@openstreetmap.org", "test"
412 <node id='1' lon='1' lat='1' changeset='1'/>
419 post :upload, :id => 1
420 assert_response :bad_request,
421 "shouldn't be able to upload an element without version: #{@response.body}"
425 # try to upload with commands other than create, modify, or delete
426 def test_action_upload_invalid
427 basic_authorization "test@openstreetmap.org", "test"
432 <node id='1' lon='1' lat='1' changeset='1' />
437 post :upload, :id => 1
438 assert_response :bad_request, "Shouldn't be able to upload a diff with the action ping"
439 assert_equal @response.body, "Unknown action ping, choices are create, modify, delete."
443 # upload a valid changeset which has a mixture of whitespace
444 # to check a bug reported by ivansanchez (#1565).
445 def test_upload_whitespace_valid
446 basic_authorization "test@openstreetmap.org", "test"
450 <modify><node id='1' lon='0' lat='0' changeset='1'
452 <node id='1' lon='1' lat='1' changeset='1' version='2'><tag k='k' v='v'/></node></modify>
454 <relation id='1' changeset='1' version='1'><member
455 type='way' role='some' ref='3'/><member
456 type='node' role='some' ref='5'/>
457 <member type='relation' role='some' ref='3'/>
459 </modify></osmChange>
464 post :upload, :id => 1
465 assert_response :success,
466 "can't upload a valid diff with whitespace variations to changeset: #{@response.body}"
468 # check the response is well-formed
469 assert_select "diffResult>node", 2
470 assert_select "diffResult>relation", 1
472 # check that the changes made it into the database
473 assert_equal 1, Node.find(1).tags.size, "node 1 should now have one tag"
474 assert_equal 0, Relation.find(1).tags.size, "relation 1 should now have no tags"
478 # upload a valid changeset which has a mixture of whitespace
479 # to check a bug reported by ivansanchez.
480 def test_upload_reuse_placeholder_valid
481 basic_authorization "test@openstreetmap.org", "test"
486 <node id='-1' lon='0' lat='0' changeset='1'>
487 <tag k="foo" v="bar"/>
491 <node id='-1' lon='1' lat='1' changeset='1' version='1'/>
494 <node id='-1' lon='2' lat='2' changeset='1' version='2'/>
501 post :upload, :id => 1
502 assert_response :success,
503 "can't upload a valid diff with re-used placeholders to changeset: #{@response.body}"
505 # check the response is well-formed
506 assert_select "diffResult>node", 3
507 assert_select "diffResult>node[old_id=-1]", 3
511 # test what happens if a diff upload re-uses placeholder IDs in an
513 def test_upload_placeholder_invalid
514 basic_authorization "test@openstreetmap.org", "test"
519 <node id='-1' lon='0' lat='0' changeset='1' version='1'/>
520 <node id='-1' lon='1' lat='1' changeset='1' version='1'/>
521 <node id='-1' lon='2' lat='2' changeset='1' version='2'/>
528 post :upload, :id => 1
529 assert_response :bad_request,
530 "shouldn't be able to re-use placeholder IDs"
534 # test for more issues in #1568
535 def test_upload_empty_invalid
536 basic_authorization "test@openstreetmap.org", "test"
539 "<osmChange></osmChange>",
540 "<osmChange><modify/></osmChange>",
541 "<osmChange><modify></modify></osmChange>"
545 post :upload, :id => 1
546 assert_response(:success, "should be able to upload " +
547 "empty changeset: " + diff)
552 # when we make some simple changes we get the same changes back from the
554 def test_diff_download_simple
555 basic_authorization(users(:normal_user).email, "test")
557 # create a temporary changeset
558 content "<osm><changeset>" +
559 "<tag k='created_by' v='osm test suite checking changesets'/>" +
562 assert_response :success
563 changeset_id = @response.body.to_i
569 <node id='1' lon='0' lat='0' changeset='#{changeset_id}' version='1'/>
570 <node id='1' lon='1' lat='0' changeset='#{changeset_id}' version='2'/>
571 <node id='1' lon='1' lat='1' changeset='#{changeset_id}' version='3'/>
572 <node id='1' lon='1' lat='2' changeset='#{changeset_id}' version='4'/>
573 <node id='1' lon='2' lat='2' changeset='#{changeset_id}' version='5'/>
574 <node id='1' lon='3' lat='2' changeset='#{changeset_id}' version='6'/>
575 <node id='1' lon='3' lat='3' changeset='#{changeset_id}' version='7'/>
576 <node id='1' lon='9' lat='9' changeset='#{changeset_id}' version='8'/>
583 post :upload, :id => changeset_id
584 assert_response :success,
585 "can't upload multiple versions of an element in a diff: #{@response.body}"
587 get :download, :id => changeset_id
588 assert_response :success
590 assert_select "osmChange", 1
591 assert_select "osmChange>modify", 8
592 assert_select "osmChange>modify>node", 8
596 # culled this from josm to ensure that nothing in the way that josm
597 # is formatting the request is causing it to fail.
599 # NOTE: the error turned out to be something else completely!
601 basic_authorization(users(:normal_user).email, "test")
603 # create a temporary changeset
604 content "<osm><changeset>" +
605 "<tag k='created_by' v='osm test suite checking changesets'/>" +
608 assert_response :success
609 changeset_id = @response.body.to_i
612 <osmChange version="0.6" generator="JOSM">
613 <create version="0.6" generator="JOSM">
614 <node id='-1' visible='true' changeset='#{changeset_id}' lat='51.49619982187321' lon='-0.18722061869438314' />
615 <node id='-2' visible='true' changeset='#{changeset_id}' lat='51.496359883909605' lon='-0.18653093576241928' />
616 <node id='-3' visible='true' changeset='#{changeset_id}' lat='51.49598132358285' lon='-0.18719613290981638' />
617 <node id='-4' visible='true' changeset='#{changeset_id}' lat='51.4961591711078' lon='-0.18629015888084607' />
618 <node id='-5' visible='true' changeset='#{changeset_id}' lat='51.49582126021711' lon='-0.18708186591517145' />
619 <node id='-6' visible='true' changeset='#{changeset_id}' lat='51.49591018437858' lon='-0.1861432441734455' />
620 <node id='-7' visible='true' changeset='#{changeset_id}' lat='51.49560784152179' lon='-0.18694719410005425' />
621 <node id='-8' visible='true' changeset='#{changeset_id}' lat='51.49567389979617' lon='-0.1860289771788006' />
622 <node id='-9' visible='true' changeset='#{changeset_id}' lat='51.49543761398892' lon='-0.186820684213126' />
623 <way id='-10' action='modiy' visible='true' changeset='#{changeset_id}'>
633 <tag k='highway' v='residential' />
634 <tag k='name' v='Foobar Street' />
642 post :upload, :id => changeset_id
643 assert_response :success,
644 "can't upload a diff from JOSM: #{@response.body}"
646 get :download, :id => changeset_id
647 assert_response :success
649 assert_select "osmChange", 1
650 assert_select "osmChange>create>node", 9
651 assert_select "osmChange>create>way", 1
652 assert_select "osmChange>create>way>nd", 9
653 assert_select "osmChange>create>way>tag", 2
657 # when we make some complex changes we get the same changes back from the
659 def test_diff_download_complex
660 basic_authorization(users(:normal_user).email, "test")
662 # create a temporary changeset
663 content "<osm><changeset>" +
664 "<tag k='created_by' v='osm test suite checking changesets'/>" +
667 assert_response :success
668 changeset_id = @response.body.to_i
674 <node id='1' lon='0' lat='0' changeset='#{changeset_id}' version='1'/>
677 <node id='-1' lon='9' lat='9' changeset='#{changeset_id}' version='0'/>
678 <node id='-2' lon='8' lat='9' changeset='#{changeset_id}' version='0'/>
679 <node id='-3' lon='7' lat='9' changeset='#{changeset_id}' version='0'/>
682 <node id='3' lon='20' lat='15' changeset='#{changeset_id}' version='1'/>
683 <way id='1' changeset='#{changeset_id}' version='1'>
695 post :upload, :id => changeset_id
696 assert_response :success,
697 "can't upload multiple versions of an element in a diff: #{@response.body}"
699 get :download, :id => changeset_id
700 assert_response :success
702 assert_select "osmChange", 1
703 assert_select "osmChange>create", 3
704 assert_select "osmChange>delete", 1
705 assert_select "osmChange>modify", 2
706 assert_select "osmChange>create>node", 3
707 assert_select "osmChange>delete>node", 1
708 assert_select "osmChange>modify>node", 1
709 assert_select "osmChange>modify>way", 1
713 # check that the bounding box of a changeset gets updated correctly
714 def test_changeset_bbox
715 basic_authorization "test@openstreetmap.org", "test"
717 # create a new changeset
718 content "<osm><changeset/></osm>"
720 assert_response :success, "Creating of changeset failed."
721 changeset_id = @response.body.to_i
723 # add a single node to it
724 with_controller(NodeController.new) do
725 content "<osm><node lon='1' lat='2' changeset='#{changeset_id}'/></osm>"
727 assert_response :success, "Couldn't create node."
730 # get the bounding box back from the changeset
731 get :read, :id => changeset_id
732 assert_response :success, "Couldn't read back changeset."
733 assert_select "osm>changeset[min_lon=1.0]", 1
734 assert_select "osm>changeset[max_lon=1.0]", 1
735 assert_select "osm>changeset[min_lat=2.0]", 1
736 assert_select "osm>changeset[max_lat=2.0]", 1
738 # add another node to it
739 with_controller(NodeController.new) do
740 content "<osm><node lon='2' lat='1' changeset='#{changeset_id}'/></osm>"
742 assert_response :success, "Couldn't create second node."
745 # get the bounding box back from the changeset
746 get :read, :id => changeset_id
747 assert_response :success, "Couldn't read back changeset for the second time."
748 assert_select "osm>changeset[min_lon=1.0]", 1
749 assert_select "osm>changeset[max_lon=2.0]", 1
750 assert_select "osm>changeset[min_lat=1.0]", 1
751 assert_select "osm>changeset[max_lat=2.0]", 1
753 # add (delete) a way to it
754 with_controller(WayController.new) do
755 content update_changeset(current_ways(:visible_way).to_xml,
757 put :delete, :id => current_ways(:visible_way).id
758 assert_response :success, "Couldn't delete a way."
761 # get the bounding box back from the changeset
762 get :read, :id => changeset_id
763 assert_response :success, "Couldn't read back changeset for the third time."
764 assert_select "osm>changeset[min_lon=1.0]", 1
765 assert_select "osm>changeset[max_lon=3.1]", 1
766 assert_select "osm>changeset[min_lat=1.0]", 1
767 assert_select "osm>changeset[max_lat=3.1]", 1
771 # test that the changeset :include method works as it should
772 def test_changeset_include
773 basic_authorization "test@openstreetmap.org", "test"
775 # create a new changeset
776 content "<osm><changeset/></osm>"
778 assert_response :success, "Creating of changeset failed."
779 changeset_id = @response.body.to_i
781 # NOTE: the include method doesn't over-expand, like inserting
782 # a real method does. this is because we expect the client to
783 # know what it is doing!
784 check_after_include(changeset_id, 1, 1, [ 1, 1, 1, 1])
785 check_after_include(changeset_id, 3, 3, [ 1, 1, 3, 3])
786 check_after_include(changeset_id, 4, 2, [ 1, 1, 4, 3])
787 check_after_include(changeset_id, 2, 2, [ 1, 1, 4, 3])
788 check_after_include(changeset_id, -1, -1, [-1, -1, 4, 3])
789 check_after_include(changeset_id, -2, 5, [-2, -1, 4, 5])
793 # test the query functionality of changesets
795 get :query, :bbox => "-10,-10, 10, 10"
796 assert_response :success, "can't get changesets in bbox"
797 assert_changesets [1,4,6]
799 get :query, :bbox => "4.5,4.5,4.6,4.6"
800 assert_response :success, "can't get changesets in bbox"
801 assert_changesets [1]
803 # can't get changesets of user 1 without authenticating
804 get :query, :user => users(:normal_user).id
805 assert_response :not_found, "shouldn't be able to get changesets by non-public user"
807 # but this should work
808 basic_authorization "test@openstreetmap.org", "test"
809 get :query, :user => users(:normal_user).id
810 assert_response :success, "can't get changesets by user"
811 assert_changesets [1,3,4,6]
813 get :query, :user => users(:normal_user).id, :open => true
814 assert_response :success, "can't get changesets by user and open"
815 assert_changesets [1,4]
817 get :query, :time => '2007-12-31'
818 assert_response :success, "can't get changesets by time-since"
819 assert_changesets [1,2,4,5,6]
821 get :query, :time => '2008-01-01T12:34Z'
822 assert_response :success, "can't get changesets by time-since with hour"
823 assert_changesets [1,2,4,5,6]
825 get :query, :time => '2007-12-31T23:59Z,2008-01-01T00:01Z'
826 assert_response :success, "can't get changesets by time-range"
827 assert_changesets [1,4,5,6]
829 get :query, :open => 'true'
830 assert_response :success, "can't get changesets by open-ness"
831 assert_changesets [1,2,4]
835 # check that errors are returned if garbage is inserted
837 def test_query_invalid
842 get :query, :bbox => bbox
843 assert_response :bad_request, "'#{bbox}' isn't a bbox"
848 ";drop table users;",
852 get :query, :time => time
853 assert_response :bad_request, "'#{time}' isn't a valid time range"
861 get :query, :user => uid
862 assert_response :bad_request, "'#{uid}' isn't a valid user ID"
867 # check updating tags on a changeset
868 def test_changeset_update
869 changeset = changesets(:normal_user_first_change)
870 new_changeset = changeset.to_xml
871 new_tag = XML::Node.new "tag"
872 new_tag['k'] = "tagtesting"
873 new_tag['v'] = "valuetesting"
874 new_changeset.find("//osm/changeset").first << new_tag
875 content new_changeset
877 # try without any authorization
878 put :update, :id => changeset.id
879 assert_response :unauthorized
881 # try with the wrong authorization
882 basic_authorization "test@example.com", "test"
883 put :update, :id => changeset.id
884 assert_response :conflict
886 # now this should work...
887 basic_authorization "test@openstreetmap.org", "test"
888 put :update, :id => changeset.id
889 assert_response :success
891 assert_select "osm>changeset[id=#{changeset.id}]", 1
892 assert_select "osm>changeset>tag", 2
893 assert_select "osm>changeset>tag[k=tagtesting][v=valuetesting]", 1
897 # check that a user different from the one who opened the changeset
899 def test_changeset_update_invalid
900 basic_authorization "test@example.com", "test"
902 changeset = changesets(:normal_user_first_change)
903 new_changeset = changeset.to_xml
904 new_tag = XML::Node.new "tag"
905 new_tag['k'] = "testing"
906 new_tag['v'] = "testing"
907 new_changeset.find("//osm/changeset").first << new_tag
909 content new_changeset
910 put :update, :id => changeset.id
911 assert_response :conflict
915 # check that a changeset can contain a certain max number of changes.
916 def test_changeset_limits
917 basic_authorization "test@openstreetmap.org", "test"
919 # open a new changeset
920 content "<osm><changeset/></osm>"
922 assert_response :success, "can't create a new changeset"
923 cs_id = @response.body.to_i
925 # start the counter just short of where the changeset should finish.
927 # alter the database to set the counter on the changeset directly,
928 # otherwise it takes about 6 minutes to fill all of them.
929 changeset = Changeset.find(cs_id)
930 changeset.num_changes = Changeset::MAX_ELEMENTS - offset
933 with_controller(NodeController.new) do
935 content "<osm><node changeset='#{cs_id}' lat='0.0' lon='0.0'/></osm>"
937 assert_response :success, "can't create a new node"
938 node_id = @response.body.to_i
940 get :read, :id => node_id
941 assert_response :success, "can't read back new node"
942 node_doc = XML::Parser.string(@response.body).parse
943 node_xml = node_doc.find("//osm/node").first
945 # loop until we fill the changeset with nodes
947 node_xml['lat'] = rand.to_s
948 node_xml['lon'] = rand.to_s
949 node_xml['version'] = (i+1).to_s
952 put :update, :id => node_id
953 assert_response :success, "attempt #{i} should have succeeded"
956 # trying again should fail
957 node_xml['lat'] = rand.to_s
958 node_xml['lon'] = rand.to_s
959 node_xml['version'] = offset.to_s
962 put :update, :id => node_id
963 assert_response :conflict, "final attempt should have failed"
966 changeset = Changeset.find(cs_id)
967 assert_equal Changeset::MAX_ELEMENTS + 1, changeset.num_changes
969 # check that the changeset is now closed as well
970 assert(!changeset.is_open?,
971 "changeset should have been auto-closed by exceeding " +
975 #------------------------------------------------------------
977 #------------------------------------------------------------
980 # boilerplate for checking that certain changesets exist in the
982 def assert_changesets(ids)
983 assert_select "osm>changeset", ids.size
985 assert_select "osm>changeset[id=#{id}]", 1
990 # call the include method and assert properties of the bbox
991 def check_after_include(changeset_id, lon, lat, bbox)
992 content "<osm><node lon='#{lon}' lat='#{lat}'/></osm>"
993 post :expand_bbox, :id => changeset_id
994 assert_response :success, "Setting include of changeset failed: #{@response.body}"
996 # check exactly one changeset
997 assert_select "osm>changeset", 1
998 assert_select "osm>changeset[id=#{changeset_id}]", 1
1001 doc = XML::Parser.string(@response.body).parse
1002 changeset = doc.find("//osm/changeset").first
1003 assert_equal bbox[0], changeset['min_lon'].to_f, "min lon"
1004 assert_equal bbox[1], changeset['min_lat'].to_f, "min lat"
1005 assert_equal bbox[2], changeset['max_lon'].to_f, "max lon"
1006 assert_equal bbox[3], changeset['max_lat'].to_f, "max lat"
1010 # update the changeset_id of a way element
1011 def update_changeset(xml, changeset_id)
1012 xml_attr_rewrite(xml, 'changeset', changeset_id)
1016 # update an attribute in a way element
1017 def xml_attr_rewrite(xml, name, value)
1018 xml.find("//osm/way").first[name] = value.to_s