diff-highlight: ignore test cruft
[git] / contrib / diff-highlight / t / t9400-diff-highlight.sh
1 #!/bin/sh
2
3 test_description='Test diff-highlight'
4
5 CURR_DIR=$(pwd)
6 TEST_OUTPUT_DIRECTORY=$(pwd)
7 TEST_DIRECTORY="$CURR_DIR"/../../../t
8 DIFF_HIGHLIGHT="$CURR_DIR"/../diff-highlight
9
10 CW="$(printf "\033[7m")"        # white
11 CR="$(printf "\033[27m")"       # reset
12
13 . "$TEST_DIRECTORY"/test-lib.sh
14
15 if ! test_have_prereq PERL
16 then
17         skip_all='skipping diff-highlight tests; perl not available'
18         test_done
19 fi
20
21 # dh_test is a test helper function which takes 3 file names as parameters. The
22 # first 2 files are used to generate diff and commit output, which is then
23 # piped through diff-highlight. The 3rd file should contain the expected output
24 # of diff-highlight (minus the diff/commit header, ie. everything after and
25 # including the first @@ line).
26 dh_test () {
27         a="$1" b="$2" &&
28
29         cat >patch.exp &&
30
31         {
32                 cat "$a" >file &&
33                 git add file &&
34                 git commit -m "Add a file" &&
35
36                 cat "$b" >file &&
37                 git diff file >diff.raw &&
38                 git commit -a -m "Update a file" &&
39                 git show >commit.raw
40         } >/dev/null &&
41
42         "$DIFF_HIGHLIGHT" <diff.raw | test_strip_patch_header >diff.act &&
43         "$DIFF_HIGHLIGHT" <commit.raw | test_strip_patch_header >commit.act &&
44         test_cmp patch.exp diff.act &&
45         test_cmp patch.exp commit.act
46 }
47
48 test_strip_patch_header () {
49         sed -n '/^@@/,$p' $*
50 }
51
52 # dh_test_setup_history generates a contrived graph such that we have at least
53 # 1 nesting (E) and 2 nestings (F).
54 #
55 #             A branch
56 #            /
57 #       D---E---F master
58 #
59 #       git log --all --graph
60 #       * commit
61 #       |    A
62 #       | * commit
63 #       | |    F
64 #       | * commit
65 #       |/
66 #       |    E
67 #       * commit
68 #            D
69 #
70 dh_test_setup_history () {
71         echo "file1" >file1 &&
72         echo "file2" >file2 &&
73         echo "file3" >file3 &&
74
75         cat file1 >file &&
76         git add file &&
77         git commit -m "D" &&
78
79         git checkout -b branch &&
80         cat file2 >file &&
81         git commit -a -m "A" &&
82
83         git checkout master &&
84         cat file2 >file &&
85         git commit -a -m "E" &&
86
87         cat file3 >file &&
88         git commit -a -m "F"
89 }
90
91 left_trim () {
92         "$PERL_PATH" -pe 's/^\s+//'
93 }
94
95 trim_graph () {
96         # graphs start with * or |
97         # followed by a space or / or \
98         "$PERL_PATH" -pe 's@^((\*|\|)( |/|\\))+@@'
99 }
100
101 test_expect_success 'diff-highlight highlights the beginning of a line' '
102         cat >a <<-\EOF &&
103                 aaa
104                 bbb
105                 ccc
106         EOF
107
108         cat >b <<-\EOF &&
109                 aaa
110                 0bb
111                 ccc
112         EOF
113
114         dh_test a b <<-EOF
115                 @@ -1,3 +1,3 @@
116                  aaa
117                 -${CW}b${CR}bb
118                 +${CW}0${CR}bb
119                  ccc
120         EOF
121 '
122
123 test_expect_success 'diff-highlight highlights the end of a line' '
124         cat >a <<-\EOF &&
125                 aaa
126                 bbb
127                 ccc
128         EOF
129
130         cat >b <<-\EOF &&
131                 aaa
132                 bb0
133                 ccc
134         EOF
135
136         dh_test a b <<-EOF
137                 @@ -1,3 +1,3 @@
138                  aaa
139                 -bb${CW}b${CR}
140                 +bb${CW}0${CR}
141                  ccc
142         EOF
143 '
144
145 test_expect_success 'diff-highlight highlights the middle of a line' '
146         cat >a <<-\EOF &&
147                 aaa
148                 bbb
149                 ccc
150         EOF
151
152         cat >b <<-\EOF &&
153                 aaa
154                 b0b
155                 ccc
156         EOF
157
158         dh_test a b <<-EOF
159                 @@ -1,3 +1,3 @@
160                  aaa
161                 -b${CW}b${CR}b
162                 +b${CW}0${CR}b
163                  ccc
164         EOF
165 '
166
167 test_expect_success 'diff-highlight does not highlight whole line' '
168         cat >a <<-\EOF &&
169                 aaa
170                 bbb
171                 ccc
172         EOF
173
174         cat >b <<-\EOF &&
175                 aaa
176                 000
177                 ccc
178         EOF
179
180         dh_test a b <<-EOF
181                 @@ -1,3 +1,3 @@
182                  aaa
183                 -bbb
184                 +000
185                  ccc
186         EOF
187 '
188
189 test_expect_failure 'diff-highlight highlights mismatched hunk size' '
190         cat >a <<-\EOF &&
191                 aaa
192                 bbb
193         EOF
194
195         cat >b <<-\EOF &&
196                 aaa
197                 b0b
198                 ccc
199         EOF
200
201         dh_test a b <<-EOF
202                 @@ -1,3 +1,3 @@
203                  aaa
204                 -b${CW}b${CR}b
205                 +b${CW}0${CR}b
206                 +ccc
207         EOF
208 '
209
210 # TODO add multi-byte test
211
212 test_expect_success 'diff-highlight works with the --graph option' '
213         dh_test_setup_history &&
214
215         # topo-order so that the order of the commits is the same as with --graph
216         # trim graph elements so we can do a diff
217         # trim leading space because our trim_graph is not perfect
218         git log --branches -p --topo-order |
219                 "$DIFF_HIGHLIGHT" | left_trim >graph.exp &&
220         git log --branches -p --graph |
221                 "$DIFF_HIGHLIGHT" | trim_graph | left_trim >graph.act &&
222         test_cmp graph.exp graph.act
223 '
224
225 test_done