Bram Moolenaar | 15bf76d | 2017-03-18 16:18:37 +0100 | [diff] [blame] | 1 | " Tests for the +clientserver feature. |
| 2 | |
Bram Moolenaar | 8c5a278 | 2019-08-07 23:07:07 +0200 | [diff] [blame] | 3 | source check.vim |
| 4 | CheckFeature job |
Bram Moolenaar | ee4e0c1 | 2020-04-06 21:35:05 +0200 | [diff] [blame] | 5 | |
| 6 | if !has('clientserver') |
| 7 | call assert_fails('call remote_startserver("local")', 'E942:') |
| 8 | endif |
| 9 | |
Bram Moolenaar | 8c5a278 | 2019-08-07 23:07:07 +0200 | [diff] [blame] | 10 | CheckFeature clientserver |
Bram Moolenaar | 15bf76d | 2017-03-18 16:18:37 +0100 | [diff] [blame] | 11 | |
| 12 | source shared.vim |
| 13 | |
Bram Moolenaar | cde0ff3 | 2020-04-04 14:00:39 +0200 | [diff] [blame] | 14 | func Check_X11_Connection() |
Bram Moolenaar | a683ec4 | 2017-03-25 20:14:34 +0100 | [diff] [blame] | 15 | if has('x11') |
| 16 | if empty($DISPLAY) |
| 17 | throw 'Skipped: $DISPLAY is not set' |
| 18 | endif |
Bram Moolenaar | a2845b8 | 2017-03-25 15:20:06 +0100 | [diff] [blame] | 19 | try |
| 20 | call remote_send('xxx', '') |
| 21 | catch |
| 22 | if v:exception =~ 'E240:' |
Bram Moolenaar | cde0ff3 | 2020-04-04 14:00:39 +0200 | [diff] [blame] | 23 | throw 'Skipped: no connection to the X server' |
Bram Moolenaar | a2845b8 | 2017-03-25 15:20:06 +0100 | [diff] [blame] | 24 | endif |
| 25 | " ignore other errors |
| 26 | endtry |
| 27 | endif |
Bram Moolenaar | cde0ff3 | 2020-04-04 14:00:39 +0200 | [diff] [blame] | 28 | endfunc |
| 29 | |
| 30 | func Test_client_server() |
| 31 | let cmd = GetVimCommand() |
| 32 | if cmd == '' |
Bram Moolenaar | 6d91bcb | 2020-08-12 18:50:36 +0200 | [diff] [blame] | 33 | throw 'GetVimCommand() failed' |
Bram Moolenaar | cde0ff3 | 2020-04-04 14:00:39 +0200 | [diff] [blame] | 34 | endif |
| 35 | call Check_X11_Connection() |
Bram Moolenaar | 4220555 | 2017-03-18 19:42:22 +0100 | [diff] [blame] | 36 | |
Bram Moolenaar | 4220555 | 2017-03-18 19:42:22 +0100 | [diff] [blame] | 37 | let name = 'XVIMTEST' |
Bram Moolenaar | 15bf76d | 2017-03-18 16:18:37 +0100 | [diff] [blame] | 38 | let cmd .= ' --servername ' . name |
Bram Moolenaar | ab8b1c1 | 2017-11-04 19:24:31 +0100 | [diff] [blame] | 39 | let job = job_start(cmd, {'stoponexit': 'kill', 'out_io': 'null'}) |
Bram Moolenaar | 50182fa | 2018-04-28 21:34:40 +0200 | [diff] [blame] | 40 | call WaitForAssert({-> assert_equal("run", job_status(job))}) |
Bram Moolenaar | 15bf76d | 2017-03-18 16:18:37 +0100 | [diff] [blame] | 41 | |
| 42 | " Takes a short while for the server to be active. |
Bram Moolenaar | 9d18961 | 2017-09-09 18:11:00 +0200 | [diff] [blame] | 43 | " When using valgrind it takes much longer. |
Bram Moolenaar | 50182fa | 2018-04-28 21:34:40 +0200 | [diff] [blame] | 44 | call WaitForAssert({-> assert_match(name, serverlist())}) |
Bram Moolenaar | 15bf76d | 2017-03-18 16:18:37 +0100 | [diff] [blame] | 45 | |
Bram Moolenaar | a0d1fef | 2019-09-04 22:29:14 +0200 | [diff] [blame] | 46 | eval name->remote_foreground() |
Bram Moolenaar | 15bf76d | 2017-03-18 16:18:37 +0100 | [diff] [blame] | 47 | |
| 48 | call remote_send(name, ":let testvar = 'yes'\<CR>") |
Bram Moolenaar | d97fbf1 | 2017-11-02 19:23:03 +0100 | [diff] [blame] | 49 | call WaitFor('remote_expr("' . name . '", "exists(\"testvar\") ? testvar : \"\"", "", 1) == "yes"') |
Bram Moolenaar | 81b9d0b | 2017-03-19 21:20:53 +0100 | [diff] [blame] | 50 | call assert_equal('yes', remote_expr(name, "testvar", "", 2)) |
Bram Moolenaar | ca68ae1 | 2020-03-30 19:32:53 +0200 | [diff] [blame] | 51 | call assert_fails("let x=remote_expr(name, '2+x')", 'E449:') |
| 52 | call assert_fails("let x=remote_expr('[], '2+2')", 'E116:') |
Bram Moolenaar | 15bf76d | 2017-03-18 16:18:37 +0100 | [diff] [blame] | 53 | |
Bram Moolenaar | 7416f3e | 2017-03-18 18:10:13 +0100 | [diff] [blame] | 54 | if has('unix') && has('gui') && !has('gui_running') |
Bram Moolenaar | 60964f6 | 2017-06-10 17:06:16 +0200 | [diff] [blame] | 55 | " Running in a terminal and the GUI is available: Tell the server to open |
Bram Moolenaar | 7416f3e | 2017-03-18 18:10:13 +0100 | [diff] [blame] | 56 | " the GUI and check that the remote command still works. |
| 57 | " Need to wait for the GUI to start up, otherwise the send hangs in trying |
| 58 | " to send to the terminal window. |
Bram Moolenaar | 81b9d0b | 2017-03-19 21:20:53 +0100 | [diff] [blame] | 59 | if has('gui_athena') || has('gui_motif') |
| 60 | " For those GUIs, ignore the 'failed to create input context' error. |
| 61 | call remote_send(name, ":call test_ignore_error('E285') | gui -f\<CR>") |
| 62 | else |
| 63 | call remote_send(name, ":gui -f\<CR>") |
| 64 | endif |
| 65 | " Wait for the server to be up and answering requests. |
Bram Moolenaar | 18dc355 | 2020-11-22 14:24:00 +0100 | [diff] [blame] | 66 | " When using valgrind this can be very, very slow. |
| 67 | sleep 1 |
| 68 | call WaitForAssert({-> assert_match('\d', name->remote_expr("v:version", "", 1))}, 10000) |
Bram Moolenaar | 81b9d0b | 2017-03-19 21:20:53 +0100 | [diff] [blame] | 69 | |
Bram Moolenaar | 7416f3e | 2017-03-18 18:10:13 +0100 | [diff] [blame] | 70 | call remote_send(name, ":let testvar = 'maybe'\<CR>") |
Bram Moolenaar | 50182fa | 2018-04-28 21:34:40 +0200 | [diff] [blame] | 71 | call WaitForAssert({-> assert_equal('maybe', remote_expr(name, "testvar", "", 2))}) |
Bram Moolenaar | 7416f3e | 2017-03-18 18:10:13 +0100 | [diff] [blame] | 72 | endif |
| 73 | |
Bram Moolenaar | e2e4075 | 2020-09-04 21:18:46 +0200 | [diff] [blame] | 74 | call assert_fails('call remote_send("XXX", ":let testvar = ''yes''\<CR>")', 'E241:') |
Bram Moolenaar | 7416f3e | 2017-03-18 18:10:13 +0100 | [diff] [blame] | 75 | |
Bram Moolenaar | e4862a0 | 2020-12-27 19:00:24 +0100 | [diff] [blame] | 76 | call writefile(['one'], 'Xclientfile') |
| 77 | let cmd = GetVimProg() .. ' --servername ' .. name .. ' --remote Xclientfile' |
| 78 | call system(cmd) |
| 79 | call WaitForAssert({-> assert_equal('Xclientfile', remote_expr(name, "bufname()", "", 2))}) |
| 80 | call WaitForAssert({-> assert_equal('one', remote_expr(name, "getline(1)", "", 2))}) |
| 81 | call writefile(['one', 'two'], 'Xclientfile') |
| 82 | call system(cmd) |
| 83 | call WaitForAssert({-> assert_equal('two', remote_expr(name, "getline(2)", "", 2))}) |
| 84 | |
Bram Moolenaar | 7416f3e | 2017-03-18 18:10:13 +0100 | [diff] [blame] | 85 | " Expression evaluated locally. |
| 86 | if v:servername == '' |
Bram Moolenaar | a0d1fef | 2019-09-04 22:29:14 +0200 | [diff] [blame] | 87 | eval 'MYSELF'->remote_startserver() |
Bram Moolenaar | 81b9d0b | 2017-03-19 21:20:53 +0100 | [diff] [blame] | 88 | " May get MYSELF1 when running the test again. |
| 89 | call assert_match('MYSELF', v:servername) |
Bram Moolenaar | ca68ae1 | 2020-03-30 19:32:53 +0200 | [diff] [blame] | 90 | call assert_fails("call remote_startserver('MYSELF')", 'E941:') |
Bram Moolenaar | 7416f3e | 2017-03-18 18:10:13 +0100 | [diff] [blame] | 91 | endif |
| 92 | let g:testvar = 'myself' |
| 93 | call assert_equal('myself', remote_expr(v:servername, 'testvar')) |
Bram Moolenaar | cde0ff3 | 2020-04-04 14:00:39 +0200 | [diff] [blame] | 94 | call remote_send(v:servername, ":let g:testvar2 = 75\<CR>") |
| 95 | call feedkeys('', 'x') |
| 96 | call assert_equal(75, g:testvar2) |
Bram Moolenaar | 9b7bf9e | 2020-07-11 22:14:59 +0200 | [diff] [blame] | 97 | call assert_fails('let v = remote_expr(v:servername, "/2")', ['E15:.*/2']) |
Bram Moolenaar | 7416f3e | 2017-03-18 18:10:13 +0100 | [diff] [blame] | 98 | |
| 99 | call remote_send(name, ":call server2client(expand('<client>'), 'got it')\<CR>", 'g:myserverid') |
Bram Moolenaar | a0d1fef | 2019-09-04 22:29:14 +0200 | [diff] [blame] | 100 | call assert_equal('got it', g:myserverid->remote_read(2)) |
Bram Moolenaar | 7416f3e | 2017-03-18 18:10:13 +0100 | [diff] [blame] | 101 | |
Bram Moolenaar | 196b466 | 2019-09-06 21:34:30 +0200 | [diff] [blame] | 102 | call remote_send(name, ":eval expand('<client>')->server2client('another')\<CR>", 'g:myserverid') |
Bram Moolenaar | 6caf606 | 2017-03-18 20:45:05 +0100 | [diff] [blame] | 103 | let peek_result = 'nothing' |
Bram Moolenaar | a0d1fef | 2019-09-04 22:29:14 +0200 | [diff] [blame] | 104 | let r = g:myserverid->remote_peek('peek_result') |
Bram Moolenaar | ab8b1c1 | 2017-11-04 19:24:31 +0100 | [diff] [blame] | 105 | " unpredictable whether the result is already available. |
Bram Moolenaar | 6caf606 | 2017-03-18 20:45:05 +0100 | [diff] [blame] | 106 | if r > 0 |
| 107 | call assert_equal('another', peek_result) |
| 108 | elseif r == 0 |
| 109 | call assert_equal('nothing', peek_result) |
| 110 | else |
| 111 | call assert_report('remote_peek() failed') |
| 112 | endif |
| 113 | let g:peek_result = 'empty' |
| 114 | call WaitFor('remote_peek(g:myserverid, "g:peek_result") > 0') |
Bram Moolenaar | 6caf606 | 2017-03-18 20:45:05 +0100 | [diff] [blame] | 115 | call assert_equal('another', g:peek_result) |
Bram Moolenaar | 81b9d0b | 2017-03-19 21:20:53 +0100 | [diff] [blame] | 116 | call assert_equal('another', remote_read(g:myserverid, 2)) |
Bram Moolenaar | 6caf606 | 2017-03-18 20:45:05 +0100 | [diff] [blame] | 117 | |
Bram Moolenaar | cde0ff3 | 2020-04-04 14:00:39 +0200 | [diff] [blame] | 118 | if !has('gui_running') |
| 119 | " In GUI vim, the following tests display a dialog box |
| 120 | |
| 121 | let cmd = GetVimProg() .. ' --servername ' .. name |
| 122 | |
| 123 | " Run a separate instance to send a command to the server |
| 124 | call remote_expr(name, 'execute("only")') |
| 125 | call system(cmd .. ' --remote-send ":new Xfile<CR>"') |
| 126 | call assert_equal('2', remote_expr(name, 'winnr("$")')) |
| 127 | call assert_equal('Xfile', remote_expr(name, 'winbufnr(1)->bufname()')) |
| 128 | call remote_expr(name, 'execute("only")') |
| 129 | |
| 130 | " Invoke a remote-expr. On MS-Windows, the returned value has a carriage |
| 131 | " return. |
| 132 | let l = system(cmd .. ' --remote-expr "2 + 2"') |
| 133 | call assert_equal(['4'], split(l, "\n")) |
| 134 | |
| 135 | " Edit multiple files using --remote |
| 136 | call system(cmd .. ' --remote Xfile1 Xfile2 Xfile3') |
| 137 | call assert_equal("Xfile1\nXfile2\nXfile3\n", remote_expr(name, 'argv()')) |
| 138 | eval name->remote_send(":%bw!\<CR>") |
| 139 | |
| 140 | " Edit files in separate tab pages |
| 141 | call system(cmd .. ' --remote-tab Xfile1 Xfile2 Xfile3') |
Bram Moolenaar | 25d5700 | 2020-04-08 22:56:34 +0200 | [diff] [blame] | 142 | call WaitForAssert({-> assert_equal('3', remote_expr(name, 'tabpagenr("$")'))}) |
Bram Moolenaar | cde0ff3 | 2020-04-04 14:00:39 +0200 | [diff] [blame] | 143 | call assert_equal('Xfile2', remote_expr(name, 'bufname(tabpagebuflist(2)[0])')) |
| 144 | eval name->remote_send(":%bw!\<CR>") |
| 145 | |
| 146 | " Edit a file using --remote-wait |
| 147 | eval name->remote_send(":source $VIMRUNTIME/plugin/rrhelper.vim\<CR>") |
| 148 | call system(cmd .. ' --remote-wait +enew Xfile1') |
| 149 | call assert_equal("Xfile1", remote_expr(name, 'bufname("#")')) |
| 150 | eval name->remote_send(":%bw!\<CR>") |
| 151 | |
| 152 | " Edit files using --remote-tab-wait |
| 153 | call system(cmd .. ' --remote-tabwait +tabonly\|enew Xfile1 Xfile2') |
| 154 | call assert_equal('1', remote_expr(name, 'tabpagenr("$")')) |
| 155 | eval name->remote_send(":%bw!\<CR>") |
| 156 | |
| 157 | " Error cases |
| 158 | if v:lang == "C" || v:lang =~ '^[Ee]n' |
| 159 | let l = split(system(cmd .. ' --remote +pwd'), "\n") |
| 160 | call assert_equal("Argument missing after: \"+pwd\"", l[1]) |
| 161 | endif |
| 162 | let l = system(cmd .. ' --remote-expr "abcd"') |
| 163 | call assert_match('^E449: ', l) |
| 164 | endif |
| 165 | |
| 166 | eval name->remote_send(":%bw!\<CR>") |
Bram Moolenaar | a0d1fef | 2019-09-04 22:29:14 +0200 | [diff] [blame] | 167 | eval name->remote_send(":qa!\<CR>") |
Bram Moolenaar | ab8b1c1 | 2017-11-04 19:24:31 +0100 | [diff] [blame] | 168 | try |
Bram Moolenaar | 50182fa | 2018-04-28 21:34:40 +0200 | [diff] [blame] | 169 | call WaitForAssert({-> assert_equal("dead", job_status(job))}) |
Bram Moolenaar | ab8b1c1 | 2017-11-04 19:24:31 +0100 | [diff] [blame] | 170 | finally |
| 171 | if job_status(job) != 'dead' |
| 172 | call assert_report('Server did not exit') |
| 173 | call job_stop(job, 'kill') |
| 174 | endif |
| 175 | endtry |
Bram Moolenaar | 0e05de4 | 2020-03-25 22:23:46 +0100 | [diff] [blame] | 176 | |
Bram Moolenaar | 99fa721 | 2020-04-26 15:59:55 +0200 | [diff] [blame] | 177 | call assert_fails('call remote_startserver([])', 'E730:') |
Bram Moolenaar | cde0ff3 | 2020-04-04 14:00:39 +0200 | [diff] [blame] | 178 | call assert_fails("let x = remote_peek([])", 'E730:') |
Bram Moolenaar | 4d57ba0 | 2020-07-12 20:00:24 +0200 | [diff] [blame] | 179 | call assert_fails("let x = remote_read('vim10')", |
Bram Moolenaar | c212dd0 | 2020-07-12 20:49:29 +0200 | [diff] [blame] | 180 | \ has('unix') ? ['E573:.*vim10'] : 'E277:') |
Bram Moolenaar | 4d57ba0 | 2020-07-12 20:00:24 +0200 | [diff] [blame] | 181 | call assert_fails("call server2client('abc', 'xyz')", |
Bram Moolenaar | c212dd0 | 2020-07-12 20:49:29 +0200 | [diff] [blame] | 182 | \ has('unix') ? ['E573:.*abc'] : 'E258:') |
Bram Moolenaar | 15bf76d | 2017-03-18 16:18:37 +0100 | [diff] [blame] | 183 | endfunc |
| 184 | |
| 185 | " Uncomment this line to get a debugging log |
| 186 | " call ch_logfile('channellog', 'w') |
Bram Moolenaar | 0e05de4 | 2020-03-25 22:23:46 +0100 | [diff] [blame] | 187 | |
| 188 | " vim: shiftwidth=2 sts=2 expandtab |