mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
8126b1267c
To test the color output, we must convince "git branch" to write colors to a non-terminal. We do that now by setting the color config to "always". In preparation for the behavior of "always" changing, let's switch to using the "--color" command-line option, which is more direct. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
43 lines
1.1 KiB
Bash
Executable file
43 lines
1.1 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='basic branch output coloring'
|
|
. ./test-lib.sh
|
|
|
|
test_expect_success 'set up some sample branches' '
|
|
test_commit foo &&
|
|
git update-ref refs/remotes/origin/master HEAD &&
|
|
git update-ref refs/heads/other HEAD
|
|
'
|
|
|
|
# choose non-default colors to make sure config
|
|
# is taking effect
|
|
test_expect_success 'set up some color config' '
|
|
git config color.branch.local blue &&
|
|
git config color.branch.remote yellow &&
|
|
git config color.branch.current cyan
|
|
'
|
|
|
|
test_expect_success 'regular output shows colors' '
|
|
cat >expect <<-\EOF &&
|
|
* <CYAN>master<RESET>
|
|
<BLUE>other<RESET>
|
|
<YELLOW>remotes/origin/master<RESET>
|
|
EOF
|
|
git branch --color -a >actual.raw &&
|
|
test_decode_color <actual.raw >actual &&
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_expect_success 'verbose output shows colors' '
|
|
oid=$(git rev-parse --short HEAD) &&
|
|
cat >expect <<-EOF &&
|
|
* <CYAN>master <RESET> $oid foo
|
|
<BLUE>other <RESET> $oid foo
|
|
<YELLOW>remotes/origin/master<RESET> $oid foo
|
|
EOF
|
|
git branch --color -v -a >actual.raw &&
|
|
test_decode_color <actual.raw >actual &&
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_done
|