Merge branch 'tc/commit-dry-run-exit-status-tests'
[git.git] / t / t7006-pager.sh
blobb9365b431d1e412905ddd0efad1f809625224ba9
1 #!/bin/sh
3 test_description='Test automatic use of a pager.'
5 . ./test-lib.sh
6 . "$TEST_DIRECTORY"/lib-pager.sh
7 . "$TEST_DIRECTORY"/lib-terminal.sh
9 test_expect_success 'setup' '
10 sane_unset GIT_PAGER GIT_PAGER_IN_USE &&
11 test_unconfig core.pager &&
13 PAGER="cat >paginated.out" &&
14 export PAGER &&
16 test_commit initial
19 test_expect_success TTY 'some commands use a pager' '
20 rm -f paginated.out &&
21 test_terminal git log &&
22 test -e paginated.out
25 test_expect_failure TTY 'pager runs from subdir' '
26 echo subdir/paginated.out >expected &&
27 mkdir -p subdir &&
28 rm -f paginated.out subdir/paginated.out &&
30 cd subdir &&
31 test_terminal git log
32 ) &&
34 ls paginated.out subdir/paginated.out ||
36 } >actual &&
37 test_cmp expected actual
40 test_expect_success TTY 'LESS and LV envvars are set for pagination' '
42 sane_unset LESS LV &&
43 PAGER="env >pager-env.out; wc" &&
44 export PAGER &&
46 test_terminal git log
47 ) &&
48 grep ^LESS= pager-env.out &&
49 grep ^LV= pager-env.out
52 test_expect_success TTY 'some commands do not use a pager' '
53 rm -f paginated.out &&
54 test_terminal git rev-list HEAD &&
55 ! test -e paginated.out
58 test_expect_success 'no pager when stdout is a pipe' '
59 rm -f paginated.out &&
60 git log | cat &&
61 ! test -e paginated.out
64 test_expect_success 'no pager when stdout is a regular file' '
65 rm -f paginated.out &&
66 git log >file &&
67 ! test -e paginated.out
70 test_expect_success TTY 'git --paginate rev-list uses a pager' '
71 rm -f paginated.out &&
72 test_terminal git --paginate rev-list HEAD &&
73 test -e paginated.out
76 test_expect_success 'no pager even with --paginate when stdout is a pipe' '
77 rm -f file paginated.out &&
78 git --paginate log | cat &&
79 ! test -e paginated.out
82 test_expect_success TTY 'no pager with --no-pager' '
83 rm -f paginated.out &&
84 test_terminal git --no-pager log &&
85 ! test -e paginated.out
88 test_expect_success TTY 'configuration can disable pager' '
89 rm -f paginated.out &&
90 test_unconfig pager.grep &&
91 test_terminal git grep initial &&
92 test -e paginated.out &&
94 rm -f paginated.out &&
95 test_config pager.grep false &&
96 test_terminal git grep initial &&
97 ! test -e paginated.out
100 test_expect_success TTY 'git config uses a pager if configured to' '
101 rm -f paginated.out &&
102 test_config pager.config true &&
103 test_terminal git config --list &&
104 test -e paginated.out
107 test_expect_success TTY 'configuration can enable pager (from subdir)' '
108 rm -f paginated.out &&
109 mkdir -p subdir &&
110 test_config pager.bundle true &&
112 git bundle create test.bundle --all &&
113 rm -f paginated.out subdir/paginated.out &&
115 cd subdir &&
116 test_terminal git bundle unbundle ../test.bundle
117 ) &&
119 test -e paginated.out ||
120 test -e subdir/paginated.out
124 # A colored commit log will begin with an appropriate ANSI escape
125 # for the first color; the text "commit" comes later.
126 colorful() {
127 read firstline <$1
128 ! expr "$firstline" : "[a-zA-Z]" >/dev/null
131 test_expect_success 'tests can detect color' '
132 rm -f colorful.log colorless.log &&
133 git log --no-color >colorless.log &&
134 git log --color >colorful.log &&
135 ! colorful colorless.log &&
136 colorful colorful.log
139 test_expect_success 'no color when stdout is a regular file' '
140 rm -f colorless.log &&
141 test_config color.ui auto &&
142 git log >colorless.log &&
143 ! colorful colorless.log
146 test_expect_success TTY 'color when writing to a pager' '
147 rm -f paginated.out &&
148 test_config color.ui auto &&
150 TERM=vt100 &&
151 export TERM &&
152 test_terminal git log
153 ) &&
154 colorful paginated.out
157 test_expect_success TTY 'colors are suppressed by color.pager' '
158 rm -f paginated.out &&
159 test_config color.ui auto &&
160 test_config color.pager false &&
162 TERM=vt100 &&
163 export TERM &&
164 test_terminal git log
165 ) &&
166 ! colorful paginated.out
169 test_expect_success 'color when writing to a file intended for a pager' '
170 rm -f colorful.log &&
171 test_config color.ui auto &&
173 TERM=vt100 &&
174 GIT_PAGER_IN_USE=true &&
175 export TERM GIT_PAGER_IN_USE &&
176 git log >colorful.log
177 ) &&
178 colorful colorful.log
181 test_expect_success TTY 'colors are sent to pager for external commands' '
182 test_config alias.externallog "!git log" &&
183 test_config color.ui auto &&
185 TERM=vt100 &&
186 export TERM &&
187 test_terminal git -p externallog
188 ) &&
189 colorful paginated.out
192 # Use this helper to make it easy for the caller of your
193 # terminal-using function to specify whether it should fail.
194 # If you write
196 # your_test() {
197 # parse_args "$@"
199 # $test_expectation "$cmd - behaves well" "
200 # ...
201 # $full_command &&
202 # ...
206 # then your test can be used like this:
208 # your_test expect_(success|failure) [test_must_fail] 'git foo'
210 parse_args() {
211 test_expectation="test_$1"
212 shift
213 if test "$1" = test_must_fail
214 then
215 full_command="test_must_fail test_terminal "
216 shift
217 else
218 full_command="test_terminal "
220 cmd=$1
221 full_command="$full_command $1"
224 test_default_pager() {
225 parse_args "$@"
227 $test_expectation SIMPLEPAGER,TTY "$cmd - default pager is used by default" "
228 sane_unset PAGER GIT_PAGER &&
229 test_unconfig core.pager &&
230 rm -f default_pager_used &&
231 cat >\$less <<-\EOF &&
232 #!/bin/sh
233 wc >default_pager_used
235 chmod +x \$less &&
237 PATH=.:\$PATH &&
238 export PATH &&
239 $full_command
240 ) &&
241 test -e default_pager_used
245 test_PAGER_overrides() {
246 parse_args "$@"
248 $test_expectation TTY "$cmd - PAGER overrides default pager" "
249 sane_unset GIT_PAGER &&
250 test_unconfig core.pager &&
251 rm -f PAGER_used &&
252 PAGER='wc >PAGER_used' &&
253 export PAGER &&
254 $full_command &&
255 test -e PAGER_used
259 test_core_pager_overrides() {
260 if_local_config=
261 used_if_wanted='overrides PAGER'
262 test_core_pager "$@"
265 test_local_config_ignored() {
266 if_local_config='! '
267 used_if_wanted='is not used'
268 test_core_pager "$@"
271 test_core_pager() {
272 parse_args "$@"
274 $test_expectation TTY "$cmd - repository-local core.pager setting $used_if_wanted" "
275 sane_unset GIT_PAGER &&
276 rm -f core.pager_used &&
277 PAGER=wc &&
278 export PAGER &&
279 test_config core.pager 'wc >core.pager_used' &&
280 $full_command &&
281 ${if_local_config}test -e core.pager_used
285 test_core_pager_subdir() {
286 if_local_config=
287 used_if_wanted='overrides PAGER'
288 test_pager_subdir_helper "$@"
291 test_no_local_config_subdir() {
292 if_local_config='! '
293 used_if_wanted='is not used'
294 test_pager_subdir_helper "$@"
297 test_pager_subdir_helper() {
298 parse_args "$@"
300 $test_expectation TTY "$cmd - core.pager $used_if_wanted from subdirectory" "
301 sane_unset GIT_PAGER &&
302 rm -f core.pager_used &&
303 rm -fr sub &&
304 PAGER=wc &&
305 stampname=\$(pwd)/core.pager_used &&
306 export PAGER stampname &&
307 test_config core.pager 'wc >\"\$stampname\"' &&
308 mkdir sub &&
310 cd sub &&
311 $full_command
312 ) &&
313 ${if_local_config}test -e core.pager_used
317 test_GIT_PAGER_overrides() {
318 parse_args "$@"
320 $test_expectation TTY "$cmd - GIT_PAGER overrides core.pager" "
321 rm -f GIT_PAGER_used &&
322 test_config core.pager wc &&
323 GIT_PAGER='wc >GIT_PAGER_used' &&
324 export GIT_PAGER &&
325 $full_command &&
326 test -e GIT_PAGER_used
330 test_doesnt_paginate() {
331 parse_args "$@"
333 $test_expectation TTY "no pager for '$cmd'" "
334 rm -f GIT_PAGER_used &&
335 GIT_PAGER='wc >GIT_PAGER_used' &&
336 export GIT_PAGER &&
337 $full_command &&
338 ! test -e GIT_PAGER_used
342 test_pager_choices() {
343 test_default_pager expect_success "$@"
344 test_PAGER_overrides expect_success "$@"
345 test_core_pager_overrides expect_success "$@"
346 test_core_pager_subdir expect_success "$@"
347 test_GIT_PAGER_overrides expect_success "$@"
350 test_expect_success 'setup: some aliases' '
351 git config alias.aliasedlog log &&
352 git config alias.true "!true"
355 test_pager_choices 'git log'
356 test_pager_choices 'git -p log'
357 test_pager_choices 'git aliasedlog'
359 test_default_pager expect_success 'git -p aliasedlog'
360 test_PAGER_overrides expect_success 'git -p aliasedlog'
361 test_core_pager_overrides expect_success 'git -p aliasedlog'
362 test_core_pager_subdir expect_failure 'git -p aliasedlog'
363 test_GIT_PAGER_overrides expect_success 'git -p aliasedlog'
365 test_default_pager expect_success 'git -p true'
366 test_PAGER_overrides expect_success 'git -p true'
367 test_core_pager_overrides expect_success 'git -p true'
368 test_core_pager_subdir expect_failure 'git -p true'
369 test_GIT_PAGER_overrides expect_success 'git -p true'
371 test_default_pager expect_success test_must_fail 'git -p request-pull'
372 test_PAGER_overrides expect_success test_must_fail 'git -p request-pull'
373 test_core_pager_overrides expect_success test_must_fail 'git -p request-pull'
374 test_core_pager_subdir expect_failure test_must_fail 'git -p request-pull'
375 test_GIT_PAGER_overrides expect_success test_must_fail 'git -p request-pull'
377 test_default_pager expect_success test_must_fail 'git -p'
378 test_PAGER_overrides expect_success test_must_fail 'git -p'
379 test_local_config_ignored expect_failure test_must_fail 'git -p'
380 test_no_local_config_subdir expect_success test_must_fail 'git -p'
381 test_GIT_PAGER_overrides expect_success test_must_fail 'git -p'
383 test_doesnt_paginate expect_failure test_must_fail 'git -p nonsense'
385 test_pager_choices 'git shortlog'
386 test_expect_success 'setup: configure shortlog not to paginate' '
387 git config pager.shortlog false
389 test_doesnt_paginate expect_success 'git shortlog'
390 test_no_local_config_subdir expect_success 'git shortlog'
391 test_default_pager expect_success 'git -p shortlog'
392 test_core_pager_subdir expect_success 'git -p shortlog'
394 test_core_pager_subdir expect_success test_must_fail \
395 'git -p apply </dev/null'
397 test_expect_success TTY 'command-specific pager' '
398 sane_unset PAGER GIT_PAGER &&
399 echo "foo:initial" >expect &&
400 >actual &&
401 test_unconfig core.pager &&
402 test_config pager.log "sed s/^/foo:/ >actual" &&
403 test_terminal git log --format=%s -1 &&
404 test_cmp expect actual
407 test_expect_success TTY 'command-specific pager overrides core.pager' '
408 sane_unset PAGER GIT_PAGER &&
409 echo "foo:initial" >expect &&
410 >actual &&
411 test_config core.pager "exit 1"
412 test_config pager.log "sed s/^/foo:/ >actual" &&
413 test_terminal git log --format=%s -1 &&
414 test_cmp expect actual
417 test_expect_success TTY 'command-specific pager overridden by environment' '
418 GIT_PAGER="sed s/^/foo:/ >actual" && export GIT_PAGER &&
419 >actual &&
420 echo "foo:initial" >expect &&
421 test_config pager.log "exit 1" &&
422 test_terminal git log --format=%s -1 &&
423 test_cmp expect actual
426 test_expect_success 'setup external command' '
427 cat >git-external <<-\EOF &&
428 #!/bin/sh
429 git "$@"
431 chmod +x git-external
434 test_expect_success TTY 'command-specific pager works for external commands' '
435 sane_unset PAGER GIT_PAGER &&
436 echo "foo:initial" >expect &&
437 >actual &&
438 test_config pager.external "sed s/^/foo:/ >actual" &&
439 test_terminal git --exec-path="`pwd`" external log --format=%s -1 &&
440 test_cmp expect actual
443 test_expect_success TTY 'sub-commands of externals use their own pager' '
444 sane_unset PAGER GIT_PAGER &&
445 echo "foo:initial" >expect &&
446 >actual &&
447 test_config pager.log "sed s/^/foo:/ >actual" &&
448 test_terminal git --exec-path=. external log --format=%s -1 &&
449 test_cmp expect actual
452 test_expect_success TTY 'external command pagers override sub-commands' '
453 sane_unset PAGER GIT_PAGER &&
454 >expect &&
455 >actual &&
456 test_config pager.external false &&
457 test_config pager.log "sed s/^/log:/ >actual" &&
458 test_terminal git --exec-path=. external log --format=%s -1 &&
459 test_cmp expect actual
462 test_done