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 # when we make some simple changes we get the same changes back from the
536 def test_diff_download_simple
537 basic_authorization(users(:normal_user).email, "test")
539 # create a temporary changeset
540 content "<osm><changeset>" +
541 "<tag k='created_by' v='osm test suite checking changesets'/>" +
544 assert_response :success
545 changeset_id = @response.body.to_i
551 <node id='1' lon='0' lat='0' changeset='#{changeset_id}' version='1'/>
552 <node id='1' lon='1' lat='0' changeset='#{changeset_id}' version='2'/>
553 <node id='1' lon='1' lat='1' changeset='#{changeset_id}' version='3'/>
554 <node id='1' lon='1' lat='2' changeset='#{changeset_id}' version='4'/>
555 <node id='1' lon='2' lat='2' changeset='#{changeset_id}' version='5'/>
556 <node id='1' lon='3' lat='2' changeset='#{changeset_id}' version='6'/>
557 <node id='1' lon='3' lat='3' changeset='#{changeset_id}' version='7'/>
558 <node id='1' lon='9' lat='9' changeset='#{changeset_id}' version='8'/>
565 post :upload, :id => changeset_id
566 assert_response :success,
567 "can't upload multiple versions of an element in a diff: #{@response.body}"
569 get :download, :id => changeset_id
570 assert_response :success
572 assert_select "osmChange", 1
573 assert_select "osmChange>modify", 8
574 assert_select "osmChange>modify>node", 8
578 # culled this from josm to ensure that nothing in the way that josm
579 # is formatting the request is causing it to fail.
581 # NOTE: the error turned out to be something else completely!
583 basic_authorization(users(:normal_user).email, "test")
585 # create a temporary changeset
586 content "<osm><changeset>" +
587 "<tag k='created_by' v='osm test suite checking changesets'/>" +
590 assert_response :success
591 changeset_id = @response.body.to_i
594 <osmChange version="0.6" generator="JOSM">
595 <create version="0.6" generator="JOSM">
596 <node id='-1' visible='true' changeset='#{changeset_id}' lat='51.49619982187321' lon='-0.18722061869438314' />
597 <node id='-2' visible='true' changeset='#{changeset_id}' lat='51.496359883909605' lon='-0.18653093576241928' />
598 <node id='-3' visible='true' changeset='#{changeset_id}' lat='51.49598132358285' lon='-0.18719613290981638' />
599 <node id='-4' visible='true' changeset='#{changeset_id}' lat='51.4961591711078' lon='-0.18629015888084607' />
600 <node id='-5' visible='true' changeset='#{changeset_id}' lat='51.49582126021711' lon='-0.18708186591517145' />
601 <node id='-6' visible='true' changeset='#{changeset_id}' lat='51.49591018437858' lon='-0.1861432441734455' />
602 <node id='-7' visible='true' changeset='#{changeset_id}' lat='51.49560784152179' lon='-0.18694719410005425' />
603 <node id='-8' visible='true' changeset='#{changeset_id}' lat='51.49567389979617' lon='-0.1860289771788006' />
604 <node id='-9' visible='true' changeset='#{changeset_id}' lat='51.49543761398892' lon='-0.186820684213126' />
605 <way id='-10' action='modiy' visible='true' changeset='#{changeset_id}'>
615 <tag k='highway' v='residential' />
616 <tag k='name' v='Foobar Street' />
624 post :upload, :id => changeset_id
625 assert_response :success,
626 "can't upload a diff from JOSM: #{@response.body}"
628 get :download, :id => changeset_id
629 assert_response :success
631 assert_select "osmChange", 1
632 assert_select "osmChange>create>node", 9
633 assert_select "osmChange>create>way", 1
634 assert_select "osmChange>create>way>nd", 9
635 assert_select "osmChange>create>way>tag", 2
639 # when we make some complex changes we get the same changes back from the
641 def test_diff_download_complex
642 basic_authorization(users(:normal_user).email, "test")
644 # create a temporary changeset
645 content "<osm><changeset>" +
646 "<tag k='created_by' v='osm test suite checking changesets'/>" +
649 assert_response :success
650 changeset_id = @response.body.to_i
656 <node id='1' lon='0' lat='0' changeset='#{changeset_id}' version='1'/>
659 <node id='-1' lon='9' lat='9' changeset='#{changeset_id}' version='0'/>
660 <node id='-2' lon='8' lat='9' changeset='#{changeset_id}' version='0'/>
661 <node id='-3' lon='7' lat='9' changeset='#{changeset_id}' version='0'/>
664 <node id='3' lon='20' lat='15' changeset='#{changeset_id}' version='1'/>
665 <way id='1' changeset='#{changeset_id}' version='1'>
677 post :upload, :id => changeset_id
678 assert_response :success,
679 "can't upload multiple versions of an element in a diff: #{@response.body}"
681 get :download, :id => changeset_id
682 assert_response :success
684 assert_select "osmChange", 1
685 assert_select "osmChange>create", 3
686 assert_select "osmChange>delete", 1
687 assert_select "osmChange>modify", 2
688 assert_select "osmChange>create>node", 3
689 assert_select "osmChange>delete>node", 1
690 assert_select "osmChange>modify>node", 1
691 assert_select "osmChange>modify>way", 1
695 # check that the bounding box of a changeset gets updated correctly
696 def test_changeset_bbox
697 basic_authorization "test@openstreetmap.org", "test"
699 # create a new changeset
700 content "<osm><changeset/></osm>"
702 assert_response :success, "Creating of changeset failed."
703 changeset_id = @response.body.to_i
705 # add a single node to it
706 with_controller(NodeController.new) do
707 content "<osm><node lon='1' lat='2' changeset='#{changeset_id}'/></osm>"
709 assert_response :success, "Couldn't create node."
712 # get the bounding box back from the changeset
713 get :read, :id => changeset_id
714 assert_response :success, "Couldn't read back changeset."
715 assert_select "osm>changeset[min_lon=1.0]", 1
716 assert_select "osm>changeset[max_lon=1.0]", 1
717 assert_select "osm>changeset[min_lat=2.0]", 1
718 assert_select "osm>changeset[max_lat=2.0]", 1
720 # add another node to it
721 with_controller(NodeController.new) do
722 content "<osm><node lon='2' lat='1' changeset='#{changeset_id}'/></osm>"
724 assert_response :success, "Couldn't create second node."
727 # get the bounding box back from the changeset
728 get :read, :id => changeset_id
729 assert_response :success, "Couldn't read back changeset for the second time."
730 assert_select "osm>changeset[min_lon=1.0]", 1
731 assert_select "osm>changeset[max_lon=2.0]", 1
732 assert_select "osm>changeset[min_lat=1.0]", 1
733 assert_select "osm>changeset[max_lat=2.0]", 1
735 # add (delete) a way to it
736 with_controller(WayController.new) do
737 content update_changeset(current_ways(:visible_way).to_xml,
739 put :delete, :id => current_ways(:visible_way).id
740 assert_response :success, "Couldn't delete a way."
743 # get the bounding box back from the changeset
744 get :read, :id => changeset_id
745 assert_response :success, "Couldn't read back changeset for the third time."
746 assert_select "osm>changeset[min_lon=1.0]", 1
747 assert_select "osm>changeset[max_lon=3.1]", 1
748 assert_select "osm>changeset[min_lat=1.0]", 1
749 assert_select "osm>changeset[max_lat=3.1]", 1
753 # test that the changeset :include method works as it should
754 def test_changeset_include
755 basic_authorization "test@openstreetmap.org", "test"
757 # create a new changeset
758 content "<osm><changeset/></osm>"
760 assert_response :success, "Creating of changeset failed."
761 changeset_id = @response.body.to_i
763 # NOTE: the include method doesn't over-expand, like inserting
764 # a real method does. this is because we expect the client to
765 # know what it is doing!
766 check_after_include(changeset_id, 1, 1, [ 1, 1, 1, 1])
767 check_after_include(changeset_id, 3, 3, [ 1, 1, 3, 3])
768 check_after_include(changeset_id, 4, 2, [ 1, 1, 4, 3])
769 check_after_include(changeset_id, 2, 2, [ 1, 1, 4, 3])
770 check_after_include(changeset_id, -1, -1, [-1, -1, 4, 3])
771 check_after_include(changeset_id, -2, 5, [-2, -1, 4, 5])
775 # test the query functionality of changesets
777 get :query, :bbox => "-10,-10, 10, 10"
778 assert_response :success, "can't get changesets in bbox"
779 assert_changesets [1,4,6]
781 get :query, :bbox => "4.5,4.5,4.6,4.6"
782 assert_response :success, "can't get changesets in bbox"
783 assert_changesets [1]
785 # can't get changesets of user 1 without authenticating
786 get :query, :user => users(:normal_user).id
787 assert_response :not_found, "shouldn't be able to get changesets by non-public user"
789 # but this should work
790 basic_authorization "test@openstreetmap.org", "test"
791 get :query, :user => users(:normal_user).id
792 assert_response :success, "can't get changesets by user"
793 assert_changesets [1,3,4,6]
795 get :query, :user => users(:normal_user).id, :open => true
796 assert_response :success, "can't get changesets by user and open"
797 assert_changesets [1,4]
799 get :query, :time => '2007-12-31'
800 assert_response :success, "can't get changesets by time-since"
801 assert_changesets [1,2,4,5,6]
803 get :query, :time => '2008-01-01T12:34Z'
804 assert_response :success, "can't get changesets by time-since with hour"
805 assert_changesets [1,2,4,5,6]
807 get :query, :time => '2007-12-31T23:59Z,2008-01-01T00:01Z'
808 assert_response :success, "can't get changesets by time-range"
809 assert_changesets [1,4,5,6]
811 get :query, :open => 'true'
812 assert_response :success, "can't get changesets by open-ness"
813 assert_changesets [1,2,4]
817 # check that errors are returned if garbage is inserted
819 def test_query_invalid
824 get :query, :bbox => bbox
825 assert_response :bad_request, "'#{bbox}' isn't a bbox"
830 ";drop table users;",
834 get :query, :time => time
835 assert_response :bad_request, "'#{time}' isn't a valid time range"
843 get :query, :user => uid
844 assert_response :bad_request, "'#{uid}' isn't a valid user ID"
849 # check updating tags on a changeset
850 def test_changeset_update
851 changeset = changesets(:normal_user_first_change)
852 new_changeset = changeset.to_xml
853 new_tag = XML::Node.new "tag"
854 new_tag['k'] = "tagtesting"
855 new_tag['v'] = "valuetesting"
856 new_changeset.find("//osm/changeset").first << new_tag
857 content new_changeset
859 # try without any authorization
860 put :update, :id => changeset.id
861 assert_response :unauthorized
863 # try with the wrong authorization
864 basic_authorization "test@example.com", "test"
865 put :update, :id => changeset.id
866 assert_response :conflict
868 # now this should work...
869 basic_authorization "test@openstreetmap.org", "test"
870 put :update, :id => changeset.id
871 assert_response :success
873 assert_select "osm>changeset[id=#{changeset.id}]", 1
874 assert_select "osm>changeset>tag", 2
875 assert_select "osm>changeset>tag[k=tagtesting][v=valuetesting]", 1
879 # check that a user different from the one who opened the changeset
881 def test_changeset_update_invalid
882 basic_authorization "test@example.com", "test"
884 changeset = changesets(:normal_user_first_change)
885 new_changeset = changeset.to_xml
886 new_tag = XML::Node.new "tag"
887 new_tag['k'] = "testing"
888 new_tag['v'] = "testing"
889 new_changeset.find("//osm/changeset").first << new_tag
891 content new_changeset
892 put :update, :id => changeset.id
893 assert_response :conflict
897 # check that a changeset can contain a certain max number of changes.
898 def test_changeset_limits
899 basic_authorization "test@openstreetmap.org", "test"
901 # open a new changeset
902 content "<osm><changeset/></osm>"
904 assert_response :success, "can't create a new changeset"
905 cs_id = @response.body.to_i
907 # start the counter just short of where the changeset should finish.
909 # alter the database to set the counter on the changeset directly,
910 # otherwise it takes about 6 minutes to fill all of them.
911 changeset = Changeset.find(cs_id)
912 changeset.num_changes = Changeset::MAX_ELEMENTS - offset
915 with_controller(NodeController.new) do
917 content "<osm><node changeset='#{cs_id}' lat='0.0' lon='0.0'/></osm>"
919 assert_response :success, "can't create a new node"
920 node_id = @response.body.to_i
922 get :read, :id => node_id
923 assert_response :success, "can't read back new node"
924 node_doc = XML::Parser.string(@response.body).parse
925 node_xml = node_doc.find("//osm/node").first
927 # loop until we fill the changeset with nodes
929 node_xml['lat'] = rand.to_s
930 node_xml['lon'] = rand.to_s
931 node_xml['version'] = (i+1).to_s
934 put :update, :id => node_id
935 assert_response :success, "attempt #{i} should have succeeded"
938 # trying again should fail
939 node_xml['lat'] = rand.to_s
940 node_xml['lon'] = rand.to_s
941 node_xml['version'] = offset.to_s
944 put :update, :id => node_id
945 assert_response :conflict, "final attempt should have failed"
948 changeset = Changeset.find(cs_id)
949 assert_equal Changeset::MAX_ELEMENTS + 1, changeset.num_changes
951 # check that the changeset is now closed as well
952 assert(!changeset.is_open?,
953 "changeset should have been auto-closed by exceeding " +
957 #------------------------------------------------------------
959 #------------------------------------------------------------
962 # boilerplate for checking that certain changesets exist in the
964 def assert_changesets(ids)
965 assert_select "osm>changeset", ids.size
967 assert_select "osm>changeset[id=#{id}]", 1
972 # call the include method and assert properties of the bbox
973 def check_after_include(changeset_id, lon, lat, bbox)
974 content "<osm><node lon='#{lon}' lat='#{lat}'/></osm>"
975 post :expand_bbox, :id => changeset_id
976 assert_response :success, "Setting include of changeset failed: #{@response.body}"
978 # check exactly one changeset
979 assert_select "osm>changeset", 1
980 assert_select "osm>changeset[id=#{changeset_id}]", 1
983 doc = XML::Parser.string(@response.body).parse
984 changeset = doc.find("//osm/changeset").first
985 assert_equal bbox[0], changeset['min_lon'].to_f, "min lon"
986 assert_equal bbox[1], changeset['min_lat'].to_f, "min lat"
987 assert_equal bbox[2], changeset['max_lon'].to_f, "max lon"
988 assert_equal bbox[3], changeset['max_lat'].to_f, "max lat"
992 # update the changeset_id of a way element
993 def update_changeset(xml, changeset_id)
994 xml_attr_rewrite(xml, 'changeset', changeset_id)
998 # update an attribute in a way element
999 def xml_attr_rewrite(xml, name, value)
1000 xml.find("//osm/way").first[name] = value.to_s