2 require "changeset_controller"
4 class ChangesetControllerTest < ActionController::TestCase
6 fixtures :changesets_subscribers
9 # test all routes which lead to this controller
12 { :path => "/api/0.6/changeset/create", :method => :put },
13 { :controller => "changeset", :action => "create" }
16 { :path => "/api/0.6/changeset/1/upload", :method => :post },
17 { :controller => "changeset", :action => "upload", :id => "1" }
20 { :path => "/api/0.6/changeset/1/download", :method => :get },
21 { :controller => "changeset", :action => "download", :id => "1" }
24 { :path => "/api/0.6/changeset/1/expand_bbox", :method => :post },
25 { :controller => "changeset", :action => "expand_bbox", :id => "1" }
28 { :path => "/api/0.6/changeset/1", :method => :get },
29 { :controller => "changeset", :action => "read", :id => "1" }
32 { :path => "/api/0.6/changeset/1/subscribe", :method => :post },
33 { :controller => "changeset", :action => "subscribe", :id => "1" }
36 { :path => "/api/0.6/changeset/1/unsubscribe", :method => :post },
37 { :controller => "changeset", :action => "unsubscribe", :id => "1" }
40 { :path => "/api/0.6/changeset/1", :method => :put },
41 { :controller => "changeset", :action => "update", :id => "1" }
44 { :path => "/api/0.6/changeset/1/close", :method => :put },
45 { :controller => "changeset", :action => "close", :id => "1" }
48 { :path => "/api/0.6/changeset/1/comment", :method => :post },
49 { :controller => "changeset", :action => "comment", :id => "1" }
52 { :path => "/api/0.6/changeset/comment/1/hide", :method => :post },
53 { :controller => "changeset", :action => "hide_comment", :id => "1" }
56 { :path => "/api/0.6/changeset/comment/1/unhide", :method => :post },
57 { :controller => "changeset", :action => "unhide_comment", :id => "1" }
60 { :path => "/api/0.6/changesets", :method => :get },
61 { :controller => "changeset", :action => "query" }
64 { :path => "/changeset/1/comments/feed", :method => :get },
65 { :controller => "changeset", :action => "comments_feed", :id => "1", :format => "rss" }
68 { :path => "/user/name/history", :method => :get },
69 { :controller => "changeset", :action => "list", :display_name => "name" }
72 { :path => "/user/name/history/feed", :method => :get },
73 { :controller => "changeset", :action => "feed", :display_name => "name", :format => :atom }
76 { :path => "/history/friends", :method => :get },
77 { :controller => "changeset", :action => "list", :friends => true, :format => :html }
80 { :path => "/history/nearby", :method => :get },
81 { :controller => "changeset", :action => "list", :nearby => true, :format => :html }
84 { :path => "/history", :method => :get },
85 { :controller => "changeset", :action => "list" }
88 { :path => "/history/feed", :method => :get },
89 { :controller => "changeset", :action => "feed", :format => :atom }
92 { :path => "/history/comments/feed", :method => :get },
93 { :controller => "changeset", :action => "comments_feed", :format => "rss" }
97 # -----------------------
98 # Test simple changeset creation
99 # -----------------------
102 basic_authorization users(:normal_user).email, "test"
103 # Create the first user's changeset
104 content "<osm><changeset>" +
105 "<tag k='created_by' v='osm test suite checking changesets'/>" +
108 assert_require_public_data
110 basic_authorization users(:public_user).email, "test"
111 # Create the first user's changeset
112 content "<osm><changeset>" +
113 "<tag k='created_by' v='osm test suite checking changesets'/>" +
117 assert_response :success, "Creation of changeset did not return sucess status"
118 newid = @response.body.to_i
120 # check end time, should be an hour ahead of creation time
121 cs = Changeset.find(newid)
122 duration = cs.closed_at - cs.created_at
123 # the difference can either be a rational, or a floating point number
124 # of seconds, depending on the code path taken :-(
125 if duration.class == Rational
126 assert_equal Rational(1, 24), duration, "initial idle timeout should be an hour (#{cs.created_at} -> #{cs.closed_at})"
128 # must be number of seconds...
129 assert_equal 3600, duration.round, "initial idle timeout should be an hour (#{cs.created_at} -> #{cs.closed_at})"
132 # checks if uploader was subscribed
133 assert_equal 1, cs.subscribers.length
136 def test_create_invalid
137 basic_authorization users(:normal_user).email, "test"
138 content "<osm><changeset></osm>"
140 assert_require_public_data
142 ## Try the public user
143 basic_authorization users(:public_user).email, "test"
144 content "<osm><changeset></osm>"
146 assert_response :bad_request, "creating a invalid changeset should fail"
149 def test_create_invalid_no_content
150 ## First check with no auth
152 assert_response :unauthorized, "shouldn't be able to create a changeset with no auth"
154 ## Now try to with the non-public user
155 basic_authorization users(:normal_user).email, "test"
157 assert_require_public_data
159 ## Try the inactive user
160 basic_authorization users(:inactive_user).email, "test"
164 ## Now try to use the public user
165 basic_authorization users(:public_user).email, "test"
167 assert_response :bad_request, "creating a changeset with no content should fail"
170 def test_create_wrong_method
171 basic_authorization users(:public_user).email, "test"
173 assert_response :method_not_allowed
175 assert_response :method_not_allowed
179 # check that the changeset can be read and returns the correct
180 # document structure.
182 changeset_id = changesets(:normal_user_first_change).id
184 get :read, :id => changeset_id
185 assert_response :success, "cannot get first changeset"
187 assert_select "osm[version='#{API_VERSION}'][generator='OpenStreetMap server']", 1
188 assert_select "osm>changeset[id='#{changeset_id}']", 1
189 assert_select "osm>changeset>discussion", 0
191 get :read, :id => changeset_id, :include_discussion => true
192 assert_response :success, "cannot get first changeset with comments"
194 assert_select "osm[version='#{API_VERSION}'][generator='OpenStreetMap server']", 1
195 assert_select "osm>changeset[id='#{changeset_id}']", 1
196 assert_select "osm>changeset>discussion", 1
197 assert_select "osm>changeset>discussion>comment", 0
199 changeset_id = changesets(:normal_user_closed_change).id
200 create_list(:changeset_comment, 3, :changeset_id => changeset_id)
202 get :read, :id => changeset_id, :include_discussion => true
203 assert_response :success, "cannot get closed changeset with comments"
205 assert_select "osm[version='#{API_VERSION}'][generator='OpenStreetMap server']", 1
206 assert_select "osm>changeset[id='#{changeset_id}']", 1
207 assert_select "osm>changeset>discussion", 1
208 assert_select "osm>changeset>discussion>comment", 3
212 # check that a changeset that doesn't exist returns an appropriate message
213 def test_read_not_found
214 [0, -32, 233455644, "afg", "213"].each do |id|
217 assert_response :not_found, "should get a not found"
218 rescue ActionController::UrlGenerationError => ex
219 assert_match /No route matches/, ex.to_s
225 # test that the user who opened a change can close it
227 ## Try without authentication
228 put :close, :id => changesets(:public_user_first_change).id
229 assert_response :unauthorized
231 ## Try using the non-public user
232 basic_authorization users(:normal_user).email, "test"
233 put :close, :id => changesets(:normal_user_first_change).id
234 assert_require_public_data
236 ## The try with the public user
237 basic_authorization users(:public_user).email, "test"
239 cs_id = changesets(:public_user_first_change).id
240 put :close, :id => cs_id
241 assert_response :success
243 # test that it really is closed now
244 cs = Changeset.find(cs_id)
246 "changeset should be closed now (#{cs.closed_at} > #{Time.now.getutc}.")
250 # test that a different user can't close another user's changeset
251 def test_close_invalid
252 basic_authorization users(:public_user).email, "test"
254 put :close, :id => changesets(:normal_user_first_change).id
255 assert_response :conflict
256 assert_equal "The user doesn't own that changeset", @response.body
260 # test that you can't close using another method
261 def test_close_method_invalid
262 basic_authorization users(:public_user).email, "test"
264 cs_id = changesets(:public_user_first_change).id
265 get :close, :id => cs_id
266 assert_response :method_not_allowed
268 post :close, :id => cs_id
269 assert_response :method_not_allowed
273 # check that you can't close a changeset that isn't found
274 def test_close_not_found
275 cs_ids = [0, -132, "123"]
277 # First try to do it with no auth
280 put :close, :id => id
281 assert_response :unauthorized, "Shouldn't be able close the non-existant changeset #{id}, when not authorized"
282 rescue ActionController::UrlGenerationError => ex
283 assert_match /No route matches/, ex.to_s
288 basic_authorization users(:public_user).email, "test"
291 put :close, :id => id
292 assert_response :not_found, "The changeset #{id} doesn't exist, so can't be closed"
293 rescue ActionController::UrlGenerationError => ex
294 assert_match /No route matches/, ex.to_s
300 # upload something simple, but valid and check that it can
302 # Also try without auth and another user.
303 def test_upload_simple_valid
305 changeset_id = changesets(:public_user_first_change).id
307 # simple diff to change a node, way and relation by removing
312 <node id='1' lon='0' lat='0' changeset='#{changeset_id}' version='1'/>
313 <way id='1' changeset='#{changeset_id}' version='1'>
318 <relation id='1' changeset='#{changeset_id}' version='1'>
319 <member type='way' role='some' ref='3'/>
320 <member type='node' role='some' ref='5'/>
321 <member type='relation' role='some' ref='3'/>
329 post :upload, :id => changeset_id
330 assert_response :unauthorized,
331 "shouldnn't be able to upload a simple valid diff to changeset: #{@response.body}"
333 ## Now try with a private user
334 basic_authorization users(:normal_user).email, "test"
335 changeset_id = changesets(:normal_user_first_change).id
337 # simple diff to change a node, way and relation by removing
342 <node id='1' lon='0' lat='0' changeset='#{changeset_id}' version='1'/>
343 <way id='1' changeset='#{changeset_id}' version='1'>
348 <relation id='1' changeset='#{changeset_id}' version='1'>
349 <member type='way' role='some' ref='3'/>
350 <member type='node' role='some' ref='5'/>
351 <member type='relation' role='some' ref='3'/>
359 post :upload, :id => changeset_id
360 assert_response :forbidden,
361 "can't upload a simple valid diff to changeset: #{@response.body}"
363 ## Now try with the public user
364 basic_authorization users(:public_user).email, "test"
365 changeset_id = changesets(:public_user_first_change).id
367 # simple diff to change a node, way and relation by removing
372 <node id='1' lon='0' lat='0' changeset='#{changeset_id}' version='1'/>
373 <way id='1' changeset='#{changeset_id}' version='1'>
378 <relation id='1' changeset='#{changeset_id}' version='1'>
379 <member type='way' role='some' ref='3'/>
380 <member type='node' role='some' ref='5'/>
381 <member type='relation' role='some' ref='3'/>
389 post :upload, :id => changeset_id
390 assert_response :success,
391 "can't upload a simple valid diff to changeset: #{@response.body}"
393 # check that the changes made it into the database
394 assert_equal 0, Node.find(1).tags.size, "node 1 should now have no tags"
395 assert_equal 0, Way.find(1).tags.size, "way 1 should now have no tags"
396 assert_equal 0, Relation.find(1).tags.size, "relation 1 should now have no tags"
400 # upload something which creates new objects using placeholders
401 def test_upload_create_valid
402 basic_authorization users(:public_user).email, "test"
403 cs_id = changesets(:public_user_first_change).id
405 # simple diff to create a node way and relation using placeholders
409 <node id='-1' lon='0' lat='0' changeset='#{cs_id}'>
410 <tag k='foo' v='bar'/>
411 <tag k='baz' v='bat'/>
413 <way id='-1' changeset='#{cs_id}'>
418 <relation id='-1' changeset='#{cs_id}'>
419 <member type='way' role='some' ref='3'/>
420 <member type='node' role='some' ref='5'/>
421 <member type='relation' role='some' ref='3'/>
429 post :upload, :id => cs_id
430 assert_response :success,
431 "can't upload a simple valid creation to changeset: #{@response.body}"
433 # check the returned payload
434 assert_select "diffResult[version='#{API_VERSION}'][generator='OpenStreetMap server']", 1
435 assert_select "diffResult>node", 1
436 assert_select "diffResult>way", 1
437 assert_select "diffResult>relation", 1
439 # inspect the response to find out what the new element IDs are
440 doc = XML::Parser.string(@response.body).parse
441 new_node_id = doc.find("//diffResult/node").first["new_id"].to_i
442 new_way_id = doc.find("//diffResult/way").first["new_id"].to_i
443 new_rel_id = doc.find("//diffResult/relation").first["new_id"].to_i
445 # check the old IDs are all present and negative one
446 assert_equal -1, doc.find("//diffResult/node").first["old_id"].to_i
447 assert_equal -1, doc.find("//diffResult/way").first["old_id"].to_i
448 assert_equal -1, doc.find("//diffResult/relation").first["old_id"].to_i
450 # check the versions are present and equal one
451 assert_equal 1, doc.find("//diffResult/node").first["new_version"].to_i
452 assert_equal 1, doc.find("//diffResult/way").first["new_version"].to_i
453 assert_equal 1, doc.find("//diffResult/relation").first["new_version"].to_i
455 # check that the changes made it into the database
456 assert_equal 2, Node.find(new_node_id).tags.size, "new node should have two tags"
457 assert_equal 0, Way.find(new_way_id).tags.size, "new way should have no tags"
458 assert_equal 0, Relation.find(new_rel_id).tags.size, "new relation should have no tags"
462 # test a complex delete where we delete elements which rely on eachother
463 # in the same transaction.
464 def test_upload_delete
465 basic_authorization users(:public_user).display_name, "test"
467 diff = XML::Document.new
468 diff.root = XML::Node.new "osmChange"
469 delete = XML::Node.new "delete"
471 delete << current_relations(:visible_relation).to_xml_node
472 delete << current_relations(:used_relation).to_xml_node
473 delete << current_ways(:used_way).to_xml_node
474 delete << current_nodes(:node_used_by_relationship).to_xml_node
476 # update the changeset to one that this user owns
477 changeset_id = changesets(:public_user_first_change).id
478 %w(node way relation).each do |type|
479 delete.find("//osmChange/delete/#{type}").each do |n|
480 n["changeset"] = changeset_id.to_s
486 post :upload, :id => changeset_id
487 assert_response :success,
488 "can't upload a deletion diff to changeset: #{@response.body}"
490 # check the response is well-formed
491 assert_select "diffResult>node", 1
492 assert_select "diffResult>way", 1
493 assert_select "diffResult>relation", 2
495 # check that everything was deleted
496 assert_equal false, Node.find(current_nodes(:node_used_by_relationship).id).visible
497 assert_equal false, Way.find(current_ways(:used_way).id).visible
498 assert_equal false, Relation.find(current_relations(:visible_relation).id).visible
499 assert_equal false, Relation.find(current_relations(:used_relation).id).visible
503 # test uploading a delete with no lat/lon, as they are optional in
504 # the osmChange spec.
505 def test_upload_nolatlon_delete
506 basic_authorization users(:public_user).display_name, "test"
508 node = current_nodes(:public_visible_node)
509 cs = changesets(:public_user_first_change)
510 diff = "<osmChange><delete><node id='#{node.id}' version='#{node.version}' changeset='#{cs.id}'/></delete></osmChange>"
514 post :upload, :id => cs.id
515 assert_response :success,
516 "can't upload a deletion diff to changeset: #{@response.body}"
518 # check the response is well-formed
519 assert_select "diffResult>node", 1
521 # check that everything was deleted
522 assert_equal false, Node.find(node.id).visible
525 def test_repeated_changeset_create
527 basic_authorization users(:public_user).email, "test"
529 # create a temporary changeset
530 content "<osm><changeset>" +
531 "<tag k='created_by' v='osm test suite checking changesets'/>" +
533 assert_difference "Changeset.count", 1 do
536 assert_response :success
540 def test_upload_large_changeset
541 basic_authorization users(:public_user).email, "test"
544 content "<osm><changeset/></osm>"
546 assert_response :success, "Should be able to create a changeset: #{@response.body}"
547 changeset_id = @response.body.to_i
549 # upload some widely-spaced nodes, spiralling positive and negative to cause
550 # largest bbox over-expansion possible.
554 <node id='-1' lon='-20' lat='-10' changeset='#{changeset_id}'/>
555 <node id='-10' lon='20' lat='10' changeset='#{changeset_id}'/>
556 <node id='-2' lon='-40' lat='-20' changeset='#{changeset_id}'/>
557 <node id='-11' lon='40' lat='20' changeset='#{changeset_id}'/>
558 <node id='-3' lon='-60' lat='-30' changeset='#{changeset_id}'/>
559 <node id='-12' lon='60' lat='30' changeset='#{changeset_id}'/>
560 <node id='-4' lon='-80' lat='-40' changeset='#{changeset_id}'/>
561 <node id='-13' lon='80' lat='40' changeset='#{changeset_id}'/>
562 <node id='-5' lon='-100' lat='-50' changeset='#{changeset_id}'/>
563 <node id='-14' lon='100' lat='50' changeset='#{changeset_id}'/>
564 <node id='-6' lon='-120' lat='-60' changeset='#{changeset_id}'/>
565 <node id='-15' lon='120' lat='60' changeset='#{changeset_id}'/>
566 <node id='-7' lon='-140' lat='-70' changeset='#{changeset_id}'/>
567 <node id='-16' lon='140' lat='70' changeset='#{changeset_id}'/>
568 <node id='-8' lon='-160' lat='-80' changeset='#{changeset_id}'/>
569 <node id='-17' lon='160' lat='80' changeset='#{changeset_id}'/>
570 <node id='-9' lon='-179.9' lat='-89.9' changeset='#{changeset_id}'/>
571 <node id='-18' lon='179.9' lat='89.9' changeset='#{changeset_id}'/>
576 # upload it, which used to cause an error like "PGError: ERROR:
577 # integer out of range" (bug #2152). but shouldn't any more.
579 post :upload, :id => changeset_id
580 assert_response :success,
581 "can't upload a spatially-large diff to changeset: #{@response.body}"
583 # check that the changeset bbox is within bounds
584 cs = Changeset.find(changeset_id)
585 assert cs.min_lon >= -180 * GeoRecord::SCALE, "Minimum longitude (#{cs.min_lon / GeoRecord::SCALE}) should be >= -180 to be valid."
586 assert cs.max_lon <= 180 * GeoRecord::SCALE, "Maximum longitude (#{cs.max_lon / GeoRecord::SCALE}) should be <= 180 to be valid."
587 assert cs.min_lat >= -90 * GeoRecord::SCALE, "Minimum latitude (#{cs.min_lat / GeoRecord::SCALE}) should be >= -90 to be valid."
588 assert cs.max_lat >= 90 * GeoRecord::SCALE, "Maximum latitude (#{cs.max_lat / GeoRecord::SCALE}) should be <= 90 to be valid."
592 # test that deleting stuff in a transaction doesn't bypass the checks
593 # to ensure that used elements are not deleted.
594 def test_upload_delete_invalid
595 basic_authorization users(:public_user).email, "test"
597 diff = XML::Document.new
598 diff.root = XML::Node.new "osmChange"
599 delete = XML::Node.new "delete"
601 delete << current_relations(:public_visible_relation).to_xml_node
602 delete << current_ways(:used_way).to_xml_node
603 delete << current_nodes(:node_used_by_relationship).to_xml_node
607 post :upload, :id => 2
608 assert_response :precondition_failed,
609 "shouldn't be able to upload a invalid deletion diff: #{@response.body}"
610 assert_equal "Precondition failed: Way 3 is still used by relations 1.", @response.body
612 # check that nothing was, in fact, deleted
613 assert_equal true, Node.find(current_nodes(:node_used_by_relationship).id).visible
614 assert_equal true, Way.find(current_ways(:used_way).id).visible
615 assert_equal true, Relation.find(current_relations(:visible_relation).id).visible
619 # test that a conditional delete of an in use object works.
620 def test_upload_delete_if_unused
621 basic_authorization users(:public_user).email, "test"
623 diff = XML::Document.new
624 diff.root = XML::Node.new "osmChange"
625 delete = XML::Node.new "delete"
627 delete["if-unused"] = ""
628 delete << current_relations(:public_used_relation).to_xml_node
629 delete << current_ways(:used_way).to_xml_node
630 delete << current_nodes(:node_used_by_relationship).to_xml_node
634 post :upload, :id => 2
635 assert_response :success,
636 "can't do a conditional delete of in use objects: #{@response.body}"
638 # check the returned payload
639 assert_select "diffResult[version='#{API_VERSION}'][generator='OpenStreetMap server']", 1
640 assert_select "diffResult>node", 1
641 assert_select "diffResult>way", 1
642 assert_select "diffResult>relation", 1
645 doc = XML::Parser.string(@response.body).parse
647 # check the old IDs are all present and what we expect
648 assert_equal current_nodes(:node_used_by_relationship).id, doc.find("//diffResult/node").first["old_id"].to_i
649 assert_equal current_ways(:used_way).id, doc.find("//diffResult/way").first["old_id"].to_i
650 assert_equal current_relations(:public_used_relation).id, doc.find("//diffResult/relation").first["old_id"].to_i
652 # check the new IDs are all present and unchanged
653 assert_equal current_nodes(:node_used_by_relationship).id, doc.find("//diffResult/node").first["new_id"].to_i
654 assert_equal current_ways(:used_way).id, doc.find("//diffResult/way").first["new_id"].to_i
655 assert_equal current_relations(:public_used_relation).id, doc.find("//diffResult/relation").first["new_id"].to_i
657 # check the new versions are all present and unchanged
658 assert_equal current_nodes(:node_used_by_relationship).version, doc.find("//diffResult/node").first["new_version"].to_i
659 assert_equal current_ways(:used_way).version, doc.find("//diffResult/way").first["new_version"].to_i
660 assert_equal current_relations(:public_used_relation).version, doc.find("//diffResult/relation").first["new_version"].to_i
662 # check that nothing was, in fact, deleted
663 assert_equal true, Node.find(current_nodes(:node_used_by_relationship).id).visible
664 assert_equal true, Way.find(current_ways(:used_way).id).visible
665 assert_equal true, Relation.find(current_relations(:public_used_relation).id).visible
669 # upload an element with a really long tag value
670 def test_upload_invalid_too_long_tag
671 basic_authorization users(:public_user).email, "test"
672 cs_id = changesets(:public_user_first_change).id
674 # simple diff to create a node way and relation using placeholders
678 <node id='-1' lon='0' lat='0' changeset='#{cs_id}'>
679 <tag k='foo' v='#{'x' * 256}'/>
687 post :upload, :id => cs_id
688 assert_response :bad_request,
689 "shoudln't be able to upload too long a tag to changeset: #{@response.body}"
693 # upload something which creates new objects and inserts them into
694 # existing containers using placeholders.
695 def test_upload_complex
696 basic_authorization users(:public_user).email, "test"
697 cs_id = changesets(:public_user_first_change).id
699 # simple diff to create a node way and relation using placeholders
703 <node id='-1' lon='0' lat='0' changeset='#{cs_id}'>
704 <tag k='foo' v='bar'/>
705 <tag k='baz' v='bat'/>
709 <way id='1' changeset='#{cs_id}' version='1'>
713 <relation id='1' changeset='#{cs_id}' version='1'>
714 <member type='way' role='some' ref='3'/>
715 <member type='node' role='some' ref='-1'/>
716 <member type='relation' role='some' ref='3'/>
724 post :upload, :id => cs_id
725 assert_response :success,
726 "can't upload a complex diff to changeset: #{@response.body}"
728 # check the returned payload
729 assert_select "diffResult[version='#{API_VERSION}'][generator='#{GENERATOR}']", 1
730 assert_select "diffResult>node", 1
731 assert_select "diffResult>way", 1
732 assert_select "diffResult>relation", 1
734 # inspect the response to find out what the new element IDs are
735 doc = XML::Parser.string(@response.body).parse
736 new_node_id = doc.find("//diffResult/node").first["new_id"].to_i
738 # check that the changes made it into the database
739 assert_equal 2, Node.find(new_node_id).tags.size, "new node should have two tags"
740 assert_equal [new_node_id, 3], Way.find(1).nds, "way nodes should match"
741 Relation.find(1).members.each do |type, id, _role|
743 assert_equal new_node_id, id, "relation should contain new node"
749 # create a diff which references several changesets, which should cause
750 # a rollback and none of the diff gets committed
751 def test_upload_invalid_changesets
752 basic_authorization users(:public_user).email, "test"
753 cs_id = changesets(:public_user_first_change).id
755 # simple diff to create a node way and relation using placeholders
759 <node id='1' lon='0' lat='0' changeset='#{cs_id}' version='1'/>
760 <way id='1' changeset='#{cs_id}' version='1'>
765 <relation id='1' changeset='#{cs_id}' version='1'>
766 <member type='way' role='some' ref='3'/>
767 <member type='node' role='some' ref='5'/>
768 <member type='relation' role='some' ref='3'/>
772 <node id='-1' lon='0' lat='0' changeset='4'>
773 <tag k='foo' v='bar'/>
774 <tag k='baz' v='bat'/>
779 # cache the objects before uploading them
780 node = current_nodes(:visible_node)
781 way = current_ways(:visible_way)
782 rel = current_relations(:visible_relation)
786 post :upload, :id => cs_id
787 assert_response :conflict,
788 "uploading a diff with multiple changsets should have failed"
790 # check that objects are unmodified
791 assert_nodes_are_equal(node, Node.find(1))
792 assert_ways_are_equal(way, Way.find(1))
793 assert_relations_are_equal(rel, Relation.find(1))
797 # upload multiple versions of the same element in the same diff.
798 def test_upload_multiple_valid
799 basic_authorization users(:public_user).email, "test"
800 cs_id = changesets(:public_user_first_change).id
802 # change the location of a node multiple times, each time referencing
803 # the last version. doesn't this depend on version numbers being
808 <node id='1' lon='0' lat='0' changeset='#{cs_id}' version='1'/>
809 <node id='1' lon='1' lat='0' changeset='#{cs_id}' version='2'/>
810 <node id='1' lon='1' lat='1' changeset='#{cs_id}' version='3'/>
811 <node id='1' lon='1' lat='2' changeset='#{cs_id}' version='4'/>
812 <node id='1' lon='2' lat='2' changeset='#{cs_id}' version='5'/>
813 <node id='1' lon='3' lat='2' changeset='#{cs_id}' version='6'/>
814 <node id='1' lon='3' lat='3' changeset='#{cs_id}' version='7'/>
815 <node id='1' lon='9' lat='9' changeset='#{cs_id}' version='8'/>
822 post :upload, :id => cs_id
823 assert_response :success,
824 "can't upload multiple versions of an element in a diff: #{@response.body}"
826 # check the response is well-formed. its counter-intuitive, but the
827 # API will return multiple elements with the same ID and different
828 # version numbers for each change we made.
829 assert_select "diffResult>node", 8
833 # upload multiple versions of the same element in the same diff, but
834 # keep the version numbers the same.
835 def test_upload_multiple_duplicate
836 basic_authorization users(:public_user).email, "test"
837 cs_id = changesets(:public_user_first_change).id
842 <node id='1' lon='0' lat='0' changeset='#{cs_id}' version='1'/>
843 <node id='1' lon='1' lat='1' changeset='#{cs_id}' version='1'/>
850 post :upload, :id => cs_id
851 assert_response :conflict,
852 "shouldn't be able to upload the same element twice in a diff: #{@response.body}"
856 # try to upload some elements without specifying the version
857 def test_upload_missing_version
858 basic_authorization users(:public_user).email, "test"
859 cs_id = changesets(:public_user_first_change).id
864 <node id='1' lon='1' lat='1' changeset='cs_id'/>
871 post :upload, :id => cs_id
872 assert_response :bad_request,
873 "shouldn't be able to upload an element without version: #{@response.body}"
877 # try to upload with commands other than create, modify, or delete
878 def test_action_upload_invalid
879 basic_authorization users(:public_user).email, "test"
880 cs_id = changesets(:public_user_first_change).id
885 <node id='1' lon='1' lat='1' changeset='#{cs_id}' />
890 post :upload, :id => cs_id
891 assert_response :bad_request, "Shouldn't be able to upload a diff with the action ping"
892 assert_equal @response.body, "Unknown action ping, choices are create, modify, delete"
896 # upload a valid changeset which has a mixture of whitespace
897 # to check a bug reported by ivansanchez (#1565).
898 def test_upload_whitespace_valid
899 basic_authorization users(:public_user).email, "test"
900 changeset_id = changesets(:public_user_first_change).id
904 <modify><node id='1' lon='0' lat='0' changeset='#{changeset_id}'
906 <node id='1' lon='1' lat='1' changeset='#{changeset_id}' version='2'><tag k='k' v='v'/></node></modify>
908 <relation id='1' changeset='#{changeset_id}' version='1'><member
909 type='way' role='some' ref='3'/><member
910 type='node' role='some' ref='5'/>
911 <member type='relation' role='some' ref='3'/>
913 </modify></osmChange>
918 post :upload, :id => changeset_id
919 assert_response :success,
920 "can't upload a valid diff with whitespace variations to changeset: #{@response.body}"
922 # check the response is well-formed
923 assert_select "diffResult>node", 2
924 assert_select "diffResult>relation", 1
926 # check that the changes made it into the database
927 assert_equal 1, Node.find(1).tags.size, "node 1 should now have one tag"
928 assert_equal 0, Relation.find(1).tags.size, "relation 1 should now have no tags"
932 # upload a valid changeset which has a mixture of whitespace
933 # to check a bug reported by ivansanchez.
934 def test_upload_reuse_placeholder_valid
935 basic_authorization users(:public_user).email, "test"
936 changeset_id = changesets(:public_user_first_change).id
941 <node id='-1' lon='0' lat='0' changeset='#{changeset_id}'>
942 <tag k="foo" v="bar"/>
946 <node id='-1' lon='1' lat='1' changeset='#{changeset_id}' version='1'/>
949 <node id='-1' lon='2' lat='2' changeset='#{changeset_id}' version='2'/>
956 post :upload, :id => changeset_id
957 assert_response :success,
958 "can't upload a valid diff with re-used placeholders to changeset: #{@response.body}"
960 # check the response is well-formed
961 assert_select "diffResult>node", 3
962 assert_select "diffResult>node[old_id='-1']", 3
966 # test what happens if a diff upload re-uses placeholder IDs in an
968 def test_upload_placeholder_invalid
969 basic_authorization users(:public_user).email, "test"
970 changeset_id = changesets(:public_user_first_change).id
975 <node id='-1' lon='0' lat='0' changeset='#{changeset_id}' version='1'/>
976 <node id='-1' lon='1' lat='1' changeset='#{changeset_id}' version='1'/>
977 <node id='-1' lon='2' lat='2' changeset='#{changeset_id}' version='2'/>
984 post :upload, :id => changeset_id
985 assert_response :bad_request,
986 "shouldn't be able to re-use placeholder IDs"
990 # test that uploading a way referencing invalid placeholders gives a
991 # proper error, not a 500.
992 def test_upload_placeholder_invalid_way
993 basic_authorization users(:public_user).email, "test"
994 changeset_id = changesets(:public_user_first_change).id
999 <node id="-1" lon="0" lat="0" changeset="#{changeset_id}" version="1"/>
1000 <node id="-2" lon="1" lat="1" changeset="#{changeset_id}" version="1"/>
1001 <node id="-3" lon="2" lat="2" changeset="#{changeset_id}" version="1"/>
1002 <way id="-1" changeset="#{changeset_id}" version="1">
1014 post :upload, :id => changeset_id
1015 assert_response :bad_request,
1016 "shouldn't be able to use invalid placeholder IDs"
1017 assert_equal "Placeholder node not found for reference -4 in way -1", @response.body
1019 # the same again, but this time use an existing way
1023 <node id="-1" lon="0" lat="0" changeset="#{changeset_id}" version="1"/>
1024 <node id="-2" lon="1" lat="1" changeset="#{changeset_id}" version="1"/>
1025 <node id="-3" lon="2" lat="2" changeset="#{changeset_id}" version="1"/>
1026 <way id="1" changeset="#{changeset_id}" version="1">
1038 post :upload, :id => changeset_id
1039 assert_response :bad_request,
1040 "shouldn't be able to use invalid placeholder IDs"
1041 assert_equal "Placeholder node not found for reference -4 in way 1", @response.body
1045 # test that uploading a relation referencing invalid placeholders gives a
1046 # proper error, not a 500.
1047 def test_upload_placeholder_invalid_relation
1048 basic_authorization users(:public_user).email, "test"
1049 changeset_id = changesets(:public_user_first_change).id
1054 <node id="-1" lon="0" lat="0" changeset="#{changeset_id}" version="1"/>
1055 <node id="-2" lon="1" lat="1" changeset="#{changeset_id}" version="1"/>
1056 <node id="-3" lon="2" lat="2" changeset="#{changeset_id}" version="1"/>
1057 <relation id="-1" changeset="#{changeset_id}" version="1">
1058 <member type="node" role="foo" ref="-1"/>
1059 <member type="node" role="foo" ref="-2"/>
1060 <member type="node" role="foo" ref="-3"/>
1061 <member type="node" role="foo" ref="-4"/>
1069 post :upload, :id => changeset_id
1070 assert_response :bad_request,
1071 "shouldn't be able to use invalid placeholder IDs"
1072 assert_equal "Placeholder Node not found for reference -4 in relation -1.", @response.body
1074 # the same again, but this time use an existing way
1078 <node id="-1" lon="0" lat="0" changeset="#{changeset_id}" version="1"/>
1079 <node id="-2" lon="1" lat="1" changeset="#{changeset_id}" version="1"/>
1080 <node id="-3" lon="2" lat="2" changeset="#{changeset_id}" version="1"/>
1081 <relation id="1" changeset="#{changeset_id}" version="1">
1082 <member type="node" role="foo" ref="-1"/>
1083 <member type="node" role="foo" ref="-2"/>
1084 <member type="node" role="foo" ref="-3"/>
1085 <member type="way" role="bar" ref="-1"/>
1093 post :upload, :id => changeset_id
1094 assert_response :bad_request,
1095 "shouldn't be able to use invalid placeholder IDs"
1096 assert_equal "Placeholder Way not found for reference -1 in relation 1.", @response.body
1100 # test what happens if a diff is uploaded containing only a node
1102 def test_upload_node_move
1103 basic_authorization users(:public_user).email, "test"
1105 content "<osm><changeset>" +
1106 "<tag k='created_by' v='osm test suite checking changesets'/>" +
1107 "</changeset></osm>"
1109 assert_response :success
1110 changeset_id = @response.body.to_i
1112 old_node = current_nodes(:visible_node)
1114 diff = XML::Document.new
1115 diff.root = XML::Node.new "osmChange"
1116 modify = XML::Node.new "modify"
1117 xml_old_node = old_node.to_xml_node
1118 xml_old_node["lat"] = 2.0.to_s
1119 xml_old_node["lon"] = 2.0.to_s
1120 xml_old_node["changeset"] = changeset_id.to_s
1121 modify << xml_old_node
1126 post :upload, :id => changeset_id
1127 assert_response :success,
1128 "diff should have uploaded OK"
1131 changeset = Changeset.find(changeset_id)
1132 assert_equal 1 * GeoRecord::SCALE, changeset.min_lon, "min_lon should be 1 degree"
1133 assert_equal 2 * GeoRecord::SCALE, changeset.max_lon, "max_lon should be 2 degrees"
1134 assert_equal 1 * GeoRecord::SCALE, changeset.min_lat, "min_lat should be 1 degree"
1135 assert_equal 2 * GeoRecord::SCALE, changeset.max_lat, "max_lat should be 2 degrees"
1139 # test what happens if a diff is uploaded adding a node to a way.
1140 def test_upload_way_extend
1141 basic_authorization users(:public_user).email, "test"
1143 content "<osm><changeset>" +
1144 "<tag k='created_by' v='osm test suite checking changesets'/>" +
1145 "</changeset></osm>"
1147 assert_response :success
1148 changeset_id = @response.body.to_i
1150 old_way = current_ways(:visible_way)
1152 diff = XML::Document.new
1153 diff.root = XML::Node.new "osmChange"
1154 modify = XML::Node.new "modify"
1155 xml_old_way = old_way.to_xml_node
1156 nd_ref = XML::Node.new "nd"
1157 nd_ref["ref"] = current_nodes(:visible_node).id.to_s
1158 xml_old_way << nd_ref
1159 xml_old_way["changeset"] = changeset_id.to_s
1160 modify << xml_old_way
1165 post :upload, :id => changeset_id
1166 assert_response :success,
1167 "diff should have uploaded OK"
1170 changeset = Changeset.find(changeset_id)
1171 assert_equal 1 * GeoRecord::SCALE, changeset.min_lon, "min_lon should be 1 degree"
1172 assert_equal 3 * GeoRecord::SCALE, changeset.max_lon, "max_lon should be 3 degrees"
1173 assert_equal 1 * GeoRecord::SCALE, changeset.min_lat, "min_lat should be 1 degree"
1174 assert_equal 3 * GeoRecord::SCALE, changeset.max_lat, "max_lat should be 3 degrees"
1178 # test for more issues in #1568
1179 def test_upload_empty_invalid
1180 basic_authorization users(:public_user).email, "test"
1183 "<osmChange></osmChange>",
1184 "<osmChange><modify/></osmChange>",
1185 "<osmChange><modify></modify></osmChange>"].each do |diff|
1188 post :upload, :id => changesets(:public_user_first_change).id
1189 assert_response(:success, "should be able to upload " +
1190 "empty changeset: " + diff)
1195 # test that the X-Error-Format header works to request XML errors
1196 def test_upload_xml_errors
1197 basic_authorization users(:public_user).email, "test"
1199 # try and delete a node that is in use
1200 diff = XML::Document.new
1201 diff.root = XML::Node.new "osmChange"
1202 delete = XML::Node.new "delete"
1204 delete << current_nodes(:node_used_by_relationship).to_xml_node
1209 post :upload, :id => 2
1210 assert_response :success,
1211 "failed to return error in XML format"
1213 # check the returned payload
1214 assert_select "osmError[version='#{API_VERSION}'][generator='OpenStreetMap server']", 1
1215 assert_select "osmError>status", 1
1216 assert_select "osmError>message", 1
1220 # when we make some simple changes we get the same changes back from the
1222 def test_diff_download_simple
1223 ## First try with the normal user, which should get a forbidden
1224 basic_authorization(users(:normal_user).email, "test")
1226 # create a temporary changeset
1227 content "<osm><changeset>" +
1228 "<tag k='created_by' v='osm test suite checking changesets'/>" +
1229 "</changeset></osm>"
1231 assert_response :forbidden
1233 ## Now try with the public user
1234 basic_authorization(users(:public_user).email, "test")
1236 # create a temporary changeset
1237 content "<osm><changeset>" +
1238 "<tag k='created_by' v='osm test suite checking changesets'/>" +
1239 "</changeset></osm>"
1241 assert_response :success
1242 changeset_id = @response.body.to_i
1248 <node id='1' lon='0' lat='0' changeset='#{changeset_id}' version='1'/>
1249 <node id='1' lon='1' lat='0' changeset='#{changeset_id}' version='2'/>
1250 <node id='1' lon='1' lat='1' changeset='#{changeset_id}' version='3'/>
1251 <node id='1' lon='1' lat='2' changeset='#{changeset_id}' version='4'/>
1252 <node id='1' lon='2' lat='2' changeset='#{changeset_id}' version='5'/>
1253 <node id='1' lon='3' lat='2' changeset='#{changeset_id}' version='6'/>
1254 <node id='1' lon='3' lat='3' changeset='#{changeset_id}' version='7'/>
1255 <node id='1' lon='9' lat='9' changeset='#{changeset_id}' version='8'/>
1262 post :upload, :id => changeset_id
1263 assert_response :success,
1264 "can't upload multiple versions of an element in a diff: #{@response.body}"
1266 get :download, :id => changeset_id
1267 assert_response :success
1269 assert_select "osmChange", 1
1270 assert_select "osmChange>modify", 8
1271 assert_select "osmChange>modify>node", 8
1275 # culled this from josm to ensure that nothing in the way that josm
1276 # is formatting the request is causing it to fail.
1278 # NOTE: the error turned out to be something else completely!
1279 def test_josm_upload
1280 basic_authorization(users(:public_user).email, "test")
1282 # create a temporary changeset
1283 content "<osm><changeset>" +
1284 "<tag k='created_by' v='osm test suite checking changesets'/>" +
1285 "</changeset></osm>"
1287 assert_response :success
1288 changeset_id = @response.body.to_i
1291 <osmChange version="0.6" generator="JOSM">
1292 <create version="0.6" generator="JOSM">
1293 <node id='-1' visible='true' changeset='#{changeset_id}' lat='51.49619982187321' lon='-0.18722061869438314' />
1294 <node id='-2' visible='true' changeset='#{changeset_id}' lat='51.496359883909605' lon='-0.18653093576241928' />
1295 <node id='-3' visible='true' changeset='#{changeset_id}' lat='51.49598132358285' lon='-0.18719613290981638' />
1296 <node id='-4' visible='true' changeset='#{changeset_id}' lat='51.4961591711078' lon='-0.18629015888084607' />
1297 <node id='-5' visible='true' changeset='#{changeset_id}' lat='51.49582126021711' lon='-0.18708186591517145' />
1298 <node id='-6' visible='true' changeset='#{changeset_id}' lat='51.49591018437858' lon='-0.1861432441734455' />
1299 <node id='-7' visible='true' changeset='#{changeset_id}' lat='51.49560784152179' lon='-0.18694719410005425' />
1300 <node id='-8' visible='true' changeset='#{changeset_id}' lat='51.49567389979617' lon='-0.1860289771788006' />
1301 <node id='-9' visible='true' changeset='#{changeset_id}' lat='51.49543761398892' lon='-0.186820684213126' />
1302 <way id='-10' action='modiy' visible='true' changeset='#{changeset_id}'>
1312 <tag k='highway' v='residential' />
1313 <tag k='name' v='Foobar Street' />
1321 post :upload, :id => changeset_id
1322 assert_response :success,
1323 "can't upload a diff from JOSM: #{@response.body}"
1325 get :download, :id => changeset_id
1326 assert_response :success
1328 assert_select "osmChange", 1
1329 assert_select "osmChange>create>node", 9
1330 assert_select "osmChange>create>way", 1
1331 assert_select "osmChange>create>way>nd", 9
1332 assert_select "osmChange>create>way>tag", 2
1336 # when we make some complex changes we get the same changes back from the
1338 def test_diff_download_complex
1339 basic_authorization(users(:public_user).email, "test")
1341 # create a temporary changeset
1342 content "<osm><changeset>" +
1343 "<tag k='created_by' v='osm test suite checking changesets'/>" +
1344 "</changeset></osm>"
1346 assert_response :success
1347 changeset_id = @response.body.to_i
1353 <node id='1' lon='0' lat='0' changeset='#{changeset_id}' version='1'/>
1356 <node id='-1' lon='9' lat='9' changeset='#{changeset_id}' version='0'/>
1357 <node id='-2' lon='8' lat='9' changeset='#{changeset_id}' version='0'/>
1358 <node id='-3' lon='7' lat='9' changeset='#{changeset_id}' version='0'/>
1361 <node id='3' lon='20' lat='15' changeset='#{changeset_id}' version='1'/>
1362 <way id='1' changeset='#{changeset_id}' version='1'>
1374 post :upload, :id => changeset_id
1375 assert_response :success,
1376 "can't upload multiple versions of an element in a diff: #{@response.body}"
1378 get :download, :id => changeset_id
1379 assert_response :success
1381 assert_select "osmChange", 1
1382 assert_select "osmChange>create", 3
1383 assert_select "osmChange>delete", 1
1384 assert_select "osmChange>modify", 2
1385 assert_select "osmChange>create>node", 3
1386 assert_select "osmChange>delete>node", 1
1387 assert_select "osmChange>modify>node", 1
1388 assert_select "osmChange>modify>way", 1
1391 def test_changeset_download
1392 get :download, :id => changesets(:normal_user_first_change).id
1393 assert_response :success
1395 # print @response.body
1396 # FIXME: needs more assert_select tests
1397 assert_select "osmChange[version='#{API_VERSION}'][generator='#{GENERATOR}']" do
1398 assert_select "create", :count => 5
1399 assert_select "create>node[id='#{nodes(:used_node_2).node_id}'][visible='#{nodes(:used_node_2).visible?}'][version='#{nodes(:used_node_2).version}']" do
1400 assert_select "tag[k='#{node_tags(:t3).k}'][v='#{node_tags(:t3).v}']"
1402 assert_select "create>node[id='#{nodes(:visible_node).node_id}']"
1407 # check that the bounding box of a changeset gets updated correctly
1408 # FIXME: This should really be moded to a integration test due to the with_controller
1409 def test_changeset_bbox
1410 basic_authorization users(:public_user).email, "test"
1412 # create a new changeset
1413 content "<osm><changeset/></osm>"
1415 assert_response :success, "Creating of changeset failed."
1416 changeset_id = @response.body.to_i
1418 # add a single node to it
1419 with_controller(NodeController.new) do
1420 content "<osm><node lon='1' lat='2' changeset='#{changeset_id}'/></osm>"
1422 assert_response :success, "Couldn't create node."
1425 # get the bounding box back from the changeset
1426 get :read, :id => changeset_id
1427 assert_response :success, "Couldn't read back changeset."
1428 assert_select "osm>changeset[min_lon='1.0']", 1
1429 assert_select "osm>changeset[max_lon='1.0']", 1
1430 assert_select "osm>changeset[min_lat='2.0']", 1
1431 assert_select "osm>changeset[max_lat='2.0']", 1
1433 # add another node to it
1434 with_controller(NodeController.new) do
1435 content "<osm><node lon='2' lat='1' changeset='#{changeset_id}'/></osm>"
1437 assert_response :success, "Couldn't create second node."
1440 # get the bounding box back from the changeset
1441 get :read, :id => changeset_id
1442 assert_response :success, "Couldn't read back changeset for the second time."
1443 assert_select "osm>changeset[min_lon='1.0']", 1
1444 assert_select "osm>changeset[max_lon='2.0']", 1
1445 assert_select "osm>changeset[min_lat='1.0']", 1
1446 assert_select "osm>changeset[max_lat='2.0']", 1
1448 # add (delete) a way to it, which contains a point at (3,3)
1449 with_controller(WayController.new) do
1450 content update_changeset(current_ways(:visible_way).to_xml,
1452 put :delete, :id => current_ways(:visible_way).id
1453 assert_response :success, "Couldn't delete a way."
1456 # get the bounding box back from the changeset
1457 get :read, :id => changeset_id
1458 assert_response :success, "Couldn't read back changeset for the third time."
1459 # note that the 3.1 here is because of the bbox overexpansion
1460 assert_select "osm>changeset[min_lon='1.0']", 1
1461 assert_select "osm>changeset[max_lon='3.1']", 1
1462 assert_select "osm>changeset[min_lat='1.0']", 1
1463 assert_select "osm>changeset[max_lat='3.1']", 1
1467 # test that the changeset :include method works as it should
1468 def test_changeset_include
1469 basic_authorization users(:public_user).display_name, "test"
1471 # create a new changeset
1472 content "<osm><changeset/></osm>"
1474 assert_response :success, "Creating of changeset failed."
1475 changeset_id = @response.body.to_i
1477 # NOTE: the include method doesn't over-expand, like inserting
1478 # a real method does. this is because we expect the client to
1479 # know what it is doing!
1480 check_after_include(changeset_id, 1, 1, [1, 1, 1, 1])
1481 check_after_include(changeset_id, 3, 3, [1, 1, 3, 3])
1482 check_after_include(changeset_id, 4, 2, [1, 1, 4, 3])
1483 check_after_include(changeset_id, 2, 2, [1, 1, 4, 3])
1484 check_after_include(changeset_id, -1, -1, [-1, -1, 4, 3])
1485 check_after_include(changeset_id, -2, 5, [-2, -1, 4, 5])
1489 # test that a not found, wrong method with the expand bbox works as expected
1490 def test_changeset_expand_bbox_error
1491 basic_authorization users(:public_user).display_name, "test"
1493 # create a new changeset
1494 content "<osm><changeset/></osm>"
1496 assert_response :success, "Creating of changeset failed."
1497 changeset_id = @response.body.to_i
1503 content "<osm><node lon='#{lon}' lat='#{lat}'/></osm>"
1504 put :expand_bbox, :id => changeset_id
1505 assert_response :method_not_allowed, "shouldn't be able to put a bbox expand"
1507 # Try to get the update
1508 content "<osm><node lon='#{lon}' lat='#{lat}'/></osm>"
1509 get :expand_bbox, :id => changeset_id
1510 assert_response :method_not_allowed, "shouldn't be able to get a bbox expand"
1512 # Try to use a hopefully missing changeset
1513 content "<osm><node lon='#{lon}' lat='#{lat}'/></osm>"
1514 post :expand_bbox, :id => changeset_id + 13245
1515 assert_response :not_found, "shouldn't be able to do a bbox expand on a nonexistant changeset"
1519 # test the query functionality of changesets
1521 get :query, :bbox => "-10,-10, 10, 10"
1522 assert_response :success, "can't get changesets in bbox"
1523 assert_changesets [1, 4, 6]
1525 get :query, :bbox => "4.5,4.5,4.6,4.6"
1526 assert_response :success, "can't get changesets in bbox"
1527 assert_changesets [1]
1529 # not found when looking for changesets of non-existing users
1530 get :query, :user => User.maximum(:id) + 1
1531 assert_response :not_found
1532 get :query, :display_name => " "
1533 assert_response :not_found
1535 # can't get changesets of user 1 without authenticating
1536 get :query, :user => users(:normal_user).id
1537 assert_response :not_found, "shouldn't be able to get changesets by non-public user (ID)"
1538 get :query, :display_name => users(:normal_user).display_name
1539 assert_response :not_found, "shouldn't be able to get changesets by non-public user (name)"
1541 # but this should work
1542 basic_authorization "test@openstreetmap.org", "test"
1543 get :query, :user => users(:normal_user).id
1544 assert_response :success, "can't get changesets by user ID"
1545 assert_changesets [1, 3, 6, 8]
1547 get :query, :display_name => users(:normal_user).display_name
1548 assert_response :success, "can't get changesets by user name"
1549 assert_changesets [1, 3, 6, 8]
1551 # check that the correct error is given when we provide both UID and name
1552 get :query, :user => users(:normal_user).id, :display_name => users(:normal_user).display_name
1553 assert_response :bad_request, "should be a bad request to have both ID and name specified"
1555 get :query, :user => users(:normal_user).id, :open => true
1556 assert_response :success, "can't get changesets by user and open"
1557 assert_changesets [1]
1559 get :query, :time => "2007-12-31"
1560 assert_response :success, "can't get changesets by time-since"
1561 assert_changesets [1, 2, 4, 5, 6]
1563 get :query, :time => "2008-01-01T12:34Z"
1564 assert_response :success, "can't get changesets by time-since with hour"
1565 assert_changesets [1, 2, 4, 5, 6]
1567 get :query, :time => "2007-12-31T23:59Z,2008-01-01T00:01Z"
1568 assert_response :success, "can't get changesets by time-range"
1569 assert_changesets [1, 5, 6]
1571 get :query, :open => "true"
1572 assert_response :success, "can't get changesets by open-ness"
1573 assert_changesets [1, 2, 4]
1575 get :query, :closed => "true"
1576 assert_response :success, "can't get changesets by closed-ness"
1577 assert_changesets [3, 5, 6, 7, 8, 9]
1579 get :query, :closed => "true", :user => users(:normal_user).id
1580 assert_response :success, "can't get changesets by closed-ness and user"
1581 assert_changesets [3, 6, 8]
1583 get :query, :closed => "true", :user => users(:public_user).id
1584 assert_response :success, "can't get changesets by closed-ness and user"
1585 assert_changesets [7]
1587 get :query, :changesets => "1,2,3"
1588 assert_response :success, "can't get changesets by id (as comma-separated string)"
1589 assert_changesets [1, 2, 3]
1591 get :query, :changesets => ""
1592 assert_response :bad_request, "should be a bad request since changesets is empty"
1596 # check that errors are returned if garbage is inserted
1597 # into query strings
1598 def test_query_invalid
1601 ";drop table users;"].each do |bbox|
1602 get :query, :bbox => bbox
1603 assert_response :bad_request, "'#{bbox}' isn't a bbox"
1608 ";drop table users;",
1610 "-,-"].each do |time|
1611 get :query, :time => time
1612 assert_response :bad_request, "'#{time}' isn't a valid time range"
1619 get :query, :user => uid
1620 assert_response :bad_request, "'#{uid}' isn't a valid user ID"
1625 # check updating tags on a changeset
1626 def test_changeset_update
1627 ## First try with the non-public user
1628 changeset = changesets(:normal_user_first_change)
1629 new_changeset = changeset.to_xml
1630 new_tag = XML::Node.new "tag"
1631 new_tag["k"] = "tagtesting"
1632 new_tag["v"] = "valuetesting"
1633 new_changeset.find("//osm/changeset").first << new_tag
1634 content new_changeset
1636 # try without any authorization
1637 put :update, :id => changeset.id
1638 assert_response :unauthorized
1640 # try with the wrong authorization
1641 basic_authorization users(:public_user).email, "test"
1642 put :update, :id => changeset.id
1643 assert_response :conflict
1645 # now this should get an unauthorized
1646 basic_authorization users(:normal_user).email, "test"
1647 put :update, :id => changeset.id
1648 assert_require_public_data "user with their data non-public, shouldn't be able to edit their changeset"
1650 ## Now try with the public user
1651 changeset = changesets(:public_user_first_change)
1652 create(:changeset_tag, :changeset => changeset)
1653 new_changeset = changeset.to_xml
1654 new_tag = XML::Node.new "tag"
1655 new_tag["k"] = "tagtesting"
1656 new_tag["v"] = "valuetesting"
1657 new_changeset.find("//osm/changeset").first << new_tag
1658 content new_changeset
1660 # try without any authorization
1661 @request.env["HTTP_AUTHORIZATION"] = nil
1662 put :update, :id => changeset.id
1663 assert_response :unauthorized
1665 # try with the wrong authorization
1666 basic_authorization users(:second_public_user).email, "test"
1667 put :update, :id => changeset.id
1668 assert_response :conflict
1670 # now this should work...
1671 basic_authorization users(:public_user).email, "test"
1672 put :update, :id => changeset.id
1673 assert_response :success
1675 assert_select "osm>changeset[id='#{changeset.id}']", 1
1676 assert_select "osm>changeset>tag", 2
1677 assert_select "osm>changeset>tag[k='tagtesting'][v='valuetesting']", 1
1681 # check that a user different from the one who opened the changeset
1683 def test_changeset_update_invalid
1684 basic_authorization users(:public_user).email, "test"
1686 changeset = changesets(:normal_user_first_change)
1687 new_changeset = changeset.to_xml
1688 new_tag = XML::Node.new "tag"
1689 new_tag["k"] = "testing"
1690 new_tag["v"] = "testing"
1691 new_changeset.find("//osm/changeset").first << new_tag
1693 content new_changeset
1694 put :update, :id => changeset.id
1695 assert_response :conflict
1699 # check that a changeset can contain a certain max number of changes.
1700 ## FIXME should be changed to an integration test due to the with_controller
1701 def test_changeset_limits
1702 basic_authorization users(:public_user).email, "test"
1704 # open a new changeset
1705 content "<osm><changeset/></osm>"
1707 assert_response :success, "can't create a new changeset"
1708 cs_id = @response.body.to_i
1710 # start the counter just short of where the changeset should finish.
1712 # alter the database to set the counter on the changeset directly,
1713 # otherwise it takes about 6 minutes to fill all of them.
1714 changeset = Changeset.find(cs_id)
1715 changeset.num_changes = Changeset::MAX_ELEMENTS - offset
1718 with_controller(NodeController.new) do
1720 content "<osm><node changeset='#{cs_id}' lat='0.0' lon='0.0'/></osm>"
1722 assert_response :success, "can't create a new node"
1723 node_id = @response.body.to_i
1725 get :read, :id => node_id
1726 assert_response :success, "can't read back new node"
1727 node_doc = XML::Parser.string(@response.body).parse
1728 node_xml = node_doc.find("//osm/node").first
1730 # loop until we fill the changeset with nodes
1732 node_xml["lat"] = rand.to_s
1733 node_xml["lon"] = rand.to_s
1734 node_xml["version"] = (i + 1).to_s
1737 put :update, :id => node_id
1738 assert_response :success, "attempt #{i} should have succeeded"
1741 # trying again should fail
1742 node_xml["lat"] = rand.to_s
1743 node_xml["lon"] = rand.to_s
1744 node_xml["version"] = offset.to_s
1747 put :update, :id => node_id
1748 assert_response :conflict, "final attempt should have failed"
1751 changeset = Changeset.find(cs_id)
1752 assert_equal Changeset::MAX_ELEMENTS + 1, changeset.num_changes
1754 # check that the changeset is now closed as well
1755 assert(!changeset.is_open?,
1756 "changeset should have been auto-closed by exceeding " +
1761 # This should display the last 20 changesets closed
1763 get :list, :format => "html"
1764 assert_response :success
1765 assert_template "history"
1766 assert_template :layout => "map"
1767 assert_select "h2", :text => "Changesets", :count => 1
1769 xhr :get, :list, :format => "html", :list => "1"
1770 assert_response :success
1771 assert_template "list"
1773 check_list_result(Changeset.all)
1777 # This should display the last 20 changesets closed
1779 xhr :get, :list, :format => "html"
1780 assert_response :success
1781 assert_template "history"
1782 assert_template :layout => "xhr"
1783 assert_select "h2", :text => "Changesets", :count => 1
1785 xhr :get, :list, :format => "html", :list => "1"
1786 assert_response :success
1787 assert_template "list"
1789 check_list_result(Changeset.all)
1793 # This should display the last 20 changesets closed in a specific area
1795 get :list, :format => "html", :bbox => "4.5,4.5,5.5,5.5"
1796 assert_response :success
1797 assert_template "history"
1798 assert_template :layout => "map"
1799 assert_select "h2", :text => "Changesets", :count => 1
1801 xhr :get, :list, :format => "html", :bbox => "4.5,4.5,5.5,5.5", :list => "1"
1802 assert_response :success
1803 assert_template "list"
1805 check_list_result(Changeset.where("min_lon < 55000000 and max_lon > 45000000 and min_lat < 55000000 and max_lat > 45000000"))
1809 # Checks the display of the user changesets listing
1811 user = users(:public_user)
1813 get :list, :format => "html", :display_name => user.display_name
1814 assert_response :success
1815 assert_template "history"
1817 xhr :get, :list, :format => "html", :display_name => user.display_name, :list => "1"
1818 assert_response :success
1819 assert_template "list"
1821 check_list_result(user.changesets)
1825 # Checks the display of the user changesets listing for a private user
1826 def test_list_private_user
1827 user = users(:normal_user)
1829 get :list, :format => "html", :display_name => user.display_name
1830 assert_response :success
1831 assert_template "history"
1833 xhr :get, :list, :format => "html", :display_name => user.display_name, :list => "1"
1834 assert_response :success
1835 assert_template "list"
1837 check_list_result(Changeset.none)
1841 # Check the not found of the list user changesets
1842 def test_list_user_not_found
1843 get :list, :format => "html", :display_name => "Some random user"
1844 assert_response :not_found
1845 assert_template "user/no_such_user"
1847 xhr :get, :list, :format => "html", :display_name => "Some random user", :list => "1"
1848 assert_response :not_found
1849 assert_template "user/no_such_user"
1853 # Checks the display of the friends changesets listing
1854 def test_list_friends
1855 user = users(:normal_user)
1857 get :list, :friends => true
1858 assert_response :redirect
1859 assert_redirected_to :controller => :user, :action => :login, :referer => friend_changesets_path
1861 session[:user] = user.id
1863 get :list, :friends => true
1864 assert_response :success
1865 assert_template "history"
1867 xhr :get, :list, :friends => true, :list => "1"
1868 assert_response :success
1869 assert_template "list"
1871 check_list_result(Changeset.where(:user => user.friend_users.identifiable))
1875 # Checks the display of the nearby user changesets listing
1876 def test_list_nearby
1877 user = users(:normal_user)
1879 get :list, :nearby => true
1880 assert_response :redirect
1881 assert_redirected_to :controller => :user, :action => :login, :referer => nearby_changesets_path
1883 session[:user] = user.id
1885 get :list, :nearby => true
1886 assert_response :success
1887 assert_template "history"
1889 xhr :get, :list, :nearby => true, :list => "1"
1890 assert_response :success
1891 assert_template "list"
1893 check_list_result(Changeset.where(:user => user.nearby))
1897 # Check that we can't request later pages of the changesets list
1898 def test_list_max_id
1899 xhr :get, :list, :format => "html", :max_id => 4
1900 assert_response :success
1901 assert_template "history"
1902 assert_template :layout => "xhr"
1903 assert_select "h2", :text => "Changesets", :count => 1
1905 xhr :get, :list, :format => "html", :list => "1", :max_id => 4
1906 assert_response :success
1907 assert_template "list"
1909 check_list_result(Changeset.where("id <= 4"))
1913 # This should display the last 20 changesets closed
1915 get :feed, :format => :atom
1916 assert_response :success
1917 assert_template "list"
1918 assert_equal "application/atom+xml", response.content_type
1920 check_feed_result(Changeset.all)
1924 # This should display the last 20 changesets closed in a specific area
1926 get :feed, :format => :atom, :bbox => "4.5,4.5,5.5,5.5"
1927 assert_response :success
1928 assert_template "list"
1929 assert_equal "application/atom+xml", response.content_type
1931 check_feed_result(Changeset.where("min_lon < 55000000 and max_lon > 45000000 and min_lat < 55000000 and max_lat > 45000000"))
1935 # Checks the display of the user changesets feed
1937 user = users(:public_user)
1939 get :feed, :format => :atom, :display_name => user.display_name
1940 assert_response :success
1941 assert_template "list"
1942 assert_equal "application/atom+xml", response.content_type
1944 check_feed_result(user.changesets)
1948 # Check the not found of the user changesets feed
1949 def test_feed_user_not_found
1950 get :feed, :format => "atom", :display_name => "Some random user"
1951 assert_response :not_found
1955 # Check that we can't request later pages of the changesets feed
1956 def test_feed_max_id
1957 get :feed, :format => "atom", :max_id => 100
1958 assert_response :redirect
1959 assert_redirected_to :action => :feed
1963 # check that the changeset download for a changeset with a redacted
1964 # element in it doesn't contain that element.
1965 def test_diff_download_redacted
1966 changeset_id = changesets(:public_user_first_change).id
1968 get :download, :id => changeset_id
1969 assert_response :success
1971 assert_select "osmChange", 1
1972 # this changeset contains node 17 in versions 1 & 2, but 1 should
1974 assert_select "osmChange node[id='17']", 1
1975 assert_select "osmChange node[id='17'][version='1']", 0
1979 # create comment success
1980 def test_create_comment_success
1981 basic_authorization(users(:public_user).email, "test")
1983 assert_difference "ChangesetComment.count", 1 do
1984 assert_no_difference "ActionMailer::Base.deliveries.size" do
1985 post :comment, :id => changesets(:normal_user_closed_change).id, :text => "This is a comment"
1988 assert_response :success
1990 assert_difference "ChangesetComment.count", 1 do
1991 assert_difference "ActionMailer::Base.deliveries.size", 1 do
1992 post :comment, :id => changesets(:normal_user_subscribed_change).id, :text => "This is a comment"
1995 assert_response :success
1997 email = ActionMailer::Base.deliveries.first
1998 assert_equal 1, email.to.length
1999 assert_equal "[OpenStreetMap] test2 has commented on one of your changesets", email.subject
2000 assert_equal "test@openstreetmap.org", email.to.first
2002 ActionMailer::Base.deliveries.clear
2004 basic_authorization(users(:second_public_user).email, "test")
2006 assert_difference "ChangesetComment.count", 1 do
2007 assert_difference "ActionMailer::Base.deliveries.size", 2 do
2008 post :comment, :id => changesets(:normal_user_subscribed_change).id, :text => "This is a comment"
2011 assert_response :success
2013 email = ActionMailer::Base.deliveries.find { |e| e.to.first == "test@openstreetmap.org" }
2014 assert_not_nil email
2015 assert_equal 1, email.to.length
2016 assert_equal "[OpenStreetMap] pulibc_test2 has commented on one of your changesets", email.subject
2018 email = ActionMailer::Base.deliveries.find { |e| e.to.first == "test@example.com" }
2019 assert_not_nil email
2020 assert_equal 1, email.to.length
2021 assert_equal "[OpenStreetMap] pulibc_test2 has commented on a changeset you are interested in", email.subject
2023 ActionMailer::Base.deliveries.clear
2027 # create comment fail
2028 def test_create_comment_fail
2030 post :comment, :id => changesets(:normal_user_closed_change).id, :text => "This is a comment"
2031 assert_response :unauthorized
2033 basic_authorization(users(:public_user).email, "test")
2036 assert_no_difference "ChangesetComment.count" do
2037 post :comment, :id => 999111, :text => "This is a comment"
2039 assert_response :not_found
2041 # not closed changeset
2042 assert_no_difference "ChangesetComment.count" do
2043 post :comment, :id => changesets(:normal_user_first_change).id, :text => "This is a comment"
2045 assert_response :conflict
2048 assert_no_difference "ChangesetComment.count" do
2049 post :comment, :id => changesets(:normal_user_closed_change).id
2051 assert_response :bad_request
2054 assert_no_difference "ChangesetComment.count" do
2055 post :comment, :id => changesets(:normal_user_closed_change).id, :text => ""
2057 assert_response :bad_request
2061 # test subscribe success
2062 def test_subscribe_success
2063 basic_authorization(users(:public_user).email, "test")
2064 changeset = changesets(:normal_user_closed_change)
2066 assert_difference "changeset.subscribers.count", 1 do
2067 post :subscribe, :id => changeset.id
2069 assert_response :success
2073 # test subscribe fail
2074 def test_subscribe_fail
2076 changeset = changesets(:normal_user_closed_change)
2077 assert_no_difference "changeset.subscribers.count" do
2078 post :subscribe, :id => changeset.id
2080 assert_response :unauthorized
2082 basic_authorization(users(:public_user).email, "test")
2085 assert_no_difference "changeset.subscribers.count" do
2086 post :subscribe, :id => 999111
2088 assert_response :not_found
2090 # not closed changeset
2091 changeset = changesets(:normal_user_first_change)
2092 assert_no_difference "changeset.subscribers.count" do
2093 post :subscribe, :id => changeset.id
2095 assert_response :conflict
2097 # trying to subscribe when already subscribed
2098 changeset = changesets(:normal_user_subscribed_change)
2099 assert_no_difference "changeset.subscribers.count" do
2100 post :subscribe, :id => changeset.id
2102 assert_response :conflict
2106 # test unsubscribe success
2107 def test_unsubscribe_success
2108 basic_authorization(users(:public_user).email, "test")
2109 changeset = changesets(:normal_user_subscribed_change)
2111 assert_difference "changeset.subscribers.count", -1 do
2112 post :unsubscribe, :id => changeset.id
2114 assert_response :success
2118 # test unsubscribe fail
2119 def test_unsubscribe_fail
2121 changeset = changesets(:normal_user_closed_change)
2122 assert_no_difference "changeset.subscribers.count" do
2123 post :unsubscribe, :id => changeset.id
2125 assert_response :unauthorized
2127 basic_authorization(users(:public_user).email, "test")
2130 assert_no_difference "changeset.subscribers.count" do
2131 post :unsubscribe, :id => 999111
2133 assert_response :not_found
2135 # not closed changeset
2136 changeset = changesets(:normal_user_first_change)
2137 assert_no_difference "changeset.subscribers.count" do
2138 post :unsubscribe, :id => changeset.id
2140 assert_response :conflict
2142 # trying to unsubscribe when not subscribed
2143 changeset = changesets(:normal_user_closed_change)
2144 assert_no_difference "changeset.subscribers.count" do
2145 post :unsubscribe, :id => changeset.id
2147 assert_response :not_found
2151 # test hide comment fail
2152 def test_hide_comment_fail
2154 comment = create(:changeset_comment)
2155 assert_equal true, comment.visible
2157 post :hide_comment, :id => comment.id
2158 assert_response :unauthorized
2159 assert_equal true, comment.reload.visible
2161 basic_authorization(users(:public_user).email, "test")
2164 post :hide_comment, :id => comment.id
2165 assert_response :forbidden
2166 assert_equal true, comment.reload.visible
2168 basic_authorization(users(:moderator_user).email, "test")
2171 post :hide_comment, :id => 999111
2172 assert_response :not_found
2173 assert_equal true, comment.reload.visible
2177 # test hide comment succes
2178 def test_hide_comment_success
2179 comment = create(:changeset_comment)
2180 assert_equal true, comment.visible
2182 basic_authorization(users(:moderator_user).email, "test")
2184 post :hide_comment, :id => comment.id
2185 assert_response :success
2186 assert_equal false, comment.reload.visible
2190 # test unhide comment fail
2191 def test_unhide_comment_fail
2193 comment = create(:changeset_comment, :visible => false)
2194 assert_equal false, comment.visible
2196 post :unhide_comment, :id => comment.id
2197 assert_response :unauthorized
2198 assert_equal false, comment.reload.visible
2200 basic_authorization(users(:public_user).email, "test")
2203 post :unhide_comment, :id => comment.id
2204 assert_response :forbidden
2205 assert_equal false, comment.reload.visible
2207 basic_authorization(users(:moderator_user).email, "test")
2210 post :unhide_comment, :id => 999111
2211 assert_response :not_found
2212 assert_equal false, comment.reload.visible
2216 # test unhide comment succes
2217 def test_unhide_comment_success
2218 comment = create(:changeset_comment, :visible => false)
2219 assert_equal false, comment.visible
2221 basic_authorization(users(:moderator_user).email, "test")
2223 post :unhide_comment, :id => comment.id
2224 assert_response :success
2225 assert_equal true, comment.reload.visible
2229 # test comments feed
2230 def test_comments_feed
2231 create_list(:changeset_comment, 3, :changeset_id => changesets(:normal_user_closed_change).id)
2233 get :comments_feed, :format => "rss"
2234 assert_response :success
2235 assert_equal "application/rss+xml", @response.content_type
2236 assert_select "rss", :count => 1 do
2237 assert_select "channel", :count => 1 do
2238 assert_select "item", :count => 3
2242 get :comments_feed, :format => "rss", :limit => 2
2243 assert_response :success
2244 assert_equal "application/rss+xml", @response.content_type
2245 assert_select "rss", :count => 1 do
2246 assert_select "channel", :count => 1 do
2247 assert_select "item", :count => 2
2251 get :comments_feed, :id => changesets(:normal_user_closed_change), :format => "rss"
2252 assert_response :success
2253 assert_equal "application/rss+xml", @response.content_type
2254 assert_select "rss", :count => 1 do
2255 assert_select "channel", :count => 1 do
2256 assert_select "item", :count => 3
2262 # test comments feed
2263 def test_comments_feed_bad_limit
2264 get :comments_feed, :format => "rss", :limit => 0
2265 assert_response :bad_request
2267 get :comments_feed, :format => "rss", :limit => 100001
2268 assert_response :bad_request
2274 # boilerplate for checking that certain changesets exist in the
2276 def assert_changesets(ids)
2277 assert_select "osm>changeset", ids.size
2279 assert_select "osm>changeset[id='#{id}']", 1
2284 # call the include method and assert properties of the bbox
2285 def check_after_include(changeset_id, lon, lat, bbox)
2286 content "<osm><node lon='#{lon}' lat='#{lat}'/></osm>"
2287 post :expand_bbox, :id => changeset_id
2288 assert_response :success, "Setting include of changeset failed: #{@response.body}"
2290 # check exactly one changeset
2291 assert_select "osm>changeset", 1
2292 assert_select "osm>changeset[id='#{changeset_id}']", 1
2295 doc = XML::Parser.string(@response.body).parse
2296 changeset = doc.find("//osm/changeset").first
2297 assert_equal bbox[0], changeset["min_lon"].to_f, "min lon"
2298 assert_equal bbox[1], changeset["min_lat"].to_f, "min lat"
2299 assert_equal bbox[2], changeset["max_lon"].to_f, "max lon"
2300 assert_equal bbox[3], changeset["max_lat"].to_f, "max lat"
2304 # update the changeset_id of a way element
2305 def update_changeset(xml, changeset_id)
2306 xml_attr_rewrite(xml, "changeset", changeset_id)
2310 # update an attribute in a way element
2311 def xml_attr_rewrite(xml, name, value)
2312 xml.find("//osm/way").first[name] = value.to_s
2317 # check the result of a list
2318 def check_list_result(changesets)
2319 changesets = changesets.where("num_changes > 0")
2320 .order(:created_at => :desc)
2322 assert changesets.size <= 20
2324 assert_select "ol.changesets", :count => [changesets.size, 1].min do
2325 assert_select "li", :count => changesets.size
2327 changesets.each do |changeset|
2328 assert_select "li#changeset_#{changeset.id}", :count => 1
2334 # check the result of a feed
2335 def check_feed_result(changesets)
2336 changesets = changesets.where("num_changes > 0")
2337 .order(:created_at => :desc)
2339 assert changesets.size <= 20
2341 assert_select "feed", :count => [changesets.size, 1].min do
2342 assert_select "> title", :count => 1, :text => /^Changesets/
2343 assert_select "> entry", :count => changesets.size
2345 changesets.each do |changeset|
2346 assert_select "> entry > id", changeset_url(:id => changeset.id)