2019-04-27 01:53:09 -04:00
|
|
|
require_relative 'helper'
|
|
|
|
|
|
|
|
class Reline::Config::Test < Reline::TestCase
|
|
|
|
def setup
|
|
|
|
@pwd = Dir.pwd
|
|
|
|
@tmpdir = File.join(Dir.tmpdir, "test_reline_config_#{$$}")
|
|
|
|
begin
|
|
|
|
Dir.mkdir(@tmpdir)
|
|
|
|
rescue Errno::EEXIST
|
|
|
|
FileUtils.rm_rf(@tmpdir)
|
|
|
|
Dir.mkdir(@tmpdir)
|
|
|
|
end
|
|
|
|
Dir.chdir(@tmpdir)
|
|
|
|
@config = Reline::Config.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
Dir.chdir(@pwd)
|
|
|
|
FileUtils.rm_rf(@tmpdir)
|
2019-06-01 03:47:59 -04:00
|
|
|
@config.reset
|
2019-04-27 01:53:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_read_lines
|
2019-06-02 09:37:42 -04:00
|
|
|
@config.read_lines(<<~LINES.split(/^/))
|
2019-04-27 01:53:09 -04:00
|
|
|
set bell-style on
|
|
|
|
LINES
|
|
|
|
|
|
|
|
assert_equal :audible, @config.instance_variable_get(:@bell_style)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_bind_key
|
2019-05-31 20:05:58 -04:00
|
|
|
assert_equal ['input'.bytes, 'abcde'.bytes], @config.bind_key('"input"', '"abcde"')
|
2019-04-27 01:53:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_bind_key_with_macro
|
|
|
|
|
2019-05-31 20:05:58 -04:00
|
|
|
assert_equal ['input'.bytes, :abcde], @config.bind_key('"input"', 'abcde')
|
2019-04-27 01:53:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_bind_key_with_escaped_chars
|
2019-05-31 20:05:58 -04:00
|
|
|
key, func =
|
|
|
|
assert_equal ['input'.bytes, "\e \\ \" ' \a \b \d \f \n \r \t \v".bytes], @config.bind_key('"input"', '"\\e \\\\ \\" \\\' \\a \\b \\d \\f \\n \\r \\t \\v"')
|
2019-04-27 01:53:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_bind_key_with_ctrl_chars
|
2019-05-31 20:05:58 -04:00
|
|
|
assert_equal ['input'.bytes, "\C-h\C-h".bytes], @config.bind_key('"input"', '"\C-h\C-H"')
|
2019-04-27 01:53:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_bind_key_with_meta_chars
|
2019-05-31 20:05:58 -04:00
|
|
|
assert_equal ['input'.bytes, "\M-h\M-H".bytes], @config.bind_key('"input"', '"\M-h\M-H"')
|
2019-04-27 01:53:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_bind_key_with_octal_number
|
2019-05-31 20:05:58 -04:00
|
|
|
input = %w{i n p u t}.map(&:ord)
|
|
|
|
assert_equal [input, "\1".bytes], @config.bind_key('"input"', '"\1"')
|
|
|
|
assert_equal [input, "\12".bytes], @config.bind_key('"input"', '"\12"')
|
|
|
|
assert_equal [input, "\123".bytes], @config.bind_key('"input"', '"\123"')
|
|
|
|
assert_equal [input, "\123".bytes + '4'.bytes], @config.bind_key('"input"', '"\1234"')
|
2019-04-27 01:53:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_bind_key_with_hexadecimal_number
|
2019-05-31 20:05:58 -04:00
|
|
|
input = %w{i n p u t}.map(&:ord)
|
|
|
|
assert_equal [input, "\x4".bytes], @config.bind_key('"input"', '"\x4"')
|
|
|
|
assert_equal [input, "\x45".bytes], @config.bind_key('"input"', '"\x45"')
|
|
|
|
assert_equal [input, "\x45".bytes + '6'.bytes], @config.bind_key('"input"', '"\x456"')
|
2019-04-27 01:53:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_include
|
|
|
|
File.open('included_partial', 'wt') do |f|
|
|
|
|
f.write(<<~PARTIAL_LINES)
|
|
|
|
set bell-style on
|
|
|
|
PARTIAL_LINES
|
|
|
|
end
|
2019-06-02 09:37:42 -04:00
|
|
|
@config.read_lines(<<~LINES.split(/^/))
|
2019-04-27 01:53:09 -04:00
|
|
|
$include included_partial
|
|
|
|
LINES
|
|
|
|
|
|
|
|
assert_equal :audible, @config.instance_variable_get(:@bell_style)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_if
|
2019-06-02 09:37:42 -04:00
|
|
|
@config.read_lines(<<~LINES.split(/^/))
|
2019-04-27 01:53:09 -04:00
|
|
|
$if Ruby
|
|
|
|
set bell-style audible
|
|
|
|
$else
|
|
|
|
set bell-style visible
|
|
|
|
$endif
|
|
|
|
LINES
|
|
|
|
|
|
|
|
assert_equal :audible, @config.instance_variable_get(:@bell_style)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_if_with_false
|
2019-06-02 09:37:42 -04:00
|
|
|
@config.read_lines(<<~LINES.split(/^/))
|
2019-04-27 01:53:09 -04:00
|
|
|
$if Python
|
|
|
|
set bell-style audible
|
|
|
|
$else
|
|
|
|
set bell-style visible
|
|
|
|
$endif
|
|
|
|
LINES
|
|
|
|
|
|
|
|
assert_equal :visible, @config.instance_variable_get(:@bell_style)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_if_with_indent
|
2019-06-01 23:21:09 -04:00
|
|
|
%w[Ruby Reline].each do |cond|
|
2019-06-02 09:37:42 -04:00
|
|
|
@config.read_lines(<<~LINES.split(/^/))
|
2019-06-01 23:21:09 -04:00
|
|
|
set bell-style none
|
|
|
|
$if #{cond}
|
|
|
|
set bell-style audible
|
|
|
|
$else
|
|
|
|
set bell-style visible
|
|
|
|
$endif
|
|
|
|
LINES
|
|
|
|
|
|
|
|
assert_equal :audible, @config.instance_variable_get(:@bell_style)
|
|
|
|
end
|
2019-04-27 01:53:09 -04:00
|
|
|
end
|
2019-05-31 20:05:58 -04:00
|
|
|
|
2019-06-01 23:14:29 -04:00
|
|
|
def test_unclosed_if
|
|
|
|
e = assert_raise(Reline::Config::InvalidInputrc) do
|
|
|
|
@config.read_lines(<<~LINES.split(/(?<=\n)/), "INPUTRC")
|
|
|
|
$if Ruby
|
|
|
|
LINES
|
|
|
|
end
|
|
|
|
assert_equal "INPUTRC:1: unclosed if", e.message
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_unmatched_else
|
|
|
|
e = assert_raise(Reline::Config::InvalidInputrc) do
|
|
|
|
@config.read_lines(<<~LINES.split(/(?<=\n)/), "INPUTRC")
|
|
|
|
$else
|
|
|
|
LINES
|
|
|
|
end
|
|
|
|
assert_equal "INPUTRC:1: unmatched else", e.message
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_unmatched_endif
|
|
|
|
e = assert_raise(Reline::Config::InvalidInputrc) do
|
|
|
|
@config.read_lines(<<~LINES.split(/(?<=\n)/), "INPUTRC")
|
|
|
|
$endif
|
|
|
|
LINES
|
|
|
|
end
|
|
|
|
assert_equal "INPUTRC:1: unmatched endif", e.message
|
|
|
|
end
|
|
|
|
|
2019-05-31 20:05:58 -04:00
|
|
|
def test_default_key_bindings
|
|
|
|
@config.add_default_key_binding('abcd'.bytes, 'EFGH'.bytes)
|
2019-06-02 09:37:42 -04:00
|
|
|
@config.read_lines(<<~'LINES'.split(/^/))
|
2019-05-31 20:05:58 -04:00
|
|
|
"abcd": "ABCD"
|
|
|
|
"ijkl": "IJKL"
|
|
|
|
LINES
|
|
|
|
|
|
|
|
expected = { 'abcd'.bytes => 'ABCD'.bytes, 'ijkl'.bytes => 'IJKL'.bytes }
|
|
|
|
assert_equal expected, @config.key_bindings
|
|
|
|
end
|
2019-04-27 01:53:09 -04:00
|
|
|
end
|