mirror of
https://github.com/vim/vim.git
synced 2025-10-07 05:54:16 -04:00
patch 8.2.3070: not enough testing for shell use
Problem: Not enough testing for shell use. Solution: Add a bit more testing. (Yegappan Lakshmanan, closes #8469)
This commit is contained in:
committed by
Bram Moolenaar
parent
108010aa47
commit
ffec6dd16a
@@ -5,9 +5,8 @@ source check.vim
|
|||||||
source shared.vim
|
source shared.vim
|
||||||
|
|
||||||
func Test_shell_options()
|
func Test_shell_options()
|
||||||
" For each shell, the following options are checked:
|
" The expected value of 'shellcmdflag', 'shellpipe', 'shellquote',
|
||||||
" 'shellcmdflag', 'shellpipe', 'shellquote', 'shellredir', 'shellxescape',
|
" 'shellredir', 'shellxescape', 'shellxquote' for the supported shells.
|
||||||
" 'shellxquote'
|
|
||||||
let shells = []
|
let shells = []
|
||||||
if has('unix')
|
if has('unix')
|
||||||
let shells += [['sh', '-c', '2>&1| tee', '', '>%s 2>&1', '', ''],
|
let shells += [['sh', '-c', '2>&1| tee', '', '>%s 2>&1', '', ''],
|
||||||
@@ -39,6 +38,8 @@ func Test_shell_options()
|
|||||||
\ ['tcsh.exe', '-c', '>&', '', '>&', '"&|<>()@^', '"']]
|
\ ['tcsh.exe', '-c', '>&', '', '>&', '"&|<>()@^', '"']]
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
" start a new Vim instance with 'shell' set to each of the supported shells
|
||||||
|
" and check the default shell option settings
|
||||||
let after =<< trim END
|
let after =<< trim END
|
||||||
let l = [&shell, &shellcmdflag, &shellpipe, &shellquote]
|
let l = [&shell, &shellcmdflag, &shellpipe, &shellquote]
|
||||||
let l += [&shellredir, &shellxescape, &shellxquote]
|
let l += [&shellredir, &shellxescape, &shellxquote]
|
||||||
@@ -51,6 +52,7 @@ func Test_shell_options()
|
|||||||
endif
|
endif
|
||||||
endfor
|
endfor
|
||||||
|
|
||||||
|
" Test shellescape() for each of the shells.
|
||||||
for e in shells
|
for e in shells
|
||||||
exe 'set shell=' .. e[0]
|
exe 'set shell=' .. e[0]
|
||||||
if e[0] =~# '.*csh$' || e[0] =~# '.*csh.exe$'
|
if e[0] =~# '.*csh$' || e[0] =~# '.*csh.exe$'
|
||||||
@@ -62,8 +64,20 @@ func Test_shell_options()
|
|||||||
endif
|
endif
|
||||||
call assert_equal(str1, shellescape("cmd \"arg1\" 'arg2' !%#"), e[0])
|
call assert_equal(str1, shellescape("cmd \"arg1\" 'arg2' !%#"), e[0])
|
||||||
call assert_equal(str2, shellescape("cmd \"arg1\" 'arg2' !%#", 1), e[0])
|
call assert_equal(str2, shellescape("cmd \"arg1\" 'arg2' !%#", 1), e[0])
|
||||||
|
|
||||||
|
" Try running an external command with the shell.
|
||||||
|
if executable(e[0])
|
||||||
|
" set the shell options for the current 'shell'
|
||||||
|
let [&shellcmdflag, &shellpipe, &shellquote, &shellredir,
|
||||||
|
\ &shellxescape, &shellxquote] = e[1:6]
|
||||||
|
new
|
||||||
|
r !echo hello
|
||||||
|
call assert_equal('hello', substitute(getline(2), '\W', '', 'g'), e[0])
|
||||||
|
bwipe!
|
||||||
|
endif
|
||||||
endfor
|
endfor
|
||||||
set shell&
|
set shell& shellcmdflag& shellpipe& shellquote&
|
||||||
|
set shellredir& shellxescape& shellxquote&
|
||||||
call delete('Xtestout')
|
call delete('Xtestout')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
@@ -95,6 +109,7 @@ func Test_shellquote()
|
|||||||
call assert_match(': "#echo Hello#"', v)
|
call assert_match(': "#echo Hello#"', v)
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" Test for the 'shellescape' option
|
||||||
func Test_shellescape()
|
func Test_shellescape()
|
||||||
let save_shell = &shell
|
let save_shell = &shell
|
||||||
set shell=bash
|
set shell=bash
|
||||||
@@ -156,4 +171,26 @@ func Test_shellxquote()
|
|||||||
call delete('Xlog')
|
call delete('Xlog')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" Test for using the shell set in the $SHELL environment variable
|
||||||
|
func Test_set_shell()
|
||||||
|
let after =<< trim [CODE]
|
||||||
|
call writefile([&shell], "Xtestout")
|
||||||
|
quit!
|
||||||
|
[CODE]
|
||||||
|
|
||||||
|
if has('win32')
|
||||||
|
let $SHELL = 'C:\with space\cmd.exe'
|
||||||
|
let expected = '"C:\with space\cmd.exe"'
|
||||||
|
else
|
||||||
|
let $SHELL = '/bin/with space/sh'
|
||||||
|
let expected = '/bin/with\ space/sh'
|
||||||
|
endif
|
||||||
|
|
||||||
|
if RunVimPiped([], after, '', '')
|
||||||
|
let lines = readfile('Xtestout')
|
||||||
|
call assert_equal(expected, lines[0])
|
||||||
|
endif
|
||||||
|
call delete('Xtestout')
|
||||||
|
endfunc
|
||||||
|
|
||||||
" vim: shiftwidth=2 sts=2 expandtab
|
" vim: shiftwidth=2 sts=2 expandtab
|
||||||
|
@@ -733,27 +733,6 @@ func Test_read_stdin()
|
|||||||
call delete('Xtestout')
|
call delete('Xtestout')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_set_shell()
|
|
||||||
let after =<< trim [CODE]
|
|
||||||
call writefile([&shell], "Xtestout")
|
|
||||||
quit!
|
|
||||||
[CODE]
|
|
||||||
|
|
||||||
if has('win32')
|
|
||||||
let $SHELL = 'C:\with space\cmd.exe'
|
|
||||||
let expected = '"C:\with space\cmd.exe"'
|
|
||||||
else
|
|
||||||
let $SHELL = '/bin/with space/sh'
|
|
||||||
let expected = '/bin/with\ space/sh'
|
|
||||||
endif
|
|
||||||
|
|
||||||
if RunVimPiped([], after, '', '')
|
|
||||||
let lines = readfile('Xtestout')
|
|
||||||
call assert_equal(expected, lines[0])
|
|
||||||
endif
|
|
||||||
call delete('Xtestout')
|
|
||||||
endfunc
|
|
||||||
|
|
||||||
func Test_progpath()
|
func Test_progpath()
|
||||||
" Tests normally run with "./vim" or "../vim", these must have been expanded
|
" Tests normally run with "./vim" or "../vim", these must have been expanded
|
||||||
" to a full path.
|
" to a full path.
|
||||||
|
@@ -755,6 +755,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
3070,
|
||||||
/**/
|
/**/
|
||||||
3069,
|
3069,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user