X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/8da385e0db1d56a5cfc1d7355960f43ab8958927..2122ec263bf776c214c3d18fb28497ee827ca0f1:/test/controllers/way_controller_test.rb diff --git a/test/controllers/way_controller_test.rb b/test/controllers/way_controller_test.rb index 7813fb029..bdb67b09f 100644 --- a/test/controllers/way_controller_test.rb +++ b/test/controllers/way_controller_test.rb @@ -509,9 +509,14 @@ class WayControllerTest < ActionController::TestCase ## # Try adding a new tag to a way def test_add_tags + private_user = create(:user, :data_public => false) + private_way = create(:way_with_nodes, :nodes_count => 2, :changeset => create(:changeset, :user => private_user)) + user = create(:user) + way = create(:way_with_nodes, :nodes_count => 2, :changeset => create(:changeset, :user => user)) + ## Try with the non-public user # setup auth - basic_authorization(users(:normal_user).email, "test") + basic_authorization(private_user.email, "test") # add an identical tag to the way tag_xml = XML::Node.new("tag") @@ -519,18 +524,18 @@ class WayControllerTest < ActionController::TestCase tag_xml["v"] = "yes" # add the tag into the existing xml - way_xml = current_ways(:visible_way).to_xml + way_xml = private_way.to_xml way_xml.find("//osm/way").first << tag_xml # try and upload it content way_xml - put :update, :id => current_ways(:visible_way).id + put :update, :id => private_way.id assert_response :forbidden, "adding a duplicate tag to a way for a non-public should fail with 'forbidden'" ## Now try with the public user # setup auth - basic_authorization(users(:public_user).email, "test") + basic_authorization(user.email, "test") # add an identical tag to the way tag_xml = XML::Node.new("tag") @@ -538,68 +543,78 @@ class WayControllerTest < ActionController::TestCase tag_xml["v"] = "yes" # add the tag into the existing xml - way_xml = current_ways(:visible_way).to_xml + way_xml = way.to_xml way_xml.find("//osm/way").first << tag_xml # try and upload it content way_xml - put :update, :id => current_ways(:visible_way).id + put :update, :id => way.id assert_response :success, "adding a new tag to a way should succeed" - assert_equal current_ways(:visible_way).version + 1, @response.body.to_i + assert_equal way.version + 1, @response.body.to_i end ## # Try adding a duplicate of an existing tag to a way def test_add_duplicate_tags + private_user = create(:user, :data_public => false) + private_way = create(:way, :changeset => create(:changeset, :user => private_user)) + private_existing_tag = create(:way_tag, :way => private_way) + user = create(:user) + way = create(:way, :changeset => create(:changeset, :user => user)) + existing_tag = create(:way_tag, :way => way) + ## Try with the non-public user # setup auth - basic_authorization(users(:normal_user).email, "test") - - existing = create(:way_tag, :way => current_ways(:visible_way)) + basic_authorization(private_user.email, "test") # add an identical tag to the way tag_xml = XML::Node.new("tag") - tag_xml["k"] = existing.k - tag_xml["v"] = existing.v + tag_xml["k"] = private_existing_tag.k + tag_xml["v"] = private_existing_tag.v # add the tag into the existing xml - way_xml = current_ways(:visible_way).to_xml + way_xml = private_way.to_xml way_xml.find("//osm/way").first << tag_xml # try and upload it content way_xml - put :update, :id => current_ways(:visible_way).id + put :update, :id => private_way.id assert_response :forbidden, "adding a duplicate tag to a way for a non-public should fail with 'forbidden'" ## Now try with the public user # setup auth - basic_authorization(users(:public_user).email, "test") + basic_authorization(user.email, "test") # add an identical tag to the way tag_xml = XML::Node.new("tag") - tag_xml["k"] = existing.k - tag_xml["v"] = existing.v + tag_xml["k"] = existing_tag.k + tag_xml["v"] = existing_tag.v # add the tag into the existing xml - way_xml = current_ways(:visible_way).to_xml + way_xml = way.to_xml way_xml.find("//osm/way").first << tag_xml # try and upload it content way_xml - put :update, :id => current_ways(:visible_way).id + put :update, :id => way.id assert_response :bad_request, "adding a duplicate tag to a way should fail with 'bad request'" - assert_equal "Element way/#{current_ways(:visible_way).id} has duplicate tags with key #{existing.k}", @response.body + assert_equal "Element way/#{way.id} has duplicate tags with key #{existing_tag.k}", @response.body end ## # Try adding a new duplicate tags to a way def test_new_duplicate_tags + private_user = create(:user, :data_public => false) + private_way = create(:way, :changeset => create(:changeset, :user => private_user)) + user = create(:user) + way = create(:way, :changeset => create(:changeset, :user => user)) + ## First test with the non-public user so should be rejected # setup auth - basic_authorization(users(:normal_user).email, "test") + basic_authorization(private_user.email, "test") # create duplicate tag tag_xml = XML::Node.new("tag") @@ -607,20 +622,20 @@ class WayControllerTest < ActionController::TestCase tag_xml["v"] = "foobar" # add the tag into the existing xml - way_xml = current_ways(:visible_way).to_xml + way_xml = private_way.to_xml # add two copies of the tag way_xml.find("//osm/way").first << tag_xml.copy(true) << tag_xml # try and upload it content way_xml - put :update, :id => current_ways(:visible_way).id + put :update, :id => private_way.id assert_response :forbidden, "adding new duplicate tags to a way using a non-public user should fail with 'forbidden'" ## Now test with the public user # setup auth - basic_authorization(users(:public_user).email, "test") + basic_authorization(user.email, "test") # create duplicate tag tag_xml = XML::Node.new("tag") @@ -628,17 +643,17 @@ class WayControllerTest < ActionController::TestCase tag_xml["v"] = "foobar" # add the tag into the existing xml - way_xml = current_ways(:visible_way).to_xml + way_xml = way.to_xml # add two copies of the tag way_xml.find("//osm/way").first << tag_xml.copy(true) << tag_xml # try and upload it content way_xml - put :update, :id => current_ways(:visible_way).id + put :update, :id => way.id assert_response :bad_request, "adding new duplicate tags to a way should fail with 'bad request'" - assert_equal "Element way/#{current_ways(:visible_way).id} has duplicate tags with key i_am_a_duplicate", @response.body + assert_equal "Element way/#{way.id} has duplicate tags with key i_am_a_duplicate", @response.body end ## @@ -646,12 +661,17 @@ class WayControllerTest < ActionController::TestCase # But be a bit subtle - use unicode decoding ambiguities to use different # binary strings which have the same decoding. def test_invalid_duplicate_tags + private_user = create(:user, :data_public => false) + private_changeset = create(:changeset, :user => private_user) + user = create(:user) + changeset = create(:changeset, :user => user) + ## First make sure that you can't with a non-public user # setup auth - basic_authorization(users(:normal_user).email, "test") + basic_authorization(private_user.email, "test") # add the tag into the existing xml - way_str = "" + way_str = "" way_str << "" way_str << "" way_str << "" @@ -664,10 +684,10 @@ class WayControllerTest < ActionController::TestCase ## Now do it with a public user # setup auth - basic_authorization(users(:public_user).email, "test") + basic_authorization(user.email, "test") # add the tag into the existing xml - way_str = "" + way_str = "" way_str << "" way_str << "" way_str << ""