2024-04-09 06:26:16 -05:00
|
|
|
local t = require('test.functional.testutil')()
|
2024-04-08 04:03:20 -05:00
|
|
|
|
|
|
|
local clear = t.clear
|
|
|
|
local command = t.command
|
|
|
|
local eq = t.eq
|
|
|
|
local fn = t.fn
|
|
|
|
local next_msg = t.next_msg
|
|
|
|
local is_os = t.is_os
|
|
|
|
local skip = t.skip
|
2019-02-03 19:39:05 -06:00
|
|
|
|
2024-01-02 19:09:18 -06:00
|
|
|
if skip(is_os('win'), 'Only applies to POSIX systems') then
|
|
|
|
return
|
|
|
|
end
|
2019-02-03 19:39:05 -06:00
|
|
|
|
|
|
|
local function posix_kill(signame, pid)
|
2024-01-02 19:09:18 -06:00
|
|
|
os.execute('kill -s ' .. signame .. ' -- ' .. pid .. ' >/dev/null')
|
2019-02-03 19:39:05 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
describe('autocmd Signal', function()
|
|
|
|
before_each(clear)
|
|
|
|
|
|
|
|
it('matches *', function()
|
|
|
|
command('autocmd Signal * call rpcnotify(1, "foo")')
|
2024-01-12 11:59:57 -06:00
|
|
|
posix_kill('USR1', fn.getpid())
|
2024-01-02 19:09:18 -06:00
|
|
|
eq({ 'notification', 'foo', {} }, next_msg())
|
2019-02-03 19:39:05 -06:00
|
|
|
end)
|
|
|
|
|
|
|
|
it('matches SIGUSR1', function()
|
|
|
|
command('autocmd Signal SIGUSR1 call rpcnotify(1, "foo")')
|
2024-01-12 11:59:57 -06:00
|
|
|
posix_kill('USR1', fn.getpid())
|
2024-01-02 19:09:18 -06:00
|
|
|
eq({ 'notification', 'foo', {} }, next_msg())
|
2019-02-03 19:39:05 -06:00
|
|
|
end)
|
|
|
|
|
2022-04-10 17:56:08 -05:00
|
|
|
it('matches SIGWINCH', function()
|
|
|
|
command('autocmd Signal SIGWINCH call rpcnotify(1, "foo")')
|
2024-01-12 11:59:57 -06:00
|
|
|
posix_kill('WINCH', fn.getpid())
|
2024-01-02 19:09:18 -06:00
|
|
|
eq({ 'notification', 'foo', {} }, next_msg())
|
2022-04-10 17:56:08 -05:00
|
|
|
end)
|
|
|
|
|
2019-02-03 19:39:05 -06:00
|
|
|
it('does not match unknown patterns', function()
|
|
|
|
command('autocmd Signal SIGUSR2 call rpcnotify(1, "foo")')
|
2024-01-12 11:59:57 -06:00
|
|
|
posix_kill('USR1', fn.getpid())
|
2019-02-03 19:39:05 -06:00
|
|
|
eq(nil, next_msg(500))
|
|
|
|
end)
|
|
|
|
end)
|