2016-04-23 16:53:11 -07:00
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
2015-02-14 18:16:39 -07:00
|
|
|
local Screen = require('test.functional.ui.screen')
|
2017-04-08 14:12:26 -07:00
|
|
|
local clear, feed, command = helpers.clear, helpers.feed, helpers.command
|
2017-08-05 17:44:15 -07:00
|
|
|
local iswin = helpers.iswin
|
2016-05-01 12:47:10 -07:00
|
|
|
local funcs = helpers.funcs
|
2017-08-02 15:41:52 -07:00
|
|
|
local eq = helpers.eq
|
|
|
|
local eval = helpers.eval
|
|
|
|
local retry = helpers.retry
|
2015-02-14 18:16:39 -07:00
|
|
|
|
2017-08-02 15:41:52 -07:00
|
|
|
describe("'wildmenu'", function()
|
2015-02-14 18:16:39 -07:00
|
|
|
local screen
|
|
|
|
before_each(function()
|
|
|
|
clear()
|
|
|
|
screen = Screen.new(25, 5)
|
|
|
|
screen:attach()
|
|
|
|
end)
|
|
|
|
after_each(function()
|
|
|
|
screen:detach()
|
|
|
|
end)
|
|
|
|
|
2017-08-02 15:41:52 -07:00
|
|
|
it(':sign <tab> shows wildmenu completions', function()
|
|
|
|
command('set wildmode=full')
|
|
|
|
command('set wildmenu')
|
|
|
|
feed(':sign <tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
~ |
|
|
|
|
~ |
|
|
|
|
define jump list > |
|
|
|
|
:sign define^ |
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('does not crash after cycling back to original text', function()
|
|
|
|
command('set wildmode=full')
|
|
|
|
feed(':j<Tab><Tab><Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
~ |
|
|
|
|
~ |
|
|
|
|
join jumps |
|
|
|
|
:j^ |
|
|
|
|
]])
|
|
|
|
-- This would cause nvim to crash before #6650
|
|
|
|
feed('<BS><Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
~ |
|
|
|
|
~ |
|
|
|
|
! # & < = > @ > |
|
|
|
|
:!^ |
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('is preserved during :terminal activity', function()
|
|
|
|
-- Because this test verifies a _lack_ of activity after screen:sleep(), we
|
|
|
|
-- must wait the full timeout. So make it reasonable.
|
|
|
|
screen.timeout = 1000
|
2017-05-03 01:12:38 -07:00
|
|
|
|
2017-08-02 15:41:52 -07:00
|
|
|
command('set wildmenu wildmode=full')
|
|
|
|
command('set scrollback=4')
|
|
|
|
if iswin() then
|
|
|
|
if helpers.pending_win32(pending) then return end
|
|
|
|
-- feed([[:terminal 1,2,3,4,5 | foreach-object -process {echo $_; sleep 0.1}]])
|
|
|
|
else
|
|
|
|
feed([[:terminal for i in $(seq 1 5000); do printf 'foo\nfoo\nfoo\n'; sleep 0.1; done<cr>]])
|
|
|
|
end
|
2017-08-04 18:34:38 -07:00
|
|
|
|
2017-08-02 15:41:52 -07:00
|
|
|
feed([[<C-\><C-N>gg]])
|
|
|
|
feed([[:sign <Tab>]]) -- Invoke wildmenu.
|
2017-08-04 18:34:38 -07:00
|
|
|
screen:sleep(50) -- Allow some terminal output.
|
2017-08-02 15:41:52 -07:00
|
|
|
screen:expect([[
|
|
|
|
foo |
|
|
|
|
foo |
|
|
|
|
foo |
|
|
|
|
define jump list > |
|
|
|
|
:sign define^ |
|
|
|
|
]])
|
2017-08-04 18:34:38 -07:00
|
|
|
|
|
|
|
-- cmdline CTRL-D display should also be preserved.
|
|
|
|
feed([[<C-\><C-N>]])
|
|
|
|
feed([[:sign <C-D>]]) -- Invoke cmdline CTRL-D.
|
|
|
|
screen:sleep(50) -- Allow some terminal output.
|
|
|
|
screen:expect([[
|
|
|
|
:sign |
|
|
|
|
define place |
|
|
|
|
jump undefine |
|
|
|
|
list unplace |
|
|
|
|
:sign ^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- Exiting cmdline should show the buffer.
|
|
|
|
feed([[<C-\><C-N>]])
|
|
|
|
screen:expect([[
|
|
|
|
^foo |
|
|
|
|
foo |
|
|
|
|
foo |
|
|
|
|
foo |
|
|
|
|
|
|
|
|
|
]])
|
2017-08-02 15:41:52 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
it('ignores :redrawstatus called from a timer #7108', function()
|
|
|
|
-- Because this test verifies a _lack_ of activity after screen:sleep(), we
|
|
|
|
-- must wait the full timeout. So make it reasonable.
|
|
|
|
screen.timeout = 1000
|
|
|
|
|
|
|
|
command('set wildmenu wildmode=full')
|
|
|
|
command([[call timer_start(10, {->execute('redrawstatus')}, {'repeat':-1})]])
|
|
|
|
feed([[<C-\><C-N>]])
|
|
|
|
feed([[:sign <Tab>]]) -- Invoke wildmenu.
|
|
|
|
screen:sleep(30) -- Allow some timer activity.
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
~ |
|
|
|
|
~ |
|
|
|
|
define jump list > |
|
|
|
|
:sign define^ |
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('with laststatus=0, :vsplit, :term #2255', function()
|
|
|
|
-- Because this test verifies a _lack_ of activity after screen:sleep(), we
|
|
|
|
-- must wait the full timeout. So make it reasonable.
|
|
|
|
screen.timeout = 1000
|
|
|
|
|
2017-08-05 17:44:15 -07:00
|
|
|
if not iswin() then
|
|
|
|
command('set shell=sh') -- Need a predictable "$" prompt.
|
2017-08-02 15:41:52 -07:00
|
|
|
end
|
|
|
|
command('set laststatus=0')
|
|
|
|
command('vsplit')
|
|
|
|
command('term')
|
|
|
|
|
|
|
|
-- Check for a shell prompt to verify that the terminal loaded.
|
|
|
|
retry(nil, nil, function()
|
|
|
|
if iswin() then
|
2017-08-05 17:44:15 -07:00
|
|
|
eq('Microsoft', eval("matchstr(join(getline(1, '$')), 'Microsoft')"))
|
2017-08-02 15:41:52 -07:00
|
|
|
else
|
|
|
|
eq('$', eval([[matchstr(getline(1), '\$')]]))
|
|
|
|
end
|
2017-05-03 01:12:38 -07:00
|
|
|
end)
|
2017-08-02 15:41:52 -07:00
|
|
|
|
|
|
|
feed([[<C-\><C-N>]])
|
|
|
|
feed([[:<Tab>]]) -- Invoke wildmenu.
|
|
|
|
screen:sleep(10) -- Flush
|
|
|
|
-- Check only the last 2 lines, because the shell output is
|
|
|
|
-- system-dependent.
|
|
|
|
screen:expect('! # & < = > @ > \n:!^', nil, nil, nil, true)
|
2015-02-14 18:16:39 -07:00
|
|
|
end)
|
|
|
|
end)
|
2016-05-01 12:47:10 -07:00
|
|
|
|
|
|
|
describe('command line completion', function()
|
|
|
|
local screen
|
|
|
|
|
|
|
|
before_each(function()
|
|
|
|
clear()
|
|
|
|
screen = Screen.new(40, 5)
|
|
|
|
screen:attach()
|
2016-08-09 06:11:04 -07:00
|
|
|
screen:set_default_attr_ids({[1]={bold=true, foreground=Screen.colors.Blue}})
|
2016-05-01 12:47:10 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
after_each(function()
|
|
|
|
os.remove('Xtest-functional-viml-compl-dir')
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('lists directories with empty PATH', function()
|
|
|
|
local tmp = funcs.tempname()
|
2017-04-08 14:12:26 -07:00
|
|
|
command('e '.. tmp)
|
|
|
|
command('cd %:h')
|
|
|
|
command("call mkdir('Xtest-functional-viml-compl-dir')")
|
|
|
|
command('let $PATH=""')
|
2016-05-01 12:47:10 -07:00
|
|
|
feed(':!<tab><bs>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2016-08-09 06:11:04 -07:00
|
|
|
{1:~ }|
|
|
|
|
{1:~ }|
|
|
|
|
{1:~ }|
|
2016-05-01 12:47:10 -07:00
|
|
|
:!Xtest-functional-viml-compl-dir^ |
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
end)
|