summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2020-09-02 08:46:29 +0000
committerGo MAEDA <maeda@farend.jp>2020-09-02 08:46:29 +0000
commitecf41c054740d7e0b99a6fc3cdcf18ed75043411 (patch)
tree09b2a6f3f3a06728ae704f1fac6ce90bad35727d
parent66d0ad6f4844ba0af7232cacb1023f1fa614a64a (diff)
downloadredmine-ecf41c054740d7e0b99a6fc3cdcf18ed75043411.tar.gz
redmine-ecf41c054740d7e0b99a6fc3cdcf18ed75043411.zip
Merged r19999 from trunk to 4.1-stable (#33926).
git-svn-id: http://svn.redmine.org/redmine/branches/4.1-stable@20003 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--lib/redmine/ciphering.rb4
-rw-r--r--test/unit/lib/redmine/ciphering_test.rb9
2 files changed, 11 insertions, 2 deletions
diff --git a/lib/redmine/ciphering.rb b/lib/redmine/ciphering.rb
index eea752159..49b76b7e7 100644
--- a/lib/redmine/ciphering.rb
+++ b/lib/redmine/ciphering.rb
@@ -74,7 +74,7 @@ module Redmine
all.each do |object|
clear = object.send(attribute)
object.send "#{attribute}=", clear
- raise(ActiveRecord::Rollback) unless object.save(:validation => false)
+ raise(ActiveRecord::Rollback) unless object.save(validate: false)
end
end ? true : false
end
@@ -84,7 +84,7 @@ module Redmine
all.each do |object|
clear = object.send(attribute)
object.send :write_attribute, attribute, clear
- raise(ActiveRecord::Rollback) unless object.save(:validation => false)
+ raise(ActiveRecord::Rollback) unless object.save(validate: false)
end
end ? true : false
end
diff --git a/test/unit/lib/redmine/ciphering_test.rb b/test/unit/lib/redmine/ciphering_test.rb
index 95b6fb222..91954b087 100644
--- a/test/unit/lib/redmine/ciphering_test.rb
+++ b/test/unit/lib/redmine/ciphering_test.rb
@@ -20,6 +20,7 @@
require File.expand_path('../../../../test_helper', __FILE__)
class Redmine::CipheringTest < ActiveSupport::TestCase
+ fixtures :auth_sources
def test_password_should_be_encrypted
Redmine::Configuration.with 'database_cipher_key' => 'secret' do
@@ -106,4 +107,12 @@ class Redmine::CipheringTest < ActiveSupport::TestCase
assert_equal 'bar', r.read_attribute(:password)
end
end
+
+ def test_encrypt_all_and_decrypt_all_should_skip_validation
+ auth_source = auth_sources(:auth_sources_001)
+ # validator checks if AuthSource#host is present
+ auth_source.update_column(:host, nil)
+ assert AuthSource.encrypt_all(:account_password)
+ assert AuthSource.decrypt_all(:account_password)
+ end
end