Mercurial > vim
view src/testdir/test_channel.vim @ 8257:c4ffdda8cdfd v7.4.1421
commit https://github.com/vim/vim/commit/c8dcbb12c5d7f3eb0c334daebb4475bb015b91e7
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 25 23:10:17 2016 +0100
patch 7.4.1421
Problem: May free a channel when a callback may need to be invoked.
Solution: Keep the channel when refcount is zero.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 25 Feb 2016 23:15:05 +0100 |
parents | 4f0677020a43 |
children | e05e28dcb590 |
line wrap: on
line source
" Test for channel functions. scriptencoding utf-8 if !has('channel') finish endif " This test requires the Python command to run the test server. " This most likely only works on Unix and Windows. if has('unix') " We also need the job feature or the pkill command to make sure the server " can be stopped. if !(executable('python') && (has('job') || executable('pkill'))) finish endif let s:python = 'python' elseif has('win32') " Use Python Launcher for Windows (py.exe) if available. if executable('py.exe') let s:python = 'py.exe' elseif executable('python.exe') let s:python = 'python.exe' else finish endif else " Can't run this test. finish endif let s:chopt = {} " Run "testfunc" after sarting the server and stop the server afterwards. func s:run_server(testfunc, ...) " The Python program writes the port number in Xportnr. call delete("Xportnr") if a:0 == 1 let arg = ' ' . a:1 else let arg = '' endif let cmd = s:python . " test_channel.py" . arg try if has('job') let s:job = job_start(cmd, {"stoponexit": "hup"}) call job_setoptions(s:job, {"stoponexit": "kill"}) elseif has('win32') exe 'silent !start cmd /c start "test_channel" ' . cmd else exe 'silent !' . cmd . '&' endif " Wait for up to 2 seconds for the port number to be there. let cnt = 20 let l = [] while cnt > 0 try let l = readfile("Xportnr") catch endtry if len(l) >= 1 break endif sleep 100m let cnt -= 1 endwhile call delete("Xportnr") if len(l) == 0 " Can't make the connection, give up. call assert_false(1, "Can't start test_channel.py") return -1 endif let port = l[0] call call(function(a:testfunc), [port]) catch call assert_false(1, "Caught exception: " . v:exception) finally call s:kill_server() endtry endfunc func s:kill_server() if has('job') if exists('s:job') call job_stop(s:job) unlet s:job endif elseif has('win32') call system('taskkill /IM ' . s:python . ' /T /F /FI "WINDOWTITLE eq test_channel"') else call system("pkill -f test_channel.py") endif endfunc let s:responseMsg = '' func s:RequestHandler(handle, msg) let s:responseHandle = a:handle let s:responseMsg = a:msg endfunc func s:communicate(port) let handle = ch_open('localhost:' . a:port, s:chopt) if ch_status(handle) == "fail" call assert_false(1, "Can't open channel") return endif " Simple string request and reply. call assert_equal('got it', ch_sendexpr(handle, 'hello!')) " Request that triggers sending two ex commands. These will usually be " handled before getting the response, but it's not guaranteed, thus wait a " tiny bit for the commands to get executed. call assert_equal('ok', ch_sendexpr(handle, 'make change')) sleep 10m call assert_equal('added1', getline(line('$') - 1)) call assert_equal('added2', getline('$')) call assert_equal('ok', ch_sendexpr(handle, 'do normal')) sleep 10m call assert_equal('added more', getline('$')) " Send a request with a specific handler. call ch_sendexpr(handle, 'hello!', {'callback': 's:RequestHandler'}) sleep 10m if !exists('s:responseHandle') call assert_false(1, 's:responseHandle was not set') else call assert_equal(handle, s:responseHandle) unlet s:responseHandle endif call assert_equal('got it', s:responseMsg) let s:responseMsg = '' call ch_sendexpr(handle, 'hello!', {'callback': function('s:RequestHandler')}) sleep 10m if !exists('s:responseHandle') call assert_false(1, 's:responseHandle was not set') else call assert_equal(handle, s:responseHandle) unlet s:responseHandle endif call assert_equal('got it', s:responseMsg) " check setting options (without testing the effect) call ch_setoptions(handle, {'callback': 's:NotUsed'}) call ch_setoptions(handle, {'timeout': 1111}) call ch_setoptions(handle, {'mode': 'json'}) call assert_fails("call ch_setoptions(handle, {'waittime': 111})", "E475") call ch_setoptions(handle, {'callback': ''}) " Send an eval request that works. call assert_equal('ok', ch_sendexpr(handle, 'eval-works')) sleep 10m call assert_equal([-1, 'foo123'], ch_sendexpr(handle, 'eval-result')) " Send an eval request that fails. call assert_equal('ok', ch_sendexpr(handle, 'eval-fails')) sleep 10m call assert_equal([-2, 'ERROR'], ch_sendexpr(handle, 'eval-result')) " Send an eval request that works but can't be encoded. call assert_equal('ok', ch_sendexpr(handle, 'eval-error')) sleep 10m call assert_equal([-3, 'ERROR'], ch_sendexpr(handle, 'eval-result')) " Send a bad eval request. There will be no response. call assert_equal('ok', ch_sendexpr(handle, 'eval-bad')) sleep 10m call assert_equal([-3, 'ERROR'], ch_sendexpr(handle, 'eval-result')) " Send an expr request call assert_equal('ok', ch_sendexpr(handle, 'an expr')) sleep 10m call assert_equal('one', getline(line('$') - 2)) call assert_equal('two', getline(line('$') - 1)) call assert_equal('three', getline('$')) " Request a redraw, we don't check for the effect. call assert_equal('ok', ch_sendexpr(handle, 'redraw')) call assert_equal('ok', ch_sendexpr(handle, 'redraw!')) call assert_equal('ok', ch_sendexpr(handle, 'empty-request')) " Reading while there is nothing available. call assert_equal(v:none, ch_read(handle, {'timeout': 0})) let start = reltime() call assert_equal(v:none, ch_read(handle, {'timeout': 333})) let elapsed = reltime(start) call assert_true(reltimefloat(elapsed) > 0.3) call assert_true(reltimefloat(elapsed) < 0.6) " Send without waiting for a response, then wait for a response. call ch_sendexpr(handle, 'wait a bit', {'callback': 0}) let resp = ch_read(handle) call assert_equal(type([]), type(resp)) call assert_equal(type(11), type(resp[0])) call assert_equal('waited', resp[1]) " make the server quit, can't check if this works, should not hang. call ch_sendexpr(handle, '!quit!', {'callback': 0}) endfunc func Test_communicate() call ch_log('Test_communicate()') call s:run_server('s:communicate') endfunc " Test that we can open two channels. func s:two_channels(port) let handle = ch_open('localhost:' . a:port, s:chopt) if ch_status(handle) == "fail" call assert_false(1, "Can't open channel") return endif call assert_equal('got it', ch_sendexpr(handle, 'hello!')) let newhandle = ch_open('localhost:' . a:port, s:chopt) if ch_status(newhandle) == "fail" call assert_false(1, "Can't open second channel") return endif call assert_equal('got it', ch_sendexpr(newhandle, 'hello!')) call assert_equal('got it', ch_sendexpr(handle, 'hello!')) call ch_close(handle) call assert_equal('got it', ch_sendexpr(newhandle, 'hello!')) call ch_close(newhandle) endfunc func Test_two_channels() call ch_log('Test_two_channels()') call s:run_server('s:two_channels') endfunc " Test that a server crash is handled gracefully. func s:server_crash(port) let handle = ch_open('localhost:' . a:port, s:chopt) if ch_status(handle) == "fail" call assert_false(1, "Can't open channel") return endif call ch_sendexpr(handle, '!crash!') sleep 10m endfunc func Test_server_crash() call ch_log('Test_server_crash()') call s:run_server('s:server_crash') endfunc let s:reply = "" func s:Handler(chan, msg) unlet s:reply let s:reply = a:msg endfunc func s:channel_handler(port) let handle = ch_open('localhost:' . a:port, s:chopt) if ch_status(handle) == "fail" call assert_false(1, "Can't open channel") return endif " Test that it works while waiting on a numbered message. call assert_equal('ok', ch_sendexpr(handle, 'call me')) sleep 10m call assert_equal('we called you', s:reply) " Test that it works while not waiting on a numbered message. call ch_sendexpr(handle, 'call me again', {'callback': 0}) sleep 10m call assert_equal('we did call you', s:reply) endfunc func Test_channel_handler() call ch_log('Test_channel_handler()') let s:chopt.callback = 's:Handler' call s:run_server('s:channel_handler') let s:chopt.callback = function('s:Handler') call s:run_server('s:channel_handler') unlet s:chopt.callback endfunc " Test that trying to connect to a non-existing port fails quickly. func Test_connect_waittime() call ch_log('Test_connect_waittime()') let start = reltime() let handle = ch_open('localhost:9876', s:chopt) if ch_status(handle) != "fail" " Oops, port does exists. call ch_close(handle) else let elapsed = reltime(start) call assert_true(reltimefloat(elapsed) < 1.0) endif " We intend to use a socket that doesn't exist and wait for half a second " before giving up. If the socket does exist it can fail in various ways. " Check for "Connection reset by peer" to avoid flakyness. let start = reltime() try let handle = ch_open('localhost:9867', {'waittime': 500}) if ch_status(handle) != "fail" " Oops, port does exists. call ch_close(handle) else " Failed connection should wait about 500 msec. let elapsed = reltime(start) call assert_true(reltimefloat(elapsed) > 0.3) call assert_true(reltimefloat(elapsed) < 1.0) endif catch if v:exception !~ 'Connection reset by peer' call assert_false(1, "Caught exception: " . v:exception) endif endtry endfunc func Test_raw_pipe() if !has('job') return endif call ch_log('Test_raw_pipe()') let job = job_start(s:python . " test_channel_pipe.py", {'mode': 'raw'}) call assert_equal("run", job_status(job)) try let handle = job_getchannel(job) call ch_sendraw(handle, "echo something\n", {'callback': 0}) let msg = ch_readraw(handle) call assert_equal("something\n", substitute(msg, "\r", "", 'g')) call ch_sendraw(handle, "double this\n", {'callback': 0}) let msg = ch_readraw(handle) call assert_equal("this\nAND this\n", substitute(msg, "\r", "", 'g')) let reply = ch_sendraw(handle, "quit\n") call assert_equal("Goodbye!\n", substitute(reply, "\r", "", 'g')) finally call job_stop(job) endtry endfunc func Test_nl_pipe() if !has('job') return endif call ch_log('Test_nl_pipe()') let job = job_start(s:python . " test_channel_pipe.py") call assert_equal("run", job_status(job)) try let handle = job_getchannel(job) call ch_sendraw(handle, "echo something\n", {'callback': 0}) call assert_equal("something", ch_readraw(handle)) call ch_sendraw(handle, "double this\n", {'callback': 0}) call assert_equal("this", ch_readraw(handle)) call assert_equal("AND this", ch_readraw(handle)) let reply = ch_sendraw(handle, "quit\n") call assert_equal("Goodbye!", reply) finally call job_stop(job) endtry endfunc """""""""" let s:unletResponse = '' func s:UnletHandler(handle, msg) let s:unletResponse = a:msg unlet s:channelfd endfunc " Test that "unlet handle" in a handler doesn't crash Vim. func s:unlet_handle(port) let s:channelfd = ch_open('localhost:' . a:port, s:chopt) call ch_sendexpr(s:channelfd, "test", {'callback': function('s:UnletHandler')}) sleep 10m call assert_equal('what?', s:unletResponse) endfunc func Test_unlet_handle() call ch_log('Test_unlet_handle()') call s:run_server('s:unlet_handle') endfunc """""""""" let s:unletResponse = '' func s:CloseHandler(handle, msg) let s:unletResponse = a:msg call ch_close(s:channelfd) endfunc " Test that "unlet handle" in a handler doesn't crash Vim. func s:close_handle(port) let s:channelfd = ch_open('localhost:' . a:port, s:chopt) call ch_sendexpr(s:channelfd, "test", {'callback': function('s:CloseHandler')}) sleep 10m call assert_equal('what?', s:unletResponse) endfunc func Test_close_handle() call ch_log('Test_close_handle()') call s:run_server('s:close_handle') endfunc """""""""" func Test_open_fail() call ch_log('Test_open_fail()') silent! let ch = ch_open("noserver") echo ch let d = ch endfunc """""""""" func s:open_delay(port) " Wait up to a second for the port to open. let s:chopt.waittime = 1000 let channel = ch_open('localhost:' . a:port, s:chopt) unlet s:chopt.waittime if ch_status(channel) == "fail" call assert_false(1, "Can't open channel") return endif call assert_equal('got it', ch_sendexpr(channel, 'hello!')) call ch_close(channel) endfunc func Test_open_delay() call ch_log('Test_open_delay()') " The server will wait half a second before creating the port. call s:run_server('s:open_delay', 'delay') endfunc """"""""" function MyFunction(a,b,c) let s:call_ret = [a:a, a:b, a:c] endfunc function s:test_call(port) let handle = ch_open('localhost:' . a:port, s:chopt) if ch_status(handle) == "fail" call assert_false(1, "Can't open channel") return endif call assert_equal('ok', ch_sendexpr(handle, 'call-func')) sleep 20m call assert_equal([1, 2, 3], s:call_ret) endfunc func Test_call() call ch_log('Test_call()') call s:run_server('s:test_call') endfunc """"""""" let s:job_exit_ret = 'not yet' function MyExitCb(job, status) let s:job_exit_ret = 'done' endfunc function s:test_exit_callback(port) call job_setoptions(s:job, {'exit-cb': 'MyExitCb'}) let s:exit_job = s:job endfunc func Test_exit_callback() if has('job') call s:run_server('s:test_exit_callback') " the job may take a little while to exit sleep 50m " calling job_status() triggers the callback call job_status(s:exit_job) call assert_equal('done', s:job_exit_ret) endif endfunc """"""""" let s:ch_close_ret = 'alive' function MyCloseCb(ch) let s:ch_close_ret = 'closed' endfunc function s:test_close_callback(port) let handle = ch_open('localhost:' . a:port, s:chopt) if ch_status(handle) == "fail" call assert_false(1, "Can't open channel") return endif call ch_setoptions(handle, {'close-cb': 'MyCloseCb'}) call assert_equal('', ch_sendexpr(handle, 'close me')) sleep 20m call assert_equal('closed', s:ch_close_ret) endfunc func Test_close_callback() call ch_log('Test_close_callback()') call s:run_server('s:test_close_callback') endfunc