blob: 6bb553c36a9b4d2af40b065d365b39c990db88f6 [file] [log] [blame]
Bram Moolenaar461a7fc2018-12-22 13:28:07 +01001" Tests for :messages, :echomsg, :echoerr
Bram Moolenaar451f8492016-04-14 17:16:22 +02002
Bram Moolenaarabc7c7f2019-04-20 15:10:13 +02003source shared.vim
Bram Moolenaarc6d539b2019-12-28 17:10:46 +01004source term_util.vim
Bram Moolenaarabc7c7f2019-04-20 15:10:13 +02005
Bram Moolenaar451f8492016-04-14 17:16:22 +02006function Test_messages()
7 let oldmore = &more
8 try
9 set nomore
Bram Moolenaarbea1ede2016-04-14 19:44:36 +020010 " Avoid the "message maintainer" line.
11 let $LANG = ''
Bram Moolenaar451f8492016-04-14 17:16:22 +020012
13 let arr = map(range(10), '"hello" . v:val')
14 for s in arr
15 echomsg s | redraw
16 endfor
17 let result = ''
18
Bram Moolenaarbea1ede2016-04-14 19:44:36 +020019 " get last two messages
Bram Moolenaar451f8492016-04-14 17:16:22 +020020 redir => result
21 2messages | redraw
22 redir END
Bram Moolenaarbea1ede2016-04-14 19:44:36 +020023 let msg_list = split(result, "\n")
24 call assert_equal(["hello8", "hello9"], msg_list)
Bram Moolenaar451f8492016-04-14 17:16:22 +020025
26 " clear messages without last one
27 1messages clear
28 redir => result
Bram Moolenaarbea1ede2016-04-14 19:44:36 +020029 redraw | messages
Bram Moolenaar451f8492016-04-14 17:16:22 +020030 redir END
Bram Moolenaarbea1ede2016-04-14 19:44:36 +020031 let msg_list = split(result, "\n")
32 call assert_equal(['hello9'], msg_list)
Bram Moolenaar451f8492016-04-14 17:16:22 +020033
34 " clear all messages
35 messages clear
36 redir => result
Bram Moolenaarbea1ede2016-04-14 19:44:36 +020037 redraw | messages
Bram Moolenaar451f8492016-04-14 17:16:22 +020038 redir END
Bram Moolenaarbea1ede2016-04-14 19:44:36 +020039 call assert_equal('', result)
Bram Moolenaar451f8492016-04-14 17:16:22 +020040 finally
41 let &more = oldmore
42 endtry
43endfunction
Bram Moolenaar2abad542018-05-19 14:43:45 +020044
Bram Moolenaarf52f9ea2018-06-27 20:49:44 +020045" Patch 7.4.1696 defined the "clearmode()" function for clearing the mode
Bram Moolenaar2abad542018-05-19 14:43:45 +020046" indicator (e.g., "-- INSERT --") when ":stopinsert" is invoked. Message
47" output could then be disturbed when 'cmdheight' was greater than one.
48" This test ensures that the bugfix for this issue remains in place.
Bram Moolenaar1e115362019-01-09 23:01:02 +010049func Test_stopinsert_does_not_break_message_output()
Bram Moolenaar2abad542018-05-19 14:43:45 +020050 set cmdheight=2
51 redraw!
52
53 stopinsert | echo 'test echo'
54 call assert_equal(116, screenchar(&lines - 1, 1))
55 call assert_equal(32, screenchar(&lines, 1))
56 redraw!
57
58 stopinsert | echomsg 'test echomsg'
59 call assert_equal(116, screenchar(&lines - 1, 1))
60 call assert_equal(32, screenchar(&lines, 1))
61 redraw!
62
63 set cmdheight&
Bram Moolenaar1e115362019-01-09 23:01:02 +010064endfunc
Bram Moolenaarb513d302018-12-02 14:55:08 +010065
66func Test_message_completion()
67 call feedkeys(":message \<C-A>\<C-B>\"\<CR>", 'tx')
68 call assert_equal('"message clear', @:)
69endfunc
Bram Moolenaar461a7fc2018-12-22 13:28:07 +010070
71func Test_echomsg()
72 call assert_equal("\nhello", execute(':echomsg "hello"'))
73 call assert_equal("\n", execute(':echomsg ""'))
74 call assert_equal("\n12345", execute(':echomsg 12345'))
75 call assert_equal("\n[]", execute(':echomsg []'))
76 call assert_equal("\n[1, 2, 3]", execute(':echomsg [1, 2, 3]'))
77 call assert_equal("\n{}", execute(':echomsg {}'))
78 call assert_equal("\n{'a': 1, 'b': 2}", execute(':echomsg {"a": 1, "b": 2}'))
79 if has('float')
80 call assert_equal("\n1.23", execute(':echomsg 1.23'))
81 endif
82 call assert_match("function('<lambda>\\d*')", execute(':echomsg {-> 1234}'))
83endfunc
84
85func Test_echoerr()
86 call test_ignore_error('IgNoRe')
87 call assert_equal("\nIgNoRe hello", execute(':echoerr "IgNoRe hello"'))
88 call assert_equal("\n12345 IgNoRe", execute(':echoerr 12345 "IgNoRe"'))
89 call assert_equal("\n[1, 2, 'IgNoRe']", execute(':echoerr [1, 2, "IgNoRe"]'))
90 call assert_equal("\n{'IgNoRe': 2, 'a': 1}", execute(':echoerr {"a": 1, "IgNoRe": 2}'))
91 if has('float')
92 call assert_equal("\n1.23 IgNoRe", execute(':echoerr 1.23 "IgNoRe"'))
93 endif
Bram Moolenaarce90e362019-09-08 18:58:44 +020094 eval '<lambda>'->test_ignore_error()
Bram Moolenaar461a7fc2018-12-22 13:28:07 +010095 call assert_match("function('<lambda>\\d*')", execute(':echoerr {-> 1234}'))
96 call test_ignore_error('RESET')
97endfunc
Bram Moolenaarabc7c7f2019-04-20 15:10:13 +020098
99func Test_mode_message_at_leaving_insert_by_ctrl_c()
100 if !has('terminal') || has('gui_running')
101 return
102 endif
103
104 " Set custom statusline built by user-defined function.
105 let testfile = 'Xtest.vim'
Bram Moolenaare7eb9272019-06-24 00:58:07 +0200106 let lines =<< trim END
107 func StatusLine() abort
108 return ""
109 endfunc
110 set statusline=%!StatusLine()
111 set laststatus=2
112 END
113 call writefile(lines, testfile)
Bram Moolenaarabc7c7f2019-04-20 15:10:13 +0200114
115 let rows = 10
116 let buf = term_start([GetVimProg(), '--clean', '-S', testfile], {'term_rows': rows})
117 call term_wait(buf, 200)
118 call assert_equal('run', job_status(term_getjob(buf)))
119
120 call term_sendkeys(buf, "i")
121 call WaitForAssert({-> assert_match('^-- INSERT --\s*$', term_getline(buf, rows))})
122 call term_sendkeys(buf, "\<C-C>")
123 call WaitForAssert({-> assert_match('^\s*$', term_getline(buf, rows))})
124
125 call term_sendkeys(buf, ":qall!\<CR>")
126 call WaitForAssert({-> assert_equal('dead', job_status(term_getjob(buf)))})
127 exe buf . 'bwipe!'
128 call delete(testfile)
129endfunc
Bram Moolenaar4c25bd72019-04-20 23:38:07 +0200130
131func Test_mode_message_at_leaving_insert_with_esc_mapped()
132 if !has('terminal') || has('gui_running')
133 return
134 endif
135
136 " Set custom statusline built by user-defined function.
137 let testfile = 'Xtest.vim'
Bram Moolenaare7eb9272019-06-24 00:58:07 +0200138 let lines =<< trim END
139 set laststatus=2
140 inoremap <Esc> <Esc>00
141 END
142 call writefile(lines, testfile)
Bram Moolenaar4c25bd72019-04-20 23:38:07 +0200143
144 let rows = 10
145 let buf = term_start([GetVimProg(), '--clean', '-S', testfile], {'term_rows': rows})
146 call term_wait(buf, 200)
147 call assert_equal('run', job_status(term_getjob(buf)))
148
149 call term_sendkeys(buf, "i")
150 call WaitForAssert({-> assert_match('^-- INSERT --\s*$', term_getline(buf, rows))})
151 call term_sendkeys(buf, "\<Esc>")
152 call WaitForAssert({-> assert_match('^\s*$', term_getline(buf, rows))})
153
154 call term_sendkeys(buf, ":qall!\<CR>")
155 call WaitForAssert({-> assert_equal('dead', job_status(term_getjob(buf)))})
156 exe buf . 'bwipe!'
157 call delete(testfile)
158endfunc
Bram Moolenaar37f4cbd2019-08-23 20:58:45 +0200159
160func Test_echospace()
161 set noruler noshowcmd laststatus=1
162 call assert_equal(&columns - 1, v:echospace)
163 split
164 call assert_equal(&columns - 1, v:echospace)
165 set ruler
166 call assert_equal(&columns - 1, v:echospace)
167 close
168 call assert_equal(&columns - 19, v:echospace)
169 set showcmd noruler
170 call assert_equal(&columns - 12, v:echospace)
171 set showcmd ruler
172 call assert_equal(&columns - 29, v:echospace)
173
174 set ruler& showcmd&
175endfunc
Bram Moolenaarc6d539b2019-12-28 17:10:46 +0100176
177" Test more-prompt (see :help more-prompt).
178func Test_message_more()
179 if !CanRunVimInTerminal()
180 throw 'Skipped: cannot run vim in terminal'
181 endif
182 let buf = RunVimInTerminal('', {'rows': 6})
183 call term_sendkeys(buf, ":call setline(1, range(1, 100))\n")
184
185 call term_sendkeys(buf, ":%p#\n")
186 call WaitForAssert({-> assert_equal(' 5 5', term_getline(buf, 5))})
187 call WaitForAssert({-> assert_equal('-- More --', term_getline(buf, 6))})
188
189 call term_sendkeys(buf, '?')
190 call WaitForAssert({-> assert_equal(' 5 5', term_getline(buf, 5))})
191 call WaitForAssert({-> assert_equal('-- More -- SPACE/d/j: screen/page/line down, b/u/k: up, q: quit ', term_getline(buf, 6))})
192
193 " Down a line with j, <CR>, <NL> or <Down>.
194 call term_sendkeys(buf, "j")
195 call WaitForAssert({-> assert_equal(' 6 6', term_getline(buf, 5))})
196 call WaitForAssert({-> assert_equal('-- More --', term_getline(buf, 6))})
197 call term_sendkeys(buf, "\<NL>")
198 call WaitForAssert({-> assert_equal(' 7 7', term_getline(buf, 5))})
199 call term_sendkeys(buf, "\<CR>")
200 call WaitForAssert({-> assert_equal(' 8 8', term_getline(buf, 5))})
201 call term_sendkeys(buf, "\<Down>")
202 call WaitForAssert({-> assert_equal(' 9 9', term_getline(buf, 5))})
203
204 " Down a screen with <Space>, f, or <PageDown>.
205 call term_sendkeys(buf, 'f')
206 call WaitForAssert({-> assert_equal(' 14 14', term_getline(buf, 5))})
207 call WaitForAssert({-> assert_equal('-- More --', term_getline(buf, 6))})
208 call term_sendkeys(buf, ' ')
209 call WaitForAssert({-> assert_equal(' 19 19', term_getline(buf, 5))})
210 call term_sendkeys(buf, "\<PageDown>")
211 call WaitForAssert({-> assert_equal(' 24 24', term_getline(buf, 5))})
212
213 " Down a page (half a screen) with d.
214 call term_sendkeys(buf, 'd')
215 call WaitForAssert({-> assert_equal(' 27 27', term_getline(buf, 5))})
216
217 " Down all the way with 'G'.
218 call term_sendkeys(buf, 'G')
219 call WaitForAssert({-> assert_equal('100 100', term_getline(buf, 5))})
220 call WaitForAssert({-> assert_equal('Press ENTER or type command to continue', term_getline(buf, 6))})
221
222 " Up a line k, <BS> or <Up>.
223 call term_sendkeys(buf, 'k')
224 call WaitForAssert({-> assert_equal(' 99 99', term_getline(buf, 5))})
225 call term_sendkeys(buf, "\<BS>")
226 call WaitForAssert({-> assert_equal(' 98 98', term_getline(buf, 5))})
227 call term_sendkeys(buf, "\<Up>")
228 call WaitForAssert({-> assert_equal(' 97 97', term_getline(buf, 5))})
229
230 " Up a screen with b or <PageUp>.
231 call term_sendkeys(buf, 'b')
232 call WaitForAssert({-> assert_equal(' 92 92', term_getline(buf, 5))})
233 call term_sendkeys(buf, "\<PageUp>")
234 call WaitForAssert({-> assert_equal(' 87 87', term_getline(buf, 5))})
235
236 " Up a page (half a screen) with u.
237 call term_sendkeys(buf, 'u')
238 call WaitForAssert({-> assert_equal(' 84 84', term_getline(buf, 5))})
239
240 " Up all the way with 'g'.
241 call term_sendkeys(buf, 'g')
242 call WaitForAssert({-> assert_equal(' 5 5', term_getline(buf, 5))})
243 call WaitForAssert({-> assert_equal('-- More --', term_getline(buf, 6))})
244
245 " All the way down. Pressing f should do nothing but pressing
246 " space should end the more prompt.
247 call term_sendkeys(buf, 'G')
248 call WaitForAssert({-> assert_equal('100 100', term_getline(buf, 5))})
249 call WaitForAssert({-> assert_equal('Press ENTER or type command to continue', term_getline(buf, 6))})
250 call term_sendkeys(buf, 'f')
251 call WaitForAssert({-> assert_equal('100 100', term_getline(buf, 5))})
252 call term_sendkeys(buf, ' ')
253 call WaitForAssert({-> assert_equal('100', term_getline(buf, 5))})
254
255 " Pressing g< shows the previous command output.
256 call term_sendkeys(buf, 'g<')
257 call WaitForAssert({-> assert_equal('100 100', term_getline(buf, 5))})
258 call WaitForAssert({-> assert_equal('Press ENTER or type command to continue', term_getline(buf, 6))})
259
260 call term_sendkeys(buf, ":%p#\n")
261 call WaitForAssert({-> assert_equal(' 5 5', term_getline(buf, 5))})
262 call WaitForAssert({-> assert_equal('-- More --', term_getline(buf, 6))})
263
264 " Stop command output with q, <Esc> or CTRL-C.
265 call term_sendkeys(buf, 'q')
266 call WaitForAssert({-> assert_equal('100', term_getline(buf, 5))})
267
268 call term_sendkeys(buf, ':q!')
269 call StopVimInTerminal(buf)
270endfunc