2010-02-19 08:18:58 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='Test automatic use of a pager.'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
2010-06-12 18:36:51 +02:00
|
|
|
. "$TEST_DIRECTORY"/lib-pager.sh
|
2010-02-19 08:18:58 +01:00
|
|
|
|
2010-04-15 02:38:07 +02:00
|
|
|
cleanup_fail() {
|
|
|
|
echo >&2 cleanup failed
|
|
|
|
(exit 1)
|
|
|
|
}
|
|
|
|
|
2010-02-20 09:50:25 +01:00
|
|
|
test_expect_success 'set up terminal for tests' '
|
2010-04-15 02:38:07 +02:00
|
|
|
rm -f stdout_is_tty ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
2010-02-19 08:18:58 +01:00
|
|
|
if test -t 1
|
|
|
|
then
|
2010-04-15 02:38:07 +02:00
|
|
|
>stdout_is_tty
|
2010-02-20 09:50:25 +01:00
|
|
|
elif
|
|
|
|
test_have_prereq PERL &&
|
|
|
|
"$PERL_PATH" "$TEST_DIRECTORY"/t7006/test-terminal.perl \
|
|
|
|
sh -c "test -t 1"
|
|
|
|
then
|
2010-04-15 02:38:07 +02:00
|
|
|
>test_terminal_works
|
2010-02-19 08:18:58 +01:00
|
|
|
fi
|
|
|
|
'
|
|
|
|
|
|
|
|
if test -e stdout_is_tty
|
|
|
|
then
|
2010-02-20 09:50:25 +01:00
|
|
|
test_terminal() { "$@"; }
|
|
|
|
test_set_prereq TTY
|
|
|
|
elif test -e test_terminal_works
|
|
|
|
then
|
|
|
|
test_terminal() {
|
|
|
|
"$PERL_PATH" "$TEST_DIRECTORY"/t7006/test-terminal.perl "$@"
|
|
|
|
}
|
2010-02-19 08:18:58 +01:00
|
|
|
test_set_prereq TTY
|
|
|
|
else
|
2010-06-24 19:44:48 +02:00
|
|
|
say "# no usable terminal, so skipping some tests"
|
2010-02-19 08:18:58 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
2010-06-02 17:32:26 +02:00
|
|
|
unset GIT_PAGER GIT_PAGER_IN_USE;
|
2010-04-15 02:38:07 +02:00
|
|
|
test_might_fail git config --unset core.pager &&
|
|
|
|
|
|
|
|
PAGER="cat >paginated.out" &&
|
|
|
|
export PAGER &&
|
|
|
|
|
2010-02-19 08:18:58 +01:00
|
|
|
test_commit initial
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success TTY 'some commands use a pager' '
|
2010-04-15 02:38:07 +02:00
|
|
|
rm -f paginated.out ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
2010-02-20 09:50:25 +01:00
|
|
|
test_terminal git log &&
|
2010-02-19 08:18:58 +01:00
|
|
|
test -e paginated.out
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success TTY 'some commands do not use a pager' '
|
2010-04-15 02:38:07 +02:00
|
|
|
rm -f paginated.out ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
2010-02-20 09:50:25 +01:00
|
|
|
test_terminal git rev-list HEAD &&
|
2010-02-19 08:18:58 +01:00
|
|
|
! test -e paginated.out
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'no pager when stdout is a pipe' '
|
2010-04-15 02:38:07 +02:00
|
|
|
rm -f paginated.out ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
2010-02-19 08:18:58 +01:00
|
|
|
git log | cat &&
|
|
|
|
! test -e paginated.out
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'no pager when stdout is a regular file' '
|
2010-04-15 02:38:07 +02:00
|
|
|
rm -f paginated.out ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
|
|
|
git log >file &&
|
2010-02-19 08:18:58 +01:00
|
|
|
! test -e paginated.out
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success TTY 'git --paginate rev-list uses a pager' '
|
2010-04-15 02:38:07 +02:00
|
|
|
rm -f paginated.out ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
2010-02-20 09:50:25 +01:00
|
|
|
test_terminal git --paginate rev-list HEAD &&
|
2010-02-19 08:18:58 +01:00
|
|
|
test -e paginated.out
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'no pager even with --paginate when stdout is a pipe' '
|
2010-04-15 02:38:07 +02:00
|
|
|
rm -f file paginated.out ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
2010-02-19 08:18:58 +01:00
|
|
|
git --paginate log | cat &&
|
|
|
|
! test -e paginated.out
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success TTY 'no pager with --no-pager' '
|
2010-04-15 02:38:07 +02:00
|
|
|
rm -f paginated.out ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
2010-02-20 09:50:25 +01:00
|
|
|
test_terminal git --no-pager log &&
|
2010-02-19 08:18:58 +01:00
|
|
|
! test -e paginated.out
|
|
|
|
'
|
|
|
|
|
|
|
|
# A colored commit log will begin with an appropriate ANSI escape
|
|
|
|
# for the first color; the text "commit" comes later.
|
|
|
|
colorful() {
|
2010-04-15 02:38:07 +02:00
|
|
|
read firstline <$1
|
2010-06-21 20:18:54 +02:00
|
|
|
! expr "$firstline" : "[a-zA-Z]" >/dev/null
|
2010-02-19 08:18:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
test_expect_success 'tests can detect color' '
|
2010-04-15 02:38:07 +02:00
|
|
|
rm -f colorful.log colorless.log ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
|
|
|
git log --no-color >colorless.log &&
|
|
|
|
git log --color >colorful.log &&
|
2010-02-19 08:18:58 +01:00
|
|
|
! colorful colorless.log &&
|
|
|
|
colorful colorful.log
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'no color when stdout is a regular file' '
|
2010-04-15 02:38:07 +02:00
|
|
|
rm -f colorless.log &&
|
|
|
|
git config color.ui auto ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
|
|
|
git log >colorless.log &&
|
2010-02-19 08:18:58 +01:00
|
|
|
! colorful colorless.log
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success TTY 'color when writing to a pager' '
|
2010-04-15 02:38:07 +02:00
|
|
|
rm -f paginated.out &&
|
|
|
|
git config color.ui auto ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
|
|
|
(
|
|
|
|
TERM=vt100 &&
|
|
|
|
export TERM &&
|
|
|
|
test_terminal git log
|
|
|
|
) &&
|
2010-02-19 08:18:58 +01:00
|
|
|
colorful paginated.out
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'color when writing to a file intended for a pager' '
|
2010-04-15 02:38:07 +02:00
|
|
|
rm -f colorful.log &&
|
|
|
|
git config color.ui auto ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
|
|
|
(
|
|
|
|
TERM=vt100 &&
|
|
|
|
GIT_PAGER_IN_USE=true &&
|
|
|
|
export TERM GIT_PAGER_IN_USE &&
|
|
|
|
git log >colorful.log
|
|
|
|
) &&
|
2010-02-19 08:18:58 +01:00
|
|
|
colorful colorful.log
|
|
|
|
'
|
|
|
|
|
2010-06-12 18:36:51 +02:00
|
|
|
if test_have_prereq SIMPLEPAGER && test_have_prereq TTY
|
2010-02-19 08:18:58 +01:00
|
|
|
then
|
2010-06-12 18:36:51 +02:00
|
|
|
test_set_prereq SIMPLEPAGERTTY
|
2010-02-19 08:18:58 +01:00
|
|
|
fi
|
|
|
|
|
2010-06-12 18:36:51 +02:00
|
|
|
test_expect_success SIMPLEPAGERTTY 'default pager is used by default' '
|
2010-06-02 17:32:26 +02:00
|
|
|
unset PAGER GIT_PAGER;
|
2010-04-15 02:38:07 +02:00
|
|
|
test_might_fail git config --unset core.pager &&
|
|
|
|
rm -f default_pager_used ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
|
|
|
cat >$less <<-\EOF &&
|
|
|
|
#!/bin/sh
|
|
|
|
wc >default_pager_used
|
2010-02-19 08:18:58 +01:00
|
|
|
EOF
|
|
|
|
chmod +x $less &&
|
2010-04-15 02:38:07 +02:00
|
|
|
(
|
|
|
|
PATH=.:$PATH &&
|
|
|
|
export PATH &&
|
|
|
|
test_terminal git log
|
|
|
|
) &&
|
2010-02-19 08:18:58 +01:00
|
|
|
test -e default_pager_used
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success TTY 'PAGER overrides default pager' '
|
2010-06-02 17:32:26 +02:00
|
|
|
unset GIT_PAGER;
|
2010-04-15 02:38:07 +02:00
|
|
|
test_might_fail git config --unset core.pager &&
|
|
|
|
rm -f PAGER_used ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
|
|
|
PAGER="wc >PAGER_used" &&
|
2010-02-19 08:18:58 +01:00
|
|
|
export PAGER &&
|
2010-02-20 09:50:25 +01:00
|
|
|
test_terminal git log &&
|
2010-02-19 08:18:58 +01:00
|
|
|
test -e PAGER_used
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success TTY 'core.pager overrides PAGER' '
|
2010-06-02 17:32:26 +02:00
|
|
|
unset GIT_PAGER;
|
2010-04-15 02:38:07 +02:00
|
|
|
rm -f core.pager_used ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
2010-02-22 09:46:33 +01:00
|
|
|
PAGER=wc &&
|
2010-02-19 08:18:58 +01:00
|
|
|
export PAGER &&
|
2010-04-15 02:38:07 +02:00
|
|
|
git config core.pager "wc >core.pager_used" &&
|
2010-02-20 09:50:25 +01:00
|
|
|
test_terminal git log &&
|
2010-02-19 08:18:58 +01:00
|
|
|
test -e core.pager_used
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success TTY 'GIT_PAGER overrides core.pager' '
|
2010-04-15 02:38:07 +02:00
|
|
|
rm -f GIT_PAGER_used ||
|
|
|
|
cleanup_fail &&
|
|
|
|
|
2010-02-22 09:46:33 +01:00
|
|
|
git config core.pager wc &&
|
2010-04-15 02:38:07 +02:00
|
|
|
GIT_PAGER="wc >GIT_PAGER_used" &&
|
2010-02-19 08:18:58 +01:00
|
|
|
export GIT_PAGER &&
|
2010-02-20 09:50:25 +01:00
|
|
|
test_terminal git log &&
|
2010-02-19 08:18:58 +01:00
|
|
|
test -e GIT_PAGER_used
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|