]> git.openstreetmap.org Git - rails.git/blob - test/functional/changeset_controller_test.rb
Merge 12304:14009 from trunk.
[rails.git] / test / functional / changeset_controller_test.rb
1 require File.dirname(__FILE__) + '/../test_helper'
2 require 'changeset_controller'
3
4 class ChangesetControllerTest < ActionController::TestCase
5   api_fixtures
6
7   def basic_authorization(user, pass)
8     @request.env["HTTP_AUTHORIZATION"] = "Basic %s" % Base64.encode64("#{user}:#{pass}")
9   end
10
11   def content(c)
12     @request.env["RAW_POST_DATA"] = c.to_s
13   end
14   
15   # -----------------------
16   # Test simple changeset creation
17   # -----------------------
18   
19   def test_create
20     basic_authorization "test@openstreetmap.org", "test"
21     
22     # Create the first user's changeset
23     content "<osm><changeset>" +
24       "<tag k='created_by' v='osm test suite checking changesets'/>" + 
25       "</changeset></osm>"
26     put :create
27     
28     assert_response :success, "Creation of changeset did not return sucess status"
29     newid = @response.body.to_i
30
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})"
38     else
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})"
41     end
42   end
43   
44   def test_create_invalid
45     basic_authorization "test@openstreetmap.org", "test"
46     content "<osm><changeset></osm>"
47     put :create
48     assert_response :bad_request, "creating a invalid changeset should fail"
49   end
50
51   ##
52   # check that the changeset can be read and returns the correct
53   # document structure.
54   def test_read
55     changeset_id = changesets(:normal_user_first_change).id
56     get :read, :id => changeset_id
57     assert_response :success, "cannot get first changeset"
58     
59     assert_select "osm[version=#{API_VERSION}][generator=\"OpenStreetMap server\"]", 1
60     assert_select "osm>changeset[id=#{changeset_id}]", 1
61   end
62   
63   ##
64   # test that the user who opened a change can close it
65   def test_close
66     basic_authorization "test@openstreetmap.org", "test"
67
68     cs_id = changesets(:normal_user_first_change).id
69     put :close, :id => cs_id
70     assert_response :success
71
72     # test that it really is closed now
73     cs = Changeset.find(cs_id)
74     assert(!cs.is_open?, 
75            "changeset should be closed now (#{cs.closed_at} > #{Time.now}.")
76   end
77
78   ##
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"
82
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
86   end
87
88   ##
89   # upload something simple, but valid and check that it can 
90   # be read back ok.
91   def test_upload_simple_valid
92     basic_authorization "test@openstreetmap.org", "test"
93
94     # simple diff to change a node, way and relation by removing 
95     # their tags
96     diff = <<EOF
97 <osmChange>
98  <modify>
99   <node id='1' lon='0' lat='0' changeset='1' version='1'/>
100   <way id='1' changeset='1' version='1'>
101    <nd ref='3'/>
102   </way>
103  </modify>
104  <modify>
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'/>
109   </relation>
110  </modify>
111 </osmChange>
112 EOF
113
114     # upload it
115     content diff
116     post :upload, :id => 1
117     assert_response :success, 
118       "can't upload a simple valid diff to changeset: #{@response.body}"
119
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"
124   end
125     
126   ##
127   # upload something which creates new objects using placeholders
128   def test_upload_create_valid
129     basic_authorization "test@openstreetmap.org", "test"
130
131     # simple diff to create a node way and relation using placeholders
132     diff = <<EOF
133 <osmChange>
134  <create>
135   <node id='-1' lon='0' lat='0' changeset='1'>
136    <tag k='foo' v='bar'/>
137    <tag k='baz' v='bat'/>
138   </node>
139   <way id='-1' changeset='1'>
140    <nd ref='3'/>
141   </way>
142  </create>
143  <create>
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'/>
148   </relation>
149  </create>
150 </osmChange>
151 EOF
152
153     # upload it
154     content diff
155     post :upload, :id => 1
156     assert_response :success, 
157       "can't upload a simple valid creation to changeset: #{@response.body}"
158
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
164
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
170
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
175
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
180
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"
185   end
186     
187   ##
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"
192
193     diff = XML::Document.new
194     diff.root = XML::Node.new "osmChange"
195     delete = XML::Node.new "delete"
196     diff.root << 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
201
202     # upload it
203     content diff
204     post :upload, :id => 1
205     assert_response :success, 
206       "can't upload a deletion diff to changeset: #{@response.body}"
207
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
212
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
218   end
219
220   ##
221   # test uploading a delete with no lat/lon, as they are optional in
222   # the osmChange spec.
223   def test_upload_nolatlon_delete
224     basic_authorization "test@openstreetmap.org", "test"
225
226     node = current_nodes(:visible_node)
227     cs = changesets(:normal_user_first_change)
228     diff = "<osmChange><delete><node id='#{node.id}' version='#{node.version}' changeset='#{cs.id}'/></delete></osmChange>"
229
230     # upload it
231     content diff
232     post :upload, :id => cs.id
233     assert_response :success, 
234       "can't upload a deletion diff to changeset: #{@response.body}"
235
236     # check the response is well-formed
237     assert_select "diffResult>node", 1
238
239     # check that everything was deleted
240     assert_equal false, Node.find(node.id).visible
241   end
242
243   ##
244   # test that deleting stuff in a transaction doesn't bypass the checks
245   # to ensure that used elements are not deleted.
246   def test_upload_delete_invalid
247     basic_authorization "test@openstreetmap.org", "test"
248
249     diff = XML::Document.new
250     diff.root = XML::Node.new "osmChange"
251     delete = XML::Node.new "delete"
252     diff.root << delete
253     delete << current_relations(:visible_relation).to_xml_node
254     delete << current_ways(:used_way).to_xml_node
255     delete << current_nodes(:node_used_by_relationship).to_xml_node
256
257     # upload it
258     content diff
259     post :upload, :id => 1
260     assert_response :precondition_failed, 
261       "shouldn't be able to upload a invalid deletion diff: #{@response.body}"
262
263     # check that nothing was, in fact, deleted
264     assert_equal true, Node.find(current_nodes(:node_used_by_relationship).id).visible
265     assert_equal true, Way.find(current_ways(:used_way).id).visible
266     assert_equal true, Relation.find(current_relations(:visible_relation).id).visible
267   end
268
269   ##
270   # upload something which creates new objects and inserts them into
271   # existing containers using placeholders.
272   def test_upload_complex
273     basic_authorization "test@openstreetmap.org", "test"
274
275     # simple diff to create a node way and relation using placeholders
276     diff = <<EOF
277 <osmChange>
278  <create>
279   <node id='-1' lon='0' lat='0' changeset='1'>
280    <tag k='foo' v='bar'/>
281    <tag k='baz' v='bat'/>
282   </node>
283  </create>
284  <modify>
285   <way id='1' changeset='1' version='1'>
286    <nd ref='-1'/>
287    <nd ref='3'/>
288   </way>
289   <relation id='1' changeset='1' version='1'>
290    <member type='way' role='some' ref='3'/>
291    <member type='node' role='some' ref='-1'/>
292    <member type='relation' role='some' ref='3'/>
293   </relation>
294  </modify>
295 </osmChange>
296 EOF
297
298     # upload it
299     content diff
300     post :upload, :id => 1
301     assert_response :success, 
302       "can't upload a complex diff to changeset: #{@response.body}"
303
304     # check the returned payload
305     assert_select "diffResult[version=#{API_VERSION}][generator=\"#{GENERATOR}\"]", 1
306     assert_select "diffResult>node", 1
307     assert_select "diffResult>way", 1
308     assert_select "diffResult>relation", 1
309
310     # inspect the response to find out what the new element IDs are
311     doc = XML::Parser.string(@response.body).parse
312     new_node_id = doc.find("//diffResult/node").first["new_id"].to_i
313
314     # check that the changes made it into the database
315     assert_equal 2, Node.find(new_node_id).tags.size, "new node should have two tags"
316     assert_equal [new_node_id, 3], Way.find(1).nds, "way nodes should match"
317     Relation.find(1).members.each do |type,id,role|
318       if type == 'node'
319         assert_equal new_node_id, id, "relation should contain new node"
320       end
321     end
322   end
323     
324   ##
325   # create a diff which references several changesets, which should cause
326   # a rollback and none of the diff gets committed
327   def test_upload_invalid_changesets
328     basic_authorization "test@openstreetmap.org", "test"
329
330     # simple diff to create a node way and relation using placeholders
331     diff = <<EOF
332 <osmChange>
333  <modify>
334   <node id='1' lon='0' lat='0' changeset='1' version='1'/>
335   <way id='1' changeset='1' version='1'>
336    <nd ref='3'/>
337   </way>
338  </modify>
339  <modify>
340   <relation id='1' changeset='1' version='1'>
341    <member type='way' role='some' ref='3'/>
342    <member type='node' role='some' ref='5'/>
343    <member type='relation' role='some' ref='3'/>
344   </relation>
345  </modify>
346  <create>
347   <node id='-1' lon='0' lat='0' changeset='4'>
348    <tag k='foo' v='bar'/>
349    <tag k='baz' v='bat'/>
350   </node>
351  </create>
352 </osmChange>
353 EOF
354     # cache the objects before uploading them
355     node = current_nodes(:visible_node)
356     way = current_ways(:visible_way)
357     rel = current_relations(:visible_relation)
358
359     # upload it
360     content diff
361     post :upload, :id => 1
362     assert_response :conflict, 
363       "uploading a diff with multiple changsets should have failed"
364
365     # check that objects are unmodified
366     assert_nodes_are_equal(node, Node.find(1))
367     assert_ways_are_equal(way, Way.find(1))
368   end
369     
370   ##
371   # upload multiple versions of the same element in the same diff.
372   def test_upload_multiple_valid
373     basic_authorization "test@openstreetmap.org", "test"
374
375     # change the location of a node multiple times, each time referencing
376     # the last version. doesn't this depend on version numbers being
377     # sequential?
378     diff = <<EOF
379 <osmChange>
380  <modify>
381   <node id='1' lon='0' lat='0' changeset='1' version='1'/>
382   <node id='1' lon='1' lat='0' changeset='1' version='2'/>
383   <node id='1' lon='1' lat='1' changeset='1' version='3'/>
384   <node id='1' lon='1' lat='2' changeset='1' version='4'/>
385   <node id='1' lon='2' lat='2' changeset='1' version='5'/>
386   <node id='1' lon='3' lat='2' changeset='1' version='6'/>
387   <node id='1' lon='3' lat='3' changeset='1' version='7'/>
388   <node id='1' lon='9' lat='9' changeset='1' version='8'/>
389  </modify>
390 </osmChange>
391 EOF
392
393     # upload it
394     content diff
395     post :upload, :id => 1
396     assert_response :success, 
397       "can't upload multiple versions of an element in a diff: #{@response.body}"
398     
399     # check the response is well-formed. its counter-intuitive, but the
400     # API will return multiple elements with the same ID and different
401     # version numbers for each change we made.
402     assert_select "diffResult>node", 8
403   end
404
405   ##
406   # upload multiple versions of the same element in the same diff, but
407   # keep the version numbers the same.
408   def test_upload_multiple_duplicate
409     basic_authorization "test@openstreetmap.org", "test"
410
411     diff = <<EOF
412 <osmChange>
413  <modify>
414   <node id='1' lon='0' lat='0' changeset='1' version='1'/>
415   <node id='1' lon='1' lat='1' changeset='1' version='1'/>
416  </modify>
417 </osmChange>
418 EOF
419
420     # upload it
421     content diff
422     post :upload, :id => 1
423     assert_response :conflict, 
424       "shouldn't be able to upload the same element twice in a diff: #{@response.body}"
425   end
426
427   ##
428   # try to upload some elements without specifying the version
429   def test_upload_missing_version
430     basic_authorization "test@openstreetmap.org", "test"
431
432     diff = <<EOF
433 <osmChange>
434  <modify>
435   <node id='1' lon='1' lat='1' changeset='1'/>
436  </modify>
437 </osmChange>
438 EOF
439
440     # upload it
441     content diff
442     post :upload, :id => 1
443     assert_response :bad_request, 
444       "shouldn't be able to upload an element without version: #{@response.body}"
445   end
446   
447   ##
448   # try to upload with commands other than create, modify, or delete
449   def test_action_upload_invalid
450     basic_authorization "test@openstreetmap.org", "test"
451     
452     diff = <<EOF
453 <osmChange>
454   <ping>
455     <node id='1' lon='1' lat='1' changeset='1' />
456   </ping>
457 </osmChange>
458 EOF
459   content diff
460   post :upload, :id => 1
461   assert_response :bad_request, "Shouldn't be able to upload a diff with the action ping"
462   assert_equal @response.body, "Unknown action ping, choices are create, modify, delete."
463   end
464
465   ##
466   # upload a valid changeset which has a mixture of whitespace
467   # to check a bug reported by ivansanchez (#1565).
468   def test_upload_whitespace_valid
469     basic_authorization "test@openstreetmap.org", "test"
470
471     diff = <<EOF
472 <osmChange>
473  <modify><node id='1' lon='0' lat='0' changeset='1' 
474   version='1'></node>
475   <node id='1' lon='1' lat='1' changeset='1' version='2'><tag k='k' v='v'/></node></modify>
476  <modify>
477   <relation id='1' changeset='1' version='1'><member 
478    type='way' role='some' ref='3'/><member 
479     type='node' role='some' ref='5'/>
480    <member type='relation' role='some' ref='3'/>
481   </relation>
482  </modify></osmChange>
483 EOF
484
485     # upload it
486     content diff
487     post :upload, :id => 1
488     assert_response :success, 
489       "can't upload a valid diff with whitespace variations to changeset: #{@response.body}"
490
491     # check the response is well-formed
492     assert_select "diffResult>node", 2
493     assert_select "diffResult>relation", 1
494
495     # check that the changes made it into the database
496     assert_equal 1, Node.find(1).tags.size, "node 1 should now have one tag"
497     assert_equal 0, Relation.find(1).tags.size, "relation 1 should now have no tags"
498   end
499
500   ##
501   # upload a valid changeset which has a mixture of whitespace
502   # to check a bug reported by ivansanchez.
503   def test_upload_reuse_placeholder_valid
504     basic_authorization "test@openstreetmap.org", "test"
505
506     diff = <<EOF
507 <osmChange>
508  <create>
509   <node id='-1' lon='0' lat='0' changeset='1'>
510    <tag k="foo" v="bar"/>
511   </node>
512  </create>
513  <modify>
514   <node id='-1' lon='1' lat='1' changeset='1' version='1'/>
515  </modify>
516  <delete>
517   <node id='-1' lon='2' lat='2' changeset='1' version='2'/>
518  </delete>
519 </osmChange>
520 EOF
521
522     # upload it
523     content diff
524     post :upload, :id => 1
525     assert_response :success, 
526       "can't upload a valid diff with re-used placeholders to changeset: #{@response.body}"
527
528     # check the response is well-formed
529     assert_select "diffResult>node", 3
530     assert_select "diffResult>node[old_id=-1]", 3
531   end
532
533   ##
534   # test what happens if a diff upload re-uses placeholder IDs in an
535   # illegal way.
536   def test_upload_placeholder_invalid
537     basic_authorization "test@openstreetmap.org", "test"
538
539     diff = <<EOF
540 <osmChange>
541  <create>
542   <node id='-1' lon='0' lat='0' changeset='1' version='1'/>
543   <node id='-1' lon='1' lat='1' changeset='1' version='1'/>
544   <node id='-1' lon='2' lat='2' changeset='1' version='2'/>
545  </create>
546 </osmChange>
547 EOF
548
549     # upload it
550     content diff
551     post :upload, :id => 1
552     assert_response :bad_request, 
553       "shouldn't be able to re-use placeholder IDs"
554   end
555
556   ##
557   # test for more issues in #1568
558   def test_upload_empty_invalid
559     basic_authorization "test@openstreetmap.org", "test"
560
561     [ "<osmChange/>",
562       "<osmChange></osmChange>",
563       "<osmChange><modify/></osmChange>",
564       "<osmChange><modify></modify></osmChange>"
565     ].each do |diff|
566       # upload it
567       content diff
568       post :upload, :id => 1
569       assert_response(:success, "should be able to upload " +
570                       "empty changeset: " + diff)
571     end
572   end
573
574   ##
575   # when we make some simple changes we get the same changes back from the 
576   # diff download.
577   def test_diff_download_simple
578     basic_authorization(users(:normal_user).email, "test")
579
580     # create a temporary changeset
581     content "<osm><changeset>" +
582       "<tag k='created_by' v='osm test suite checking changesets'/>" + 
583       "</changeset></osm>"
584     put :create
585     assert_response :success
586     changeset_id = @response.body.to_i
587
588     # add a diff to it
589     diff = <<EOF
590 <osmChange>
591  <modify>
592   <node id='1' lon='0' lat='0' changeset='#{changeset_id}' version='1'/>
593   <node id='1' lon='1' lat='0' changeset='#{changeset_id}' version='2'/>
594   <node id='1' lon='1' lat='1' changeset='#{changeset_id}' version='3'/>
595   <node id='1' lon='1' lat='2' changeset='#{changeset_id}' version='4'/>
596   <node id='1' lon='2' lat='2' changeset='#{changeset_id}' version='5'/>
597   <node id='1' lon='3' lat='2' changeset='#{changeset_id}' version='6'/>
598   <node id='1' lon='3' lat='3' changeset='#{changeset_id}' version='7'/>
599   <node id='1' lon='9' lat='9' changeset='#{changeset_id}' version='8'/>
600  </modify>
601 </osmChange>
602 EOF
603
604     # upload it
605     content diff
606     post :upload, :id => changeset_id
607     assert_response :success, 
608       "can't upload multiple versions of an element in a diff: #{@response.body}"
609     
610     get :download, :id => changeset_id
611     assert_response :success
612
613     assert_select "osmChange", 1
614     assert_select "osmChange>modify", 8
615     assert_select "osmChange>modify>node", 8
616   end
617   
618   ##
619   # culled this from josm to ensure that nothing in the way that josm
620   # is formatting the request is causing it to fail.
621   #
622   # NOTE: the error turned out to be something else completely!
623   def test_josm_upload
624     basic_authorization(users(:normal_user).email, "test")
625
626     # create a temporary changeset
627     content "<osm><changeset>" +
628       "<tag k='created_by' v='osm test suite checking changesets'/>" + 
629       "</changeset></osm>"
630     put :create
631     assert_response :success
632     changeset_id = @response.body.to_i
633
634     diff = <<OSM
635 <osmChange version="0.6" generator="JOSM">
636 <create version="0.6" generator="JOSM">
637   <node id='-1' visible='true' changeset='#{changeset_id}' lat='51.49619982187321' lon='-0.18722061869438314' />
638   <node id='-2' visible='true' changeset='#{changeset_id}' lat='51.496359883909605' lon='-0.18653093576241928' />
639   <node id='-3' visible='true' changeset='#{changeset_id}' lat='51.49598132358285' lon='-0.18719613290981638' />
640   <node id='-4' visible='true' changeset='#{changeset_id}' lat='51.4961591711078' lon='-0.18629015888084607' />
641   <node id='-5' visible='true' changeset='#{changeset_id}' lat='51.49582126021711' lon='-0.18708186591517145' />
642   <node id='-6' visible='true' changeset='#{changeset_id}' lat='51.49591018437858' lon='-0.1861432441734455' />
643   <node id='-7' visible='true' changeset='#{changeset_id}' lat='51.49560784152179' lon='-0.18694719410005425' />
644   <node id='-8' visible='true' changeset='#{changeset_id}' lat='51.49567389979617' lon='-0.1860289771788006' />
645   <node id='-9' visible='true' changeset='#{changeset_id}' lat='51.49543761398892' lon='-0.186820684213126' />
646   <way id='-10' action='modiy' visible='true' changeset='#{changeset_id}'>
647     <nd ref='-1' />
648     <nd ref='-2' />
649     <nd ref='-3' />
650     <nd ref='-4' />
651     <nd ref='-5' />
652     <nd ref='-6' />
653     <nd ref='-7' />
654     <nd ref='-8' />
655     <nd ref='-9' />
656     <tag k='highway' v='residential' />
657     <tag k='name' v='Foobar Street' />
658   </way>
659 </create>
660 </osmChange>
661 OSM
662
663     # upload it
664     content diff
665     post :upload, :id => changeset_id
666     assert_response :success, 
667       "can't upload a diff from JOSM: #{@response.body}"
668     
669     get :download, :id => changeset_id
670     assert_response :success
671
672     assert_select "osmChange", 1
673     assert_select "osmChange>create>node", 9
674     assert_select "osmChange>create>way", 1
675     assert_select "osmChange>create>way>nd", 9
676     assert_select "osmChange>create>way>tag", 2
677   end
678
679   ##
680   # when we make some complex changes we get the same changes back from the 
681   # diff download.
682   def test_diff_download_complex
683     basic_authorization(users(:normal_user).email, "test")
684
685     # create a temporary changeset
686     content "<osm><changeset>" +
687       "<tag k='created_by' v='osm test suite checking changesets'/>" + 
688       "</changeset></osm>"
689     put :create
690     assert_response :success
691     changeset_id = @response.body.to_i
692
693     # add a diff to it
694     diff = <<EOF
695 <osmChange>
696  <delete>
697   <node id='1' lon='0' lat='0' changeset='#{changeset_id}' version='1'/>
698  </delete>
699  <create>
700   <node id='-1' lon='9' lat='9' changeset='#{changeset_id}' version='0'/>
701   <node id='-2' lon='8' lat='9' changeset='#{changeset_id}' version='0'/>
702   <node id='-3' lon='7' lat='9' changeset='#{changeset_id}' version='0'/>
703  </create>
704  <modify>
705   <node id='3' lon='20' lat='15' changeset='#{changeset_id}' version='1'/>
706   <way id='1' changeset='#{changeset_id}' version='1'>
707    <nd ref='3'/>
708    <nd ref='-1'/>
709    <nd ref='-2'/>
710    <nd ref='-3'/>
711   </way>
712  </modify>
713 </osmChange>
714 EOF
715
716     # upload it
717     content diff
718     post :upload, :id => changeset_id
719     assert_response :success, 
720       "can't upload multiple versions of an element in a diff: #{@response.body}"
721     
722     get :download, :id => changeset_id
723     assert_response :success
724
725     assert_select "osmChange", 1
726     assert_select "osmChange>create", 3
727     assert_select "osmChange>delete", 1
728     assert_select "osmChange>modify", 2
729     assert_select "osmChange>create>node", 3
730     assert_select "osmChange>delete>node", 1 
731     assert_select "osmChange>modify>node", 1
732     assert_select "osmChange>modify>way", 1
733   end
734
735   ##
736   # check that the bounding box of a changeset gets updated correctly
737   def test_changeset_bbox
738     basic_authorization "test@openstreetmap.org", "test"
739
740     # create a new changeset
741     content "<osm><changeset/></osm>"
742     put :create
743     assert_response :success, "Creating of changeset failed."
744     changeset_id = @response.body.to_i
745     
746     # add a single node to it
747     with_controller(NodeController.new) do
748       content "<osm><node lon='1' lat='2' changeset='#{changeset_id}'/></osm>"
749       put :create
750       assert_response :success, "Couldn't create node."
751     end
752
753     # get the bounding box back from the changeset
754     get :read, :id => changeset_id
755     assert_response :success, "Couldn't read back changeset."
756     assert_select "osm>changeset[min_lon=1.0]", 1
757     assert_select "osm>changeset[max_lon=1.0]", 1
758     assert_select "osm>changeset[min_lat=2.0]", 1
759     assert_select "osm>changeset[max_lat=2.0]", 1
760
761     # add another node to it
762     with_controller(NodeController.new) do
763       content "<osm><node lon='2' lat='1' changeset='#{changeset_id}'/></osm>"
764       put :create
765       assert_response :success, "Couldn't create second node."
766     end
767
768     # get the bounding box back from the changeset
769     get :read, :id => changeset_id
770     assert_response :success, "Couldn't read back changeset for the second time."
771     assert_select "osm>changeset[min_lon=1.0]", 1
772     assert_select "osm>changeset[max_lon=2.0]", 1
773     assert_select "osm>changeset[min_lat=1.0]", 1
774     assert_select "osm>changeset[max_lat=2.0]", 1
775
776     # add (delete) a way to it
777     with_controller(WayController.new) do
778       content update_changeset(current_ways(:visible_way).to_xml,
779                                changeset_id)
780       put :delete, :id => current_ways(:visible_way).id
781       assert_response :success, "Couldn't delete a way."
782     end
783
784     # get the bounding box back from the changeset
785     get :read, :id => changeset_id
786     assert_response :success, "Couldn't read back changeset for the third time."
787     assert_select "osm>changeset[min_lon=1.0]", 1
788     assert_select "osm>changeset[max_lon=3.1]", 1
789     assert_select "osm>changeset[min_lat=1.0]", 1
790     assert_select "osm>changeset[max_lat=3.1]", 1    
791   end
792
793   ##
794   # test that the changeset :include method works as it should
795   def test_changeset_include
796     basic_authorization "test@openstreetmap.org", "test"
797
798     # create a new changeset
799     content "<osm><changeset/></osm>"
800     put :create
801     assert_response :success, "Creating of changeset failed."
802     changeset_id = @response.body.to_i
803
804     # NOTE: the include method doesn't over-expand, like inserting
805     # a real method does. this is because we expect the client to 
806     # know what it is doing!
807     check_after_include(changeset_id,  1,  1, [ 1,  1,  1,  1])
808     check_after_include(changeset_id,  3,  3, [ 1,  1,  3,  3])
809     check_after_include(changeset_id,  4,  2, [ 1,  1,  4,  3])
810     check_after_include(changeset_id,  2,  2, [ 1,  1,  4,  3])
811     check_after_include(changeset_id, -1, -1, [-1, -1,  4,  3])
812     check_after_include(changeset_id, -2,  5, [-2, -1,  4,  5])
813   end
814
815   ##
816   # test the query functionality of changesets
817   def test_query
818     get :query, :bbox => "-10,-10, 10, 10"
819     assert_response :success, "can't get changesets in bbox"
820     assert_changesets [1,4,6]
821
822     get :query, :bbox => "4.5,4.5,4.6,4.6"
823     assert_response :success, "can't get changesets in bbox"
824     assert_changesets [1]
825
826     # can't get changesets of user 1 without authenticating
827     get :query, :user => users(:normal_user).id
828     assert_response :not_found, "shouldn't be able to get changesets by non-public user"
829
830     # but this should work
831     basic_authorization "test@openstreetmap.org", "test"
832     get :query, :user => users(:normal_user).id
833     assert_response :success, "can't get changesets by user"
834     assert_changesets [1,3,4,6]
835
836     get :query, :user => users(:normal_user).id, :open => true
837     assert_response :success, "can't get changesets by user and open"
838     assert_changesets [1,4]
839
840     get :query, :time => '2007-12-31'
841     assert_response :success, "can't get changesets by time-since"
842     assert_changesets [1,2,4,5,6]
843
844     get :query, :time => '2008-01-01T12:34Z'
845     assert_response :success, "can't get changesets by time-since with hour"
846     assert_changesets [1,2,4,5,6]
847
848     get :query, :time => '2007-12-31T23:59Z,2008-01-01T00:01Z'
849     assert_response :success, "can't get changesets by time-range"
850     assert_changesets [1,4,5,6]
851
852     get :query, :open => 'true'
853     assert_response :success, "can't get changesets by open-ness"
854     assert_changesets [1,2,4]
855   end
856
857   ##
858   # check that errors are returned if garbage is inserted 
859   # into query strings
860   def test_query_invalid
861     [ "abracadabra!",
862       "1,2,3,F",
863       ";drop table users;"
864       ].each do |bbox|
865       get :query, :bbox => bbox
866       assert_response :bad_request, "'#{bbox}' isn't a bbox"
867     end
868
869     [ "now()",
870       "00-00-00",
871       ";drop table users;",
872       ",",
873       "-,-"
874       ].each do |time|
875       get :query, :time => time
876       assert_response :bad_request, "'#{time}' isn't a valid time range"
877     end
878
879     [ "me",
880       "foobar",
881       "-1",
882       "0"
883       ].each do |uid|
884       get :query, :user => uid
885       assert_response :bad_request, "'#{uid}' isn't a valid user ID"
886     end
887   end
888
889   ##
890   # check updating tags on a changeset
891   def test_changeset_update
892     changeset = changesets(:normal_user_first_change)
893     new_changeset = changeset.to_xml
894     new_tag = XML::Node.new "tag"
895     new_tag['k'] = "tagtesting"
896     new_tag['v'] = "valuetesting"
897     new_changeset.find("//osm/changeset").first << new_tag
898     content new_changeset
899
900     # try without any authorization
901     put :update, :id => changeset.id
902     assert_response :unauthorized
903
904     # try with the wrong authorization
905     basic_authorization "test@example.com", "test"
906     put :update, :id => changeset.id
907     assert_response :conflict
908
909     # now this should work...
910     basic_authorization "test@openstreetmap.org", "test"
911     put :update, :id => changeset.id
912     assert_response :success
913
914     assert_select "osm>changeset[id=#{changeset.id}]", 1
915     assert_select "osm>changeset>tag", 2
916     assert_select "osm>changeset>tag[k=tagtesting][v=valuetesting]", 1
917   end
918   
919   ##
920   # check that a user different from the one who opened the changeset
921   # can't modify it.
922   def test_changeset_update_invalid
923     basic_authorization "test@example.com", "test"
924
925     changeset = changesets(:normal_user_first_change)
926     new_changeset = changeset.to_xml
927     new_tag = XML::Node.new "tag"
928     new_tag['k'] = "testing"
929     new_tag['v'] = "testing"
930     new_changeset.find("//osm/changeset").first << new_tag
931
932     content new_changeset
933     put :update, :id => changeset.id
934     assert_response :conflict
935   end
936
937   ##
938   # check that a changeset can contain a certain max number of changes.
939   def test_changeset_limits
940     basic_authorization "test@openstreetmap.org", "test"
941
942     # open a new changeset
943     content "<osm><changeset/></osm>"
944     put :create
945     assert_response :success, "can't create a new changeset"
946     cs_id = @response.body.to_i
947
948     # start the counter just short of where the changeset should finish.
949     offset = 10
950     # alter the database to set the counter on the changeset directly, 
951     # otherwise it takes about 6 minutes to fill all of them.
952     changeset = Changeset.find(cs_id)
953     changeset.num_changes = Changeset::MAX_ELEMENTS - offset
954     changeset.save!
955
956     with_controller(NodeController.new) do
957       # create a new node
958       content "<osm><node changeset='#{cs_id}' lat='0.0' lon='0.0'/></osm>"
959       put :create
960       assert_response :success, "can't create a new node"
961       node_id = @response.body.to_i
962
963       get :read, :id => node_id
964       assert_response :success, "can't read back new node"
965       node_doc = XML::Parser.string(@response.body).parse
966       node_xml = node_doc.find("//osm/node").first
967
968       # loop until we fill the changeset with nodes
969       offset.times do |i|
970         node_xml['lat'] = rand.to_s
971         node_xml['lon'] = rand.to_s
972         node_xml['version'] = (i+1).to_s
973
974         content node_doc
975         put :update, :id => node_id
976         assert_response :success, "attempt #{i} should have succeeded"
977       end
978
979       # trying again should fail
980       node_xml['lat'] = rand.to_s
981       node_xml['lon'] = rand.to_s
982       node_xml['version'] = offset.to_s
983       
984       content node_doc
985       put :update, :id => node_id
986       assert_response :conflict, "final attempt should have failed"
987     end
988
989     changeset = Changeset.find(cs_id)
990     assert_equal Changeset::MAX_ELEMENTS + 1, changeset.num_changes
991
992     # check that the changeset is now closed as well
993     assert(!changeset.is_open?, 
994            "changeset should have been auto-closed by exceeding " + 
995            "element limit.")
996   end
997   
998   #------------------------------------------------------------
999   # utility functions
1000   #------------------------------------------------------------
1001
1002   ##
1003   # boilerplate for checking that certain changesets exist in the
1004   # output.
1005   def assert_changesets(ids)
1006     assert_select "osm>changeset", ids.size
1007     ids.each do |id|
1008       assert_select "osm>changeset[id=#{id}]", 1
1009     end
1010   end
1011
1012   ##
1013   # call the include method and assert properties of the bbox
1014   def check_after_include(changeset_id, lon, lat, bbox)
1015     content "<osm><node lon='#{lon}' lat='#{lat}'/></osm>"
1016     post :expand_bbox, :id => changeset_id
1017     assert_response :success, "Setting include of changeset failed: #{@response.body}"
1018
1019     # check exactly one changeset
1020     assert_select "osm>changeset", 1
1021     assert_select "osm>changeset[id=#{changeset_id}]", 1
1022
1023     # check the bbox
1024     doc = XML::Parser.string(@response.body).parse
1025     changeset = doc.find("//osm/changeset").first
1026     assert_equal bbox[0], changeset['min_lon'].to_f, "min lon"
1027     assert_equal bbox[1], changeset['min_lat'].to_f, "min lat"
1028     assert_equal bbox[2], changeset['max_lon'].to_f, "max lon"
1029     assert_equal bbox[3], changeset['max_lat'].to_f, "max lat"
1030   end
1031
1032   ##
1033   # update the changeset_id of a way element
1034   def update_changeset(xml, changeset_id)
1035     xml_attr_rewrite(xml, 'changeset', changeset_id)
1036   end
1037
1038   ##
1039   # update an attribute in a way element
1040   def xml_attr_rewrite(xml, name, value)
1041     xml.find("//osm/way").first[name] = value.to_s
1042     return xml
1043   end
1044
1045 end