summaryrefslogtreecommitdiffstats
path: root/test/functional
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-11-27 21:52:38 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-11-27 21:52:38 +0000
commite43448f6cae297b8364c0d0520daf8f0041649c7 (patch)
treee0cbb1053479b9d32c18025ff4b0b684f333d6e3 /test/functional
parent14e56006a1f83ceb70291234d7b609150446aefb (diff)
downloadredmine-e43448f6cae297b8364c0d0520daf8f0041649c7.tar.gz
redmine-e43448f6cae297b8364c0d0520daf8f0041649c7.zip
Use 8+ characters long passwords in tests.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10886 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r--test/functional/account_controller_test.rb14
-rw-r--r--test/functional/my_controller_test.rb14
-rw-r--r--test/functional/users_controller_test.rb20
3 files changed, 24 insertions, 24 deletions
diff --git a/test/functional/account_controller_test.rb b/test/functional/account_controller_test.rb
index 05c3b047b..c715fa80d 100644
--- a/test/functional/account_controller_test.rb
+++ b/test/functional/account_controller_test.rb
@@ -119,8 +119,8 @@ class AccountControllerTest < ActionController::TestCase
assert_difference 'User.count' do
post :register, :user => {
:login => 'register',
- :password => 'test',
- :password_confirmation => 'test',
+ :password => 'secret123',
+ :password_confirmation => 'secret123',
:firstname => 'John',
:lastname => 'Doe',
:mail => 'register@example.com'
@@ -132,7 +132,7 @@ class AccountControllerTest < ActionController::TestCase
assert_equal 'John', user.firstname
assert_equal 'Doe', user.lastname
assert_equal 'register@example.com', user.mail
- assert user.check_password?('test')
+ assert user.check_password?('secret123')
assert user.active?
end
end
@@ -218,10 +218,10 @@ class AccountControllerTest < ActionController::TestCase
user = User.find(2)
token = Token.create!(:action => 'recovery', :user => user)
- post :lost_password, :token => token.value, :new_password => 'newpass', :new_password_confirmation => 'newpass'
+ post :lost_password, :token => token.value, :new_password => 'newpass123', :new_password_confirmation => 'newpass123'
assert_redirected_to '/login'
user.reload
- assert user.check_password?('newpass')
+ assert user.check_password?('newpass123')
assert_nil Token.find_by_id(token.id), "Token was not deleted"
end
@@ -230,9 +230,9 @@ class AccountControllerTest < ActionController::TestCase
token = Token.create!(:action => 'recovery', :user => user)
user.lock!
- post :lost_password, :token => token.value, :new_password => 'newpass', :new_password_confirmation => 'newpass'
+ post :lost_password, :token => token.value, :new_password => 'newpass123', :new_password_confirmation => 'newpass123'
assert_redirected_to '/'
- assert ! user.check_password?('newpass')
+ assert ! user.check_password?('newpass123')
end
def test_post_lost_password_with_token_and_password_confirmation_failure_should_redisplay_the_form
diff --git a/test/functional/my_controller_test.rb b/test/functional/my_controller_test.rb
index e5ed9ed2b..f5f5f06b1 100644
--- a/test/functional/my_controller_test.rb
+++ b/test/functional/my_controller_test.rb
@@ -145,26 +145,26 @@ class MyControllerTest < ActionController::TestCase
# non matching password confirmation
post :password, :password => 'jsmith',
- :new_password => 'hello',
- :new_password_confirmation => 'hello2'
+ :new_password => 'secret123',
+ :new_password_confirmation => 'secret1234'
assert_response :success
assert_template 'password'
assert_error_tag :content => /Password doesn&#x27;t match confirmation/
# wrong password
post :password, :password => 'wrongpassword',
- :new_password => 'hello',
- :new_password_confirmation => 'hello'
+ :new_password => 'secret123',
+ :new_password_confirmation => 'secret123'
assert_response :success
assert_template 'password'
assert_equal 'Wrong password', flash[:error]
# good password
post :password, :password => 'jsmith',
- :new_password => 'hello',
- :new_password_confirmation => 'hello'
+ :new_password => 'secret123',
+ :new_password_confirmation => 'secret123'
assert_redirected_to '/my/account'
- assert User.try_to_login('jsmith', 'hello')
+ assert User.try_to_login('jsmith', 'secret123')
end
def test_change_password_should_redirect_if_user_cannot_change_its_password
diff --git a/test/functional/users_controller_test.rb b/test/functional/users_controller_test.rb
index db912bf6d..6ff9b72ab 100644
--- a/test/functional/users_controller_test.rb
+++ b/test/functional/users_controller_test.rb
@@ -173,8 +173,8 @@ class UsersControllerTest < ActionController::TestCase
:firstname => 'John',
:lastname => 'Doe',
:login => 'jdoe',
- :password => 'secret',
- :password_confirmation => 'secret',
+ :password => 'secret123',
+ :password_confirmation => 'secret123',
:mail => 'jdoe@gmail.com',
:mail_notification => 'none'
},
@@ -190,7 +190,7 @@ class UsersControllerTest < ActionController::TestCase
assert_equal 'jdoe', user.login
assert_equal 'jdoe@gmail.com', user.mail
assert_equal 'none', user.mail_notification
- assert user.check_password?('secret')
+ assert user.check_password?('secret123')
mail = ActionMailer::Base.deliveries.last
assert_not_nil mail
@@ -205,8 +205,8 @@ class UsersControllerTest < ActionController::TestCase
:firstname => 'John',
:lastname => 'Doe',
:login => 'jdoe',
- :password => 'secret',
- :password_confirmation => 'secret',
+ :password => 'secret123',
+ :password_confirmation => 'secret123',
:mail => 'jdoe@gmail.com',
:mail_notification => 'none'
},
@@ -287,14 +287,14 @@ class UsersControllerTest < ActionController::TestCase
ActionMailer::Base.deliveries.clear
Setting.bcc_recipients = '1'
- put :update, :id => 2, :user => {:password => 'newpass', :password_confirmation => 'newpass'}, :send_information => '1'
+ put :update, :id => 2, :user => {:password => 'newpass123', :password_confirmation => 'newpass123'}, :send_information => '1'
u = User.find(2)
- assert u.check_password?('newpass')
+ assert u.check_password?('newpass123')
mail = ActionMailer::Base.deliveries.last
assert_not_nil mail
assert_equal [u.mail], mail.bcc
- assert_mail_body_match 'newpass', mail
+ assert_mail_body_match 'newpass123', mail
end
def test_update_user_switchin_from_auth_source_to_password_authentication
@@ -303,10 +303,10 @@ class UsersControllerTest < ActionController::TestCase
u.auth_source = AuthSource.find(1)
u.save!
- put :update, :id => u.id, :user => {:auth_source_id => '', :password => 'newpass', :password_confirmation => 'newpass'}
+ put :update, :id => u.id, :user => {:auth_source_id => '', :password => 'newpass123', :password_confirmation => 'newpass123'}
assert_equal nil, u.reload.auth_source
- assert u.check_password?('newpass')
+ assert u.check_password?('newpass123')
end
def test_update_notified_project