b22195f8bbbe369349b24ba1a61734087b476b47
1#!/bin/sh
2
3test_description='word diff colors'
4
5. ./test-lib.sh
6
7test_expect_success setup '
8
9 git config diff.color.old red
10 git config diff.color.new green
11
12'
13
14decrypt_color () {
15 sed \
16 -e 's/.\[1m/<WHITE>/g' \
17 -e 's/.\[31m/<RED>/g' \
18 -e 's/.\[32m/<GREEN>/g' \
19 -e 's/.\[36m/<BROWN>/g' \
20 -e 's/.\[m/<RESET>/g'
21}
22
23word_diff () {
24 test_must_fail git diff --no-index "$@" pre post > output &&
25 decrypt_color < output > output.decrypted &&
26 test_cmp expect output.decrypted
27}
28
29cat > pre <<\EOF
30h(4)
31
32a = b + c
33EOF
34
35cat > post <<\EOF
36h(4),hh[44]
37
38a = b + c
39
40aa = a
41
42aeff = aeff * ( aaa )
43EOF
44
45cat > expect <<\EOF
46<WHITE>diff --git a/pre b/post<RESET>
47<WHITE>index 330b04f..5ed8eff 100644<RESET>
48<WHITE>--- a/pre<RESET>
49<WHITE>+++ b/post<RESET>
50<BROWN>@@ -1,3 +1,7 @@<RESET>
51<RED>h(4)<RESET><GREEN>h(4),hh[44]<RESET>
52<RESET>
53a = b + c<RESET>
54
55<GREEN>aa = a<RESET>
56
57<GREEN>aeff = aeff * ( aaa )<RESET>
58EOF
59
60test_expect_success 'word diff with runs of whitespace' '
61
62 word_diff --color-words
63
64'
65
66test_done