0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

patch 7.4.1262

Problem:    The channel callback is not invoked.
Solution:   Make a list of pending callbacks.
This commit is contained in:
Bram Moolenaar
2016-02-05 21:04:08 +01:00
parent 4b6a6dcbe7
commit a07fec9c85
5 changed files with 88 additions and 26 deletions

View File

@@ -69,6 +69,13 @@ func s:kill_server()
endif
endfunc
let s:responseHandle = -1
let s:responseMsg = ''
func s:RequestHandler(handle, msg)
let s:responseHandle = a:handle
let s:responseMsg = a:msg
endfunc
func Test_communicate()
let handle = s:start_server()
if handle < 0
@@ -86,6 +93,12 @@ func Test_communicate()
call assert_equal('added1', getline(line('$') - 1))
call assert_equal('added2', getline('$'))
" Send a request with a specific handler.
call ch_sendexpr(handle, 'hello!', 's:RequestHandler')
sleep 10m
call assert_equal(handle, s:responseHandle)
call assert_equal('got it', s:responseMsg)
" Send an eval request that works.
call assert_equal('ok', ch_sendexpr(handle, 'eval-works'))
sleep 10m