Rails4: replace deprecated Relation#first with finder options at CipheringTest
git-svn-id: http://svn.redmine.org/redmine/trunk@12550 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
bb54f0b7c5
commit
132021f895
@ -57,7 +57,7 @@ class Redmine::CipheringTest < ActiveSupport::TestCase
|
|||||||
end
|
end
|
||||||
|
|
||||||
Redmine::Configuration.with 'database_cipher_key' => 'secret' do
|
Redmine::Configuration.with 'database_cipher_key' => 'secret' do
|
||||||
r = Repository.first(:order => 'id DESC')
|
r = Repository.order('id DESC').first
|
||||||
assert_equal 'clear', r.password
|
assert_equal 'clear', r.password
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -68,7 +68,7 @@ class Redmine::CipheringTest < ActiveSupport::TestCase
|
|||||||
end
|
end
|
||||||
|
|
||||||
Redmine::Configuration.with 'database_cipher_key' => '' do
|
Redmine::Configuration.with 'database_cipher_key' => '' do
|
||||||
r = Repository.first(:order => 'id DESC')
|
r = Repository.order('id DESC').first
|
||||||
# password can not be deciphered
|
# password can not be deciphered
|
||||||
assert_nothing_raised do
|
assert_nothing_raised do
|
||||||
assert r.password.match(/\Aaes-256-cbc:.+\Z/)
|
assert r.password.match(/\Aaes-256-cbc:.+\Z/)
|
||||||
@ -85,7 +85,7 @@ class Redmine::CipheringTest < ActiveSupport::TestCase
|
|||||||
|
|
||||||
Redmine::Configuration.with 'database_cipher_key' => 'secret' do
|
Redmine::Configuration.with 'database_cipher_key' => 'secret' do
|
||||||
assert Repository.encrypt_all(:password)
|
assert Repository.encrypt_all(:password)
|
||||||
r = Repository.first(:order => 'id DESC')
|
r = Repository.order('id DESC').first
|
||||||
assert_equal 'bar', r.password
|
assert_equal 'bar', r.password
|
||||||
assert r.read_attribute(:password).match(/\Aaes-256-cbc:.+\Z/)
|
assert r.read_attribute(:password).match(/\Aaes-256-cbc:.+\Z/)
|
||||||
end
|
end
|
||||||
@ -98,7 +98,7 @@ class Redmine::CipheringTest < ActiveSupport::TestCase
|
|||||||
Repository::Subversion.create!(:password => 'bar', :url => 'file:///tmp', :identifier => 'bar')
|
Repository::Subversion.create!(:password => 'bar', :url => 'file:///tmp', :identifier => 'bar')
|
||||||
|
|
||||||
assert Repository.decrypt_all(:password)
|
assert Repository.decrypt_all(:password)
|
||||||
r = Repository.first(:order => 'id DESC')
|
r = Repository.order('id DESC').first
|
||||||
assert_equal 'bar', r.password
|
assert_equal 'bar', r.password
|
||||||
assert_equal 'bar', r.read_attribute(:password)
|
assert_equal 'bar', r.read_attribute(:password)
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user