2016-04-23 16:53:11 -07:00
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
2015-04-13 20:53:16 -07:00
|
|
|
local Screen = require('test.functional.ui.screen')
|
|
|
|
local clear, wait, nvim = helpers.clear, helpers.wait, helpers.nvim
|
2016-05-14 19:56:11 -07:00
|
|
|
local nvim_dir, source, eq = helpers.nvim_dir, helpers.source, helpers.eq
|
2016-05-15 13:56:29 -07:00
|
|
|
local execute, eval = helpers.execute, helpers.eval
|
2015-04-13 20:53:16 -07:00
|
|
|
|
|
|
|
describe(':terminal', function()
|
|
|
|
local screen
|
|
|
|
|
|
|
|
before_each(function()
|
|
|
|
clear()
|
2016-05-15 13:40:37 -07:00
|
|
|
screen = Screen.new(50, 4)
|
2015-04-13 20:53:16 -07:00
|
|
|
screen:attach(false)
|
|
|
|
nvim('set_option', 'shell', nvim_dir..'/shell-test')
|
|
|
|
nvim('set_option', 'shellcmdflag', 'EXE')
|
|
|
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('with no argument, acts like termopen()', function()
|
|
|
|
execute('terminal')
|
|
|
|
wait()
|
|
|
|
screen:expect([[
|
|
|
|
ready $ |
|
2015-11-10 20:27:50 -07:00
|
|
|
[Process exited 0] |
|
2015-04-13 20:53:16 -07:00
|
|
|
|
|
|
|
|
-- TERMINAL -- |
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('executes a given command through the shell', function()
|
|
|
|
execute('terminal echo hi')
|
|
|
|
wait()
|
|
|
|
screen:expect([[
|
|
|
|
ready $ echo hi |
|
|
|
|
|
|
2015-11-10 20:27:50 -07:00
|
|
|
[Process exited 0] |
|
2015-04-13 20:53:16 -07:00
|
|
|
-- TERMINAL -- |
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('allows quotes and slashes', function()
|
|
|
|
execute([[terminal echo 'hello' \ "world"]])
|
|
|
|
wait()
|
|
|
|
screen:expect([[
|
|
|
|
ready $ echo 'hello' \ "world" |
|
|
|
|
|
|
2015-11-10 20:27:50 -07:00
|
|
|
[Process exited 0] |
|
2015-04-13 20:53:16 -07:00
|
|
|
-- TERMINAL -- |
|
|
|
|
]])
|
|
|
|
end)
|
2016-05-15 13:40:37 -07:00
|
|
|
|
|
|
|
it('ex_terminal() double-free #4554', function()
|
|
|
|
source([[
|
|
|
|
autocmd BufNew * set shell=foo
|
|
|
|
terminal]])
|
2016-05-14 19:56:11 -07:00
|
|
|
-- Verify that BufNew actually fired (else the test is invalid).
|
|
|
|
eq('foo', eval('&shell'))
|
2016-05-15 13:40:37 -07:00
|
|
|
end)
|
2015-04-13 20:53:16 -07:00
|
|
|
end)
|