2016-04-23 16:53:11 -07:00
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
2015-11-15 07:45:23 -07:00
|
|
|
|
2017-03-15 15:28:37 -07:00
|
|
|
local clear, command, nvim, nvim_dir =
|
|
|
|
helpers.clear, helpers.command, helpers.nvim, helpers.nvim_dir
|
|
|
|
local eval, eq, retry =
|
|
|
|
helpers.eval, helpers.eq, helpers.retry
|
2015-11-15 07:45:23 -07:00
|
|
|
|
2016-08-15 16:42:12 -07:00
|
|
|
if helpers.pending_win32(pending) then return end
|
|
|
|
|
2015-11-15 07:45:23 -07:00
|
|
|
describe('TermClose event', function()
|
|
|
|
before_each(function()
|
|
|
|
clear()
|
|
|
|
nvim('set_option', 'shell', nvim_dir .. '/shell-test')
|
|
|
|
nvim('set_option', 'shellcmdflag', 'EXE')
|
|
|
|
end)
|
|
|
|
|
2017-03-15 15:28:37 -07:00
|
|
|
local function eq_err(expected, actual)
|
|
|
|
if expected ~= actual then
|
|
|
|
error('expected: '..tostring(expected)..', actual: '..tostring(actual))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it('triggers when terminal job ends', function()
|
|
|
|
command('autocmd TermClose * let g:test_termclose = 23')
|
|
|
|
command('terminal')
|
|
|
|
command('call jobstop(b:terminal_job_id)')
|
|
|
|
retry(nil, nil, function() eq_err(23, eval('g:test_termclose')) end)
|
2015-11-15 07:45:23 -07:00
|
|
|
end)
|
2016-02-19 19:51:50 -07:00
|
|
|
|
|
|
|
it('reports the correct <abuf>', function()
|
2017-03-15 15:28:37 -07:00
|
|
|
command('set hidden')
|
|
|
|
command('autocmd TermClose * let g:abuf = expand("<abuf>")')
|
|
|
|
command('edit foo')
|
|
|
|
command('edit bar')
|
2016-02-19 19:51:50 -07:00
|
|
|
eq(2, eval('bufnr("%")'))
|
2017-03-15 15:28:37 -07:00
|
|
|
|
|
|
|
command('terminal')
|
|
|
|
retry(nil, nil, function() eq_err(3, eval('bufnr("%")')) end)
|
|
|
|
|
|
|
|
command('buffer 1')
|
|
|
|
retry(nil, nil, function() eq_err(1, eval('bufnr("%")')) end)
|
|
|
|
|
|
|
|
command('3bdelete!')
|
|
|
|
retry(nil, nil, function() eq_err('3', eval('g:abuf')) end)
|
2016-02-19 19:51:50 -07:00
|
|
|
end)
|
2015-11-15 07:45:23 -07:00
|
|
|
end)
|