提交 1990c8f9 编写于 作者: M Matthew Draper 提交者: GitHub

Merge pull request #29695 from y-yagi/secrets_show

Add `rails secrets:show` command
* Add `rails secrets:show` command.
*Yuji Yaginuma*
* Allow mounting the same engine several times in different locations.
Fixes #20204.
......
......@@ -48,6 +48,10 @@ def edit
end
end
def show
say Rails::Secrets.read
end
private
def generator
require_relative "../../generators"
......
......@@ -6,6 +6,6 @@
class Rails::Command::BaseTest < ActiveSupport::TestCase
test "printing commands" do
assert_equal %w(generate), Rails::Command::GenerateCommand.printing_commands
assert_equal %w(secrets:setup secrets:edit), Rails::Command::SecretsCommand.printing_commands
assert_equal %w(secrets:setup secrets:edit secrets:show), Rails::Command::SecretsCommand.printing_commands
end
end
......@@ -27,8 +27,21 @@ def teardown
end
end
test "show secrets" do
run_setup_command
assert_match(/external_api_key: 1466aac22e6a869134be3d09b9e89232fc2c2289/, run_show_command)
end
private
def run_edit_command(editor: "cat")
Dir.chdir(app_path) { `EDITOR="#{editor}" bin/rails secrets:edit` }
end
def run_show_command
Dir.chdir(app_path) { `bin/rails secrets:show` }
end
def run_setup_command
Dir.chdir(app_path) { `bin/rails secrets:setup` }
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册