Patch 8.2.3061
Problem:    Testing the shell option is incomplete and spread out.
Solution:   Move shell tests to one file and increase coverage. (Yegappan
            Lakshmanan, closes #8464)
Files:      src/testdir/Make_all.mak, src/testdir/test_functions.vim,
            src/testdir/test_options.vim, src/testdir/test_shell.vim,
            src/testdir/test_system.vim


*** ../vim-8.2.3060/src/testdir/Make_all.mak    2021-03-10 21:55:42.729459602 
+0100
--- src/testdir/Make_all.mak    2021-06-27 12:03:53.880934653 +0200
***************
*** 242,247 ****
--- 242,248 ----
        test_selectmode \
        test_set \
        test_sha256 \
+       test_shell \
        test_shift \
        test_shortpathname \
        test_signals \
***************
*** 471,476 ****
--- 472,478 ----
        test_search.res \
        test_search_stat.res \
        test_selectmode.res \
+       test_shell.res \
        test_shortpathname.res \
        test_signals.res \
        test_signs.res \
*** ../vim-8.2.3060/src/testdir/test_functions.vim      2021-06-15 
22:54:25.179839176 +0200
--- src/testdir/test_functions.vim      2021-06-27 12:03:53.880934653 +0200
***************
*** 1579,1609 ****
    delfunc Apply
  endfunc
  
- func Test_shellescape()
-   let save_shell = &shell
-   set shell=bash
-   call assert_equal("'text'", shellescape('text'))
-   call assert_equal("'te\"xt'", 'te"xt'->shellescape())
-   call assert_equal("'te'\\''xt'", shellescape("te'xt"))
- 
-   call assert_equal("'te%xt'", shellescape("te%xt"))
-   call assert_equal("'te\\%xt'", shellescape("te%xt", 1))
-   call assert_equal("'te#xt'", shellescape("te#xt"))
-   call assert_equal("'te\\#xt'", shellescape("te#xt", 1))
-   call assert_equal("'te!xt'", shellescape("te!xt"))
-   call assert_equal("'te\\!xt'", shellescape("te!xt", 1))
- 
-   call assert_equal("'te\nxt'", shellescape("te\nxt"))
-   call assert_equal("'te\\\nxt'", shellescape("te\nxt", 1))
-   set shell=tcsh
-   call assert_equal("'te\\!xt'", shellescape("te!xt"))
-   call assert_equal("'te\\\\!xt'", shellescape("te!xt", 1))
-   call assert_equal("'te\\\nxt'", shellescape("te\nxt"))
-   call assert_equal("'te\\\\\nxt'", shellescape("te\nxt", 1))
- 
-   let &shell = save_shell
- endfunc
- 
  func Test_trim()
    call assert_equal("Testing", trim("  \t\r\r\x0BTesting  
\t\n\r\n\t\x0B\x0B"))
    call assert_equal("Testing", "  \t  \r\r\n\n\x0BTesting  
\t\n\r\n\t\x0B\x0B"->trim())
--- 1579,1584 ----
*** ../vim-8.2.3060/src/testdir/test_options.vim        2021-06-13 
21:52:42.521260063 +0200
--- src/testdir/test_options.vim        2021-06-27 12:03:53.880934653 +0200
***************
*** 832,865 ****
    bwipe!
  endfunc
  
- " Test for the 'shell' option
- func Test_shell()
-   CheckUnix
-   let save_shell = &shell
-   set shell=
-   let caught_e91 = 0
-   try
-     shell
-   catch /E91:/
-     let caught_e91 = 1
-   endtry
-   call assert_equal(1, caught_e91)
-   let &shell = save_shell
- endfunc
- 
- " Test for the 'shellquote' option
- func Test_shellquote()
-   CheckUnix
-   set shellquote=#
-   set verbose=20
-   redir => v
-   silent! !echo Hello
-   redir END
-   set verbose&
-   set shellquote&
-   call assert_match(': "#echo Hello#"', v)
- endfunc
- 
  " Test for the 'rightleftcmd' option
  func Test_rightleftcmd()
    CheckFeature rightleft
--- 832,837 ----
*** ../vim-8.2.3060/src/testdir/test_shell.vim  2021-06-27 12:07:01.040497633 
+0200
--- src/testdir/test_shell.vim  2021-06-27 12:03:53.880934653 +0200
***************
*** 0 ****
--- 1,159 ----
+ " Test for the shell related options ('shell', 'shellcmdflag', 'shellpipe',
+ " 'shellquote', 'shellredir', 'shellxescape', and 'shellxquote')
+ 
+ source check.vim
+ source shared.vim
+ 
+ func Test_shell_options()
+   " For each shell, the following options are checked:
+   " 'shellcmdflag', 'shellpipe', 'shellquote', 'shellredir', 'shellxescape',
+   " 'shellxquote'
+   let shells = []
+   if has('unix')
+     let shells += [['sh', '-c', '2>&1| tee', '', '>%s 2>&1', '', ''],
+           \ ['ksh', '-c', '2>&1| tee', '', '>%s 2>&1', '', ''],
+           \ ['mksh', '-c', '2>&1| tee', '', '>%s 2>&1', '', ''],
+           \ ['zsh', '-c', '2>&1| tee', '', '>%s 2>&1', '', ''],
+           \ ['zsh-beta', '-c', '2>&1| tee', '', '>%s 2>&1', '', ''],
+           \ ['bash', '-c', '2>&1| tee', '', '>%s 2>&1', '', ''],
+           \ ['fish', '-c', '2>&1| tee', '', '>%s 2>&1', '', ''],
+           \ ['ash', '-c', '2>&1| tee', '', '>%s 2>&1', '', ''],
+           \ ['dash', '-c', '2>&1| tee', '', '>%s 2>&1', '', ''],
+           \ ['csh', '-c', '|& tee', '', '>&', '', ''],
+           \ ['tcsh', '-c', '|& tee', '', '>&', '', '']]
+   endif
+   if has('win32')
+     let shells += [['cmd', '/c', '>%s 2>&1', '', '>%s 2>&1', '"&|<>()@^', ''],
+           \ ['cmd.exe', '/c', '>%s 2>&1', '', '>%s 2>&1', '"&|<>()@^', '('],
+           \ ['powershell.exe', '-c', '>', '', '>', '"&|<>()@^', '"'],
+           \ ['powershell', '-c', '>', '', '>', '"&|<>()@^', '"'],
+           \ ['sh.exe', '-c', '>%s 2>&1', '', '>%s 2>&1', '"&|<>()@^', '"'],
+           \ ['ksh.exe', '-c', '>%s 2>&1', '', '>%s 2>&1', '"&|<>()@^', '"'],
+           \ ['mksh.exe', '-c', '>%s 2>&1', '', '>%s 2>&1', '"&|<>()@^', '"'],
+           \ ['pdksh.exe', '-c', '>%s 2>&1', '', '>%s 2>&1', '"&|<>()@^', '"'],
+           \ ['zsh.exe', '-c', '>%s 2>&1', '', '>%s 2>&1', '"&|<>()@^', '"'],
+           \ ['zsh-beta.exe', '-c', '>%s 2>&1', '', '>%s 2>&1', '"&|<>()@^', 
'"'],
+           \ ['bash.exe', '-c', '>%s 2>&1', '', '>%s 2>&1', '"&|<>()@^', '"'],
+           \ ['dash.exe', '-c', '>%s 2>&1', '', '>%s 2>&1', '"&|<>()@^', '"'],
+           \ ['csh.exe', '-c', '>&', '', '>&', '"&|<>()@^', '"'],
+           \ ['tcsh.exe', '-c', '>&', '', '>&', '"&|<>()@^', '"']]
+   endif
+ 
+   let after =<< trim END
+     let l = [&shell, &shellcmdflag, &shellpipe, &shellquote]
+     let l += [&shellredir, &shellxescape, &shellxquote]
+     call writefile([json_encode(l)], 'Xtestout')
+     qall!
+   END
+   for e in shells
+     if RunVim([], after, '--cmd "set shell=' .. e[0] .. '"')
+       call assert_equal(e, json_decode(readfile('Xtestout')[0]))
+     endif
+   endfor
+ 
+   for e in shells
+     exe 'set shell=' .. e[0]
+     if e[0] =~# '.*csh$' || e[0] =~# '.*csh.exe$'
+       let str1 = "'cmd \"arg1\" '\\''arg2'\\'' \\!%#'"
+       let str2 = "'cmd \"arg1\" '\\''arg2'\\'' \\\\!\\%\\#'"
+     else
+       let str1 = "'cmd \"arg1\" '\\''arg2'\\'' !%#'"
+       let str2 = "'cmd \"arg1\" '\\''arg2'\\'' \\!\\%\\#'"
+     endif
+     call assert_equal(str1, shellescape("cmd \"arg1\" 'arg2' !%#"), e[0])
+     call assert_equal(str2, shellescape("cmd \"arg1\" 'arg2' !%#", 1), e[0])
+   endfor
+   set shell&
+   call delete('Xtestout')
+ endfunc
+ 
+ " Test for the 'shell' option
+ func Test_shell()
+   CheckUnix
+   let save_shell = &shell
+   set shell=
+   let caught_e91 = 0
+   try
+     shell
+   catch /E91:/
+     let caught_e91 = 1
+   endtry
+   call assert_equal(1, caught_e91)
+   let &shell = save_shell
+ endfunc
+ 
+ " Test for the 'shellquote' option
+ func Test_shellquote()
+   CheckUnix
+   set shellquote=#
+   set verbose=20
+   redir => v
+   silent! !echo Hello
+   redir END
+   set verbose&
+   set shellquote&
+   call assert_match(': "#echo Hello#"', v)
+ endfunc
+ 
+ func Test_shellescape()
+   let save_shell = &shell
+   set shell=bash
+   call assert_equal("'text'", shellescape('text'))
+   call assert_equal("'te\"xt'", 'te"xt'->shellescape())
+   call assert_equal("'te'\\''xt'", shellescape("te'xt"))
+ 
+   call assert_equal("'te%xt'", shellescape("te%xt"))
+   call assert_equal("'te\\%xt'", shellescape("te%xt", 1))
+   call assert_equal("'te#xt'", shellescape("te#xt"))
+   call assert_equal("'te\\#xt'", shellescape("te#xt", 1))
+   call assert_equal("'te!xt'", shellescape("te!xt"))
+   call assert_equal("'te\\!xt'", shellescape("te!xt", 1))
+ 
+   call assert_equal("'te\nxt'", shellescape("te\nxt"))
+   call assert_equal("'te\\\nxt'", shellescape("te\nxt", 1))
+   set shell=tcsh
+   call assert_equal("'te\\!xt'", shellescape("te!xt"))
+   call assert_equal("'te\\\\!xt'", shellescape("te!xt", 1))
+   call assert_equal("'te\\\nxt'", shellescape("te\nxt"))
+   call assert_equal("'te\\\\\nxt'", shellescape("te\nxt", 1))
+ 
+   let &shell = save_shell
+ endfunc
+ 
+ " Test for 'shellxquote'
+ func Test_shellxquote()
+   CheckUnix
+ 
+   let save_shell = &shell
+   let save_sxq = &shellxquote
+   let save_sxe = &shellxescape
+ 
+   call writefile(['#!/bin/sh', 'echo "Cmd: [$*]" > Xlog'], 'Xtestshell')
+   call setfperm('Xtestshell', "r-x------")
+   set shell=./Xtestshell
+ 
+   set shellxquote=\\"
+   call feedkeys(":!pwd\<CR>\<CR>", 'xt')
+   call assert_equal(['Cmd: [-c "pwd"]'], readfile('Xlog'))
+ 
+   set shellxquote=(
+   call feedkeys(":!pwd\<CR>\<CR>", 'xt')
+   call assert_equal(['Cmd: [-c (pwd)]'], readfile('Xlog'))
+ 
+   set shellxquote=\\"(
+   call feedkeys(":!pwd\<CR>\<CR>", 'xt')
+   call assert_equal(['Cmd: [-c "(pwd)"]'], readfile('Xlog'))
+ 
+   set shellxescape=\"&<<()@^
+   set shellxquote=(
+   call feedkeys(":!pwd\"&<<{}@^\<CR>\<CR>", 'xt')
+   call assert_equal(['Cmd: [-c (pwd^"^&^<^<{}^@^^)]'], readfile('Xlog'))
+ 
+   let &shell = save_shell
+   let &shellxquote = save_sxq
+   let &shellxescape = save_sxe
+   call delete('Xtestshell')
+   call delete('Xlog')
+ endfunc
+ 
+ " vim: shiftwidth=2 sts=2 expandtab
*** ../vim-8.2.3060/src/testdir/test_system.vim 2020-07-23 14:50:59.374663403 
+0200
--- src/testdir/test_system.vim 2021-06-27 12:03:53.880934653 +0200
***************
*** 144,183 ****
    endtry
  endfunc
  
- " Test for 'shellxquote'
- func Test_Shellxquote()
-   CheckUnix
- 
-   let save_shell = &shell
-   let save_sxq = &shellxquote
-   let save_sxe = &shellxescape
- 
-   call writefile(['#!/bin/sh', 'echo "Cmd: [$*]" > Xlog'], 'Xtestshell')
-   call setfperm('Xtestshell', "r-x------")
-   set shell=./Xtestshell
- 
-   set shellxquote=\\"
-   call feedkeys(":!pwd\<CR>\<CR>", 'xt')
-   call assert_equal(['Cmd: [-c "pwd"]'], readfile('Xlog'))
- 
-   set shellxquote=(
-   call feedkeys(":!pwd\<CR>\<CR>", 'xt')
-   call assert_equal(['Cmd: [-c (pwd)]'], readfile('Xlog'))
- 
-   set shellxquote=\\"(
-   call feedkeys(":!pwd\<CR>\<CR>", 'xt')
-   call assert_equal(['Cmd: [-c "(pwd)"]'], readfile('Xlog'))
- 
-   set shellxescape=\"&<<()@^
-   set shellxquote=(
-   call feedkeys(":!pwd\"&<<{}@^\<CR>\<CR>", 'xt')
-   call assert_equal(['Cmd: [-c (pwd^"^&^<^<{}^@^^)]'], readfile('Xlog'))
- 
-   let &shell = save_shell
-   let &shellxquote = save_sxq
-   let &shellxescape = save_sxe
-   call delete('Xtestshell')
-   call delete('Xlog')
- endfunc
- 
  " vim: shiftwidth=2 sts=2 expandtab
--- 144,147 ----
*** ../vim-8.2.3060/src/version.c       2021-06-26 22:22:35.770430468 +0200
--- src/version.c       2021-06-27 12:05:38.244690834 +0200
***************
*** 757,758 ****
--- 757,760 ----
  {   /* Add new patch number below this line */
+ /**/
+     3061,
  /**/

-- 
I wonder how much deeper the ocean would be without sponges.

 /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net   \\\
///                                                                      \\\
\\\        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_dev/202106271008.15RA8HRu582990%40masaka.moolenaar.net.

Raspunde prin e-mail lui