2017-09-02 02:35:39 -07:00
|
|
|
-- TUI acceptance tests.
|
|
|
|
-- Uses :terminal as a way to send keys and assert screen state.
|
2016-04-23 16:53:11 -07:00
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
2019-05-18 05:09:43 -07:00
|
|
|
local uname = helpers.uname
|
2015-10-01 11:03:40 -07:00
|
|
|
local thelpers = require('test.functional.terminal.helpers')
|
2017-12-12 10:23:19 -07:00
|
|
|
local Screen = require('test.functional.ui.screen')
|
2017-12-04 14:48:38 -07:00
|
|
|
local eq = helpers.eq
|
2017-04-08 14:12:26 -07:00
|
|
|
local feed_command = helpers.feed_command
|
2018-01-16 01:08:31 -07:00
|
|
|
local feed_data = thelpers.feed_data
|
2017-11-26 15:15:17 -07:00
|
|
|
local clear = helpers.clear
|
2018-01-16 01:08:31 -07:00
|
|
|
local command = helpers.command
|
|
|
|
local eval = helpers.eval
|
2015-11-20 11:47:20 -07:00
|
|
|
local nvim_dir = helpers.nvim_dir
|
2017-04-08 17:11:08 -07:00
|
|
|
local retry = helpers.retry
|
2017-11-26 15:15:17 -07:00
|
|
|
local nvim_prog = helpers.nvim_prog
|
|
|
|
local nvim_set = helpers.nvim_set
|
2017-12-04 14:48:38 -07:00
|
|
|
local ok = helpers.ok
|
|
|
|
local read_file = helpers.read_file
|
2015-10-01 11:03:40 -07:00
|
|
|
|
2016-08-15 16:42:12 -07:00
|
|
|
if helpers.pending_win32(pending) then return end
|
|
|
|
|
2018-04-28 16:39:21 -07:00
|
|
|
describe('TUI', function()
|
2015-10-01 11:03:40 -07:00
|
|
|
local screen
|
|
|
|
|
|
|
|
before_each(function()
|
2017-11-26 15:15:17 -07:00
|
|
|
clear()
|
2017-11-26 16:27:40 -07:00
|
|
|
screen = thelpers.screen_setup(0, '["'..nvim_prog
|
|
|
|
..'", "-u", "NONE", "-i", "NONE", "--cmd", "set noswapfile noshowcmd noruler undodir=. directory=. viewdir=. backupdir=."]')
|
2015-10-01 11:03:40 -07:00
|
|
|
screen:expect([[
|
|
|
|
{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] }|
|
2015-10-01 11:03:40 -07:00
|
|
|
|
|
2016-08-09 08:01:56 -07:00
|
|
|
{3:-- TERMINAL --} |
|
2015-10-01 11:03:40 -07:00
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
after_each(function()
|
|
|
|
screen:detach()
|
|
|
|
end)
|
|
|
|
|
2018-01-16 01:08:31 -07:00
|
|
|
it('rapid resize #7572 #7628', function()
|
|
|
|
-- Need buffer rows to provoke the behavior.
|
|
|
|
feed_data(":edit test/functional/fixtures/bigfile.txt:")
|
|
|
|
command('call jobresize(b:terminal_job_id, 58, 9)')
|
|
|
|
command('call jobresize(b:terminal_job_id, 62, 13)')
|
|
|
|
command('call jobresize(b:terminal_job_id, 100, 42)')
|
|
|
|
command('call jobresize(b:terminal_job_id, 37, 1000)')
|
|
|
|
-- Resize to <5 columns.
|
|
|
|
screen:try_resize(4, 44)
|
|
|
|
command('call jobresize(b:terminal_job_id, 4, 1000)')
|
|
|
|
-- Resize to 1 row, then to 1 column, then increase rows to 4.
|
|
|
|
screen:try_resize(44, 1)
|
|
|
|
command('call jobresize(b:terminal_job_id, 44, 1)')
|
|
|
|
screen:try_resize(1, 1)
|
|
|
|
command('call jobresize(b:terminal_job_id, 1, 1)')
|
|
|
|
screen:try_resize(1, 4)
|
|
|
|
command('call jobresize(b:terminal_job_id, 1, 4)')
|
|
|
|
screen:try_resize(57, 17)
|
|
|
|
command('call jobresize(b:terminal_job_id, 57, 17)')
|
|
|
|
eq(2, eval("1+1")) -- Still alive?
|
|
|
|
end)
|
|
|
|
|
2015-10-01 11:03:40 -07:00
|
|
|
it('accepts basic utf-8 input', function()
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('iabc\ntest1\ntest2')
|
2015-10-01 11:03:40 -07:00
|
|
|
screen:expect([[
|
|
|
|
abc |
|
|
|
|
test1 |
|
|
|
|
test2{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] [+] }|
|
|
|
|
{3:-- INSERT --} |
|
|
|
|
{3:-- TERMINAL --} |
|
2015-10-01 11:03:40 -07:00
|
|
|
]])
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('\027')
|
2015-10-01 11:03:40 -07:00
|
|
|
screen:expect([[
|
|
|
|
abc |
|
|
|
|
test1 |
|
|
|
|
test{1:2} |
|
2016-08-09 08:01:56 -07:00
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] [+] }|
|
2015-10-01 11:03:40 -07:00
|
|
|
|
|
2016-08-09 08:01:56 -07:00
|
|
|
{3:-- TERMINAL --} |
|
2015-10-01 11:03:40 -07:00
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
2016-01-10 14:23:24 -07:00
|
|
|
it('interprets leading <Esc> byte as ALT modifier in normal-mode', function()
|
2015-10-02 06:59:06 -07:00
|
|
|
local keys = 'dfghjkl'
|
|
|
|
for c in keys:gmatch('.') do
|
2017-04-08 14:12:26 -07:00
|
|
|
feed_command('nnoremap <a-'..c..'> ialt-'..c..'<cr><esc>')
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('\027'..c)
|
2015-10-02 06:59:06 -07:00
|
|
|
end
|
|
|
|
screen:expect([[
|
|
|
|
alt-j |
|
|
|
|
alt-k |
|
|
|
|
alt-l |
|
|
|
|
{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{5:[No Name] [+] }|
|
2015-10-02 06:59:06 -07:00
|
|
|
|
|
2016-08-09 08:01:56 -07:00
|
|
|
{3:-- TERMINAL --} |
|
2015-10-02 06:59:06 -07:00
|
|
|
]])
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('gg')
|
2015-10-02 06:59:06 -07:00
|
|
|
screen:expect([[
|
|
|
|
{1:a}lt-d |
|
|
|
|
alt-f |
|
|
|
|
alt-g |
|
|
|
|
alt-h |
|
2016-08-09 08:01:56 -07:00
|
|
|
{5:[No Name] [+] }|
|
2015-10-02 06:59:06 -07:00
|
|
|
|
|
2016-08-09 08:01:56 -07:00
|
|
|
{3:-- TERMINAL --} |
|
2015-10-02 06:59:06 -07:00
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
2018-04-03 16:08:07 -07:00
|
|
|
it('interprets ESC+key as ALT chord', function()
|
|
|
|
-- Vim represents ALT/META by setting the "high bit" of the modified key:
|
|
|
|
-- ALT+j inserts "ê". Nvim does not (#3982).
|
|
|
|
feed_data('i\022\027j')
|
2016-01-10 14:23:24 -07:00
|
|
|
screen:expect([[
|
2018-04-03 16:08:07 -07:00
|
|
|
<M-j>{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] [+] }|
|
|
|
|
{3:-- INSERT --} |
|
|
|
|
{3:-- TERMINAL --} |
|
2016-01-10 14:23:24 -07:00
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
2015-10-02 06:59:06 -07:00
|
|
|
it('accepts ascii control sequences', function()
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('i')
|
|
|
|
feed_data('\022\007') -- ctrl+g
|
|
|
|
feed_data('\022\022') -- ctrl+v
|
|
|
|
feed_data('\022\013') -- ctrl+m
|
2018-11-20 02:52:49 -07:00
|
|
|
local attrs = screen:get_default_attr_ids()
|
|
|
|
attrs[11] = {foreground = 81}
|
2015-10-02 06:59:06 -07:00
|
|
|
screen:expect([[
|
2018-11-20 02:52:49 -07:00
|
|
|
{11:^G^V^M}{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] [+] }|
|
|
|
|
{3:-- INSERT --} |
|
|
|
|
{3:-- TERMINAL --} |
|
2018-11-20 02:52:49 -07:00
|
|
|
]], attrs)
|
2015-10-02 06:59:06 -07:00
|
|
|
end)
|
|
|
|
|
2015-10-01 11:03:40 -07:00
|
|
|
it('automatically sends <Paste> for bracketed paste sequences', function()
|
2017-12-02 12:27:39 -07:00
|
|
|
-- Pasting can be really slow in the TUI, specially in ASAN.
|
|
|
|
-- This will be fixed later but for now we require a high timeout.
|
|
|
|
screen.timeout = 60000
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('i\027[200~')
|
2015-10-01 11:03:40 -07:00
|
|
|
screen:expect([[
|
|
|
|
{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] }|
|
|
|
|
{3:-- INSERT (paste) --} |
|
|
|
|
{3:-- TERMINAL --} |
|
2015-10-01 11:03:40 -07:00
|
|
|
]])
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('pasted from terminal')
|
2015-10-01 11:03:40 -07:00
|
|
|
screen:expect([[
|
|
|
|
pasted from terminal{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] [+] }|
|
|
|
|
{3:-- INSERT (paste) --} |
|
|
|
|
{3:-- TERMINAL --} |
|
2015-10-01 11:03:40 -07:00
|
|
|
]])
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('\027[201~')
|
2015-10-01 11:03:40 -07:00
|
|
|
screen:expect([[
|
|
|
|
pasted from terminal{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] [+] }|
|
|
|
|
{3:-- INSERT --} |
|
|
|
|
{3:-- TERMINAL --} |
|
2015-10-01 11:03:40 -07:00
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('can handle arbitrarily long bursts of input', function()
|
2017-12-02 12:27:39 -07:00
|
|
|
-- Need extra time for this test, specially in ASAN.
|
|
|
|
screen.timeout = 60000
|
2017-04-08 14:12:26 -07:00
|
|
|
feed_command('set ruler')
|
2015-10-01 11:03:40 -07:00
|
|
|
local t = {}
|
|
|
|
for i = 1, 3000 do
|
|
|
|
t[i] = 'item ' .. tostring(i)
|
|
|
|
end
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('i\027[200~'..table.concat(t, '\n')..'\027[201~')
|
2015-10-01 11:03:40 -07:00
|
|
|
screen:expect([[
|
|
|
|
item 2997 |
|
|
|
|
item 2998 |
|
|
|
|
item 2999 |
|
|
|
|
item 3000{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{5:[No Name] [+] 3000,10 Bot}|
|
|
|
|
{3:-- INSERT --} |
|
|
|
|
{3:-- TERMINAL --} |
|
2015-11-13 09:20:32 -07:00
|
|
|
]])
|
|
|
|
end)
|
2017-12-12 10:23:19 -07:00
|
|
|
|
|
|
|
it('allows termguicolors to be set at runtime', function()
|
|
|
|
screen:set_option('rgb', true)
|
|
|
|
screen:set_default_attr_ids({
|
|
|
|
[1] = {reverse = true},
|
2018-11-30 13:13:01 -07:00
|
|
|
[2] = {foreground = 13},
|
|
|
|
[3] = {bold = true, reverse = true},
|
2017-12-12 10:23:19 -07:00
|
|
|
[4] = {bold = true},
|
2018-11-30 13:13:01 -07:00
|
|
|
[5] = {reverse = true, foreground = 4},
|
|
|
|
[6] = {foreground = 4},
|
|
|
|
[7] = {reverse = true, foreground = Screen.colors.SeaGreen4},
|
|
|
|
[8] = {foreground = Screen.colors.SeaGreen4},
|
|
|
|
[9] = {bold = true, foreground = Screen.colors.Blue1},
|
2017-12-12 10:23:19 -07:00
|
|
|
})
|
|
|
|
|
|
|
|
feed_data(':hi SpecialKey ctermfg=3 guifg=SeaGreen\n')
|
|
|
|
feed_data('i')
|
|
|
|
feed_data('\022\007') -- ctrl+g
|
|
|
|
feed_data('\028\014') -- crtl+\ ctrl+N
|
|
|
|
feed_data(':set termguicolors?\n')
|
|
|
|
screen:expect([[
|
|
|
|
{5:^}{6:G} |
|
|
|
|
{2:~ }|
|
|
|
|
{2:~ }|
|
|
|
|
{2:~ }|
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
notermguicolors |
|
|
|
|
{4:-- TERMINAL --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed_data(':set termguicolors\n')
|
|
|
|
screen:expect([[
|
|
|
|
{7:^}{8:G} |
|
|
|
|
{9:~ }|
|
|
|
|
{9:~ }|
|
|
|
|
{9:~ }|
|
|
|
|
{3:[No Name] [+] }|
|
2018-02-06 11:46:45 -07:00
|
|
|
:set termguicolors |
|
2017-12-12 10:23:19 -07:00
|
|
|
{4:-- TERMINAL --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed_data(':set notermguicolors\n')
|
|
|
|
screen:expect([[
|
|
|
|
{5:^}{6:G} |
|
|
|
|
{2:~ }|
|
|
|
|
{2:~ }|
|
|
|
|
{2:~ }|
|
|
|
|
{3:[No Name] [+] }|
|
2018-02-06 11:46:45 -07:00
|
|
|
:set notermguicolors |
|
2017-12-12 10:23:19 -07:00
|
|
|
{4:-- TERMINAL --} |
|
|
|
|
]])
|
|
|
|
end)
|
2018-05-31 01:58:31 -07:00
|
|
|
|
UI/nvim_ui_attach(): add `override` option
Before now, Nvim always degrades UI capabilities to the lowest-common
denominator. For example, if any connected UI has `ext_messages=false`
then `ext_messages=true` requested by any other connected UI is ignored.
Now `nvim_ui_attach()` supports `override=true`, which flips the
behavior: if any UI requests an `ext_*` UI capability then the
capability is enabled (and the legacy behavior is disabled).
Legacy UIs will be broken while a `override=true` UI is connected, but
it's useful for debugging: you can type into the TUI and observe the UI
events from another connected (UI) client. And the legacy UI will
"recover" after the `override=true` UI disconnects.
Example using pynvim:
>>> n.ui_attach(2048, 2048, rgb=True, override=True, ext_multigrid=True, ext_messages=True, ext_popupmenu=True)
>>> while True: n.next_message();
2019-05-09 10:35:38 -07:00
|
|
|
it('is included in nvim_list_uis()', function()
|
2019-02-05 08:17:23 -07:00
|
|
|
feed_data(':echo map(nvim_list_uis(), {k,v -> sort(items(filter(v, {k,v -> k[:3] !=# "ext_" })))})\013')
|
2018-05-31 01:58:31 -07:00
|
|
|
screen:expect([=[
|
2019-02-05 08:17:23 -07:00
|
|
|
|
|
|
|
|
{4:~ }|
|
|
|
|
{5: }|
|
UI/nvim_ui_attach(): add `override` option
Before now, Nvim always degrades UI capabilities to the lowest-common
denominator. For example, if any connected UI has `ext_messages=false`
then `ext_messages=true` requested by any other connected UI is ignored.
Now `nvim_ui_attach()` supports `override=true`, which flips the
behavior: if any UI requests an `ext_*` UI capability then the
capability is enabled (and the legacy behavior is disabled).
Legacy UIs will be broken while a `override=true` UI is connected, but
it's useful for debugging: you can type into the TUI and observe the UI
events from another connected (UI) client. And the legacy UI will
"recover" after the `override=true` UI disconnects.
Example using pynvim:
>>> n.ui_attach(2048, 2048, rgb=True, override=True, ext_multigrid=True, ext_messages=True, ext_popupmenu=True)
>>> while True: n.next_message();
2019-05-09 10:35:38 -07:00
|
|
|
[[['height', 6], ['override', v:false], ['rgb', v:|
|
|
|
|
false], ['width', 50]]] |
|
2018-05-31 01:58:31 -07:00
|
|
|
{10:Press ENTER or type command to continue}{1: } |
|
|
|
|
{3:-- TERMINAL --} |
|
|
|
|
]=])
|
|
|
|
end)
|
2015-11-20 16:09:30 -07:00
|
|
|
end)
|
2015-11-13 09:20:32 -07:00
|
|
|
|
2019-06-09 19:22:07 -07:00
|
|
|
describe('TUI', function()
|
|
|
|
before_each(clear)
|
2015-11-20 16:09:30 -07:00
|
|
|
after_each(function()
|
2019-06-09 19:22:07 -07:00
|
|
|
os.remove('testF')
|
2015-11-20 16:09:30 -07:00
|
|
|
end)
|
|
|
|
|
2019-06-09 19:22:07 -07:00
|
|
|
it('with non-tty (pipe) stdout/stderr', function()
|
2019-01-15 17:09:47 -07:00
|
|
|
local screen = thelpers.screen_setup(0, '"'..nvim_prog
|
2017-02-09 19:39:00 -07:00
|
|
|
..' -u NONE -i NONE --cmd \'set noswapfile noshowcmd noruler\' --cmd \'normal iabc\' > /dev/null 2>&1 && cat testF && rm testF"')
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data(':w testF\n:q\n')
|
2015-11-20 16:09:30 -07:00
|
|
|
screen:expect([[
|
|
|
|
:w testF |
|
|
|
|
:q |
|
|
|
|
abc |
|
|
|
|
|
|
2016-08-09 08:01:56 -07:00
|
|
|
[Process exited 0]{1: } |
|
2015-11-20 16:09:30 -07:00
|
|
|
|
|
2016-08-09 08:01:56 -07:00
|
|
|
{3:-- TERMINAL --} |
|
2015-11-20 16:09:30 -07:00
|
|
|
]])
|
|
|
|
end)
|
2019-06-09 19:22:07 -07:00
|
|
|
|
|
|
|
it('<C-h> #10134', function()
|
|
|
|
local screen = thelpers.screen_setup(0, '["'..nvim_prog
|
|
|
|
..[[", "-u", "NONE", "-i", "NONE", "--cmd", "set noruler", "--cmd", ':nnoremap <C-h> :echomsg "\<C-h\>"<CR>']]..']')
|
|
|
|
|
|
|
|
command([[call chansend(b:terminal_job_id, "\<C-h>")]])
|
|
|
|
screen:expect([[
|
|
|
|
{1: } |
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] }|
|
|
|
|
<C-h> |
|
|
|
|
{3:-- TERMINAL --} |
|
|
|
|
]])
|
|
|
|
end)
|
2015-11-20 16:09:30 -07:00
|
|
|
end)
|
|
|
|
|
2019-01-15 17:09:47 -07:00
|
|
|
describe('TUI FocusGained/FocusLost', function()
|
2015-11-17 15:31:22 -07:00
|
|
|
local screen
|
|
|
|
|
2015-11-20 16:09:30 -07:00
|
|
|
before_each(function()
|
|
|
|
helpers.clear()
|
2019-01-15 17:09:47 -07:00
|
|
|
screen = thelpers.screen_setup(0, '["'..nvim_prog
|
2017-02-09 19:39:00 -07:00
|
|
|
..'", "-u", "NONE", "-i", "NONE", "--cmd", "set noswapfile noshowcmd noruler"]')
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data(":autocmd FocusGained * echo 'gained'\n")
|
|
|
|
feed_data(":autocmd FocusLost * echo 'lost'\n")
|
|
|
|
feed_data("\034\016") -- CTRL-\ CTRL-N
|
2015-11-20 16:09:30 -07:00
|
|
|
end)
|
2015-11-20 11:47:20 -07:00
|
|
|
|
2017-09-02 02:35:39 -07:00
|
|
|
it('in normal-mode', function()
|
|
|
|
retry(2, 3 * screen.timeout, function()
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('\027[I')
|
2015-11-13 09:20:32 -07:00
|
|
|
screen:expect([[
|
|
|
|
{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] }|
|
2015-11-13 09:20:32 -07:00
|
|
|
gained |
|
2016-08-09 08:01:56 -07:00
|
|
|
{3:-- TERMINAL --} |
|
2015-11-13 09:20:32 -07:00
|
|
|
]])
|
|
|
|
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('\027[O')
|
2015-11-13 09:20:32 -07:00
|
|
|
screen:expect([[
|
|
|
|
{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] }|
|
2015-11-13 09:20:32 -07:00
|
|
|
lost |
|
2016-08-09 08:01:56 -07:00
|
|
|
{3:-- TERMINAL --} |
|
2015-11-20 11:47:20 -07:00
|
|
|
]])
|
2017-09-02 02:35:39 -07:00
|
|
|
end)
|
2015-11-20 16:09:30 -07:00
|
|
|
end)
|
2015-11-20 11:47:20 -07:00
|
|
|
|
2017-09-02 02:35:39 -07:00
|
|
|
it('in insert-mode', function()
|
2017-04-08 14:12:26 -07:00
|
|
|
feed_command('set noshowmode')
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('i')
|
2017-09-02 02:35:39 -07:00
|
|
|
retry(2, 3 * screen.timeout, function()
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('\027[I')
|
2015-11-20 11:47:20 -07:00
|
|
|
screen:expect([[
|
|
|
|
{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] }|
|
2015-11-20 11:47:20 -07:00
|
|
|
gained |
|
2016-08-09 08:01:56 -07:00
|
|
|
{3:-- TERMINAL --} |
|
2015-11-20 11:47:20 -07:00
|
|
|
]])
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('\027[O')
|
2015-11-20 11:47:20 -07:00
|
|
|
screen:expect([[
|
|
|
|
{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] }|
|
2015-11-20 11:47:20 -07:00
|
|
|
lost |
|
2016-08-09 08:01:56 -07:00
|
|
|
{3:-- TERMINAL --} |
|
2015-11-20 11:47:20 -07:00
|
|
|
]])
|
2017-09-02 02:35:39 -07:00
|
|
|
end)
|
2015-11-20 16:09:30 -07:00
|
|
|
end)
|
2015-11-20 11:47:20 -07:00
|
|
|
|
2017-09-02 02:35:48 -07:00
|
|
|
-- During cmdline-mode we ignore :echo invoked by timers/events.
|
|
|
|
-- See commit: 5cc87d4dabd02167117be7a978b5c8faaa975419.
|
2017-09-02 02:35:39 -07:00
|
|
|
it('in cmdline-mode does NOT :echo', function()
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data(':')
|
|
|
|
feed_data('\027[I')
|
2015-11-20 11:47:20 -07:00
|
|
|
screen:expect([[
|
|
|
|
|
|
2016-08-09 08:01:56 -07:00
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] }|
|
2017-09-02 02:35:39 -07:00
|
|
|
:{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{3:-- TERMINAL --} |
|
2015-11-20 11:47:20 -07:00
|
|
|
]])
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('\027[O')
|
2017-06-26 05:49:15 -07:00
|
|
|
screen:expect{grid=[[
|
2015-11-20 11:47:20 -07:00
|
|
|
|
|
2016-08-09 08:01:56 -07:00
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] }|
|
2017-09-02 02:35:39 -07:00
|
|
|
:{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
{3:-- TERMINAL --} |
|
2017-06-26 05:49:15 -07:00
|
|
|
]], unchanged=true}
|
2015-11-20 16:09:30 -07:00
|
|
|
end)
|
2015-11-20 11:47:20 -07:00
|
|
|
|
2017-09-02 02:35:48 -07:00
|
|
|
it('in cmdline-mode', function()
|
|
|
|
-- Set up autocmds that modify the buffer, instead of just calling :echo.
|
|
|
|
-- This is how we can test handling of focus gained/lost during cmdline-mode.
|
|
|
|
-- See commit: 5cc87d4dabd02167117be7a978b5c8faaa975419.
|
|
|
|
feed_data(":autocmd!\n")
|
|
|
|
feed_data(":autocmd FocusLost * call append(line('$'), 'lost')\n")
|
|
|
|
feed_data(":autocmd FocusGained * call append(line('$'), 'gained')\n")
|
2017-09-09 08:45:00 -07:00
|
|
|
retry(2, 3 * screen.timeout, function()
|
|
|
|
-- Enter cmdline-mode.
|
|
|
|
feed_data(':')
|
|
|
|
screen:sleep(1)
|
|
|
|
-- Send focus lost/gained termcodes.
|
|
|
|
feed_data('\027[O')
|
|
|
|
feed_data('\027[I')
|
|
|
|
screen:sleep(1)
|
|
|
|
-- Exit cmdline-mode. Redraws from timers/events are blocked during
|
|
|
|
-- cmdline-mode, so the buffer won't be updated until we exit cmdline-mode.
|
|
|
|
feed_data('\n')
|
2018-12-18 04:50:44 -07:00
|
|
|
screen:expect{any='lost'..(' '):rep(46)..'|\ngained'}
|
2017-09-09 08:45:00 -07:00
|
|
|
end)
|
2017-09-02 02:35:48 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
it('in terminal-mode', function()
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data(':set shell='..nvim_dir..'/shell-test\n')
|
|
|
|
feed_data(':set noshowmode laststatus=0\n')
|
|
|
|
|
|
|
|
retry(2, 3 * screen.timeout, function()
|
|
|
|
feed_data(':terminal\n')
|
2017-09-05 09:43:41 -07:00
|
|
|
screen:sleep(1)
|
2017-04-08 17:11:08 -07:00
|
|
|
feed_data('\027[I')
|
|
|
|
screen:expect([[
|
2017-05-25 03:40:55 -07:00
|
|
|
{1:r}eady $ |
|
|
|
|
[Process exited 0] |
|
2017-04-08 17:11:08 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
gained |
|
|
|
|
{3:-- TERMINAL --} |
|
|
|
|
]])
|
|
|
|
feed_data('\027[O')
|
|
|
|
screen:expect([[
|
2017-05-25 03:40:55 -07:00
|
|
|
{1:r}eady $ |
|
|
|
|
[Process exited 0] |
|
2017-04-08 17:11:08 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lost |
|
|
|
|
{3:-- TERMINAL --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- If retry is needed...
|
|
|
|
feed_data("\034\016") -- CTRL-\ CTRL-N
|
|
|
|
feed_data(':bwipeout!\n')
|
|
|
|
end)
|
2015-10-01 11:03:40 -07:00
|
|
|
end)
|
2017-09-05 09:43:41 -07:00
|
|
|
|
|
|
|
it('in press-enter prompt', function()
|
|
|
|
feed_data(":echom 'msg1'|echom 'msg2'|echom 'msg3'|echom 'msg4'|echom 'msg5'\n")
|
|
|
|
-- Execute :messages to provoke the press-enter prompt.
|
|
|
|
feed_data(":messages\n")
|
|
|
|
feed_data('\027[I')
|
|
|
|
feed_data('\027[I')
|
|
|
|
screen:expect([[
|
|
|
|
msg1 |
|
|
|
|
msg2 |
|
|
|
|
msg3 |
|
|
|
|
msg4 |
|
|
|
|
msg5 |
|
|
|
|
{10:Press ENTER or type command to continue}{1: } |
|
|
|
|
{3:-- TERMINAL --} |
|
|
|
|
]])
|
|
|
|
end)
|
2015-10-01 11:03:40 -07:00
|
|
|
end)
|
2016-07-02 22:13:48 -07:00
|
|
|
|
|
|
|
-- These tests require `thelpers` because --headless/--embed
|
|
|
|
-- does not initialize the TUI.
|
2019-01-15 17:09:47 -07:00
|
|
|
describe("TUI 't_Co' (terminal colors)", function()
|
2016-07-02 22:13:48 -07:00
|
|
|
local screen
|
2017-11-26 15:15:17 -07:00
|
|
|
local is_freebsd = (string.lower(uname()) == 'freebsd')
|
2016-07-02 22:13:48 -07:00
|
|
|
|
|
|
|
local function assert_term_colors(term, colorterm, maxcolors)
|
|
|
|
helpers.clear({env={TERM=term}, args={}})
|
|
|
|
-- This is ugly because :term/termopen() forces TERM=xterm-256color.
|
|
|
|
-- TODO: Revisit this after jobstart/termopen accept `env` dict.
|
|
|
|
screen = thelpers.screen_setup(0, string.format(
|
2017-11-26 16:27:40 -07:00
|
|
|
[=[['sh', '-c', 'LANG=C TERM=%s %s %s -u NONE -i NONE --cmd "%s"']]=],
|
2017-11-09 21:19:25 -07:00
|
|
|
term or "",
|
2016-07-02 22:13:48 -07:00
|
|
|
(colorterm ~= nil and "COLORTERM="..colorterm or ""),
|
2017-11-26 16:27:40 -07:00
|
|
|
nvim_prog,
|
|
|
|
nvim_set))
|
2016-07-02 22:13:48 -07:00
|
|
|
|
2016-08-09 08:01:56 -07:00
|
|
|
local tline
|
2017-05-27 10:11:35 -07:00
|
|
|
if maxcolors == 8 or maxcolors == 16 then
|
2016-08-09 08:01:56 -07:00
|
|
|
tline = "~ "
|
|
|
|
else
|
|
|
|
tline = "{4:~ }"
|
|
|
|
end
|
2018-10-06 01:56:00 -07:00
|
|
|
|
|
|
|
screen:expect(string.format([[
|
|
|
|
{1: } |
|
|
|
|
%s|
|
|
|
|
%s|
|
|
|
|
%s|
|
|
|
|
%s|
|
|
|
|
|
|
|
|
|
{3:-- TERMINAL --} |
|
|
|
|
]], tline, tline, tline, tline))
|
|
|
|
|
|
|
|
feed_data(":echo &t_Co\n")
|
2016-07-02 22:13:48 -07:00
|
|
|
screen:expect(string.format([[
|
|
|
|
{1: } |
|
2016-08-09 08:01:56 -07:00
|
|
|
%s|
|
|
|
|
%s|
|
|
|
|
%s|
|
2017-11-26 16:27:40 -07:00
|
|
|
%s|
|
2016-07-02 22:13:48 -07:00
|
|
|
%-3s |
|
2016-08-09 08:01:56 -07:00
|
|
|
{3:-- TERMINAL --} |
|
2017-11-26 16:27:40 -07:00
|
|
|
]], tline, tline, tline, tline, tostring(maxcolors and maxcolors or "")))
|
2016-07-02 22:13:48 -07:00
|
|
|
end
|
|
|
|
|
2017-05-27 10:11:35 -07:00
|
|
|
-- ansi and no terminal type at all:
|
|
|
|
|
|
|
|
it("no TERM uses 8 colors", function()
|
|
|
|
assert_term_colors(nil, nil, 8)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=ansi no COLORTERM uses 8 colors", function()
|
|
|
|
assert_term_colors("ansi", nil, 8)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=ansi with COLORTERM=anything-no-number uses 16 colors", function()
|
|
|
|
assert_term_colors("ansi", "yet-another-term", 16)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("unknown TERM COLORTERM with 256 in name uses 256 colors", function()
|
|
|
|
assert_term_colors("ansi", "yet-another-term-256color", 256)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=ansi-256color sets 256 colours", function()
|
|
|
|
assert_term_colors("ansi-256color", nil, 256)
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- Unknown terminal types:
|
|
|
|
|
|
|
|
it("unknown TERM no COLORTERM sets 8 colours", function()
|
|
|
|
assert_term_colors("yet-another-term", nil, 8)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("unknown TERM with COLORTERM=anything-no-number uses 16 colors", function()
|
|
|
|
assert_term_colors("yet-another-term", "yet-another-term", 16)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("unknown TERM with 256 in name sets 256 colours", function()
|
|
|
|
assert_term_colors("yet-another-term-256color", nil, 256)
|
2016-07-02 22:13:48 -07:00
|
|
|
end)
|
|
|
|
|
2017-05-27 10:11:35 -07:00
|
|
|
it("unknown TERM COLORTERM with 256 in name uses 256 colors", function()
|
|
|
|
assert_term_colors("yet-another-term", "yet-another-term-256color", 256)
|
2016-07-02 22:13:48 -07:00
|
|
|
end)
|
|
|
|
|
2017-05-27 10:11:35 -07:00
|
|
|
-- Linux kernel terminal emulator:
|
|
|
|
|
2017-05-03 11:47:03 -07:00
|
|
|
it("TERM=linux uses 256 colors", function()
|
2017-05-27 10:11:35 -07:00
|
|
|
assert_term_colors("linux", nil, 256)
|
2017-05-03 11:47:03 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=linux-16color uses 256 colors", function()
|
2017-05-27 10:11:35 -07:00
|
|
|
assert_term_colors("linux-16color", nil, 256)
|
|
|
|
end)
|
|
|
|
|
2017-05-28 04:18:01 -07:00
|
|
|
it("TERM=linux-256color uses 256 colors", function()
|
|
|
|
assert_term_colors("linux-256color", nil, 256)
|
|
|
|
end)
|
|
|
|
|
2017-06-03 07:16:40 -07:00
|
|
|
-- screen:
|
2017-05-28 04:18:01 -07:00
|
|
|
--
|
|
|
|
-- FreeBSD falls back to the built-in screen-256colour entry.
|
|
|
|
-- Linux and MacOS have a screen entry in external terminfo with 8 colours,
|
|
|
|
-- which is raised to 16 by COLORTERM.
|
2017-05-27 10:11:35 -07:00
|
|
|
|
|
|
|
it("TERM=screen no COLORTERM uses 8/256 colors", function()
|
|
|
|
if is_freebsd then
|
|
|
|
assert_term_colors("screen", nil, 256)
|
2016-07-06 06:11:26 -07:00
|
|
|
else
|
2017-05-27 10:11:35 -07:00
|
|
|
assert_term_colors("screen", nil, 8)
|
2016-07-06 06:11:26 -07:00
|
|
|
end
|
2016-07-02 22:13:48 -07:00
|
|
|
end)
|
|
|
|
|
2017-05-27 10:11:35 -07:00
|
|
|
it("TERM=screen COLORTERM=screen uses 16/256 colors", function()
|
|
|
|
if is_freebsd then
|
|
|
|
assert_term_colors("screen", "screen", 256)
|
2016-07-06 06:11:26 -07:00
|
|
|
else
|
2017-05-27 10:11:35 -07:00
|
|
|
assert_term_colors("screen", "screen", 16)
|
2016-07-06 06:11:26 -07:00
|
|
|
end
|
2016-07-02 22:13:48 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=screen COLORTERM=screen-256color uses 256 colors", function()
|
|
|
|
assert_term_colors("screen", "screen-256color", 256)
|
|
|
|
end)
|
|
|
|
|
2017-05-27 10:11:35 -07:00
|
|
|
it("TERM=screen-256color no COLORTERM uses 256 colors", function()
|
|
|
|
assert_term_colors("screen-256color", nil, 256)
|
2016-07-02 22:13:48 -07:00
|
|
|
end)
|
|
|
|
|
2017-06-03 07:16:40 -07:00
|
|
|
-- tmux:
|
|
|
|
--
|
|
|
|
-- FreeBSD and MacOS fall back to the built-in tmux-256colour entry.
|
|
|
|
-- Linux has a tmux entry in external terminfo with 8 colours,
|
|
|
|
-- which is raised to 256.
|
|
|
|
|
2017-05-27 11:52:14 -07:00
|
|
|
it("TERM=tmux no COLORTERM uses 256 colors", function()
|
|
|
|
assert_term_colors("tmux", nil, 256)
|
2017-05-27 10:11:35 -07:00
|
|
|
end)
|
|
|
|
|
2017-05-27 11:52:14 -07:00
|
|
|
it("TERM=tmux COLORTERM=tmux uses 256 colors", function()
|
|
|
|
assert_term_colors("tmux", "tmux", 256)
|
2017-05-27 10:11:35 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=tmux COLORTERM=tmux-256color uses 256 colors", function()
|
|
|
|
assert_term_colors("tmux", "tmux-256color", 256)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=tmux-256color no COLORTERM uses 256 colors", function()
|
|
|
|
assert_term_colors("tmux-256color", nil, 256)
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- xterm and imitators:
|
|
|
|
|
2016-07-02 22:13:48 -07:00
|
|
|
it("TERM=xterm uses 256 colors", function()
|
|
|
|
assert_term_colors("xterm", nil, 256)
|
|
|
|
end)
|
|
|
|
|
2017-05-27 10:11:35 -07:00
|
|
|
it("TERM=xterm COLORTERM=gnome-terminal uses 256 colors", function()
|
|
|
|
assert_term_colors("xterm", "gnome-terminal", 256)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=xterm COLORTERM=mate-terminal uses 256 colors", function()
|
|
|
|
assert_term_colors("xterm", "mate-terminal", 256)
|
|
|
|
end)
|
|
|
|
|
2016-07-02 22:13:48 -07:00
|
|
|
it("TERM=xterm-256color uses 256 colors", function()
|
|
|
|
assert_term_colors("xterm-256color", nil, 256)
|
|
|
|
end)
|
2017-05-27 10:11:35 -07:00
|
|
|
|
|
|
|
-- rxvt and stterm:
|
2017-05-28 04:18:01 -07:00
|
|
|
--
|
|
|
|
-- FreeBSD and MacOS fall back to the built-in rxvt-256color and
|
|
|
|
-- st-256colour entries.
|
|
|
|
-- Linux has an rxvt, an st, and an st-16color entry in external terminfo
|
|
|
|
-- with 8, 8, and 16 colours respectively, which are raised to 256.
|
2017-05-27 10:11:35 -07:00
|
|
|
|
|
|
|
it("TERM=rxvt no COLORTERM uses 256 colors", function()
|
|
|
|
assert_term_colors("rxvt", nil, 256)
|
|
|
|
end)
|
|
|
|
|
2017-05-28 04:18:01 -07:00
|
|
|
it("TERM=rxvt COLORTERM=rxvt uses 256 colors", function()
|
|
|
|
assert_term_colors("rxvt", "rxvt", 256)
|
|
|
|
end)
|
|
|
|
|
2017-05-27 10:11:35 -07:00
|
|
|
it("TERM=rxvt-256color uses 256 colors", function()
|
|
|
|
assert_term_colors("rxvt-256color", nil, 256)
|
|
|
|
end)
|
|
|
|
|
2017-05-28 04:18:01 -07:00
|
|
|
it("TERM=st no COLORTERM uses 256 colors", function()
|
|
|
|
assert_term_colors("st", nil, 256)
|
2017-05-27 11:52:14 -07:00
|
|
|
end)
|
|
|
|
|
2017-05-28 04:18:01 -07:00
|
|
|
it("TERM=st COLORTERM=st uses 256 colors", function()
|
|
|
|
assert_term_colors("st", "st", 256)
|
2017-05-27 11:52:14 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=st COLORTERM=st-256color uses 256 colors", function()
|
2017-05-27 17:30:08 -07:00
|
|
|
assert_term_colors("st", "st-256color", 256)
|
2017-05-27 10:11:35 -07:00
|
|
|
end)
|
|
|
|
|
2017-05-28 04:18:01 -07:00
|
|
|
it("TERM=st-16color no COLORTERM uses 8/256 colors", function()
|
|
|
|
assert_term_colors("st", nil, 256)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=st-16color COLORTERM=st uses 16/256 colors", function()
|
|
|
|
assert_term_colors("st", "st", 256)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=st-16color COLORTERM=st-256color uses 256 colors", function()
|
|
|
|
assert_term_colors("st", "st-256color", 256)
|
|
|
|
end)
|
|
|
|
|
2017-05-27 10:11:35 -07:00
|
|
|
it("TERM=st-256color uses 256 colors", function()
|
|
|
|
assert_term_colors("st-256color", nil, 256)
|
|
|
|
end)
|
|
|
|
|
2017-05-28 23:51:06 -07:00
|
|
|
-- gnome and vte:
|
|
|
|
--
|
|
|
|
-- FreeBSD and MacOS fall back to the built-in vte-256color entry.
|
|
|
|
-- Linux has a gnome, a vte, a gnome-256color, and a vte-256color entry in
|
|
|
|
-- external terminfo with 8, 8, 256, and 256 colours respectively, which are
|
|
|
|
-- raised to 256.
|
|
|
|
|
|
|
|
it("TERM=gnome no COLORTERM uses 256 colors", function()
|
|
|
|
assert_term_colors("gnome", nil, 256)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=gnome COLORTERM=gnome uses 256 colors", function()
|
|
|
|
assert_term_colors("gnome", "gnome", 256)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=gnome COLORTERM=gnome-256color uses 256 colors", function()
|
|
|
|
assert_term_colors("gnome", "gnome-256color", 256)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=gnome-256color uses 256 colors", function()
|
|
|
|
assert_term_colors("gnome-256color", nil, 256)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=vte no COLORTERM uses 256 colors", function()
|
|
|
|
assert_term_colors("vte", nil, 256)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=vte COLORTERM=vte uses 256 colors", function()
|
|
|
|
assert_term_colors("vte", "vte", 256)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=vte COLORTERM=vte-256color uses 256 colors", function()
|
|
|
|
assert_term_colors("vte", "vte-256color", 256)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("TERM=vte-256color uses 256 colors", function()
|
|
|
|
assert_term_colors("vte-256color", nil, 256)
|
|
|
|
end)
|
|
|
|
|
2017-05-27 10:11:35 -07:00
|
|
|
-- others:
|
|
|
|
|
|
|
|
it("TERM=interix uses 8 colors", function()
|
|
|
|
assert_term_colors("interix", nil, 8)
|
|
|
|
end)
|
|
|
|
|
2017-05-28 04:18:01 -07:00
|
|
|
it("TERM=iTerm.app uses 256 colors", function()
|
|
|
|
assert_term_colors("iTerm.app", nil, 256)
|
|
|
|
end)
|
|
|
|
|
2017-05-27 11:52:14 -07:00
|
|
|
it("TERM=iterm uses 256 colors", function()
|
|
|
|
assert_term_colors("iterm", nil, 256)
|
2017-05-27 10:11:35 -07:00
|
|
|
end)
|
|
|
|
|
2016-07-02 22:13:48 -07:00
|
|
|
end)
|
2017-11-26 15:15:17 -07:00
|
|
|
|
|
|
|
-- These tests require `thelpers` because --headless/--embed
|
|
|
|
-- does not initialize the TUI.
|
2019-01-15 17:09:47 -07:00
|
|
|
describe("TUI 'term' option", function()
|
2017-11-26 15:15:17 -07:00
|
|
|
local screen
|
|
|
|
local is_bsd = not not string.find(string.lower(uname()), 'bsd')
|
2017-12-02 12:37:43 -07:00
|
|
|
local is_macos = not not string.find(string.lower(uname()), 'darwin')
|
2017-11-26 15:15:17 -07:00
|
|
|
|
|
|
|
local function assert_term(term_envvar, term_expected)
|
|
|
|
clear()
|
|
|
|
-- This is ugly because :term/termopen() forces TERM=xterm-256color.
|
|
|
|
-- TODO: Revisit this after jobstart/termopen accept `env` dict.
|
|
|
|
local cmd = string.format(
|
|
|
|
[=[['sh', '-c', 'LANG=C TERM=%s %s -u NONE -i NONE --cmd "%s"']]=],
|
|
|
|
term_envvar or "",
|
|
|
|
nvim_prog,
|
|
|
|
nvim_set)
|
|
|
|
screen = thelpers.screen_setup(0, cmd)
|
|
|
|
|
|
|
|
local full_timeout = screen.timeout
|
|
|
|
screen.timeout = 250 -- We want screen:expect() to fail quickly.
|
|
|
|
retry(nil, 2 * full_timeout, function() -- Wait for TUI thread to set 'term'.
|
|
|
|
feed_data(":echo 'term='.(&term)\n")
|
2018-08-20 09:51:25 -07:00
|
|
|
screen:expect{any='term='..term_expected}
|
2017-11-26 15:15:17 -07:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
it('gets builtin term if $TERM is invalid', function()
|
|
|
|
assert_term("foo", "builtin_ansi")
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('gets system-provided term if $TERM is valid', function()
|
2017-12-02 12:37:43 -07:00
|
|
|
if is_bsd then -- BSD lacks terminfo, builtin is always used.
|
2017-11-26 15:15:17 -07:00
|
|
|
assert_term("xterm", "builtin_xterm")
|
2017-12-02 12:37:43 -07:00
|
|
|
elseif is_macos then
|
|
|
|
local status, _ = pcall(assert_term, "xterm", "xterm")
|
|
|
|
if not status then
|
|
|
|
pending("macOS: unibilium could not find terminfo", function() end)
|
|
|
|
end
|
2017-11-26 15:15:17 -07:00
|
|
|
else
|
|
|
|
assert_term("xterm", "xterm")
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
2018-12-27 17:46:25 -07:00
|
|
|
it('builtin terms', function()
|
|
|
|
-- These non-standard terminfos are always builtin.
|
|
|
|
assert_term('win32con', 'builtin_win32con')
|
|
|
|
assert_term('conemu', 'builtin_conemu')
|
|
|
|
assert_term('vtpcon', 'builtin_vtpcon')
|
|
|
|
end)
|
|
|
|
|
2017-11-26 15:15:17 -07:00
|
|
|
end)
|
2017-12-04 14:48:38 -07:00
|
|
|
|
|
|
|
-- These tests require `thelpers` because --headless/--embed
|
|
|
|
-- does not initialize the TUI.
|
2019-01-15 17:09:47 -07:00
|
|
|
describe("TUI", function()
|
2017-12-04 14:48:38 -07:00
|
|
|
local screen
|
|
|
|
local logfile = 'Xtest_tui_verbose_log'
|
|
|
|
after_each(function()
|
|
|
|
os.remove(logfile)
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- Runs (child) `nvim` in a TTY (:terminal), to start the builtin TUI.
|
|
|
|
local function nvim_tui(extra_args)
|
|
|
|
clear()
|
|
|
|
-- This is ugly because :term/termopen() forces TERM=xterm-256color.
|
|
|
|
-- TODO: Revisit this after jobstart/termopen accept `env` dict.
|
|
|
|
local cmd = string.format(
|
|
|
|
[=[['sh', '-c', 'LANG=C %s -u NONE -i NONE %s --cmd "%s"']]=],
|
|
|
|
nvim_prog,
|
|
|
|
extra_args or "",
|
|
|
|
nvim_set)
|
|
|
|
screen = thelpers.screen_setup(0, cmd)
|
|
|
|
end
|
|
|
|
|
|
|
|
it('-V3log logs terminfo values', function()
|
|
|
|
nvim_tui('-V3'..logfile)
|
|
|
|
|
|
|
|
-- Wait for TUI to start.
|
|
|
|
feed_data('Gitext')
|
|
|
|
screen:expect([[
|
|
|
|
text{1: } |
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{3:-- INSERT --} |
|
|
|
|
{3:-- TERMINAL --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
retry(nil, 3000, function() -- Wait for log file to be flushed.
|
|
|
|
local log = read_file('Xtest_tui_verbose_log') or ''
|
|
|
|
eq('--- Terminal info --- {{{\n', string.match(log, '--- Terminal.-\n'))
|
|
|
|
ok(#log > 50)
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
|
|
|
end)
|
2019-01-15 17:09:47 -07:00
|
|
|
|
|
|
|
describe('TUI background color', function()
|
2016-07-13 02:10:14 -07:00
|
|
|
local screen
|
|
|
|
|
|
|
|
before_each(function()
|
2019-01-15 17:09:47 -07:00
|
|
|
clear()
|
|
|
|
screen = thelpers.screen_setup(0, '["'..nvim_prog
|
|
|
|
..'", "-u", "NONE", "-i", "NONE", "--cmd", "set noswapfile"]')
|
2016-07-13 02:10:14 -07:00
|
|
|
end)
|
|
|
|
|
2019-02-17 03:32:18 -07:00
|
|
|
it("triggers OptionSet event on terminal-response", function()
|
|
|
|
feed_data('\027:autocmd OptionSet background echo "did OptionSet, yay!"\n')
|
|
|
|
|
2019-03-10 05:31:05 -07:00
|
|
|
-- Wait for the child Nvim to register the OptionSet handler.
|
2019-02-17 03:32:18 -07:00
|
|
|
feed_data('\027:autocmd OptionSet\n')
|
|
|
|
screen:expect({any='--- Autocommands ---'})
|
|
|
|
|
|
|
|
feed_data('\012') -- CTRL-L: clear the screen
|
|
|
|
screen:expect([[
|
|
|
|
{1: } |
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] 0,0-1 All}|
|
|
|
|
|
|
|
|
|
{3:-- TERMINAL --} |
|
|
|
|
]])
|
|
|
|
feed_data('\027]11;rgb:ffff/ffff/ffff\007')
|
|
|
|
screen:expect{any='did OptionSet, yay!'}
|
|
|
|
end)
|
|
|
|
|
2019-06-13 05:14:41 -07:00
|
|
|
local function assert_bg(colorspace, color, bg)
|
2016-07-13 02:10:14 -07:00
|
|
|
it('handles '..color..' as '..bg, function()
|
2019-06-13 05:14:41 -07:00
|
|
|
feed_data('\027]11;'..colorspace..':'..color..'\007')
|
2019-03-14 21:26:41 -07:00
|
|
|
-- Retry until the terminal response is handled.
|
|
|
|
retry(100, nil, function()
|
|
|
|
feed_data(':echo &background\n')
|
|
|
|
screen:expect({
|
|
|
|
timeout=40,
|
|
|
|
grid=string.format([[
|
|
|
|
{1: } |
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{4:~ }|
|
|
|
|
{5:[No Name] 0,0-1 All}|
|
|
|
|
%-5s |
|
|
|
|
{3:-- TERMINAL --} |
|
|
|
|
]], bg)
|
|
|
|
})
|
|
|
|
end)
|
2016-07-13 02:10:14 -07:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2019-06-13 05:14:41 -07:00
|
|
|
assert_bg('rgb', '0000/0000/0000', 'dark')
|
|
|
|
assert_bg('rgb', 'ffff/ffff/ffff', 'light')
|
|
|
|
assert_bg('rgb', '000/000/000', 'dark')
|
|
|
|
assert_bg('rgb', 'fff/fff/fff', 'light')
|
|
|
|
assert_bg('rgb', '00/00/00', 'dark')
|
|
|
|
assert_bg('rgb', 'ff/ff/ff', 'light')
|
|
|
|
assert_bg('rgb', '0/0/0', 'dark')
|
|
|
|
assert_bg('rgb', 'f/f/f', 'light')
|
|
|
|
|
|
|
|
assert_bg('rgb', 'f/0/0', 'dark')
|
|
|
|
assert_bg('rgb', '0/f/0', 'light')
|
|
|
|
assert_bg('rgb', '0/0/f', 'dark')
|
|
|
|
|
|
|
|
assert_bg('rgb', '1/1/1', 'dark')
|
|
|
|
assert_bg('rgb', '2/2/2', 'dark')
|
|
|
|
assert_bg('rgb', '3/3/3', 'dark')
|
|
|
|
assert_bg('rgb', '4/4/4', 'dark')
|
|
|
|
assert_bg('rgb', '5/5/5', 'dark')
|
|
|
|
assert_bg('rgb', '6/6/6', 'dark')
|
|
|
|
assert_bg('rgb', '7/7/7', 'dark')
|
|
|
|
assert_bg('rgb', '8/8/8', 'light')
|
|
|
|
assert_bg('rgb', '9/9/9', 'light')
|
|
|
|
assert_bg('rgb', 'a/a/a', 'light')
|
|
|
|
assert_bg('rgb', 'b/b/b', 'light')
|
|
|
|
assert_bg('rgb', 'c/c/c', 'light')
|
|
|
|
assert_bg('rgb', 'd/d/d', 'light')
|
|
|
|
assert_bg('rgb', 'e/e/e', 'light')
|
|
|
|
|
|
|
|
assert_bg('rgb', '0/e/0', 'light')
|
|
|
|
assert_bg('rgb', '0/d/0', 'light')
|
|
|
|
assert_bg('rgb', '0/c/0', 'dark')
|
|
|
|
assert_bg('rgb', '0/b/0', 'dark')
|
|
|
|
|
|
|
|
assert_bg('rgb', 'f/0/f', 'dark')
|
|
|
|
assert_bg('rgb', 'f/1/f', 'dark')
|
|
|
|
assert_bg('rgb', 'f/2/f', 'dark')
|
|
|
|
assert_bg('rgb', 'f/3/f', 'light')
|
|
|
|
assert_bg('rgb', 'f/4/f', 'light')
|
|
|
|
|
|
|
|
assert_bg('rgba', '0000/0000/0000/0000', 'dark')
|
|
|
|
assert_bg('rgba', '0000/0000/0000/ffff', 'dark')
|
|
|
|
assert_bg('rgba', 'ffff/ffff/ffff/0000', 'light')
|
|
|
|
assert_bg('rgba', 'ffff/ffff/ffff/ffff', 'light')
|
|
|
|
assert_bg('rgba', '000/000/000/000', 'dark')
|
|
|
|
assert_bg('rgba', '000/000/000/fff', 'dark')
|
|
|
|
assert_bg('rgba', 'fff/fff/fff/000', 'light')
|
|
|
|
assert_bg('rgba', 'fff/fff/fff/fff', 'light')
|
|
|
|
assert_bg('rgba', '00/00/00/00', 'dark')
|
|
|
|
assert_bg('rgba', '00/00/00/ff', 'dark')
|
|
|
|
assert_bg('rgba', 'ff/ff/ff/00', 'light')
|
|
|
|
assert_bg('rgba', 'ff/ff/ff/ff', 'light')
|
|
|
|
assert_bg('rgba', '0/0/0/0', 'dark')
|
|
|
|
assert_bg('rgba', '0/0/0/f', 'dark')
|
|
|
|
assert_bg('rgba', 'f/f/f/0', 'light')
|
|
|
|
assert_bg('rgba', 'f/f/f/f', 'light')
|
2016-07-13 02:10:14 -07:00
|
|
|
end)
|