Add tests for new redirects and fix a few bugs in the redirects
This commit is contained in:
parent
3cd5f45e08
commit
fb9b4edcdd
2 changed files with 55 additions and 3 deletions
|
@ -9,11 +9,63 @@ class RedirectTest < ActionDispatch::IntegrationTest
|
|||
get "/browse/changesets"
|
||||
assert_response :redirect
|
||||
assert_redirected_to "/history"
|
||||
|
||||
get "/browse/friends"
|
||||
assert_response :redirect
|
||||
assert_redirected_to "/history/friends"
|
||||
|
||||
get "/browse/nearby"
|
||||
assert_response :redirect
|
||||
assert_redirected_to "/history/nearby"
|
||||
|
||||
get "/user/name/edits"
|
||||
assert_response :redirect
|
||||
assert_redirected_to "/user/name/history"
|
||||
end
|
||||
|
||||
def test_history_feed_redirects
|
||||
get "/browse/changesets/feed"
|
||||
assert_response :redirect
|
||||
assert_redirected_to "/history/feed"
|
||||
|
||||
get "/user/name/edits/feed"
|
||||
assert_response :redirect
|
||||
assert_redirected_to "/user/name/history/feed"
|
||||
end
|
||||
|
||||
def test_browse_redirects
|
||||
get "/browse/node/1"
|
||||
assert_response :redirect
|
||||
assert_redirected_to "/node/1"
|
||||
|
||||
get "/browse/way/1"
|
||||
assert_response :redirect
|
||||
assert_redirected_to "/way/1"
|
||||
|
||||
get "/browse/relation/1"
|
||||
assert_response :redirect
|
||||
assert_redirected_to "/relation/1"
|
||||
|
||||
get "/browse/changeset/1"
|
||||
assert_response :redirect
|
||||
assert_redirected_to "/changeset/1"
|
||||
|
||||
get "/browse/note/1"
|
||||
assert_response :redirect
|
||||
assert_redirected_to "/note/1"
|
||||
end
|
||||
|
||||
def test_browse_history_redirects
|
||||
get "/browse/node/1/history"
|
||||
assert_response :redirect
|
||||
assert_redirected_to "/node/1/history"
|
||||
|
||||
get "/browse/way/1/history"
|
||||
assert_response :redirect
|
||||
assert_redirected_to "/way/1/history"
|
||||
|
||||
get "/browse/relation/1/history"
|
||||
assert_response :redirect
|
||||
assert_redirected_to "/relation/1/history"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue