test/functional/eval: assert that executable() fixtures are executable

This commit is contained in:
Jan Edmund Lazo
2020-12-11 22:59:43 -05:00
parent 5ccc79e880
commit da58242fb8
2 changed files with 16 additions and 0 deletions

View File

@@ -11,6 +11,10 @@ describe('executable()', function()
it('returns 1 for commands in $PATH', function() it('returns 1 for commands in $PATH', function()
local exe = iswin() and 'ping' or 'ls' local exe = iswin() and 'ping' or 'ls'
eq(1, call('executable', exe)) eq(1, call('executable', exe))
command('let $PATH = fnamemodify("./test/functional/fixtures/bin", ":p")')
eq(1, call('executable', 'null'))
eq(1, call('executable', 'true'))
eq(1, call('executable', 'false'))
end) end)
it('fails for invalid values', function() it('fails for invalid values', function()

View File

@@ -3,10 +3,22 @@ local eq, clear, call, iswin =
helpers.eq, helpers.clear, helpers.call, helpers.iswin helpers.eq, helpers.clear, helpers.call, helpers.iswin
local command = helpers.command local command = helpers.command
local exc_exec = helpers.exc_exec local exc_exec = helpers.exc_exec
local matches = helpers.matches
describe('exepath()', function() describe('exepath()', function()
before_each(clear) before_each(clear)
it('returns 1 for commands in $PATH', function()
local exe = iswin() and 'ping' or 'ls'
local ext_pat = iswin() and '%.EXE$' or '$'
matches(exe .. ext_pat, call('exepath', exe))
command('let $PATH = fnamemodify("./test/functional/fixtures/bin", ":p")')
ext_pat = iswin() and '%.CMD$' or '$'
matches('null' .. ext_pat, call('exepath', 'null'))
matches('true' .. ext_pat, call('exepath', 'true'))
matches('false' .. ext_pat, call('exepath', 'false'))
end)
it('fails for invalid values', function() it('fails for invalid values', function()
for _, input in ipairs({'""', 'v:null', 'v:true', 'v:false', '{}', '[]'}) do for _, input in ipairs({'""', 'v:null', 'v:true', 'v:false', '{}', '[]'}) do
eq('Vim(call):E928: String required', exc_exec('call exepath('..input..')')) eq('Vim(call):E928: String required', exc_exec('call exepath('..input..')'))