mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
052498ed42
Specifically, functions that are run in the context of the test runner are put in module `test/testutil.lua` while the functions that are run in the context of the test session are put in `test/functional/testnvim.lua`. Closes https://github.com/neovim/neovim/issues/27004.
47 lines
1.2 KiB
Lua
47 lines
1.2 KiB
Lua
local t = require('test.testutil')
|
|
local n = require('test.functional.testnvim')()
|
|
|
|
local clear = n.clear
|
|
local command = n.command
|
|
local eq = t.eq
|
|
local fn = n.fn
|
|
local next_msg = n.next_msg
|
|
local is_os = t.is_os
|
|
local skip = t.skip
|
|
|
|
if skip(is_os('win'), 'Only applies to POSIX systems') then
|
|
return
|
|
end
|
|
|
|
local function posix_kill(signame, pid)
|
|
os.execute('kill -s ' .. signame .. ' -- ' .. pid .. ' >/dev/null')
|
|
end
|
|
|
|
describe('autocmd Signal', function()
|
|
before_each(clear)
|
|
|
|
it('matches *', function()
|
|
command('autocmd Signal * call rpcnotify(1, "foo")')
|
|
posix_kill('USR1', fn.getpid())
|
|
eq({ 'notification', 'foo', {} }, next_msg())
|
|
end)
|
|
|
|
it('matches SIGUSR1', function()
|
|
command('autocmd Signal SIGUSR1 call rpcnotify(1, "foo")')
|
|
posix_kill('USR1', fn.getpid())
|
|
eq({ 'notification', 'foo', {} }, next_msg())
|
|
end)
|
|
|
|
it('matches SIGWINCH', function()
|
|
command('autocmd Signal SIGWINCH call rpcnotify(1, "foo")')
|
|
posix_kill('WINCH', fn.getpid())
|
|
eq({ 'notification', 'foo', {} }, next_msg())
|
|
end)
|
|
|
|
it('does not match unknown patterns', function()
|
|
command('autocmd Signal SIGUSR2 call rpcnotify(1, "foo")')
|
|
posix_kill('USR1', fn.getpid())
|
|
eq(nil, next_msg(500))
|
|
end)
|
|
end)
|