Robots meta tag to prevent web crawlers from indexing login, register, and lost password form (#33658).

Patch by Go MAEDA.


git-svn-id: http://svn.redmine.org/redmine/trunk@20532 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2020-12-01 02:03:01 +00:00
parent 4fba0c5240
commit 42e3e642b8
5 changed files with 20 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ class AccountControllerTest < Redmine::ControllerTest
assert_select 'input[name=username]'
assert_select 'input[name=password]'
assert_select 'head>meta[name="robots"][content=?]', 'noindex,follow,noarchive'
end
def test_get_login_while_logged_in_should_redirect_to_back_url_if_present
@@ -293,6 +294,7 @@ class AccountControllerTest < Redmine::ControllerTest
assert_select 'input[name=?]', 'user[password]'
assert_select 'input[name=?]', 'user[password_confirmation]'
assert_select 'head>meta[name="robots"][content=?]', 'noindex,follow,noarchive'
end
end
@@ -405,6 +407,7 @@ class AccountControllerTest < Redmine::ControllerTest
get :lost_password
assert_response :success
assert_select 'input[name=mail]'
assert_select 'head>meta[name="robots"][content=?]', 'noindex,follow,noarchive'
end
def test_lost_password_for_active_user_should_create_a_token
@@ -524,6 +527,7 @@ class AccountControllerTest < Redmine::ControllerTest
assert_response :success
assert_select 'input[type=hidden][name=token][value=?]', token.value
assert_select 'head>meta[name="robots"][content=?]', 'noindex,follow,noarchive'
end
def test_get_lost_password_with_invalid_token_should_redirect