mirror of
https://github.com/redmine/redmine.git
synced 2025-11-02 11:25:55 +01:00
Fixed that back_url=/ param is ignored (#16467).
git-svn-id: http://svn.redmine.org/redmine/trunk@13040 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -61,8 +61,14 @@ class AccountControllerTest < ActionController::TestCase
|
||||
|
||||
def test_login_should_redirect_to_back_url_param
|
||||
# request.uri is "test.host" in test environment
|
||||
post :login, :username => 'jsmith', :password => 'jsmith', :back_url => 'http://test.host/issues/show/1'
|
||||
assert_redirected_to '/issues/show/1'
|
||||
back_urls = [
|
||||
'http://test.host/issues/show/1',
|
||||
'/'
|
||||
]
|
||||
back_urls.each do |back_url|
|
||||
post :login, :username => 'jsmith', :password => 'jsmith', :back_url => back_url
|
||||
assert_redirected_to back_url
|
||||
end
|
||||
end
|
||||
|
||||
def test_login_should_not_redirect_to_another_host
|
||||
|
||||
Reference in New Issue
Block a user