2017-12-12 06:25:16 -05:00
|
|
|
# frozen_string_literal: false
|
|
|
|
require "test/unit"
|
|
|
|
require "irb"
|
2019-11-19 06:58:11 -05:00
|
|
|
require "fileutils"
|
2017-12-12 06:25:16 -05:00
|
|
|
|
|
|
|
module TestIRB
|
|
|
|
class TestInit < Test::Unit::TestCase
|
2021-04-15 09:24:02 -04:00
|
|
|
def setup
|
|
|
|
# IRBRC is for RVM...
|
|
|
|
@backup_env = %w[HOME XDG_CONFIG_HOME IRBRC].each_with_object({}) do |env, hash|
|
|
|
|
hash[env] = ENV.delete(env)
|
|
|
|
end
|
|
|
|
ENV["HOME"] = @tmpdir = Dir.mktmpdir("test_irb_init_#{$$}")
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
ENV.update(@backup_env)
|
|
|
|
FileUtils.rm_rf(@tmpdir)
|
|
|
|
end
|
|
|
|
|
2017-12-12 06:25:16 -05:00
|
|
|
def test_setup_with_argv_preserves_global_argv
|
|
|
|
argv = ["foo", "bar"]
|
|
|
|
with_argv(argv) do
|
2018-08-18 00:09:48 -04:00
|
|
|
IRB.setup(eval("__FILE__"), argv: %w[-f])
|
2017-12-12 06:25:16 -05:00
|
|
|
assert_equal argv, ARGV
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-18 00:09:48 -04:00
|
|
|
def test_setup_with_minimum_argv_does_not_change_dollar0
|
2017-12-12 08:56:48 -05:00
|
|
|
orig = $0.dup
|
2018-08-18 00:09:48 -04:00
|
|
|
IRB.setup(eval("__FILE__"), argv: %w[-f])
|
2017-12-12 08:56:48 -05:00
|
|
|
assert_equal orig, $0
|
|
|
|
end
|
|
|
|
|
2019-11-19 06:58:11 -05:00
|
|
|
def test_rc_file
|
2021-04-15 09:24:02 -04:00
|
|
|
tmpdir = @tmpdir
|
|
|
|
Dir.chdir(tmpdir) do
|
2019-11-19 06:58:11 -05:00
|
|
|
IRB.conf[:RC_NAME_GENERATOR] = nil
|
|
|
|
assert_equal(tmpdir+"/.irb#{IRB::IRBRC_EXT}", IRB.rc_file)
|
|
|
|
assert_equal(tmpdir+"/.irb_history", IRB.rc_file("_history"))
|
|
|
|
IRB.conf[:RC_NAME_GENERATOR] = nil
|
|
|
|
FileUtils.touch(tmpdir+"/.irb#{IRB::IRBRC_EXT}")
|
|
|
|
assert_equal(tmpdir+"/.irb#{IRB::IRBRC_EXT}", IRB.rc_file)
|
|
|
|
assert_equal(tmpdir+"/.irb_history", IRB.rc_file("_history"))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_rc_file_in_subdir
|
2021-04-15 09:24:02 -04:00
|
|
|
tmpdir = @tmpdir
|
|
|
|
Dir.chdir(tmpdir) do
|
2019-11-19 06:58:11 -05:00
|
|
|
FileUtils.mkdir_p("#{tmpdir}/mydir")
|
|
|
|
Dir.chdir("#{tmpdir}/mydir") do
|
|
|
|
IRB.conf[:RC_NAME_GENERATOR] = nil
|
|
|
|
assert_equal(tmpdir+"/.irb#{IRB::IRBRC_EXT}", IRB.rc_file)
|
|
|
|
assert_equal(tmpdir+"/.irb_history", IRB.rc_file("_history"))
|
|
|
|
IRB.conf[:RC_NAME_GENERATOR] = nil
|
|
|
|
FileUtils.touch(tmpdir+"/.irb#{IRB::IRBRC_EXT}")
|
|
|
|
assert_equal(tmpdir+"/.irb#{IRB::IRBRC_EXT}", IRB.rc_file)
|
|
|
|
assert_equal(tmpdir+"/.irb_history", IRB.rc_file("_history"))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-04-01 06:06:10 -04:00
|
|
|
def test_recovery_sigint
|
|
|
|
bundle_exec = ENV.key?('BUNDLE_GEMFILE') ? ['-rbundler/setup'] : []
|
|
|
|
status = assert_in_out_err(bundle_exec + %w[-W0 -rirb -e binding.irb;loop{Process.kill("SIGINT",$$)} -- -f --], "exit\n", //, //)
|
|
|
|
Process.kill("SIGKILL", status.pid) if !status.exited? && !status.stopped? && !status.signaled?
|
|
|
|
end
|
|
|
|
|
2020-05-17 21:12:02 -04:00
|
|
|
def test_no_color_environment_variable
|
|
|
|
orig = ENV['NO_COLOR']
|
|
|
|
|
|
|
|
assert IRB.conf[:USE_COLORIZE]
|
|
|
|
|
|
|
|
ENV['NO_COLOR'] = 'true'
|
2020-08-11 22:32:44 -04:00
|
|
|
IRB.setup(__FILE__)
|
2020-05-17 21:12:02 -04:00
|
|
|
refute IRB.conf[:USE_COLORIZE]
|
|
|
|
|
|
|
|
ENV['NO_COLOR'] = nil
|
2020-08-11 22:32:44 -04:00
|
|
|
IRB.setup(__FILE__)
|
2020-05-17 21:12:02 -04:00
|
|
|
assert IRB.conf[:USE_COLORIZE]
|
|
|
|
ensure
|
|
|
|
ENV['NO_COLOR'] = orig
|
|
|
|
end
|
|
|
|
|
2017-12-12 06:25:16 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def with_argv(argv)
|
|
|
|
orig = ARGV.dup
|
|
|
|
ARGV.replace(argv)
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
ARGV.replace(orig)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|