X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/c54471ee33f79b7119eb284b03a845813a058876..0f3e5a28c04a1a7899a39d594eb05a2f48d5db6d:/test/functional/changeset_controller_test.rb?ds=inline
diff --git a/test/functional/changeset_controller_test.rb b/test/functional/changeset_controller_test.rb
index 4669df07d..591241aa0 100644
--- a/test/functional/changeset_controller_test.rb
+++ b/test/functional/changeset_controller_test.rb
@@ -217,6 +217,29 @@ EOF
assert_equal false, Relation.find(current_relations(:used_relation).id).visible
end
+ ##
+ # test uploading a delete with no lat/lon, as they are optional in
+ # the osmChange spec.
+ def test_upload_nolatlon_delete
+ basic_authorization "test@openstreetmap.org", "test"
+
+ node = current_nodes(:visible_node)
+ cs = changesets(:normal_user_first_change)
+ diff = ""
+
+ # upload it
+ content diff
+ post :upload, :id => cs.id
+ assert_response :success,
+ "can't upload a deletion diff to changeset: #{@response.body}"
+
+ # check the response is well-formed
+ assert_select "diffResult>node", 1
+
+ # check that everything was deleted
+ assert_equal false, Node.find(node.id).visible
+ end
+
##
# test that deleting stuff in a transaction doesn't bypass the checks
# to ensure that used elements are not deleted.
@@ -530,6 +553,24 @@ EOF
"shouldn't be able to re-use placeholder IDs"
end
+ ##
+ # test for more issues in #1568
+ def test_upload_empty_invalid
+ basic_authorization "test@openstreetmap.org", "test"
+
+ [ "",
+ "",
+ "",
+ ""
+ ].each do |diff|
+ # upload it
+ content diff
+ post :upload, :id => 1
+ assert_response(:success, "should be able to upload " +
+ "empty changeset: " + diff)
+ end
+ end
+
##
# when we make some simple changes we get the same changes back from the
# diff download.
@@ -954,6 +995,21 @@ EOF
"element limit.")
end
+ # This should display the last 20 changesets closed.
+ def test_list
+ @changesets = Changeset.find(:all, :order => "created_at DESC", :conditions => ['min_lat IS NOT NULL'], :limit=> 20)
+ assert @changesets.size <= 20
+ get :list
+ assert_response :success
+ assert_template "list"
+ # Now check that all 20 (or however many were returned) changesets are in the html
+ assert_select "h1", :text => "Recent Changes", :count => 1
+ assert_select "table[id='keyvalue'] tr", :count => @changesets.size + 1
+ @changesets.each do |changeset|
+ # FIXME this test needs rewriting - test for table contents
+ end
+ end
+
#------------------------------------------------------------
# utility functions
#------------------------------------------------------------