Fourth batch
[git/raj.git] / t / t4207-log-decoration-colors.sh
blob60f040cab8ad5661b5b9b690798abba467748dd6
1 #!/bin/sh
3 # Copyright (c) 2010 Nazri Ramliy
6 test_description='Test for "git log --decorate" colors'
8 . ./test-lib.sh
10 test_expect_success setup '
11 git config diff.color.commit yellow &&
12 git config color.decorate.branch green &&
13 git config color.decorate.remoteBranch red &&
14 git config color.decorate.tag "reverse bold yellow" &&
15 git config color.decorate.stash magenta &&
16 git config color.decorate.HEAD cyan &&
18 c_reset="<RESET>" &&
20 c_commit="<YELLOW>" &&
21 c_branch="<GREEN>" &&
22 c_remoteBranch="<RED>" &&
23 c_tag="<BOLD;REVERSE;YELLOW>" &&
24 c_stash="<MAGENTA>" &&
25 c_HEAD="<CYAN>" &&
27 test_commit A &&
28 git clone . other &&
30 cd other &&
31 test_commit A1
32 ) &&
34 git remote add -f other ./other &&
35 test_commit B &&
36 git tag v1.0 &&
37 echo >>A.t &&
38 git stash save Changes to A.t
41 cat >expected <<EOF
42 ${c_commit}COMMIT_ID${c_reset}${c_commit} (${c_reset}${c_HEAD}HEAD ->\
43 ${c_reset}${c_branch}master${c_reset}${c_commit},\
44 ${c_reset}${c_tag}tag: v1.0${c_reset}${c_commit},\
45 ${c_reset}${c_tag}tag: B${c_reset}${c_commit})${c_reset} B
46 ${c_commit}COMMIT_ID${c_reset}${c_commit} (${c_reset}${c_tag}tag: A1${c_reset}${c_commit},\
47 ${c_reset}${c_remoteBranch}other/master${c_reset}${c_commit})${c_reset} A1
48 ${c_commit}COMMIT_ID${c_reset}${c_commit} (${c_reset}${c_stash}refs/stash${c_reset}${c_commit})${c_reset}\
49 On master: Changes to A.t
50 ${c_commit}COMMIT_ID${c_reset}${c_commit} (${c_reset}${c_tag}tag: A${c_reset}${c_commit})${c_reset} A
51 EOF
53 # We want log to show all, but the second parent to refs/stash is irrelevant
54 # to this test since it does not contain any decoration, hence --first-parent
55 test_expect_success 'Commit Decorations Colored Correctly' '
56 git log --first-parent --abbrev=10 --all --decorate --oneline --color=always |
57 sed "s/[0-9a-f]\{10,10\}/COMMIT_ID/" |
58 test_decode_color >out &&
59 test_cmp expected out
62 test_done