3 # Copyright (c) 2009 Ilari Liusvaara
6 test_description
='Test run command'
8 TEST_PASSES_SANITIZE_LEAK
=true
11 cat >hello-script
<<-EOF
16 test_expect_success MINGW
'subprocess inherits only std handles' '
17 test-tool run-command inherited-handle
20 test_expect_success
'start_command reports ENOENT (slash)' '
21 test-tool run-command start-command-ENOENT ./does-not-exist 2>err &&
22 test_i18ngrep "\./does-not-exist" err
25 test_expect_success
'start_command reports ENOENT (no slash)' '
26 test-tool run-command start-command-ENOENT does-not-exist 2>err &&
27 test_i18ngrep "does-not-exist" err
30 test_expect_success
'run_command can run a command' '
31 cat hello-script >hello.sh &&
33 test-tool run-command run-command ./hello.sh >actual 2>err &&
35 test_cmp hello-script actual &&
36 test_must_be_empty err
40 test_lazy_prereq RUNS_COMMANDS_FROM_PWD
'
41 write_script runs-commands-from-pwd <<-\EOF &&
44 runs-commands-from-pwd >/dev/null 2>&1
47 test_expect_success
!RUNS_COMMANDS_FROM_PWD
'run_command is restricted to PATH' '
48 write_script should-not-run <<-\EOF &&
51 test_must_fail test-tool run-command run-command should-not-run 2>err &&
52 test_i18ngrep "should-not-run" err
55 test_expect_success
!MINGW
'run_command can run a script without a #! line' '
60 test-tool run-command run-command ./hello >actual 2>err &&
62 test_cmp hello-script actual &&
63 test_must_be_empty err
66 test_expect_success
'run_command does not try to execute a directory' '
67 test_when_finished "rm -rf bin1 bin2" &&
68 mkdir -p bin1/greet bin2 &&
69 write_script bin2/greet <<-\EOF &&
73 PATH=$PWD/bin1:$PWD/bin2:$PATH \
74 test-tool run-command run-command greet >actual 2>err &&
75 test_cmp bin2/greet actual &&
76 test_must_be_empty err
79 test_expect_success POSIXPERM
'run_command passes over non-executable file' '
80 test_when_finished "rm -rf bin1 bin2" &&
82 write_script bin1/greet <<-\EOF &&
85 chmod -x bin1/greet &&
86 write_script bin2/greet <<-\EOF &&
90 PATH=$PWD/bin1:$PWD/bin2:$PATH \
91 test-tool run-command run-command greet >actual 2>err &&
92 test_cmp bin2/greet actual &&
93 test_must_be_empty err
96 test_expect_success POSIXPERM
'run_command reports EACCES' '
97 cat hello-script >hello.sh &&
99 test_must_fail test-tool run-command run-command ./hello.sh 2>err &&
101 grep "fatal: cannot exec.*hello.sh" err
104 test_expect_success POSIXPERM
,SANITY
'unreadable directory in PATH' '
105 mkdir local-command &&
106 test_when_finished "chmod u+rwx local-command && rm -fr local-command" &&
107 git config alias.nitfol "!echo frotz" &&
108 chmod a-rx local-command &&
110 PATH=./local-command:$PATH &&
113 echo frotz >expect &&
114 test_cmp expect actual
118 preloaded output of a child
121 preloaded output of a child
124 preloaded output of a child
127 preloaded output of a child
132 test_expect_success
'run_command runs in parallel with more jobs available than tasks' '
133 test-tool run-command run-command-parallel 5 sh -c "printf \"%s\n%s\n\" Hello World" 2>actual &&
134 test_cmp expect actual
137 test_expect_success
'run_command runs in parallel with as many jobs as tasks' '
138 test-tool run-command run-command-parallel 4 sh -c "printf \"%s\n%s\n\" Hello World" 2>actual &&
139 test_cmp expect actual
142 test_expect_success
'run_command runs in parallel with more tasks than jobs available' '
143 test-tool run-command run-command-parallel 3 sh -c "printf \"%s\n%s\n\" Hello World" 2>actual &&
144 test_cmp expect actual
148 preloaded output of a child
149 asking for a quick stop
150 preloaded output of a child
151 asking for a quick stop
152 preloaded output of a child
153 asking for a quick stop
156 test_expect_success
'run_command is asked to abort gracefully' '
157 test-tool run-command run-command-abort 3 false 2>actual &&
158 test_cmp expect actual
162 no further jobs available
165 test_expect_success
'run_command outputs ' '
166 test-tool run-command run-command-no-jobs 3 sh -c "printf \"%s\n%s\n\" Hello World" 2>actual &&
167 test_cmp expect actual
173 GIT_TRACE
=1 test-tool run-command
"$@" run-command true
2>&1 >/dev
/null | \
174 sed -e 's/.* run_command: //' -e '/trace: .*/d' \
175 -e '/RUNTIME_PREFIX requested/d' >actual
&&
176 echo "$expect true" >expect
&&
177 test_cmp expect actual
180 test_expect_success
'GIT_TRACE with environment variables' '
181 test_trace "abc=1 def=2" env abc=1 env def=2 &&
182 test_trace "abc=2" env abc env abc=1 env abc=2 &&
183 test_trace "abc=2" env abc env abc=2 &&
185 abc=1 && export abc &&
186 test_trace "def=1" env abc=1 env def=1
189 abc=1 && export abc &&
190 test_trace "def=1" env abc env abc=1 env def=1
192 test_trace "def=1" env non-exist env def=1 &&
193 test_trace "abc=2" env abc=1 env abc env abc=2 &&
195 abc=1 def=2 && export abc def &&
196 test_trace "unset abc def;" env abc env def
199 abc=1 def=2 && export abc def &&
200 test_trace "unset def; abc=3" env abc env def env abc=3
203 abc=1 && export abc &&
204 test_trace "unset abc;" env abc=2 env abc
208 test_expect_success MINGW
'verify curlies are quoted properly' '
209 : force the rev-parse through the MSYS2 Bash &&
210 git -c alias.r="!git rev-parse" r -- a{b}c >actual &&
211 cat >expect <<-\EOF &&
215 test_cmp expect actual
218 test_expect_success MINGW
'can spawn .bat with argv[0] containing spaces' '
219 bat="$TRASH_DIRECTORY/bat with spaces in name.bat" &&
221 # Every .bat invocation will log its arguments to file "out"
223 echo "echo %* >>out" >"$bat" &&
225 # Ask git to invoke .bat; clone will fail due to fake SSH helper
226 test_must_fail env GIT_SSH="$bat" git clone myhost:src ssh-clone &&
228 # Spawning .bat can fail if there are two quoted cmd.exe arguments.
229 # .bat itself is first (due to spaces in name), so just one more is
230 # needed to verify. GIT_SSH will invoke .bat multiple times:
232 # 2) myhost "git-upload-pack src"
233 # First invocation will always succeed. Test the second one.
234 grep "git-upload-pack" out