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 ungrouped in parallel with more jobs available than tasks' '
138 test-tool run-command --ungroup run-command-parallel 5 sh -c "printf \"%s\n%s\n\" Hello World" >out 2>err &&
139 test_line_count = 8 out &&
140 test_line_count = 4 err
143 test_expect_success
'run_command runs in parallel with as many jobs as tasks' '
144 test-tool run-command run-command-parallel 4 sh -c "printf \"%s\n%s\n\" Hello World" 2>actual &&
145 test_cmp expect actual
148 test_expect_success
'run_command runs ungrouped in parallel with as many jobs as tasks' '
149 test-tool run-command --ungroup run-command-parallel 4 sh -c "printf \"%s\n%s\n\" Hello World" >out 2>err &&
150 test_line_count = 8 out &&
151 test_line_count = 4 err
154 test_expect_success
'run_command runs in parallel with more tasks than jobs available' '
155 test-tool run-command run-command-parallel 3 sh -c "printf \"%s\n%s\n\" Hello World" 2>actual &&
156 test_cmp expect actual
159 test_expect_success
'run_command runs ungrouped in parallel with more tasks than jobs available' '
160 test-tool run-command --ungroup run-command-parallel 3 sh -c "printf \"%s\n%s\n\" Hello World" >out 2>err &&
161 test_line_count = 8 out &&
162 test_line_count = 4 err
166 preloaded output of a child
167 asking for a quick stop
168 preloaded output of a child
169 asking for a quick stop
170 preloaded output of a child
171 asking for a quick stop
174 test_expect_success
'run_command is asked to abort gracefully' '
175 test-tool run-command run-command-abort 3 false 2>actual &&
176 test_cmp expect actual
179 test_expect_success
'run_command is asked to abort gracefully (ungroup)' '
180 test-tool run-command --ungroup run-command-abort 3 false >out 2>err &&
181 test_must_be_empty out &&
182 test_line_count = 6 err
186 no further jobs available
189 test_expect_success
'run_command outputs ' '
190 test-tool run-command run-command-no-jobs 3 sh -c "printf \"%s\n%s\n\" Hello World" 2>actual &&
191 test_cmp expect actual
194 test_expect_success
'run_command outputs (ungroup) ' '
195 test-tool run-command --ungroup run-command-no-jobs 3 sh -c "printf \"%s\n%s\n\" Hello World" >out 2>err &&
196 test_must_be_empty out &&
203 GIT_TRACE
=1 test-tool run-command
"$@" run-command true
2>&1 >/dev
/null | \
204 sed -e 's/.* run_command: //' -e '/trace: .*/d' \
205 -e '/RUNTIME_PREFIX requested/d' >actual
&&
206 echo "$expect true" >expect
&&
207 test_cmp expect actual
210 test_expect_success
'GIT_TRACE with environment variables' '
211 test_trace "abc=1 def=2" env abc=1 env def=2 &&
212 test_trace "abc=2" env abc env abc=1 env abc=2 &&
213 test_trace "abc=2" env abc env abc=2 &&
215 abc=1 && export abc &&
216 test_trace "def=1" env abc=1 env def=1
219 abc=1 && export abc &&
220 test_trace "def=1" env abc env abc=1 env def=1
222 test_trace "def=1" env non-exist env def=1 &&
223 test_trace "abc=2" env abc=1 env abc env abc=2 &&
225 abc=1 def=2 && export abc def &&
226 test_trace "unset abc def;" env abc env def
229 abc=1 def=2 && export abc def &&
230 test_trace "unset def; abc=3" env abc env def env abc=3
233 abc=1 && export abc &&
234 test_trace "unset abc;" env abc=2 env abc
238 test_expect_success MINGW
'verify curlies are quoted properly' '
239 : force the rev-parse through the MSYS2 Bash &&
240 git -c alias.r="!git rev-parse" r -- a{b}c >actual &&
241 cat >expect <<-\EOF &&
245 test_cmp expect actual
248 test_expect_success MINGW
'can spawn .bat with argv[0] containing spaces' '
249 bat="$TRASH_DIRECTORY/bat with spaces in name.bat" &&
251 # Every .bat invocation will log its arguments to file "out"
253 echo "echo %* >>out" >"$bat" &&
255 # Ask git to invoke .bat; clone will fail due to fake SSH helper
256 test_must_fail env GIT_SSH="$bat" git clone myhost:src ssh-clone &&
258 # Spawning .bat can fail if there are two quoted cmd.exe arguments.
259 # .bat itself is first (due to spaces in name), so just one more is
260 # needed to verify. GIT_SSH will invoke .bat multiple times:
262 # 2) myhost "git-upload-pack src"
263 # First invocation will always succeed. Test the second one.
264 grep "git-upload-pack" out