3 test_description
='Test automatic use of a pager.'
6 .
"$TEST_DIRECTORY"/lib-pager.sh
7 .
"$TEST_DIRECTORY"/lib-terminal.sh
10 echo >&2 cleanup failed
14 test_expect_success
'setup' '
15 sane_unset GIT_PAGER GIT_PAGER_IN_USE &&
16 test_unconfig core.pager &&
18 PAGER="cat >paginated.out" &&
24 test_expect_success TTY
'some commands use a pager' '
25 rm -f paginated.out ||
28 test_terminal git log &&
32 test_expect_failure TTY
'pager runs from subdir' '
33 echo subdir/paginated.out >expected &&
35 rm -f paginated.out subdir/paginated.out &&
41 ls paginated.out subdir/paginated.out ||
44 test_cmp expected actual
47 test_expect_success TTY
'some commands do not use a pager' '
48 rm -f paginated.out ||
51 test_terminal git rev-list HEAD &&
52 ! test -e paginated.out
55 test_expect_success
'no pager when stdout is a pipe' '
56 rm -f paginated.out ||
60 ! test -e paginated.out
63 test_expect_success
'no pager when stdout is a regular file' '
64 rm -f paginated.out ||
68 ! test -e paginated.out
71 test_expect_success TTY
'git --paginate rev-list uses a pager' '
72 rm -f paginated.out ||
75 test_terminal git --paginate rev-list HEAD &&
79 test_expect_success
'no pager even with --paginate when stdout is a pipe' '
80 rm -f file paginated.out ||
83 git --paginate log | cat &&
84 ! test -e paginated.out
87 test_expect_success TTY
'no pager with --no-pager' '
88 rm -f paginated.out ||
91 test_terminal git --no-pager log &&
92 ! test -e paginated.out
95 test_expect_success TTY
'configuration can disable pager' '
96 rm -f paginated.out &&
97 test_unconfig pager.grep &&
98 test_terminal git grep initial &&
99 test -e paginated.out &&
101 rm -f paginated.out &&
102 test_config pager.grep false &&
103 test_terminal git grep initial &&
104 ! test -e paginated.out
107 test_expect_success TTY
'git config uses a pager if configured to' '
108 rm -f paginated.out &&
109 test_config pager.config true &&
110 test_terminal git config --list &&
111 test -e paginated.out
114 test_expect_success TTY
'configuration can enable pager (from subdir)' '
115 rm -f paginated.out &&
117 test_config pager.bundle true &&
119 git bundle create test.bundle --all &&
120 rm -f paginated.out subdir/paginated.out &&
123 test_terminal git bundle unbundle ../test.bundle
126 test -e paginated.out ||
127 test -e subdir/paginated.out
131 # A colored commit log will begin with an appropriate ANSI escape
132 # for the first color; the text "commit" comes later.
135 ! expr "$firstline" : "[a-zA-Z]" >/dev
/null
138 test_expect_success
'tests can detect color' '
139 rm -f colorful.log colorless.log ||
142 git log --no-color >colorless.log &&
143 git log --color >colorful.log &&
144 ! colorful colorless.log &&
145 colorful colorful.log
148 test_expect_success
'no color when stdout is a regular file' '
149 rm -f colorless.log &&
150 test_config color.ui auto ||
153 git log >colorless.log &&
154 ! colorful colorless.log
157 test_expect_success TTY
'color when writing to a pager' '
158 rm -f paginated.out &&
159 test_config color.ui auto ||
165 test_terminal git log
167 colorful paginated.out
170 test_expect_success TTY
'colors are suppressed by color.pager' '
171 rm -f paginated.out &&
172 test_config color.ui auto &&
173 test_config color.pager false &&
177 test_terminal git log
179 ! colorful paginated.out
182 test_expect_success
'color when writing to a file intended for a pager' '
183 rm -f colorful.log &&
184 test_config color.ui auto ||
189 GIT_PAGER_IN_USE=true &&
190 export TERM GIT_PAGER_IN_USE &&
191 git log >colorful.log
193 colorful colorful.log
196 test_expect_success TTY
'colors are sent to pager for external commands' '
197 test_config alias.externallog "!git log" &&
198 test_config color.ui auto &&
202 test_terminal git -p externallog
204 colorful paginated.out
207 # Use this helper to make it easy for the caller of your
208 # terminal-using function to specify whether it should fail.
214 # $test_expectation "$cmd - behaves well" "
221 # then your test can be used like this:
223 # your_test expect_(success|failure) [test_must_fail] 'git foo'
226 test_expectation
="test_$1"
228 if test "$1" = test_must_fail
230 full_command
="test_must_fail test_terminal "
233 full_command
="test_terminal "
236 full_command
="$full_command $1"
239 test_default_pager
() {
242 $test_expectation SIMPLEPAGER
,TTY
"$cmd - default pager is used by default" "
243 sane_unset PAGER GIT_PAGER &&
244 test_unconfig core.pager &&
245 rm -f default_pager_used ||
248 cat >\$less <<-\EOF &&
250 wc >default_pager_used
258 test -e default_pager_used
262 test_PAGER_overrides
() {
265 $test_expectation TTY
"$cmd - PAGER overrides default pager" "
266 sane_unset GIT_PAGER &&
267 test_unconfig core.pager &&
271 PAGER='wc >PAGER_used' &&
278 test_core_pager_overrides
() {
280 used_if_wanted
='overrides PAGER'
284 test_local_config_ignored
() {
286 used_if_wanted
='is not used'
293 $test_expectation TTY
"$cmd - repository-local core.pager setting $used_if_wanted" "
294 sane_unset GIT_PAGER &&
295 rm -f core.pager_used ||
300 test_config core.pager 'wc >core.pager_used' &&
302 ${if_local_config}test -e core.pager_used
306 test_core_pager_subdir
() {
308 used_if_wanted
='overrides PAGER'
309 test_pager_subdir_helper
"$@"
312 test_no_local_config_subdir
() {
314 used_if_wanted
='is not used'
315 test_pager_subdir_helper
"$@"
318 test_pager_subdir_helper
() {
321 $test_expectation TTY
"$cmd - core.pager $used_if_wanted from subdirectory" "
322 sane_unset GIT_PAGER &&
323 rm -f core.pager_used &&
328 stampname=\$(pwd)/core.pager_used &&
329 export PAGER stampname &&
330 test_config core.pager 'wc >\"\$stampname\"' &&
336 ${if_local_config}test -e core.pager_used
340 test_GIT_PAGER_overrides
() {
343 $test_expectation TTY
"$cmd - GIT_PAGER overrides core.pager" "
344 rm -f GIT_PAGER_used ||
347 test_config core.pager wc &&
348 GIT_PAGER='wc >GIT_PAGER_used' &&
351 test -e GIT_PAGER_used
355 test_doesnt_paginate
() {
358 $test_expectation TTY
"no pager for '$cmd'" "
359 rm -f GIT_PAGER_used ||
362 GIT_PAGER='wc >GIT_PAGER_used' &&
365 ! test -e GIT_PAGER_used
369 test_pager_choices
() {
370 test_default_pager expect_success
"$@"
371 test_PAGER_overrides expect_success
"$@"
372 test_core_pager_overrides expect_success
"$@"
373 test_core_pager_subdir expect_success
"$@"
374 test_GIT_PAGER_overrides expect_success
"$@"
377 test_expect_success
'setup: some aliases' '
378 git config alias.aliasedlog log &&
379 git config alias.true "!true"
382 test_pager_choices
'git log'
383 test_pager_choices
'git -p log'
384 test_pager_choices
'git aliasedlog'
386 test_default_pager expect_success
'git -p aliasedlog'
387 test_PAGER_overrides expect_success
'git -p aliasedlog'
388 test_core_pager_overrides expect_success
'git -p aliasedlog'
389 test_core_pager_subdir expect_failure
'git -p aliasedlog'
390 test_GIT_PAGER_overrides expect_success
'git -p aliasedlog'
392 test_default_pager expect_success
'git -p true'
393 test_PAGER_overrides expect_success
'git -p true'
394 test_core_pager_overrides expect_success
'git -p true'
395 test_core_pager_subdir expect_failure
'git -p true'
396 test_GIT_PAGER_overrides expect_success
'git -p true'
398 test_default_pager expect_success test_must_fail
'git -p request-pull'
399 test_PAGER_overrides expect_success test_must_fail
'git -p request-pull'
400 test_core_pager_overrides expect_success test_must_fail
'git -p request-pull'
401 test_core_pager_subdir expect_failure test_must_fail
'git -p request-pull'
402 test_GIT_PAGER_overrides expect_success test_must_fail
'git -p request-pull'
404 test_default_pager expect_success test_must_fail
'git -p'
405 test_PAGER_overrides expect_success test_must_fail
'git -p'
406 test_local_config_ignored expect_failure test_must_fail
'git -p'
407 test_no_local_config_subdir expect_success test_must_fail
'git -p'
408 test_GIT_PAGER_overrides expect_success test_must_fail
'git -p'
410 test_doesnt_paginate expect_failure test_must_fail
'git -p nonsense'
412 test_pager_choices
'git shortlog'
413 test_expect_success
'setup: configure shortlog not to paginate' '
414 git config pager.shortlog false
416 test_doesnt_paginate expect_success
'git shortlog'
417 test_no_local_config_subdir expect_success
'git shortlog'
418 test_default_pager expect_success
'git -p shortlog'
419 test_core_pager_subdir expect_success
'git -p shortlog'
421 test_core_pager_subdir expect_success test_must_fail \
422 'git -p apply </dev/null'
424 test_expect_success TTY
'command-specific pager' '
425 sane_unset PAGER GIT_PAGER &&
426 echo "foo:initial" >expect &&
428 test_unconfig core.pager &&
429 test_config pager.log "sed s/^/foo:/ >actual" &&
430 test_terminal git log --format=%s -1 &&
431 test_cmp expect actual
434 test_expect_success TTY
'command-specific pager overrides core.pager' '
435 sane_unset PAGER GIT_PAGER &&
436 echo "foo:initial" >expect &&
438 test_config core.pager "exit 1"
439 test_config pager.log "sed s/^/foo:/ >actual" &&
440 test_terminal git log --format=%s -1 &&
441 test_cmp expect actual
444 test_expect_success TTY
'command-specific pager overridden by environment' '
445 GIT_PAGER="sed s/^/foo:/ >actual" && export GIT_PAGER &&
447 echo "foo:initial" >expect &&
448 test_config pager.log "exit 1" &&
449 test_terminal git log --format=%s -1 &&
450 test_cmp expect actual
453 test_expect_success
'setup external command' '
454 cat >git-external <<-\EOF &&
458 chmod +x git-external
461 test_expect_success TTY
'command-specific pager works for external commands' '
462 sane_unset PAGER GIT_PAGER &&
463 echo "foo:initial" >expect &&
465 test_config pager.external "sed s/^/foo:/ >actual" &&
466 test_terminal git --exec-path="`pwd`" external log --format=%s -1 &&
467 test_cmp expect actual
470 test_expect_success TTY
'sub-commands of externals use their own pager' '
471 sane_unset PAGER GIT_PAGER &&
472 echo "foo:initial" >expect &&
474 test_config pager.log "sed s/^/foo:/ >actual" &&
475 test_terminal git --exec-path=. external log --format=%s -1 &&
476 test_cmp expect actual
479 test_expect_success TTY
'external command pagers override sub-commands' '
480 sane_unset PAGER GIT_PAGER &&
483 test_config pager.external false &&
484 test_config pager.log "sed s/^/log:/ >actual" &&
485 test_terminal git --exec-path=. external log --format=%s -1 &&
486 test_cmp expect actual