color-words: take an optional regular expression describing words
[git/spearce.git] / t / t4034-diff-words.sh
blob48734863013734002deac08b20b1442322cbfbd3
1 #!/bin/sh
3 test_description='word diff colors'
5 . ./test-lib.sh
7 test_expect_success setup '
9 git config diff.color.old red
10 git config diff.color.new green
14 decrypt_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'
23 word_diff () {
24 test_must_fail git diff --no-index "$@" pre post > output &&
25 decrypt_color < output > output.decrypted &&
26 test_cmp expect output.decrypted
29 cat > pre <<\EOF
30 h(4)
32 a = b + c
33 EOF
35 cat > post <<\EOF
36 h(4),hh[44]
38 a = b + c
40 aa = a
42 aeff = aeff * ( aaa )
43 EOF
45 cat > 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>
53 a = b + c<RESET>
55 <GREEN>aa = a<RESET>
57 <GREEN>aeff = aeff * ( aaa )<RESET>
58 EOF
60 test_expect_success 'word diff with runs of whitespace' '
62 word_diff --color-words
66 cat > expect <<\EOF
67 <WHITE>diff --git a/pre b/post<RESET>
68 <WHITE>index 330b04f..5ed8eff 100644<RESET>
69 <WHITE>--- a/pre<RESET>
70 <WHITE>+++ b/post<RESET>
71 <BROWN>@@ -1,3 +1,7 @@<RESET>
72 h(4),<GREEN>hh<RESET>[44]
73 <RESET>
74 a = b + c<RESET>
76 <GREEN>aa = a<RESET>
78 <GREEN>aeff = aeff * ( aaa<RESET> )
79 EOF
81 test_expect_success 'word diff with a regular expression' '
83 word_diff --color-words="[a-z]+"
87 echo 'aaa (aaa)' > pre
88 echo 'aaa (aaa) aaa' > post
90 cat > expect <<\EOF
91 <WHITE>diff --git a/pre b/post<RESET>
92 <WHITE>index c29453b..be22f37 100644<RESET>
93 <WHITE>--- a/pre<RESET>
94 <WHITE>+++ b/post<RESET>
95 <BROWN>@@ -1 +1 @@<RESET>
96 aaa (aaa) <GREEN>aaa<RESET>
97 EOF
99 test_expect_success 'test parsing words for newline' '
101 word_diff --color-words="a+"
105 echo '(:' > pre
106 echo '(' > post
108 cat > expect <<\EOF
109 <WHITE>diff --git a/pre b/post<RESET>
110 <WHITE>index 289cb9d..2d06f37 100644<RESET>
111 <WHITE>--- a/pre<RESET>
112 <WHITE>+++ b/post<RESET>
113 <BROWN>@@ -1 +1 @@<RESET>
114 (<RED>:<RESET>
117 test_expect_success 'test when words are only removed at the end' '
119 word_diff --color-words=.
123 test_done