aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-03-10 09:21:53 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-03-12 13:43:58 +0900
commit7b4fb2574a099183febe0c8229bf5a928db387a2 (patch)
treeb97f17a28a850eb69f4923bb32aea69363a1d431
parent9f9e57339bb88fcf5f8e47a048d8201b97cd5f53 (diff)
downloadrails-7b4fb2574a099183febe0c8229bf5a928db387a2.tar.gz
rails-7b4fb2574a099183febe0c8229bf5a928db387a2.tar.bz2
rails-7b4fb2574a099183febe0c8229bf5a928db387a2.zip
Add secrets edit test
-rw-r--r--railties/test/commands/secrets_test.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/railties/test/commands/secrets_test.rb b/railties/test/commands/secrets_test.rb
index 13fcf6c8a4..00b0343397 100644
--- a/railties/test/commands/secrets_test.rb
+++ b/railties/test/commands/secrets_test.rb
@@ -17,8 +17,21 @@ class Rails::Command::SecretsCommandTest < ActiveSupport::TestCase
assert_match "No $EDITOR to open decrypted secrets in", run_edit_command(editor: "")
end
+ test "edit secrets" do
+ run_setup_command
+
+ # Run twice to ensure encrypted secrets can be reread after first edit pass.
+ 2.times do
+ assert_match(/external_api_key: 1466aac22e6a869134be3d09b9e89232fc2c2289…/, run_edit_command)
+ end
+ end
+
private
def run_edit_command(editor: "cat")
Dir.chdir(app_path) { `EDITOR="#{editor}" bin/rails secrets:edit` }
end
+
+ def run_setup_command
+ Dir.chdir(app_path) { `bin/rails secrets:setup` }
+ end
end