mirror of
https://github.com/neovim/neovim.git
synced 2024-12-22 20:25:16 -07:00
f8639dc99c
- window_split_tab_spec.lua: Put cursor at bottom of :terminal buffer so that it follows output. - inccommand_spec.lua: Increase timeout to allow 2nd retry. - Timer tests are less reliable on Travis CI macOS 10.12/10.13. ref #6829 refe39dade80b
refde13113dc1
ref https://github.com/neovim/neovim/pull/9095#issuecomment-429603452 > We don't guarantee that a X ms timer is triggered during Y ms sleep > for any X<Y, though I would expect the load to be really bad for this > to happen with X=10ms, Y=40ms.
107 lines
3.9 KiB
Lua
107 lines
3.9 KiB
Lua
local helpers = require('test.functional.helpers')(after_each)
|
|
local thelpers = require('test.functional.terminal.helpers')
|
|
local clear = helpers.clear
|
|
local feed, nvim = helpers.feed, helpers.nvim
|
|
local feed_command = helpers.feed_command
|
|
local command = helpers.command
|
|
local eq = helpers.eq
|
|
local eval = helpers.eval
|
|
local iswin = helpers.iswin
|
|
local retry = helpers.retry
|
|
|
|
describe('terminal', function()
|
|
local screen
|
|
|
|
before_each(function()
|
|
clear()
|
|
-- set the statusline to a constant value because of variables like pid
|
|
-- and current directory and to improve visibility of splits
|
|
nvim('set_option', 'statusline', '==========')
|
|
nvim('command', 'highlight StatusLine cterm=NONE')
|
|
nvim('command', 'highlight StatusLineNC cterm=NONE')
|
|
nvim('command', 'highlight VertSplit cterm=NONE')
|
|
screen = thelpers.screen_setup(3)
|
|
end)
|
|
|
|
after_each(function()
|
|
screen:detach()
|
|
end)
|
|
|
|
it('next to a closing window', function()
|
|
command('split')
|
|
command('terminal')
|
|
command('vsplit foo')
|
|
eq(3, eval("winnr('$')"))
|
|
feed('ZQ') -- Close split, should not crash. #7538
|
|
eq(2, eval("1+1")) -- Still alive?
|
|
end)
|
|
|
|
it('does not change size on WinEnter', function()
|
|
if helpers.pending_win32(pending) then return end
|
|
feed('<c-\\><c-n>')
|
|
feed_command('2split')
|
|
screen:expect([[
|
|
tty ready |
|
|
^rows: 5, cols: 50 |
|
|
========== |
|
|
tty ready |
|
|
rows: 5, cols: 50 |
|
|
{2: } |
|
|
|
|
|
|
|
|
========== |
|
|
:2split |
|
|
]])
|
|
feed_command('wincmd p')
|
|
screen:expect([[
|
|
tty ready |
|
|
rows: 5, cols: 50 |
|
|
========== |
|
|
tty ready |
|
|
^rows: 5, cols: 50 |
|
|
{2: } |
|
|
|
|
|
|
|
|
========== |
|
|
:wincmd p |
|
|
]])
|
|
end)
|
|
|
|
it('forwards resize request to the program', function()
|
|
feed([[<C-\><C-N>G:]]) -- Go to cmdline-mode, so cursor is at bottom.
|
|
local w1, h1 = screen._width - 3, screen._height - 2
|
|
local w2, h2 = w1 - 6, h1 - 3
|
|
|
|
if iswin() then
|
|
-- win: SIGWINCH is unreliable, use a weaker test. #7506
|
|
retry(3, 30000, function()
|
|
screen:try_resize(w1, h1)
|
|
screen:expect{any='rows: 7, cols: 47'}
|
|
screen:try_resize(w2, h2)
|
|
screen:expect{any='rows: 4, cols: 41'}
|
|
end)
|
|
return
|
|
end
|
|
|
|
screen:try_resize(w1, h1)
|
|
screen:expect([[
|
|
tty ready |
|
|
rows: 7, cols: 47 |
|
|
{2: } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:^ |
|
|
]])
|
|
screen:try_resize(w2, h2)
|
|
screen:expect([[
|
|
tty ready |
|
|
rows: 7, cols: 47 |
|
|
rows: 4, cols: 41 |
|
|
{2: } |
|
|
:^ |
|
|
]])
|
|
end)
|
|
end)
|