Mercurial > vim
annotate src/testdir/test_terminal.vim @ 12479:65c7769ef6d1 v8.0.1119
patch 8.0.1119: quitting a split terminal window kills the job
commit https://github.com/vim/vim/commit/8adb0d03ca2694922da915356d7ede05e31c5a5c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Sep 17 19:08:02 2017 +0200
patch 8.0.1119: quitting a split terminal window kills the job
Problem: Quitting a split terminal window kills the job. (Yasuhiro
Matsumoto)
Solution: Only stop terminal job if it is the last window.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 17 Sep 2017 19:15:05 +0200 |
parents | 827ad6758d33 |
children | 5cf248ecb6e3 |
rev | line source |
---|---|
11846
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
1 " Tests for the terminal window. |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
2 |
12156
ee8ead988f2c
patch 8.0.0958: terminal test fails on Windows when winpty dll is missing
Christian Brabandt <cb@256bit.org>
parents:
12154
diff
changeset
|
3 if !has('terminal') |
11846
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
4 finish |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
5 endif |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
6 |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
7 source shared.vim |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
8 |
12062
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
9 let s:python = PythonProg() |
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
10 |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
11 " Open a terminal with a shell, assign the job to g:job and return the buffer |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
12 " number. |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
13 func Run_shell_in_terminal(options) |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
14 let buf = term_start(&shell, a:options) |
11846
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
15 |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
16 let termlist = term_list() |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
17 call assert_equal(1, len(termlist)) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
18 call assert_equal(buf, termlist[0]) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
19 |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
20 let g:job = term_getjob(buf) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
21 call assert_equal(v:t_job, type(g:job)) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
22 |
11973
aec3df2af27c
patch 8.0.0867: job and channel in a dict value not quoted
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
23 let string = string({'job': term_getjob(buf)}) |
aec3df2af27c
patch 8.0.0867: job and channel in a dict value not quoted
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
24 call assert_match("{'job': 'process \\d\\+ run'}", string) |
aec3df2af27c
patch 8.0.0867: job and channel in a dict value not quoted
Christian Brabandt <cb@256bit.org>
parents:
11957
diff
changeset
|
25 |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
26 return buf |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
27 endfunc |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
28 |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
29 " Stops the shell started by Run_shell_in_terminal(). |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
30 func Stop_shell_in_terminal(buf) |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
31 call term_sendkeys(a:buf, "exit\r") |
11846
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
32 call WaitFor('job_status(g:job) == "dead"') |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
33 call assert_equal('dead', job_status(g:job)) |
11912
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
34 endfunc |
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
35 |
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
36 func Test_terminal_basic() |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
37 let buf = Run_shell_in_terminal({}) |
11933
d033653d3df8
patch 8.0.0846: cannot get the name of the pty of a job
Christian Brabandt <cb@256bit.org>
parents:
11923
diff
changeset
|
38 if has("unix") |
12389
d0cf7f71b95b
patch 8.0.1074: ":term NONE" does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12357
diff
changeset
|
39 call assert_match('^/dev/', job_info(g:job).tty_out) |
d0cf7f71b95b
patch 8.0.1074: ":term NONE" does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12357
diff
changeset
|
40 call assert_match('^/dev/', term_gettty('')) |
11933
d033653d3df8
patch 8.0.0846: cannot get the name of the pty of a job
Christian Brabandt <cb@256bit.org>
parents:
11923
diff
changeset
|
41 else |
12389
d0cf7f71b95b
patch 8.0.1074: ":term NONE" does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12357
diff
changeset
|
42 call assert_match('^\\\\.\\pipe\\', job_info(g:job).tty_out) |
d0cf7f71b95b
patch 8.0.1074: ":term NONE" does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12357
diff
changeset
|
43 call assert_match('^\\\\.\\pipe\\', term_gettty('')) |
11933
d033653d3df8
patch 8.0.0846: cannot get the name of the pty of a job
Christian Brabandt <cb@256bit.org>
parents:
11923
diff
changeset
|
44 endif |
12112
6afc7339c2ad
patch 8.0.0936: mode() returns wrong value for a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12106
diff
changeset
|
45 call assert_equal('t', mode()) |
6afc7339c2ad
patch 8.0.0936: mode() returns wrong value for a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12106
diff
changeset
|
46 call assert_match('%aR[^\n]*running]', execute('ls')) |
6afc7339c2ad
patch 8.0.0936: mode() returns wrong value for a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12106
diff
changeset
|
47 |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
48 call Stop_shell_in_terminal(buf) |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
49 call term_wait(buf) |
12112
6afc7339c2ad
patch 8.0.0936: mode() returns wrong value for a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12106
diff
changeset
|
50 call assert_equal('n', mode()) |
6afc7339c2ad
patch 8.0.0936: mode() returns wrong value for a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12106
diff
changeset
|
51 call assert_match('%aF[^\n]*finished]', execute('ls')) |
11912
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
52 |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
53 " closing window wipes out the terminal buffer a with finished job |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
54 close |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
55 call assert_equal("", bufname(buf)) |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
56 |
11912
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
57 unlet g:job |
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
58 endfunc |
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
59 |
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
60 func Test_terminal_make_change() |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
61 let buf = Run_shell_in_terminal({}) |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
62 call Stop_shell_in_terminal(buf) |
11912
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
63 call term_wait(buf) |
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
64 |
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
65 setlocal modifiable |
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
66 exe "normal Axxx\<Esc>" |
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
67 call assert_fails(buf . 'bwipe', 'E517') |
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
68 undo |
22658e33203f
patch 8.0.0836: can abandon a terminal buffer after making a change
Christian Brabandt <cb@256bit.org>
parents:
11906
diff
changeset
|
69 |
11846
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
70 exe buf . 'bwipe' |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
71 unlet g:job |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
72 endfunc |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
73 |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
74 func Test_terminal_wipe_buffer() |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
75 let buf = Run_shell_in_terminal({}) |
11957
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11955
diff
changeset
|
76 call assert_fails(buf . 'bwipe', 'E517') |
bc0fee081e1e
patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents:
11955
diff
changeset
|
77 exe buf . 'bwipe!' |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
78 call WaitFor('job_status(g:job) == "dead"') |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
79 call assert_equal('dead', job_status(g:job)) |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
80 call assert_equal("", bufname(buf)) |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
81 |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
82 unlet g:job |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
83 endfunc |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
84 |
12479
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
85 func Test_terminal_split_quit() |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
86 let buf = Run_shell_in_terminal({}) |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
87 call term_wait(buf) |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
88 split |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
89 quit! |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
90 call term_wait(buf) |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
91 sleep 50m |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
92 call assert_equal('run', job_status(g:job)) |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
93 |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
94 quit! |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
95 call WaitFor('job_status(g:job) == "dead"') |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
96 call assert_equal('dead', job_status(g:job)) |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
97 |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
98 exe buf . 'bwipe' |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
99 unlet g:job |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
100 endfunc |
65c7769ef6d1
patch 8.0.1119: quitting a split terminal window kills the job
Christian Brabandt <cb@256bit.org>
parents:
12475
diff
changeset
|
101 |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
102 func Test_terminal_hide_buffer() |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
103 let buf = Run_shell_in_terminal({}) |
12271
e4aa68825575
patch 8.0.1015: missing update to terminal test
Christian Brabandt <cb@256bit.org>
parents:
12263
diff
changeset
|
104 setlocal bufhidden=hide |
11917
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
105 quit |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
106 for nr in range(1, winnr('$')) |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
107 call assert_notequal(winbufnr(nr), buf) |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
108 endfor |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
109 call assert_true(bufloaded(buf)) |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
110 call assert_true(buflisted(buf)) |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
111 |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
112 exe 'split ' . buf . 'buf' |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
113 call Stop_shell_in_terminal(buf) |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
114 exe buf . 'bwipe' |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
115 |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
116 unlet g:job |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
117 endfunc |
00836eb177cb
patch 8.0.0838: buffer hangs around whem terminal window is closed
Christian Brabandt <cb@256bit.org>
parents:
11912
diff
changeset
|
118 |
11939
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
119 func! s:Nasty_exit_cb(job, st) |
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
120 exe g:buf . 'bwipe!' |
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
121 let g:buf = 0 |
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
122 endfunc |
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
123 |
12405
6ef5e636f246
patch 8.0.1082: tests fail when run under valgrind
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
124 func Get_cat_123_cmd() |
6ef5e636f246
patch 8.0.1082: tests fail when run under valgrind
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
125 if has('win32') |
6ef5e636f246
patch 8.0.1082: tests fail when run under valgrind
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
126 return 'cmd /c "cls && color 2 && echo 123"' |
6ef5e636f246
patch 8.0.1082: tests fail when run under valgrind
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
127 else |
6ef5e636f246
patch 8.0.1082: tests fail when run under valgrind
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
128 call writefile(["\<Esc>[32m123"], 'Xtext') |
6ef5e636f246
patch 8.0.1082: tests fail when run under valgrind
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
129 return "cat Xtext" |
6ef5e636f246
patch 8.0.1082: tests fail when run under valgrind
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
130 endif |
6ef5e636f246
patch 8.0.1082: tests fail when run under valgrind
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
131 endfunc |
6ef5e636f246
patch 8.0.1082: tests fail when run under valgrind
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
132 |
11939
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
133 func Test_terminal_nasty_cb() |
12009
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
134 let cmd = Get_cat_123_cmd() |
11939
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
135 let g:buf = term_start(cmd, {'exit_cb': function('s:Nasty_exit_cb')}) |
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
136 let g:job = term_getjob(g:buf) |
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
137 |
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
138 call WaitFor('job_status(g:job) == "dead"') |
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
139 call WaitFor('g:buf == 0') |
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
140 unlet g:buf |
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
141 unlet g:job |
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
142 call delete('Xtext') |
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
143 endfunc |
ef1febf04d03
patch 8.0.0849: crash when job exit callback wipes the terminal
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
144 |
11846
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
145 func Check_123(buf) |
11923
c9da7b42fdf5
patch 8.0.0841: term_getline() may cause a crash
Christian Brabandt <cb@256bit.org>
parents:
11917
diff
changeset
|
146 let l = term_scrape(a:buf, 0) |
c9da7b42fdf5
patch 8.0.0841: term_getline() may cause a crash
Christian Brabandt <cb@256bit.org>
parents:
11917
diff
changeset
|
147 call assert_true(len(l) == 0) |
c9da7b42fdf5
patch 8.0.0841: term_getline() may cause a crash
Christian Brabandt <cb@256bit.org>
parents:
11917
diff
changeset
|
148 let l = term_scrape(a:buf, 999) |
c9da7b42fdf5
patch 8.0.0841: term_getline() may cause a crash
Christian Brabandt <cb@256bit.org>
parents:
11917
diff
changeset
|
149 call assert_true(len(l) == 0) |
11906
7df4afab67c7
patch 8.0.0833: terminal test fails
Christian Brabandt <cb@256bit.org>
parents:
11872
diff
changeset
|
150 let l = term_scrape(a:buf, 1) |
11846
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
151 call assert_true(len(l) > 0) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
152 call assert_equal('1', l[0].chars) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
153 call assert_equal('2', l[1].chars) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
154 call assert_equal('3', l[2].chars) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
155 call assert_equal('#00e000', l[0].fg) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
156 if &background == 'light' |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
157 call assert_equal('#ffffff', l[0].bg) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
158 else |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
159 call assert_equal('#000000', l[0].bg) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
160 endif |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
161 |
11923
c9da7b42fdf5
patch 8.0.0841: term_getline() may cause a crash
Christian Brabandt <cb@256bit.org>
parents:
11917
diff
changeset
|
162 let l = term_getline(a:buf, -1) |
c9da7b42fdf5
patch 8.0.0841: term_getline() may cause a crash
Christian Brabandt <cb@256bit.org>
parents:
11917
diff
changeset
|
163 call assert_equal('', l) |
c9da7b42fdf5
patch 8.0.0841: term_getline() may cause a crash
Christian Brabandt <cb@256bit.org>
parents:
11917
diff
changeset
|
164 let l = term_getline(a:buf, 0) |
c9da7b42fdf5
patch 8.0.0841: term_getline() may cause a crash
Christian Brabandt <cb@256bit.org>
parents:
11917
diff
changeset
|
165 call assert_equal('', l) |
c9da7b42fdf5
patch 8.0.0841: term_getline() may cause a crash
Christian Brabandt <cb@256bit.org>
parents:
11917
diff
changeset
|
166 let l = term_getline(a:buf, 999) |
c9da7b42fdf5
patch 8.0.0841: term_getline() may cause a crash
Christian Brabandt <cb@256bit.org>
parents:
11917
diff
changeset
|
167 call assert_equal('', l) |
11906
7df4afab67c7
patch 8.0.0833: terminal test fails
Christian Brabandt <cb@256bit.org>
parents:
11872
diff
changeset
|
168 let l = term_getline(a:buf, 1) |
11846
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
169 call assert_equal('123', l) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
170 endfunc |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
171 |
12009
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
172 func Test_terminal_scrape_123() |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
173 let cmd = Get_cat_123_cmd() |
11846
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
174 let buf = term_start(cmd) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
175 |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
176 let termlist = term_list() |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
177 call assert_equal(1, len(termlist)) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
178 call assert_equal(buf, termlist[0]) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
179 |
11872
ff8122091ec6
patch 8.0.0816: crash when using invalid buffer number
Christian Brabandt <cb@256bit.org>
parents:
11846
diff
changeset
|
180 " Nothing happens with invalid buffer number |
ff8122091ec6
patch 8.0.0816: crash when using invalid buffer number
Christian Brabandt <cb@256bit.org>
parents:
11846
diff
changeset
|
181 call term_wait(1234) |
ff8122091ec6
patch 8.0.0816: crash when using invalid buffer number
Christian Brabandt <cb@256bit.org>
parents:
11846
diff
changeset
|
182 |
11846
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
183 call term_wait(buf) |
12345
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
184 let g:buf = buf |
12349
bb67396239a4
patch 8.0.1054: terminal test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12345
diff
changeset
|
185 " On MS-Windows we first get a startup message of two lines, wait for the |
12355
368a7bf382c7
patch 8.0.1057: terminal scrape test waits too long
Christian Brabandt <cb@256bit.org>
parents:
12349
diff
changeset
|
186 " "cls" to happen, after that we have one line with three characters. |
368a7bf382c7
patch 8.0.1057: terminal scrape test waits too long
Christian Brabandt <cb@256bit.org>
parents:
12349
diff
changeset
|
187 call WaitFor('len(term_scrape(g:buf, 1)) == 3') |
11846
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
188 call Check_123(buf) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
189 |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
190 " Must still work after the job ended. |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
191 let g:job = term_getjob(buf) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
192 call WaitFor('job_status(g:job) == "dead"') |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
193 call term_wait(buf) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
194 call Check_123(buf) |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
195 |
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
196 exe buf . 'bwipe' |
11872
ff8122091ec6
patch 8.0.0816: crash when using invalid buffer number
Christian Brabandt <cb@256bit.org>
parents:
11846
diff
changeset
|
197 call delete('Xtext') |
11846
1c65cad8b967
patch 8.0.0804: terminal window functions not yet implemented
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
198 endfunc |
11975
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
199 |
12009
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
200 func Test_terminal_scrape_multibyte() |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
201 if !has('multi_byte') |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
202 return |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
203 endif |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
204 call writefile(["léttまrs"], 'Xtext') |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
205 if has('win32') |
12126
bb43ab26381e
patch 8.0.0943: MS-Windows: Test_terminal_scrape_multibyte may fail
Christian Brabandt <cb@256bit.org>
parents:
12120
diff
changeset
|
206 " Run cmd with UTF-8 codepage to make the type command print the expected |
bb43ab26381e
patch 8.0.0943: MS-Windows: Test_terminal_scrape_multibyte may fail
Christian Brabandt <cb@256bit.org>
parents:
12120
diff
changeset
|
207 " multibyte characters. |
bb43ab26381e
patch 8.0.0943: MS-Windows: Test_terminal_scrape_multibyte may fail
Christian Brabandt <cb@256bit.org>
parents:
12120
diff
changeset
|
208 let g:buf = term_start("cmd /K chcp 65001") |
bb43ab26381e
patch 8.0.0943: MS-Windows: Test_terminal_scrape_multibyte may fail
Christian Brabandt <cb@256bit.org>
parents:
12120
diff
changeset
|
209 call term_sendkeys(g:buf, "type Xtext\<CR>") |
bb43ab26381e
patch 8.0.0943: MS-Windows: Test_terminal_scrape_multibyte may fail
Christian Brabandt <cb@256bit.org>
parents:
12120
diff
changeset
|
210 call term_sendkeys(g:buf, "exit\<CR>") |
bb43ab26381e
patch 8.0.0943: MS-Windows: Test_terminal_scrape_multibyte may fail
Christian Brabandt <cb@256bit.org>
parents:
12120
diff
changeset
|
211 let g:line = 4 |
12009
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
212 else |
12126
bb43ab26381e
patch 8.0.0943: MS-Windows: Test_terminal_scrape_multibyte may fail
Christian Brabandt <cb@256bit.org>
parents:
12120
diff
changeset
|
213 let g:buf = term_start("cat Xtext") |
bb43ab26381e
patch 8.0.0943: MS-Windows: Test_terminal_scrape_multibyte may fail
Christian Brabandt <cb@256bit.org>
parents:
12120
diff
changeset
|
214 let g:line = 1 |
12009
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
215 endif |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
216 |
12431
4ae1485b5834
patch 8.0.1095: terminal multibyte escrape test is flaky
Christian Brabandt <cb@256bit.org>
parents:
12415
diff
changeset
|
217 call WaitFor('len(term_scrape(g:buf, g:line)) >= 7 && term_scrape(g:buf, g:line)[0].chars == "l"') |
12126
bb43ab26381e
patch 8.0.0943: MS-Windows: Test_terminal_scrape_multibyte may fail
Christian Brabandt <cb@256bit.org>
parents:
12120
diff
changeset
|
218 let l = term_scrape(g:buf, g:line) |
12009
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
219 call assert_true(len(l) >= 7) |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
220 call assert_equal('l', l[0].chars) |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
221 call assert_equal('é', l[1].chars) |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
222 call assert_equal(1, l[1].width) |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
223 call assert_equal('t', l[2].chars) |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
224 call assert_equal('t', l[3].chars) |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
225 call assert_equal('ま', l[4].chars) |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
226 call assert_equal(2, l[4].width) |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
227 call assert_equal('r', l[5].chars) |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
228 call assert_equal('s', l[6].chars) |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
229 |
12120
017031c7717e
patch 8.0.0940: Test_terminal_scrape_multibyte is flaky
Christian Brabandt <cb@256bit.org>
parents:
12118
diff
changeset
|
230 let g:job = term_getjob(g:buf) |
12009
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
231 call WaitFor('job_status(g:job) == "dead"') |
12120
017031c7717e
patch 8.0.0940: Test_terminal_scrape_multibyte is flaky
Christian Brabandt <cb@256bit.org>
parents:
12118
diff
changeset
|
232 call term_wait(g:buf) |
12009
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
233 |
12120
017031c7717e
patch 8.0.0940: Test_terminal_scrape_multibyte is flaky
Christian Brabandt <cb@256bit.org>
parents:
12118
diff
changeset
|
234 exe g:buf . 'bwipe' |
017031c7717e
patch 8.0.0940: Test_terminal_scrape_multibyte is flaky
Christian Brabandt <cb@256bit.org>
parents:
12118
diff
changeset
|
235 unlet g:buf |
12126
bb43ab26381e
patch 8.0.0943: MS-Windows: Test_terminal_scrape_multibyte may fail
Christian Brabandt <cb@256bit.org>
parents:
12120
diff
changeset
|
236 unlet g:line |
12009
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
237 call delete('Xtext') |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
238 endfunc |
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
239 |
12011
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
240 func Test_terminal_scroll() |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
241 call writefile(range(1, 200), 'Xtext') |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
242 if has('win32') |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
243 let cmd = 'cmd /c "type Xtext"' |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
244 else |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
245 let cmd = "cat Xtext" |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
246 endif |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
247 let buf = term_start(cmd) |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
248 |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
249 let g:job = term_getjob(buf) |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
250 call WaitFor('job_status(g:job) == "dead"') |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
251 call term_wait(buf) |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
252 if has('win32') |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
253 " TODO: this should not be needed |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
254 sleep 100m |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
255 endif |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
256 |
12025
c0ee48f48a2b
patch 8.0.0893: cannot get the scroll count of a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12011
diff
changeset
|
257 let scrolled = term_getscrolled(buf) |
12011
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
258 call assert_equal('1', getline(1)) |
12025
c0ee48f48a2b
patch 8.0.0893: cannot get the scroll count of a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12011
diff
changeset
|
259 call assert_equal('1', term_getline(buf, 1 - scrolled)) |
12011
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
260 call assert_equal('49', getline(49)) |
12025
c0ee48f48a2b
patch 8.0.0893: cannot get the scroll count of a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12011
diff
changeset
|
261 call assert_equal('49', term_getline(buf, 49 - scrolled)) |
12011
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
262 call assert_equal('200', getline(200)) |
12025
c0ee48f48a2b
patch 8.0.0893: cannot get the scroll count of a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12011
diff
changeset
|
263 call assert_equal('200', term_getline(buf, 200 - scrolled)) |
12011
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
264 |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
265 exe buf . 'bwipe' |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
266 call delete('Xtext') |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
267 endfunc |
1f4e7361ce89
patch 8.0.0886: crash when using ":term ls"
Christian Brabandt <cb@256bit.org>
parents:
12009
diff
changeset
|
268 |
11975
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
269 func Test_terminal_size() |
12009
0d9bfdb3f6f7
patch 8.0.0885: terminal window scrollback is stored inefficiently
Christian Brabandt <cb@256bit.org>
parents:
11975
diff
changeset
|
270 let cmd = Get_cat_123_cmd() |
11975
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
271 |
12192
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12166
diff
changeset
|
272 exe 'terminal ++rows=5 ' . cmd |
11975
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
273 let size = term_getsize('') |
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
274 bwipe! |
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
275 call assert_equal(5, size[0]) |
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
276 |
12056
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
277 call term_start(cmd, {'term_rows': 6}) |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
278 let size = term_getsize('') |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
279 bwipe! |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
280 call assert_equal(6, size[0]) |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
281 |
11975
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
282 vsplit |
12192
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12166
diff
changeset
|
283 exe 'terminal ++rows=5 ++cols=33 ' . cmd |
11975
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
284 let size = term_getsize('') |
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
285 bwipe! |
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
286 call assert_equal([5, 33], size) |
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
287 |
12056
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
288 call term_start(cmd, {'term_rows': 6, 'term_cols': 36}) |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
289 let size = term_getsize('') |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
290 bwipe! |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
291 call assert_equal([6, 36], size) |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
292 |
12192
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12166
diff
changeset
|
293 exe 'vertical terminal ++cols=20 ' . cmd |
11975
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
294 let size = term_getsize('') |
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
295 bwipe! |
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
296 call assert_equal(20, size[1]) |
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
297 |
12056
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
298 call term_start(cmd, {'vertical': 1, 'term_cols': 26}) |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
299 let size = term_getsize('') |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
300 bwipe! |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
301 call assert_equal(26, size[1]) |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
302 |
11975
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
303 split |
12192
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12166
diff
changeset
|
304 exe 'vertical terminal ++rows=6 ++cols=20 ' . cmd |
11975
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
305 let size = term_getsize('') |
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
306 bwipe! |
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
307 call assert_equal([6, 20], size) |
12056
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
308 |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
309 call term_start(cmd, {'vertical': 1, 'term_rows': 7, 'term_cols': 27}) |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
310 let size = term_getsize('') |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
311 bwipe! |
0498547dace0
patch 8.0.0908: cannot set terminal size with options
Christian Brabandt <cb@256bit.org>
parents:
12046
diff
changeset
|
312 call assert_equal([7, 27], size) |
12343
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
313 |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
314 call delete('Xtext') |
12060
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
315 endfunc |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
316 |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
317 func Test_terminal_curwin() |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
318 let cmd = Get_cat_123_cmd() |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
319 call assert_equal(1, winnr('$')) |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
320 |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
321 split dummy |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
322 exe 'terminal ++curwin ' . cmd |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
323 call assert_equal(2, winnr('$')) |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
324 bwipe! |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
325 |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
326 split dummy |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
327 call term_start(cmd, {'curwin': 1}) |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
328 call assert_equal(2, winnr('$')) |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
329 bwipe! |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
330 |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
331 split dummy |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
332 call setline(1, 'change') |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
333 call assert_fails('terminal ++curwin ' . cmd, 'E37:') |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
334 call assert_equal(2, winnr('$')) |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
335 exe 'terminal! ++curwin ' . cmd |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
336 call assert_equal(2, winnr('$')) |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
337 bwipe! |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
338 |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
339 split dummy |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
340 call setline(1, 'change') |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
341 call assert_fails("call term_start(cmd, {'curwin': 1})", 'E37:') |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
342 call assert_equal(2, winnr('$')) |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
343 bwipe! |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
344 |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
345 split dummy |
a879814b8a37
patch 8.0.0910: cannot create a terminal in the current window
Christian Brabandt <cb@256bit.org>
parents:
12056
diff
changeset
|
346 bwipe! |
12343
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
347 call delete('Xtext') |
11975
5cc005cf312f
patch 8.0.0868: cannot specify the terminal size on the command line
Christian Brabandt <cb@256bit.org>
parents:
11973
diff
changeset
|
348 endfunc |
12031
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
349 |
12072
f4e1e1e6886b
patch 8.0.0916: cannot specify properties of window for terminal open
Christian Brabandt <cb@256bit.org>
parents:
12064
diff
changeset
|
350 func Test_finish_open_close() |
12031
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
351 call assert_equal(1, winnr('$')) |
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
352 |
12062
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
353 if s:python != '' |
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
354 let cmd = s:python . " test_short_sleep.py" |
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
355 let waittime = 500 |
12031
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
356 else |
12062
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
357 echo 'This will take five seconds...' |
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
358 let waittime = 2000 |
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
359 if has('win32') |
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
360 let cmd = $windir . '\system32\timeout.exe 1' |
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
361 else |
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
362 let cmd = 'sleep 1' |
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
363 endif |
12031
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
364 endif |
12062
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
365 |
12031
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
366 exe 'terminal ++close ' . cmd |
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
367 call assert_equal(2, winnr('$')) |
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
368 wincmd p |
12062
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
369 call WaitFor("winnr('$') == 1", waittime) |
12031
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
370 call assert_equal(1, winnr('$')) |
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
371 |
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
372 call term_start(cmd, {'term_finish': 'close'}) |
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
373 call assert_equal(2, winnr('$')) |
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
374 wincmd p |
12062
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
375 call WaitFor("winnr('$') == 1", waittime) |
12031
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
376 call assert_equal(1, winnr('$')) |
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
377 |
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
378 exe 'terminal ++open ' . cmd |
12271
e4aa68825575
patch 8.0.1015: missing update to terminal test
Christian Brabandt <cb@256bit.org>
parents:
12263
diff
changeset
|
379 close! |
12062
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
380 call WaitFor("winnr('$') == 2", waittime) |
12031
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
381 call assert_equal(2, winnr('$')) |
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
382 bwipe |
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
383 |
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
384 call term_start(cmd, {'term_finish': 'open'}) |
12271
e4aa68825575
patch 8.0.1015: missing update to terminal test
Christian Brabandt <cb@256bit.org>
parents:
12263
diff
changeset
|
385 close! |
12062
191ccece2f5d
patch 8.0.0911: terminal test takes too long
Christian Brabandt <cb@256bit.org>
parents:
12060
diff
changeset
|
386 call WaitFor("winnr('$') == 2", waittime) |
12031
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
387 call assert_equal(2, winnr('$')) |
12064
407a475c67fd
patch 8.0.0912: cannot run a job in a hidden terminal
Christian Brabandt <cb@256bit.org>
parents:
12062
diff
changeset
|
388 bwipe |
12031
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
389 |
12064
407a475c67fd
patch 8.0.0912: cannot run a job in a hidden terminal
Christian Brabandt <cb@256bit.org>
parents:
12062
diff
changeset
|
390 exe 'terminal ++hidden ++open ' . cmd |
407a475c67fd
patch 8.0.0912: cannot run a job in a hidden terminal
Christian Brabandt <cb@256bit.org>
parents:
12062
diff
changeset
|
391 call assert_equal(1, winnr('$')) |
407a475c67fd
patch 8.0.0912: cannot run a job in a hidden terminal
Christian Brabandt <cb@256bit.org>
parents:
12062
diff
changeset
|
392 call WaitFor("winnr('$') == 2", waittime) |
407a475c67fd
patch 8.0.0912: cannot run a job in a hidden terminal
Christian Brabandt <cb@256bit.org>
parents:
12062
diff
changeset
|
393 call assert_equal(2, winnr('$')) |
407a475c67fd
patch 8.0.0912: cannot run a job in a hidden terminal
Christian Brabandt <cb@256bit.org>
parents:
12062
diff
changeset
|
394 bwipe |
407a475c67fd
patch 8.0.0912: cannot run a job in a hidden terminal
Christian Brabandt <cb@256bit.org>
parents:
12062
diff
changeset
|
395 |
407a475c67fd
patch 8.0.0912: cannot run a job in a hidden terminal
Christian Brabandt <cb@256bit.org>
parents:
12062
diff
changeset
|
396 call term_start(cmd, {'term_finish': 'open', 'hidden': 1}) |
407a475c67fd
patch 8.0.0912: cannot run a job in a hidden terminal
Christian Brabandt <cb@256bit.org>
parents:
12062
diff
changeset
|
397 call assert_equal(1, winnr('$')) |
407a475c67fd
patch 8.0.0912: cannot run a job in a hidden terminal
Christian Brabandt <cb@256bit.org>
parents:
12062
diff
changeset
|
398 call WaitFor("winnr('$') == 2", waittime) |
407a475c67fd
patch 8.0.0912: cannot run a job in a hidden terminal
Christian Brabandt <cb@256bit.org>
parents:
12062
diff
changeset
|
399 call assert_equal(2, winnr('$')) |
12031
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
400 bwipe |
12072
f4e1e1e6886b
patch 8.0.0916: cannot specify properties of window for terminal open
Christian Brabandt <cb@256bit.org>
parents:
12064
diff
changeset
|
401 |
f4e1e1e6886b
patch 8.0.0916: cannot specify properties of window for terminal open
Christian Brabandt <cb@256bit.org>
parents:
12064
diff
changeset
|
402 call assert_fails("call term_start(cmd, {'term_opencmd': 'open'})", 'E475:') |
f4e1e1e6886b
patch 8.0.0916: cannot specify properties of window for terminal open
Christian Brabandt <cb@256bit.org>
parents:
12064
diff
changeset
|
403 call assert_fails("call term_start(cmd, {'term_opencmd': 'split %x'})", 'E475:') |
f4e1e1e6886b
patch 8.0.0916: cannot specify properties of window for terminal open
Christian Brabandt <cb@256bit.org>
parents:
12064
diff
changeset
|
404 call assert_fails("call term_start(cmd, {'term_opencmd': 'split %d and %s'})", 'E475:') |
f4e1e1e6886b
patch 8.0.0916: cannot specify properties of window for terminal open
Christian Brabandt <cb@256bit.org>
parents:
12064
diff
changeset
|
405 call assert_fails("call term_start(cmd, {'term_opencmd': 'split % and %d'})", 'E475:') |
f4e1e1e6886b
patch 8.0.0916: cannot specify properties of window for terminal open
Christian Brabandt <cb@256bit.org>
parents:
12064
diff
changeset
|
406 |
f4e1e1e6886b
patch 8.0.0916: cannot specify properties of window for terminal open
Christian Brabandt <cb@256bit.org>
parents:
12064
diff
changeset
|
407 call term_start(cmd, {'term_finish': 'open', 'term_opencmd': '4split | buffer %d'}) |
12271
e4aa68825575
patch 8.0.1015: missing update to terminal test
Christian Brabandt <cb@256bit.org>
parents:
12263
diff
changeset
|
408 close! |
12072
f4e1e1e6886b
patch 8.0.0916: cannot specify properties of window for terminal open
Christian Brabandt <cb@256bit.org>
parents:
12064
diff
changeset
|
409 call WaitFor("winnr('$') == 2", waittime) |
f4e1e1e6886b
patch 8.0.0916: cannot specify properties of window for terminal open
Christian Brabandt <cb@256bit.org>
parents:
12064
diff
changeset
|
410 call assert_equal(2, winnr('$')) |
f4e1e1e6886b
patch 8.0.0916: cannot specify properties of window for terminal open
Christian Brabandt <cb@256bit.org>
parents:
12064
diff
changeset
|
411 call assert_equal(4, winheight(0)) |
f4e1e1e6886b
patch 8.0.0916: cannot specify properties of window for terminal open
Christian Brabandt <cb@256bit.org>
parents:
12064
diff
changeset
|
412 bwipe |
12031
9897241c08b5
patch 8.0.0896: cannot close a terminal window when the job ends
Christian Brabandt <cb@256bit.org>
parents:
12025
diff
changeset
|
413 endfunc |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
414 |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
415 func Test_terminal_cwd() |
12415
cd66083e371e
patch 8.0.1087: Test_terminal_cwd is flaky
Christian Brabandt <cb@256bit.org>
parents:
12407
diff
changeset
|
416 if !executable('pwd') |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
417 return |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
418 endif |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
419 call mkdir('Xdir') |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
420 let buf = term_start('pwd', {'cwd': 'Xdir'}) |
12415
cd66083e371e
patch 8.0.1087: Test_terminal_cwd is flaky
Christian Brabandt <cb@256bit.org>
parents:
12407
diff
changeset
|
421 call WaitFor('"Xdir" == fnamemodify(getline(1), ":t")') |
cd66083e371e
patch 8.0.1087: Test_terminal_cwd is flaky
Christian Brabandt <cb@256bit.org>
parents:
12407
diff
changeset
|
422 call assert_equal('Xdir', fnamemodify(getline(1), ":t")) |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
423 |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
424 exe buf . 'bwipe' |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
425 call delete('Xdir', 'rf') |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
426 endfunc |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
427 |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
428 func Test_terminal_env() |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
429 if !has('unix') |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
430 return |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
431 endif |
12120
017031c7717e
patch 8.0.0940: Test_terminal_scrape_multibyte is flaky
Christian Brabandt <cb@256bit.org>
parents:
12118
diff
changeset
|
432 let g:buf = Run_shell_in_terminal({'env': {'TESTENV': 'correct'}}) |
12118
bf53df1f17ba
patch 8.0.0939: Test_terminal_env is flaky
Christian Brabandt <cb@256bit.org>
parents:
12112
diff
changeset
|
433 " Wait for the shell to display a prompt |
12120
017031c7717e
patch 8.0.0940: Test_terminal_scrape_multibyte is flaky
Christian Brabandt <cb@256bit.org>
parents:
12118
diff
changeset
|
434 call WaitFor('term_getline(g:buf, 1) != ""') |
017031c7717e
patch 8.0.0940: Test_terminal_scrape_multibyte is flaky
Christian Brabandt <cb@256bit.org>
parents:
12118
diff
changeset
|
435 call term_sendkeys(g:buf, "echo $TESTENV\r") |
017031c7717e
patch 8.0.0940: Test_terminal_scrape_multibyte is flaky
Christian Brabandt <cb@256bit.org>
parents:
12118
diff
changeset
|
436 call term_wait(g:buf) |
017031c7717e
patch 8.0.0940: Test_terminal_scrape_multibyte is flaky
Christian Brabandt <cb@256bit.org>
parents:
12118
diff
changeset
|
437 call Stop_shell_in_terminal(g:buf) |
12118
bf53df1f17ba
patch 8.0.0939: Test_terminal_env is flaky
Christian Brabandt <cb@256bit.org>
parents:
12112
diff
changeset
|
438 call WaitFor('getline(2) == "correct"') |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
439 call assert_equal('correct', getline(2)) |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
440 |
12120
017031c7717e
patch 8.0.0940: Test_terminal_scrape_multibyte is flaky
Christian Brabandt <cb@256bit.org>
parents:
12118
diff
changeset
|
441 exe g:buf . 'bwipe' |
017031c7717e
patch 8.0.0940: Test_terminal_scrape_multibyte is flaky
Christian Brabandt <cb@256bit.org>
parents:
12118
diff
changeset
|
442 unlet g:buf |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12031
diff
changeset
|
443 endfunc |
12086
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
444 |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
445 " must be last, we can't go back from GUI to terminal |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
446 func Test_zz_terminal_in_gui() |
12106
d2c20ec4b95a
patch 8.0.0933: terminal test tries to start GUI when it's not possible
Christian Brabandt <cb@256bit.org>
parents:
12096
diff
changeset
|
447 if !CanRunGui() |
12086
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
448 return |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
449 endif |
12263
eddd5ea01116
patch 8.0.1011: terminal test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
450 |
eddd5ea01116
patch 8.0.1011: terminal test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
451 " Ignore the "failed to create input context" error. |
eddd5ea01116
patch 8.0.1011: terminal test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
452 call test_ignore_error('E285:') |
eddd5ea01116
patch 8.0.1011: terminal test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
453 |
12086
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
454 gui -f |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
455 |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
456 call assert_equal(1, winnr('$')) |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
457 let buf = Run_shell_in_terminal({'term_finish': 'close'}) |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
458 call Stop_shell_in_terminal(buf) |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
459 call term_wait(buf) |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
460 |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
461 " closing window wipes out the terminal buffer a with finished job |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
462 call WaitFor("winnr('$') == 1") |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
463 call assert_equal(1, winnr('$')) |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
464 call assert_equal("", bufname(buf)) |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
465 |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
466 unlet g:job |
69f2392e6cfb
patch 8.0.0923: crash in GUI when terminal job exits
Christian Brabandt <cb@256bit.org>
parents:
12072
diff
changeset
|
467 endfunc |
12096
0a61213afdd2
patch 8.0.0928: MS-Windows: passing arglist to job has escaping problems
Christian Brabandt <cb@256bit.org>
parents:
12086
diff
changeset
|
468 |
0a61213afdd2
patch 8.0.0928: MS-Windows: passing arglist to job has escaping problems
Christian Brabandt <cb@256bit.org>
parents:
12086
diff
changeset
|
469 func Test_terminal_list_args() |
0a61213afdd2
patch 8.0.0928: MS-Windows: passing arglist to job has escaping problems
Christian Brabandt <cb@256bit.org>
parents:
12086
diff
changeset
|
470 let buf = term_start([&shell, &shellcmdflag, 'echo "123"']) |
0a61213afdd2
patch 8.0.0928: MS-Windows: passing arglist to job has escaping problems
Christian Brabandt <cb@256bit.org>
parents:
12086
diff
changeset
|
471 call assert_fails(buf . 'bwipe', 'E517') |
0a61213afdd2
patch 8.0.0928: MS-Windows: passing arglist to job has escaping problems
Christian Brabandt <cb@256bit.org>
parents:
12086
diff
changeset
|
472 exe buf . 'bwipe!' |
0a61213afdd2
patch 8.0.0928: MS-Windows: passing arglist to job has escaping problems
Christian Brabandt <cb@256bit.org>
parents:
12086
diff
changeset
|
473 call assert_equal("", bufname(buf)) |
0a61213afdd2
patch 8.0.0928: MS-Windows: passing arglist to job has escaping problems
Christian Brabandt <cb@256bit.org>
parents:
12086
diff
changeset
|
474 endfunction |
12154
71e10b81226d
patch 8.0.0957: a terminal job can deadlock when sending many keys
Christian Brabandt <cb@256bit.org>
parents:
12126
diff
changeset
|
475 |
71e10b81226d
patch 8.0.0957: a terminal job can deadlock when sending many keys
Christian Brabandt <cb@256bit.org>
parents:
12126
diff
changeset
|
476 func Test_terminal_noblock() |
12166
f512c507b061
patch 8.0.0963: terminal test fails on MacOS
Christian Brabandt <cb@256bit.org>
parents:
12156
diff
changeset
|
477 let g:buf = term_start(&shell) |
12339
040ec95b8647
patch 8.0.1049: shell on Mac can't handle long text
Christian Brabandt <cb@256bit.org>
parents:
12313
diff
changeset
|
478 if has('mac') |
040ec95b8647
patch 8.0.1049: shell on Mac can't handle long text
Christian Brabandt <cb@256bit.org>
parents:
12313
diff
changeset
|
479 " The shell or something else has a problem dealing with more than 1000 |
040ec95b8647
patch 8.0.1049: shell on Mac can't handle long text
Christian Brabandt <cb@256bit.org>
parents:
12313
diff
changeset
|
480 " characters at the same time. |
040ec95b8647
patch 8.0.1049: shell on Mac can't handle long text
Christian Brabandt <cb@256bit.org>
parents:
12313
diff
changeset
|
481 let len = 1000 |
040ec95b8647
patch 8.0.1049: shell on Mac can't handle long text
Christian Brabandt <cb@256bit.org>
parents:
12313
diff
changeset
|
482 else |
040ec95b8647
patch 8.0.1049: shell on Mac can't handle long text
Christian Brabandt <cb@256bit.org>
parents:
12313
diff
changeset
|
483 let len = 5000 |
040ec95b8647
patch 8.0.1049: shell on Mac can't handle long text
Christian Brabandt <cb@256bit.org>
parents:
12313
diff
changeset
|
484 endif |
12154
71e10b81226d
patch 8.0.0957: a terminal job can deadlock when sending many keys
Christian Brabandt <cb@256bit.org>
parents:
12126
diff
changeset
|
485 |
71e10b81226d
patch 8.0.0957: a terminal job can deadlock when sending many keys
Christian Brabandt <cb@256bit.org>
parents:
12126
diff
changeset
|
486 for c in ['a','b','c','d','e','f','g','h','i','j','k'] |
12339
040ec95b8647
patch 8.0.1049: shell on Mac can't handle long text
Christian Brabandt <cb@256bit.org>
parents:
12313
diff
changeset
|
487 call term_sendkeys(g:buf, 'echo ' . repeat(c, len) . "\<cr>") |
12154
71e10b81226d
patch 8.0.0957: a terminal job can deadlock when sending many keys
Christian Brabandt <cb@256bit.org>
parents:
12126
diff
changeset
|
488 endfor |
12166
f512c507b061
patch 8.0.0963: terminal test fails on MacOS
Christian Brabandt <cb@256bit.org>
parents:
12156
diff
changeset
|
489 call term_sendkeys(g:buf, "echo done\<cr>") |
12198
65cff399750b
patch 8.0.0979: terminal noblock test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12196
diff
changeset
|
490 |
65cff399750b
patch 8.0.0979: terminal noblock test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12196
diff
changeset
|
491 " On MS-Windows there is an extra empty line below "done". Find "done" in |
65cff399750b
patch 8.0.0979: terminal noblock test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12196
diff
changeset
|
492 " the last-but-one or the last-but-two line. |
12166
f512c507b061
patch 8.0.0963: terminal test fails on MacOS
Christian Brabandt <cb@256bit.org>
parents:
12156
diff
changeset
|
493 let g:lnum = term_getsize(g:buf)[0] - 1 |
12198
65cff399750b
patch 8.0.0979: terminal noblock test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12196
diff
changeset
|
494 call WaitFor('term_getline(g:buf, g:lnum) =~ "done" || term_getline(g:buf, g:lnum - 1) =~ "done"', 3000) |
65cff399750b
patch 8.0.0979: terminal noblock test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12196
diff
changeset
|
495 let line = term_getline(g:buf, g:lnum) |
65cff399750b
patch 8.0.0979: terminal noblock test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12196
diff
changeset
|
496 if line !~ 'done' |
65cff399750b
patch 8.0.0979: terminal noblock test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12196
diff
changeset
|
497 let line = term_getline(g:buf, g:lnum - 1) |
65cff399750b
patch 8.0.0979: terminal noblock test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12196
diff
changeset
|
498 endif |
65cff399750b
patch 8.0.0979: terminal noblock test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12196
diff
changeset
|
499 call assert_match('done', line) |
12154
71e10b81226d
patch 8.0.0957: a terminal job can deadlock when sending many keys
Christian Brabandt <cb@256bit.org>
parents:
12126
diff
changeset
|
500 |
12166
f512c507b061
patch 8.0.0963: terminal test fails on MacOS
Christian Brabandt <cb@256bit.org>
parents:
12156
diff
changeset
|
501 let g:job = term_getjob(g:buf) |
f512c507b061
patch 8.0.0963: terminal test fails on MacOS
Christian Brabandt <cb@256bit.org>
parents:
12156
diff
changeset
|
502 call Stop_shell_in_terminal(g:buf) |
f512c507b061
patch 8.0.0963: terminal test fails on MacOS
Christian Brabandt <cb@256bit.org>
parents:
12156
diff
changeset
|
503 call term_wait(g:buf) |
f512c507b061
patch 8.0.0963: terminal test fails on MacOS
Christian Brabandt <cb@256bit.org>
parents:
12156
diff
changeset
|
504 unlet g:buf |
f512c507b061
patch 8.0.0963: terminal test fails on MacOS
Christian Brabandt <cb@256bit.org>
parents:
12156
diff
changeset
|
505 unlet g:job |
f512c507b061
patch 8.0.0963: terminal test fails on MacOS
Christian Brabandt <cb@256bit.org>
parents:
12156
diff
changeset
|
506 unlet g:lnum |
12154
71e10b81226d
patch 8.0.0957: a terminal job can deadlock when sending many keys
Christian Brabandt <cb@256bit.org>
parents:
12126
diff
changeset
|
507 bwipe |
71e10b81226d
patch 8.0.0957: a terminal job can deadlock when sending many keys
Christian Brabandt <cb@256bit.org>
parents:
12126
diff
changeset
|
508 endfunc |
12196
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
509 |
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
510 func Test_terminal_write_stdin() |
12309
e1f44e4afe67
patch 8.0.1034: sending buffer lines to terminal doesn't work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12271
diff
changeset
|
511 if !executable('wc') |
12313
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
512 throw 'skipped: wc command not available' |
12196
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
513 endif |
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
514 new |
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
515 call setline(1, ['one', 'two', 'three']) |
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
516 %term wc |
12313
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
517 call WaitFor('getline("$") =~ "3"') |
12309
e1f44e4afe67
patch 8.0.1034: sending buffer lines to terminal doesn't work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12271
diff
changeset
|
518 let nrs = split(getline('$')) |
12196
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
519 call assert_equal(['3', '3', '14'], nrs) |
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
520 bwipe |
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
521 |
12313
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
522 new |
12196
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
523 call setline(1, ['one', 'two', 'three', 'four']) |
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
524 2,3term wc |
12313
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
525 call WaitFor('getline("$") =~ "2"') |
12309
e1f44e4afe67
patch 8.0.1034: sending buffer lines to terminal doesn't work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12271
diff
changeset
|
526 let nrs = split(getline('$')) |
12196
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
527 call assert_equal(['2', '2', '10'], nrs) |
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
528 bwipe |
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
529 |
12313
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
530 if executable('python') |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
531 new |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
532 call setline(1, ['print("hello")']) |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
533 1term ++eof=exit() python |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
534 " MS-Windows echoes the input, Unix doesn't. |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
535 call WaitFor('getline("$") =~ "exit" || getline(1) =~ "hello"') |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
536 if getline(1) =~ 'hello' |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
537 call assert_equal('hello', getline(1)) |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
538 else |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
539 call assert_equal('hello', getline(line('$') - 1)) |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
540 endif |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
541 bwipe |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
542 |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
543 if has('win32') |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
544 new |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
545 call setline(1, ['print("hello")']) |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
546 1term ++eof=<C-Z> python |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
547 call WaitFor('getline("$") =~ "Z"') |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
548 call assert_equal('hello', getline(line('$') - 1)) |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
549 bwipe |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
550 endif |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
551 endif |
44f3c9b7eec4
patch 8.0.1036: ++eof argument for terminal only available on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12309
diff
changeset
|
552 |
12196
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
553 bwipe! |
9237b087583c
patch 8.0.0978: writing to terminal job is not tested
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
554 endfunc |
12240
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12230
diff
changeset
|
555 |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12230
diff
changeset
|
556 func Test_terminal_no_cmd() |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12230
diff
changeset
|
557 " Todo: make this work in the GUI |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12230
diff
changeset
|
558 if !has('gui_running') |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12230
diff
changeset
|
559 return |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12230
diff
changeset
|
560 endif |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12230
diff
changeset
|
561 let buf = term_start('NONE', {}) |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12230
diff
changeset
|
562 call assert_notequal(0, buf) |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12230
diff
changeset
|
563 |
12389
d0cf7f71b95b
patch 8.0.1074: ":term NONE" does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12357
diff
changeset
|
564 let pty = job_info(term_getjob(buf))['tty_out'] |
12240
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12230
diff
changeset
|
565 call assert_notequal('', pty) |
12389
d0cf7f71b95b
patch 8.0.1074: ":term NONE" does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12357
diff
changeset
|
566 if has('win32') |
12475
827ad6758d33
patch 8.0.1117: Test_terminal_no_cmd hangs on MS-Windows with GUI
Christian Brabandt <cb@256bit.org>
parents:
12473
diff
changeset
|
567 silent exe '!start cmd /c "echo look here > ' . pty . '"' |
12389
d0cf7f71b95b
patch 8.0.1074: ":term NONE" does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12357
diff
changeset
|
568 else |
d0cf7f71b95b
patch 8.0.1074: ":term NONE" does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12357
diff
changeset
|
569 call system('echo "look here" > ' . pty) |
d0cf7f71b95b
patch 8.0.1074: ":term NONE" does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12357
diff
changeset
|
570 endif |
12475
827ad6758d33
patch 8.0.1117: Test_terminal_no_cmd hangs on MS-Windows with GUI
Christian Brabandt <cb@256bit.org>
parents:
12473
diff
changeset
|
571 let g:buf = buf |
827ad6758d33
patch 8.0.1117: Test_terminal_no_cmd hangs on MS-Windows with GUI
Christian Brabandt <cb@256bit.org>
parents:
12473
diff
changeset
|
572 call WaitFor('term_getline(g:buf, 1) =~ "look here"') |
12389
d0cf7f71b95b
patch 8.0.1074: ":term NONE" does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12357
diff
changeset
|
573 |
12475
827ad6758d33
patch 8.0.1117: Test_terminal_no_cmd hangs on MS-Windows with GUI
Christian Brabandt <cb@256bit.org>
parents:
12473
diff
changeset
|
574 call assert_match('look here', term_getline(buf, 1)) |
12240
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12230
diff
changeset
|
575 bwipe! |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12230
diff
changeset
|
576 endfunc |
12343
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
577 |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
578 func Test_terminal_special_chars() |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
579 " this file name only works on Unix |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
580 if !has('unix') |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
581 return |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
582 endif |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
583 call mkdir('Xdir with spaces') |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
584 call writefile(['x'], 'Xdir with spaces/quoted"file') |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
585 term ls Xdir\ with\ spaces/quoted\"file |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
586 call WaitFor('term_getline("", 1) =~ "quoted"') |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
587 call assert_match('quoted"file', term_getline('', 1)) |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
588 call term_wait('') |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
589 |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
590 call delete('Xdir with spaces', 'rf') |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
591 bwipe |
72046661f6d0
patch 8.0.1051: cannot run terminal with spaces in argument
Christian Brabandt <cb@256bit.org>
parents:
12339
diff
changeset
|
592 endfunc |
12345
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
593 |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
594 func Test_terminal_wrong_options() |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
595 call assert_fails('call term_start(&shell, { |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
596 \ "in_io": "file", |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
597 \ "in_name": "xxx", |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
598 \ "out_io": "file", |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
599 \ "out_name": "xxx", |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
600 \ "err_io": "file", |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
601 \ "err_name": "xxx" |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
602 \ })', 'E474:') |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
603 call assert_fails('call term_start(&shell, { |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
604 \ "out_buf": bufnr("%") |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
605 \ })', 'E474:') |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
606 call assert_fails('call term_start(&shell, { |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
607 \ "err_buf": bufnr("%") |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
608 \ })', 'E474:') |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
609 endfunc |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
610 |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
611 func Test_terminal_redir_file() |
12349
bb67396239a4
patch 8.0.1054: terminal test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12345
diff
changeset
|
612 " TODO: this should work on MS-Window |
bb67396239a4
patch 8.0.1054: terminal test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12345
diff
changeset
|
613 if has('unix') |
bb67396239a4
patch 8.0.1054: terminal test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12345
diff
changeset
|
614 let cmd = Get_cat_123_cmd() |
bb67396239a4
patch 8.0.1054: terminal test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12345
diff
changeset
|
615 let buf = term_start(cmd, {'out_io': 'file', 'out_name': 'Xfile'}) |
bb67396239a4
patch 8.0.1054: terminal test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12345
diff
changeset
|
616 call term_wait(buf) |
bb67396239a4
patch 8.0.1054: terminal test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12345
diff
changeset
|
617 call WaitFor('len(readfile("Xfile")) > 0') |
bb67396239a4
patch 8.0.1054: terminal test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12345
diff
changeset
|
618 call assert_match('123', readfile('Xfile')[0]) |
12415
cd66083e371e
patch 8.0.1087: Test_terminal_cwd is flaky
Christian Brabandt <cb@256bit.org>
parents:
12407
diff
changeset
|
619 let g:job = term_getjob(buf) |
cd66083e371e
patch 8.0.1087: Test_terminal_cwd is flaky
Christian Brabandt <cb@256bit.org>
parents:
12407
diff
changeset
|
620 call WaitFor('job_status(g:job) == "dead"') |
12349
bb67396239a4
patch 8.0.1054: terminal test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12345
diff
changeset
|
621 call delete('Xfile') |
12389
d0cf7f71b95b
patch 8.0.1074: ":term NONE" does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12357
diff
changeset
|
622 bwipe |
12349
bb67396239a4
patch 8.0.1054: terminal test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12345
diff
changeset
|
623 endif |
12345
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
624 |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
625 if has('unix') |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
626 call writefile(['one line'], 'Xfile') |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
627 let buf = term_start('cat', {'in_io': 'file', 'in_name': 'Xfile'}) |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
628 call term_wait(buf) |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
629 call WaitFor('term_getline(' . buf . ', 1) == "one line"') |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
630 call assert_equal('one line', term_getline(buf, 1)) |
12357
9a7fb1d01137
patch 8.0.1058: terminal redirection test is flaky
Christian Brabandt <cb@256bit.org>
parents:
12355
diff
changeset
|
631 let g:job = term_getjob(buf) |
9a7fb1d01137
patch 8.0.1058: terminal redirection test is flaky
Christian Brabandt <cb@256bit.org>
parents:
12355
diff
changeset
|
632 call WaitFor('job_status(g:job) == "dead"') |
12345
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
633 bwipe |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
634 call delete('Xfile') |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
635 endif |
76ab57a79183
patch 8.0.1052: term_start() does not allow in_io, out_io and err_io options
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
636 endfunc |
12457
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
637 |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
638 func TerminalTmap(remap) |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
639 let buf = Run_shell_in_terminal({}) |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
640 call assert_equal('t', mode()) |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
641 |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
642 if a:remap |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
643 tmap 123 456 |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
644 else |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
645 tnoremap 123 456 |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
646 endif |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
647 tmap 456 abcde |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
648 call assert_equal('456', maparg('123', 't')) |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
649 call assert_equal('abcde', maparg('456', 't')) |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
650 call feedkeys("123", 'tx') |
12473
27c5d8954231
patch 8.0.1116: terminal test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12457
diff
changeset
|
651 let g:buf = buf |
27c5d8954231
patch 8.0.1116: terminal test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12457
diff
changeset
|
652 call WaitFor("term_getline(g:buf,term_getcursor(g:buf)[0]) =~ 'abcde\\|456'") |
12457
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
653 let lnum = term_getcursor(buf)[0] |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
654 if a:remap |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
655 call assert_match('abcde', term_getline(buf, lnum)) |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
656 else |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
657 call assert_match('456', term_getline(buf, lnum)) |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
658 endif |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
659 |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
660 call term_sendkeys(buf, "\r") |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
661 call Stop_shell_in_terminal(buf) |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
662 call term_wait(buf) |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
663 |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
664 tunmap 123 |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
665 tunmap 456 |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
666 call assert_equal('', maparg('123', 't')) |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
667 close |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
668 unlet g:job |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
669 endfunc |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
670 |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
671 func Test_terminal_tmap() |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
672 call TerminalTmap(1) |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
673 call TerminalTmap(0) |
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12431
diff
changeset
|
674 endfunc |