mirror of
https://github.com/neovim/neovim.git
synced 2025-09-20 18:28:19 +00:00
vim-patch:8.2.0243: insufficient code coverage for ex_docmd.c functions
Problem: Insufficient code coverage for ex_docmd.c functions.
Solution: Add more tests. (Yegappan Lakshmanan, closes vim/vim#5618)
9f6277bdde
Cherry-pick Test_window_only() from patch 8.2.0203.
Cherry-pick a memory leak fix from patch 8.2.0399.
This commit is contained in:
@@ -908,6 +908,15 @@ int do_cmdline(char *cmdline, LineGetter fgetline, void *cookie, int flags)
|
|||||||
|
|
||||||
msg_list = saved_msg_list;
|
msg_list = saved_msg_list;
|
||||||
|
|
||||||
|
// Cleanup if "cs_emsg_silent_list" remains.
|
||||||
|
if (cstack.cs_emsg_silent_list != NULL) {
|
||||||
|
eslist_T *elem, *temp;
|
||||||
|
for (elem = cstack.cs_emsg_silent_list; elem != NULL; elem = temp) {
|
||||||
|
temp = elem->next;
|
||||||
|
xfree(elem);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If there was too much output to fit on the command line, ask the user to
|
* If there was too much output to fit on the command line, ask the user to
|
||||||
* hit return before redrawing the screen. With the ":global" command we do
|
* hit return before redrawing the screen. With the ":global" command we do
|
||||||
|
@@ -1,5 +1,8 @@
|
|||||||
" Test argument list commands
|
" Test argument list commands
|
||||||
|
|
||||||
|
source shared.vim
|
||||||
|
source term_util.vim
|
||||||
|
|
||||||
func Reset_arglist()
|
func Reset_arglist()
|
||||||
args a | %argd
|
args a | %argd
|
||||||
endfunc
|
endfunc
|
||||||
@@ -510,3 +513,17 @@ func Test_argdo()
|
|||||||
call assert_equal(['Xa.c', 'Xb.c', 'Xc.c'], l)
|
call assert_equal(['Xa.c', 'Xb.c', 'Xc.c'], l)
|
||||||
bwipe Xa.c Xb.c Xc.c
|
bwipe Xa.c Xb.c Xc.c
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" Test for quiting Vim with unedited files in the argument list
|
||||||
|
func Test_quit_with_arglist()
|
||||||
|
if !CanRunVimInTerminal()
|
||||||
|
throw 'Skipped: cannot run vim in terminal'
|
||||||
|
endif
|
||||||
|
let buf = RunVimInTerminal('', {'rows': 6})
|
||||||
|
call term_sendkeys(buf, ":args a b c\n")
|
||||||
|
call term_sendkeys(buf, ":quit\n")
|
||||||
|
call WaitForAssert({-> assert_match('^E173:', term_getline(buf, 6))})
|
||||||
|
call StopVimInTerminal(buf)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
" vim: shiftwidth=2 sts=2 expandtab
|
||||||
|
@@ -64,6 +64,29 @@ func Test_ex_mode()
|
|||||||
let &encoding = encoding_save
|
let &encoding = encoding_save
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" Test for displaying lines from an empty buffer in Ex mode
|
||||||
|
func Test_Ex_emptybuf()
|
||||||
|
new
|
||||||
|
call assert_fails('call feedkeys("Q\<CR>", "xt")', 'E749:')
|
||||||
|
call setline(1, "abc")
|
||||||
|
call assert_fails('call feedkeys("Q\<CR>", "xt")', 'E501:')
|
||||||
|
call assert_fails('call feedkeys("Q%d\<CR>", "xt")', 'E749:')
|
||||||
|
close!
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
" Test for the :open command
|
||||||
|
func Test_open_command()
|
||||||
|
throw 'Skipped: Nvim does not have :open'
|
||||||
|
new
|
||||||
|
call setline(1, ['foo foo', 'foo bar', 'foo baz'])
|
||||||
|
call feedkeys("Qopen\<CR>j", 'xt')
|
||||||
|
call assert_equal('foo bar', getline('.'))
|
||||||
|
call feedkeys("Qopen /bar/\<CR>", 'xt')
|
||||||
|
call assert_equal(5, col('.'))
|
||||||
|
call assert_fails('call feedkeys("Qopen /baz/\<CR>", "xt")', 'E479:')
|
||||||
|
close!
|
||||||
|
endfunc
|
||||||
|
|
||||||
" Test for :g/pat/visual to run vi commands in Ex mode
|
" Test for :g/pat/visual to run vi commands in Ex mode
|
||||||
" This used to hang Vim before 8.2.0274.
|
" This used to hang Vim before 8.2.0274.
|
||||||
func Test_Ex_global()
|
func Test_Ex_global()
|
||||||
|
@@ -22,6 +22,7 @@ func Test_range_error()
|
|||||||
call assert_fails(':\/echo 1', 'E481:')
|
call assert_fails(':\/echo 1', 'E481:')
|
||||||
normal vv
|
normal vv
|
||||||
call assert_fails(":'<,'>echo 1", 'E481:')
|
call assert_fails(":'<,'>echo 1", 'E481:')
|
||||||
|
call assert_fails(":\\xcenter", 'E10:')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_buffers_lastused()
|
func Test_buffers_lastused()
|
||||||
@@ -391,6 +392,11 @@ func Test_confirm_write_partial_file()
|
|||||||
call delete('Xscript')
|
call delete('Xscript')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" Test for the :print command
|
||||||
|
func Test_print_cmd()
|
||||||
|
call assert_fails('print', 'E749:')
|
||||||
|
endfunc
|
||||||
|
|
||||||
" Test for the :winsize command
|
" Test for the :winsize command
|
||||||
func Test_winsize_cmd()
|
func Test_winsize_cmd()
|
||||||
call assert_fails('winsize 1', 'E465:')
|
call assert_fails('winsize 1', 'E465:')
|
||||||
@@ -399,6 +405,33 @@ func Test_winsize_cmd()
|
|||||||
" Actually changing the window size would be flaky.
|
" Actually changing the window size would be flaky.
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" Test for the :redir command
|
||||||
|
func Test_redir_cmd()
|
||||||
|
call assert_fails('redir @@', 'E475:')
|
||||||
|
call assert_fails('redir abc', 'E475:')
|
||||||
|
if has('unix')
|
||||||
|
call mkdir('Xdir')
|
||||||
|
call assert_fails('redir > Xdir', 'E17:')
|
||||||
|
call delete('Xdir', 'd')
|
||||||
|
endif
|
||||||
|
if !has('bsd')
|
||||||
|
call writefile([], 'Xfile')
|
||||||
|
call setfperm('Xfile', 'r--r--r--')
|
||||||
|
call assert_fails('redir! > Xfile', 'E190:')
|
||||||
|
call delete('Xfile')
|
||||||
|
endif
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
" Test for the :filetype command
|
||||||
|
func Test_filetype_cmd()
|
||||||
|
call assert_fails('filetype abc', 'E475:')
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
" Test for the :mode command
|
||||||
|
func Test_mode_cmd()
|
||||||
|
call assert_fails('mode abc', 'E359:')
|
||||||
|
endfunc
|
||||||
|
|
||||||
" Test for running Ex commands when text is locked.
|
" Test for running Ex commands when text is locked.
|
||||||
" <C-\>e in the command line is used to lock the text
|
" <C-\>e in the command line is used to lock the text
|
||||||
func Test_run_excmd_with_text_locked()
|
func Test_run_excmd_with_text_locked()
|
||||||
|
@@ -643,6 +643,13 @@ func Test_map_error()
|
|||||||
map <expr> ,f abc
|
map <expr> ,f abc
|
||||||
call assert_fails('normal ,f', 'E121:')
|
call assert_fails('normal ,f', 'E121:')
|
||||||
unmap <expr> ,f
|
unmap <expr> ,f
|
||||||
|
|
||||||
|
" Recursive use of :normal in a map
|
||||||
|
set maxmapdepth=100
|
||||||
|
map gq :normal gq<CR>
|
||||||
|
call assert_fails('normal gq', 'E192:')
|
||||||
|
unmap gq
|
||||||
|
set maxmapdepth&
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
" Test for <special> key mapping
|
" Test for <special> key mapping
|
||||||
|
@@ -2858,10 +2858,6 @@ func XvimgrepTests(cchar)
|
|||||||
call assert_equal(0, getbufinfo('Xtestfile1')[0].loaded)
|
call assert_equal(0, getbufinfo('Xtestfile1')[0].loaded)
|
||||||
call assert_equal([], getbufinfo('Xtestfile2'))
|
call assert_equal([], getbufinfo('Xtestfile2'))
|
||||||
|
|
||||||
" Test with the last search pattern not set
|
|
||||||
call test_clear_search_pat()
|
|
||||||
call assert_fails('Xvimgrep // *', 'E35:')
|
|
||||||
|
|
||||||
call delete('Xtestfile1')
|
call delete('Xtestfile1')
|
||||||
call delete('Xtestfile2')
|
call delete('Xtestfile2')
|
||||||
endfunc
|
endfunc
|
||||||
@@ -2895,6 +2891,21 @@ func Test_vimgrep_incsearch()
|
|||||||
set noincsearch
|
set noincsearch
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" Test vimgrep with the last search pattern not set
|
||||||
|
func Test_vimgrep_with_no_last_search_pat()
|
||||||
|
let lines =<< trim [SCRIPT]
|
||||||
|
call assert_fails('vimgrep // *', 'E35:')
|
||||||
|
call writefile(v:errors, 'Xresult')
|
||||||
|
qall!
|
||||||
|
[SCRIPT]
|
||||||
|
call writefile(lines, 'Xscript')
|
||||||
|
if RunVim([], [], '--clean -S Xscript')
|
||||||
|
call assert_equal([], readfile('Xresult'))
|
||||||
|
endif
|
||||||
|
call delete('Xscript')
|
||||||
|
call delete('Xresult')
|
||||||
|
endfunc
|
||||||
|
|
||||||
" Test vimgrep without swap file
|
" Test vimgrep without swap file
|
||||||
func Test_vimgrep_without_swap_file()
|
func Test_vimgrep_without_swap_file()
|
||||||
let lines =<< trim [SCRIPT]
|
let lines =<< trim [SCRIPT]
|
||||||
|
@@ -1542,42 +1542,62 @@ func Test_search_special()
|
|||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
" Test for command failures when the last search pattern is not set.
|
" Test for command failures when the last search pattern is not set.
|
||||||
|
" Need to run this in a new vim instance where last search pattern is not set.
|
||||||
func Test_search_with_no_last_pat()
|
func Test_search_with_no_last_pat()
|
||||||
call test_clear_search_pat()
|
let lines =<< trim [SCRIPT]
|
||||||
call assert_fails("normal i\<C-R>/\e", 'E35:')
|
call assert_fails("normal i\<C-R>/\e", 'E35:')
|
||||||
call assert_fails("exe '/'", 'E35:')
|
call assert_fails("exe '/'", 'E35:')
|
||||||
call assert_fails("exe '?'", 'E35:')
|
call assert_fails("exe '?'", 'E35:')
|
||||||
call assert_fails("/", 'E35:')
|
call assert_fails("/", 'E35:')
|
||||||
call assert_fails("?", 'E35:')
|
call assert_fails("?", 'E35:')
|
||||||
call assert_fails("normal n", 'E35:')
|
call assert_fails("normal n", 'E35:')
|
||||||
call assert_fails("normal N", 'E35:')
|
call assert_fails("normal N", 'E35:')
|
||||||
call assert_fails("normal gn", 'E35:')
|
call assert_fails("normal gn", 'E35:')
|
||||||
call assert_fails("normal gN", 'E35:')
|
call assert_fails("normal gN", 'E35:')
|
||||||
call assert_fails("normal cgn", 'E35:')
|
call assert_fails("normal cgn", 'E35:')
|
||||||
call assert_fails("normal cgN", 'E35:')
|
call assert_fails("normal cgN", 'E35:')
|
||||||
let p = []
|
let p = []
|
||||||
let p = @/
|
let p = @/
|
||||||
call assert_equal('', p)
|
call assert_equal('', p)
|
||||||
call assert_fails("normal :\<C-R>/", 'E35:')
|
call assert_fails("normal :\<C-R>/", 'E35:')
|
||||||
call assert_fails("//p", 'E35:')
|
call assert_fails("//p", 'E35:')
|
||||||
call assert_fails(";//p", 'E35:')
|
call assert_fails(";//p", 'E35:')
|
||||||
call assert_fails("??p", 'E35:')
|
call assert_fails("??p", 'E35:')
|
||||||
call assert_fails(";??p", 'E35:')
|
call assert_fails(";??p", 'E35:')
|
||||||
call assert_fails('g//p', 'E476:')
|
call assert_fails('g//p', 'E476:')
|
||||||
call assert_fails('v//p', 'E476:')
|
call assert_fails('v//p', 'E476:')
|
||||||
|
call writefile(v:errors, 'Xresult')
|
||||||
|
qall!
|
||||||
|
[SCRIPT]
|
||||||
|
call writefile(lines, 'Xscript')
|
||||||
|
|
||||||
|
if RunVim([], [], '--clean -S Xscript')
|
||||||
|
call assert_equal([], readfile('Xresult'))
|
||||||
|
endif
|
||||||
|
call delete('Xscript')
|
||||||
|
call delete('Xresult')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
" Test for using tilde (~) atom in search. This should use the last used
|
" Test for using tilde (~) atom in search. This should use the last used
|
||||||
" substitute pattern
|
" substitute pattern
|
||||||
func Test_search_tilde_pat()
|
func Test_search_tilde_pat()
|
||||||
call test_clear_search_pat()
|
let lines =<< trim [SCRIPT]
|
||||||
set regexpengine=1
|
set regexpengine=1
|
||||||
call assert_fails('exe "normal /~\<CR>"', 'E33:')
|
call assert_fails('exe "normal /~\<CR>"', 'E33:')
|
||||||
call assert_fails('exe "normal ?~\<CR>"', 'E33:')
|
call assert_fails('exe "normal ?~\<CR>"', 'E33:')
|
||||||
set regexpengine=2
|
set regexpengine=2
|
||||||
call assert_fails('exe "normal /~\<CR>"', 'E383:')
|
call assert_fails('exe "normal /~\<CR>"', 'E383:')
|
||||||
call assert_fails('exe "normal ?~\<CR>"', 'E383:')
|
call assert_fails('exe "normal ?~\<CR>"', 'E383:')
|
||||||
set regexpengine&
|
set regexpengine&
|
||||||
|
call writefile(v:errors, 'Xresult')
|
||||||
|
qall!
|
||||||
|
[SCRIPT]
|
||||||
|
call writefile(lines, 'Xscript')
|
||||||
|
if RunVim([], [], '--clean -S Xscript')
|
||||||
|
call assert_equal([], readfile('Xresult'))
|
||||||
|
endif
|
||||||
|
call delete('Xscript')
|
||||||
|
call delete('Xresult')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
" Test 'smartcase' with utf-8.
|
" Test 'smartcase' with utf-8.
|
||||||
|
@@ -1486,11 +1486,25 @@ func Test_sort_last_search_pat()
|
|||||||
call setline(1, ['3b', '1c', '2a'])
|
call setline(1, ['3b', '1c', '2a'])
|
||||||
sort //
|
sort //
|
||||||
call assert_equal(['2a', '3b', '1c'], getline(1, '$'))
|
call assert_equal(['2a', '3b', '1c'], getline(1, '$'))
|
||||||
call test_clear_search_pat()
|
|
||||||
call assert_fails('sort //', 'E35:')
|
|
||||||
close!
|
close!
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" Test for :sort with no last search pattern
|
||||||
|
func Test_sort_with_no_last_search_pat()
|
||||||
|
let lines =<< trim [SCRIPT]
|
||||||
|
call setline(1, ['3b', '1c', '2a'])
|
||||||
|
call assert_fails('sort //', 'E35:')
|
||||||
|
call writefile(v:errors, 'Xresult')
|
||||||
|
qall!
|
||||||
|
[SCRIPT]
|
||||||
|
call writefile(lines, 'Xscript')
|
||||||
|
if RunVim([], [], '--clean -S Xscript')
|
||||||
|
call assert_equal([], readfile('Xresult'))
|
||||||
|
endif
|
||||||
|
call delete('Xscript')
|
||||||
|
call delete('Xresult')
|
||||||
|
endfunc
|
||||||
|
|
||||||
" Test for retaining marks across a :sort
|
" Test for retaining marks across a :sort
|
||||||
func Test_sort_with_marks()
|
func Test_sort_with_marks()
|
||||||
new
|
new
|
||||||
|
@@ -57,3 +57,13 @@ func Test_different_script()
|
|||||||
call assert_fails('source XtwoScript', 'E121:')
|
call assert_fails('source XtwoScript', 'E121:')
|
||||||
call delete('XtwoScript')
|
call delete('XtwoScript')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" When sourcing a vim script, shebang should be ignored.
|
||||||
|
func Test_source_ignore_shebang()
|
||||||
|
call writefile(['#!./xyzabc', 'let g:val=369'], 'Xfile.vim')
|
||||||
|
source Xfile.vim
|
||||||
|
call assert_equal(g:val, 369)
|
||||||
|
call delete('Xfile.vim')
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
" vim: shiftwidth=2 sts=2 expandtab
|
||||||
|
@@ -294,7 +294,7 @@ endfunc
|
|||||||
|
|
||||||
" Test for *:s%* on :substitute.
|
" Test for *:s%* on :substitute.
|
||||||
func Test_sub_cmd_6()
|
func Test_sub_cmd_6()
|
||||||
throw "skipped: Nvim removed POSIX-related 'cpoptions' flags"
|
throw 'Skipped: Nvim does not support cpoptions flag "/"'
|
||||||
set magic&
|
set magic&
|
||||||
set cpo+=/
|
set cpo+=/
|
||||||
|
|
||||||
@@ -810,17 +810,33 @@ endfunc
|
|||||||
|
|
||||||
" Test for command failures when the last substitute pattern is not set.
|
" Test for command failures when the last substitute pattern is not set.
|
||||||
func Test_sub_with_no_last_pat()
|
func Test_sub_with_no_last_pat()
|
||||||
call test_clear_search_pat()
|
let lines =<< trim [SCRIPT]
|
||||||
call assert_fails('~', 'E33:')
|
call assert_fails('~', 'E33:')
|
||||||
call assert_fails('s//abc/g', 'E476:')
|
call assert_fails('s//abc/g', 'E476:')
|
||||||
call assert_fails('s\/bar', 'E476:')
|
call assert_fails('s\/bar', 'E476:')
|
||||||
call assert_fails('s\&bar&', 'E476:')
|
call assert_fails('s\&bar&', 'E476:')
|
||||||
|
call writefile(v:errors, 'Xresult')
|
||||||
|
qall!
|
||||||
|
[SCRIPT]
|
||||||
|
call writefile(lines, 'Xscript')
|
||||||
|
if RunVim([], [], '--clean -S Xscript')
|
||||||
|
call assert_equal([], readfile('Xresult'))
|
||||||
|
endif
|
||||||
|
|
||||||
call test_clear_search_pat()
|
" Nvim does not support cpoptions flag "/"'
|
||||||
let save_cpo = &cpo
|
" let lines =<< trim [SCRIPT]
|
||||||
set cpo+=/
|
" set cpo+=/
|
||||||
call assert_fails('s/abc/%/', 'E33:')
|
" call assert_fails('s/abc/%/', 'E33:')
|
||||||
let &cpo = save_cpo
|
" call writefile(v:errors, 'Xresult')
|
||||||
|
" qall!
|
||||||
|
" [SCRIPT]
|
||||||
|
" call writefile(lines, 'Xscript')
|
||||||
|
" if RunVim([], [], '--clean -S Xscript')
|
||||||
|
" call assert_equal([], readfile('Xresult'))
|
||||||
|
" endif
|
||||||
|
|
||||||
|
call delete('Xscript')
|
||||||
|
call delete('Xresult')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_submatch_list_concatenate()
|
func Test_submatch_list_concatenate()
|
||||||
|
@@ -299,6 +299,8 @@ func Test_undo_write()
|
|||||||
close!
|
close!
|
||||||
call delete('Xtest')
|
call delete('Xtest')
|
||||||
bwipe! Xtest
|
bwipe! Xtest
|
||||||
|
|
||||||
|
call assert_fails('earlier xyz', 'E475:')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_insert_expr()
|
func Test_insert_expr()
|
||||||
|
@@ -1771,6 +1771,92 @@ func Test_function_defined_line()
|
|||||||
call delete('Xtest.vim')
|
call delete('Xtest.vim')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" Test for missing :endif, :endfor, :endwhile and :endtry {{{1
|
||||||
|
func Test_missing_end()
|
||||||
|
call writefile(['if 2 > 1', 'echo ">"'], 'Xscript')
|
||||||
|
call assert_fails('source Xscript', 'E171:')
|
||||||
|
call writefile(['for i in range(5)', 'echo i'], 'Xscript')
|
||||||
|
call assert_fails('source Xscript', 'E170:')
|
||||||
|
call writefile(['while v:true', 'echo "."'], 'Xscript')
|
||||||
|
call assert_fails('source Xscript', 'E170:')
|
||||||
|
call writefile(['try', 'echo "."'], 'Xscript')
|
||||||
|
call assert_fails('source Xscript', 'E600:')
|
||||||
|
call delete('Xscript')
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
" Test for deep nesting of if/for/while/try statements {{{1
|
||||||
|
func Test_deep_nest()
|
||||||
|
if !CanRunVimInTerminal()
|
||||||
|
throw 'Skipped: cannot run vim in terminal'
|
||||||
|
endif
|
||||||
|
|
||||||
|
let lines =<< trim [SCRIPT]
|
||||||
|
" Deep nesting of if ... endif
|
||||||
|
func Test1()
|
||||||
|
let @a = join(repeat(['if v:true'], 51), "\n")
|
||||||
|
let @a ..= "\n"
|
||||||
|
let @a ..= join(repeat(['endif'], 51), "\n")
|
||||||
|
@a
|
||||||
|
let @a = ''
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
" Deep nesting of for ... endfor
|
||||||
|
func Test2()
|
||||||
|
let @a = join(repeat(['for i in [1]'], 51), "\n")
|
||||||
|
let @a ..= "\n"
|
||||||
|
let @a ..= join(repeat(['endfor'], 51), "\n")
|
||||||
|
@a
|
||||||
|
let @a = ''
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
" Deep nesting of while ... endwhile
|
||||||
|
func Test3()
|
||||||
|
let @a = join(repeat(['while v:true'], 51), "\n")
|
||||||
|
let @a ..= "\n"
|
||||||
|
let @a ..= join(repeat(['endwhile'], 51), "\n")
|
||||||
|
@a
|
||||||
|
let @a = ''
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
" Deep nesting of try ... endtry
|
||||||
|
func Test4()
|
||||||
|
let @a = join(repeat(['try'], 51), "\n")
|
||||||
|
let @a ..= "\necho v:true\n"
|
||||||
|
let @a ..= join(repeat(['endtry'], 51), "\n")
|
||||||
|
@a
|
||||||
|
let @a = ''
|
||||||
|
endfunc
|
||||||
|
[SCRIPT]
|
||||||
|
call writefile(lines, 'Xscript')
|
||||||
|
|
||||||
|
let buf = RunVimInTerminal('-S Xscript', {'rows': 6})
|
||||||
|
|
||||||
|
" Deep nesting of if ... endif
|
||||||
|
call term_sendkeys(buf, ":call Test1()\n")
|
||||||
|
call WaitForAssert({-> assert_match('^E579:', term_getline(buf, 5))})
|
||||||
|
|
||||||
|
" Deep nesting of for ... endfor
|
||||||
|
call term_sendkeys(buf, ":call Test2()\n")
|
||||||
|
call WaitForAssert({-> assert_match('^E585:', term_getline(buf, 5))})
|
||||||
|
|
||||||
|
" Deep nesting of while ... endwhile
|
||||||
|
call term_sendkeys(buf, ":call Test3()\n")
|
||||||
|
call WaitForAssert({-> assert_match('^E585:', term_getline(buf, 5))})
|
||||||
|
|
||||||
|
" Deep nesting of try ... endtry
|
||||||
|
call term_sendkeys(buf, ":call Test4()\n")
|
||||||
|
call WaitForAssert({-> assert_match('^E601:', term_getline(buf, 5))})
|
||||||
|
|
||||||
|
"let l = ''
|
||||||
|
"for i in range(1, 6)
|
||||||
|
" let l ..= term_getline(buf, i) . "\n"
|
||||||
|
"endfor
|
||||||
|
"call assert_report(l)
|
||||||
|
|
||||||
|
call StopVimInTerminal(buf)
|
||||||
|
call delete('Xscript')
|
||||||
|
endfunc
|
||||||
|
|
||||||
func Test_for_over_string()
|
func Test_for_over_string()
|
||||||
let res = ''
|
let res = ''
|
||||||
for c in 'aéc̀d'
|
for c in 'aéc̀d'
|
||||||
|
@@ -886,6 +886,30 @@ func Test_floatwin_splitmove()
|
|||||||
bwipe
|
bwipe
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" Test for the :only command
|
||||||
|
func Test_window_only()
|
||||||
|
new
|
||||||
|
set modified
|
||||||
|
new
|
||||||
|
call assert_fails('only', 'E445:')
|
||||||
|
only!
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
" Test for errors with :wincmd
|
||||||
|
func Test_wincmd_errors()
|
||||||
|
call assert_fails('wincmd g', 'E474:')
|
||||||
|
call assert_fails('wincmd ab', 'E474:')
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
" Test for errors with :winpos
|
||||||
|
func Test_winpos_errors()
|
||||||
|
throw 'Skipped: Nvim does not have :winpos'
|
||||||
|
if !has("gui_running") && !has('win32')
|
||||||
|
call assert_fails('winpos', 'E188:')
|
||||||
|
endif
|
||||||
|
call assert_fails('winpos 10', 'E466:')
|
||||||
|
endfunc
|
||||||
|
|
||||||
func Test_window_resize()
|
func Test_window_resize()
|
||||||
throw 'Skipped: Nvim supports cmdheight=0'
|
throw 'Skipped: Nvim supports cmdheight=0'
|
||||||
" Vertical :resize (absolute, relative, min and max size).
|
" Vertical :resize (absolute, relative, min and max size).
|
||||||
|
@@ -3,6 +3,7 @@
|
|||||||
local helpers = require('test.functional.helpers')(after_each)
|
local helpers = require('test.functional.helpers')(after_each)
|
||||||
local clear, command, eq = helpers.clear, helpers.command, helpers.eq
|
local clear, command, eq = helpers.clear, helpers.command, helpers.eq
|
||||||
local eval, exc_exec, neq = helpers.eval, helpers.exc_exec, helpers.neq
|
local eval, exc_exec, neq = helpers.eval, helpers.exc_exec, helpers.neq
|
||||||
|
local pcall_err = helpers.pcall_err
|
||||||
|
|
||||||
describe('argument list commands', function()
|
describe('argument list commands', function()
|
||||||
before_each(clear)
|
before_each(clear)
|
||||||
@@ -206,7 +207,6 @@ describe('argument list commands', function()
|
|||||||
command('%argd')
|
command('%argd')
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
||||||
it('test for autocommand that redefines the argument list, when doing ":all"', function()
|
it('test for autocommand that redefines the argument list, when doing ":all"', function()
|
||||||
command('autocmd BufReadPost Xxx2 next Xxx2 Xxx1')
|
command('autocmd BufReadPost Xxx2 next Xxx2 Xxx1')
|
||||||
command("call writefile(['test file Xxx1'], 'Xxx1')")
|
command("call writefile(['test file Xxx1'], 'Xxx1')")
|
||||||
@@ -234,4 +234,9 @@ describe('argument list commands', function()
|
|||||||
command('argdelete Xxx*')
|
command('argdelete Xxx*')
|
||||||
command('bwipe! Xxx1 Xxx2 Xxx3')
|
command('bwipe! Xxx1 Xxx2 Xxx3')
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
it('quitting Vim with unedited files in the argument list throws E173', function()
|
||||||
|
command('args a b c')
|
||||||
|
eq('Vim(quit):E173: 2 more files to edit', pcall_err(command, 'quit'))
|
||||||
|
end)
|
||||||
end)
|
end)
|
||||||
|
Reference in New Issue
Block a user