2015-04-13 20:53:16 -07:00
|
|
|
local helpers = require('test.functional.helpers')
|
|
|
|
local Screen = require('test.functional.ui.screen')
|
|
|
|
local clear, wait, nvim = helpers.clear, helpers.wait, helpers.nvim
|
|
|
|
local nvim_dir = helpers.nvim_dir
|
2015-11-17 14:44:00 -07:00
|
|
|
local execute = helpers.execute
|
2015-04-13 20:53:16 -07:00
|
|
|
|
|
|
|
describe(':terminal', function()
|
|
|
|
local screen
|
|
|
|
|
|
|
|
before_each(function()
|
|
|
|
clear()
|
|
|
|
screen = Screen.new(50, 7)
|
|
|
|
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)
|
|
|
|
end)
|