From 6adf61fd02e519e8dce7b3e8d50042c38a1a0acf Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 7 Jul 2012 17:55:54 +0000 Subject: [PATCH] Code cleanup. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9941 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/account/password_recovery.html.erb | 23 ++++++++++++-------- test/integration/account_test.rb | 4 ++++ 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/app/views/account/password_recovery.html.erb b/app/views/account/password_recovery.html.erb index 53c635050..24da8223b 100644 --- a/app/views/account/password_recovery.html.erb +++ b/app/views/account/password_recovery.html.erb @@ -2,14 +2,19 @@ <%= error_messages_for 'user' %> -<%= form_tag({:token => @token.value}) do %> -
-

-<%= password_field_tag 'new_password', nil, :size => 25 %> -<%= l(:text_caracters_minimum, :count => Setting.password_min_length) %>

+<%= form_tag(lost_password_path) do %> + <%= hidden_field_tag 'token', @token.value %> +
+

+ + <%= password_field_tag 'new_password', nil, :size => 25 %> + <%= l(:text_caracters_minimum, :count => Setting.password_min_length) %> +

-

-<%= password_field_tag 'new_password_confirmation', nil, :size => 25 %>

-
-

<%= submit_tag l(:button_save) %>

+

+ + <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %> +

+
+

<%= submit_tag l(:button_save) %>

<% end %> diff --git a/test/integration/account_test.rb b/test/integration/account_test.rb index 9f73be2c2..d50bb894e 100644 --- a/test/integration/account_test.rb +++ b/test/integration/account_test.rb @@ -76,6 +76,7 @@ class AccountTest < ActionController::IntegrationTest get "account/lost_password" assert_response :success assert_template "account/lost_password" + assert_select 'input[name=mail]' post "account/lost_password", :mail => 'jSmith@somenet.foo' assert_redirected_to "/login" @@ -88,6 +89,9 @@ class AccountTest < ActionController::IntegrationTest get "account/lost_password", :token => token.value assert_response :success assert_template "account/password_recovery" + assert_select 'input[type=hidden][name=token][value=?]', token.value + assert_select 'input[name=new_password]' + assert_select 'input[name=new_password_confirmation]' post "account/lost_password", :token => token.value, :new_password => 'newpass', :new_password_confirmation => 'newpass' assert_redirected_to "/login" -- 2.39.5