mirror of
https://github.com/neovim/neovim.git
synced 2025-10-26 12:27:24 +00:00
test: rename next_message() to next_msg()
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
local helpers = require('test.functional.helpers')(after_each)
|
||||
local eq, clear, eval, command, nvim, next_message =
|
||||
local eq, clear, eval, command, nvim, next_msg =
|
||||
helpers.eq, helpers.clear, helpers.eval, helpers.command, helpers.nvim,
|
||||
helpers.next_message
|
||||
helpers.next_msg
|
||||
local meths = helpers.meths
|
||||
|
||||
describe('notify', function()
|
||||
@@ -15,10 +15,10 @@ describe('notify', function()
|
||||
describe('passing a valid channel id', function()
|
||||
it('sends the notification/args to the corresponding channel', function()
|
||||
eval('rpcnotify('..channel..', "test-event", 1, 2, 3)')
|
||||
eq({'notification', 'test-event', {1, 2, 3}}, next_message())
|
||||
eq({'notification', 'test-event', {1, 2, 3}}, next_msg())
|
||||
command('au FileType lua call rpcnotify('..channel..', "lua!")')
|
||||
command('set filetype=lua')
|
||||
eq({'notification', 'lua!', {}}, next_message())
|
||||
eq({'notification', 'lua!', {}}, next_msg())
|
||||
end)
|
||||
end)
|
||||
|
||||
@@ -28,13 +28,13 @@ describe('notify', function()
|
||||
eval('rpcnotify(0, "event1", 1, 2, 3)')
|
||||
eval('rpcnotify(0, "event2", 4, 5, 6)')
|
||||
eval('rpcnotify(0, "event2", 7, 8, 9)')
|
||||
eq({'notification', 'event2', {4, 5, 6}}, next_message())
|
||||
eq({'notification', 'event2', {7, 8, 9}}, next_message())
|
||||
eq({'notification', 'event2', {4, 5, 6}}, next_msg())
|
||||
eq({'notification', 'event2', {7, 8, 9}}, next_msg())
|
||||
nvim('unsubscribe', 'event2')
|
||||
nvim('subscribe', 'event1')
|
||||
eval('rpcnotify(0, "event2", 10, 11, 12)')
|
||||
eval('rpcnotify(0, "event1", 13, 14, 15)')
|
||||
eq({'notification', 'event1', {13, 14, 15}}, next_message())
|
||||
eq({'notification', 'event1', {13, 14, 15}}, next_msg())
|
||||
end)
|
||||
|
||||
it('does not crash for deeply nested variable', function()
|
||||
@@ -42,7 +42,7 @@ describe('notify', function()
|
||||
local nest_level = 1000
|
||||
meths.command(('call map(range(%u), "extend(g:, {\'l\': [g:l]})")'):format(nest_level - 1))
|
||||
eval('rpcnotify('..channel..', "event", g:l)')
|
||||
local msg = next_message()
|
||||
local msg = next_msg()
|
||||
eq('notification', msg[1])
|
||||
eq('event', msg[2])
|
||||
local act_ret = msg[3]
|
||||
|
||||
@@ -6,7 +6,7 @@ local Paths = require('test.config.paths')
|
||||
local clear, nvim, eval = helpers.clear, helpers.nvim, helpers.eval
|
||||
local eq, neq, run, stop = helpers.eq, helpers.neq, helpers.run, helpers.stop
|
||||
local nvim_prog, command, funcs = helpers.nvim_prog, helpers.command, helpers.funcs
|
||||
local source, next_message = helpers.source, helpers.next_message
|
||||
local source, next_msg = helpers.source, helpers.next_msg
|
||||
local ok = helpers.ok
|
||||
local meths = helpers.meths
|
||||
local spawn, nvim_argv = helpers.spawn, helpers.nvim_argv
|
||||
@@ -258,12 +258,12 @@ describe('server -> client', function()
|
||||
it('rpc and text stderr can be combined', function()
|
||||
eq("ok",funcs.rpcrequest(jobid, "poll"))
|
||||
funcs.rpcnotify(jobid, "ping")
|
||||
eq({'notification', 'pong', {}}, next_message())
|
||||
eq({'notification', 'pong', {}}, next_msg())
|
||||
eq("done!",funcs.rpcrequest(jobid, "write_stderr", "fluff\n"))
|
||||
eq({'notification', 'stderr', {0, {'fluff', ''}}}, next_message())
|
||||
eq({'notification', 'stderr', {0, {'fluff', ''}}}, next_msg())
|
||||
funcs.rpcrequest(jobid, "exit")
|
||||
eq({'notification', 'stderr', {0, {''}}}, next_message())
|
||||
eq({'notification', 'exit', {0, 0}}, next_message())
|
||||
eq({'notification', 'stderr', {0, {''}}}, next_msg())
|
||||
eq({'notification', 'exit', {0, 0}}, next_msg())
|
||||
end)
|
||||
end)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user