2017-08-14 13:08:09 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-02-26 07:05:13 -05:00
|
|
|
require "abstract_unit"
|
|
|
|
require "rails/command"
|
|
|
|
require "rails/commands/generate/generate_command"
|
|
|
|
require "rails/commands/secrets/secrets_command"
|
2019-01-23 17:24:52 -05:00
|
|
|
require "rails/commands/db/system/change/change_command"
|
2017-02-26 07:05:13 -05:00
|
|
|
|
|
|
|
class Rails::Command::BaseTest < ActiveSupport::TestCase
|
|
|
|
test "printing commands" do
|
|
|
|
assert_equal %w(generate), Rails::Command::GenerateCommand.printing_commands
|
2017-07-06 08:40:33 -04:00
|
|
|
assert_equal %w(secrets:setup secrets:edit secrets:show), Rails::Command::SecretsCommand.printing_commands
|
2019-01-23 17:24:52 -05:00
|
|
|
assert_equal %w(db:system:change), Rails::Command::Db::System::ChangeCommand.printing_commands
|
2017-02-26 07:05:13 -05:00
|
|
|
end
|
2020-02-18 00:59:06 -05:00
|
|
|
|
|
|
|
test "ARGV is isolated" do
|
|
|
|
class Rails::Command::ArgvCommand < Rails::Command::Base
|
|
|
|
def check_isolation
|
|
|
|
raise "not isolated" unless ARGV.empty?
|
|
|
|
ARGV << "isolate this"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
old_argv = ARGV.dup
|
|
|
|
new_argv = ["foo", "bar"]
|
|
|
|
ARGV.replace(new_argv)
|
|
|
|
|
|
|
|
Rails::Command.invoke("argv:check_isolation") # should not raise
|
|
|
|
assert_equal new_argv, ARGV
|
|
|
|
ensure
|
|
|
|
ARGV.replace(old_argv)
|
|
|
|
end
|
2017-02-26 07:05:13 -05:00
|
|
|
end
|