diff options
author | Yuji Yaginuma <yuuji.yaginuma@gmail.com> | 2019-03-24 09:44:13 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-24 09:44:13 +0900 |
commit | 122853dc54c669fcb2ee4d73f533cddf35f91131 (patch) | |
tree | d3580650de59ff6ea64341873a961bfd0e1f8cd1 /railties | |
parent | ff7948b1c2cbdf5527e40e60a4f2ef7621445d55 (diff) | |
parent | 0e9e59953fa5360750287fe45a102633f7e54f2b (diff) | |
download | rails-122853dc54c669fcb2ee4d73f533cddf35f91131.tar.gz rails-122853dc54c669fcb2ee4d73f533cddf35f91131.tar.bz2 rails-122853dc54c669fcb2ee4d73f533cddf35f91131.zip |
Merge pull request #35718 from y-yagi/add_secret_key_base_when_creating_new_credentials
Add `secret_key_base` when creating new credential file
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/commands/credentials/credentials_command.rb | 13 | ||||
-rw-r--r-- | railties/test/commands/credentials_test.rb | 13 |
2 files changed, 24 insertions, 2 deletions
diff --git a/railties/lib/rails/commands/credentials/credentials_command.rb b/railties/lib/rails/commands/credentials/credentials_command.rb index a22b1f3f84..e23a1b3008 100644 --- a/railties/lib/rails/commands/credentials/credentials_command.rb +++ b/railties/lib/rails/commands/credentials/credentials_command.rb @@ -56,7 +56,11 @@ module Rails end def ensure_credentials_have_been_added - encrypted_file_generator.add_encrypted_file_silently(content_path, key_path) + if options[:environment] + encrypted_file_generator.add_encrypted_file_silently(content_path, key_path) + else + credentials_generator.add_credentials_file_silently + end end def change_credentials_in_system_editor @@ -96,6 +100,13 @@ module Rails Rails::Generators::EncryptedFileGenerator.new end + + def credentials_generator + require "rails/generators" + require "rails/generators/rails/credentials/credentials_generator" + + Rails::Generators::CredentialsGenerator.new + end end end end diff --git a/railties/test/commands/credentials_test.rb b/railties/test/commands/credentials_test.rb index 3654e96aed..2f2c50de6c 100644 --- a/railties/test/commands/credentials_test.rb +++ b/railties/test/commands/credentials_test.rb @@ -79,6 +79,15 @@ class Rails::Command::CredentialsCommandTest < ActiveSupport::TestCase assert_match(/access_key_id: 123/, run_edit_command(environment: "qa")) end + test "edit command generate template file when the file does not exist" do + FileUtils.rm("#{app_path}/config/credentials.yml.enc") + run_edit_command + + output = run_show_command + assert_match(/access_key_id: 123/, output) + assert_match(/secret_key_base/, output) + end + test "show credentials" do assert_match(/access_key_id: 123/, run_show_command) end @@ -106,7 +115,9 @@ class Rails::Command::CredentialsCommandTest < ActiveSupport::TestCase test "show command properly expand environment option" do run_edit_command(environment: "production") - assert_match(/access_key_id: 123/, run_show_command(environment: "prod")) + output = run_show_command(environment: "prod") + assert_match(/access_key_id: 123/, output) + assert_no_match(/secret_key_base/, output) end private |