]> git.ipfire.org Git - thirdparty/git.git/blob - t/t3206-range-diff.sh
Merge branch 'js/range-diff-wo-dotdot'
[thirdparty/git.git] / t / t3206-range-diff.sh
1 #!/bin/sh
2
3 test_description='range-diff tests'
4
5 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
6 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
7
8 . ./test-lib.sh
9
10 # Note that because of the range-diff's heuristics, test_commit does more
11 # harm than good. We need some real history.
12
13 test_expect_success 'setup' '
14 git fast-import <"$TEST_DIRECTORY"/t3206/history.export &&
15 test_oid_cache <<-\EOF
16 # topic
17 t1 sha1:4de457d
18 t2 sha1:fccce22
19 t3 sha1:147e64e
20 t4 sha1:a63e992
21 t1 sha256:b89f8b9
22 t2 sha256:5f12aad
23 t3 sha256:ea8b273
24 t4 sha256:14b7336
25
26 # unmodified
27 u1 sha1:35b9b25
28 u2 sha1:de345ab
29 u3 sha1:9af6654
30 u4 sha1:2901f77
31 u1 sha256:e3731be
32 u2 sha256:14fadf8
33 u3 sha256:736c4bc
34 u4 sha256:673e77d
35
36 # reordered
37 r1 sha1:aca177a
38 r2 sha1:14ad629
39 r3 sha1:ee58208
40 r4 sha1:307b27a
41 r1 sha256:f59d3aa
42 r2 sha256:fb261a8
43 r3 sha256:cb2649b
44 r4 sha256:958577e
45
46 # removed (deleted)
47 d1 sha1:7657159
48 d2 sha1:43d84d3
49 d3 sha1:a740396
50 d1 sha256:e312513
51 d2 sha256:eb19258
52 d3 sha256:1ccb3c1
53
54 # added
55 a1 sha1:2716022
56 a2 sha1:b62accd
57 a3 sha1:df46cfa
58 a4 sha1:3e64548
59 a5 sha1:12b4063
60 a1 sha256:d724f4d
61 a2 sha256:1de7762
62 a3 sha256:e159431
63 a4 sha256:b3e483c
64 a5 sha256:90866a7
65
66 # rebased
67 b1 sha1:cc9c443
68 b2 sha1:c5d9641
69 b3 sha1:28cc2b6
70 b4 sha1:5628ab7
71 b5 sha1:a31b12e
72 b1 sha256:a1a8717
73 b2 sha256:20a5862
74 b3 sha256:587172a
75 b4 sha256:2721c5d
76 b5 sha256:7b57864
77
78 # changed
79 c1 sha1:a4b3333
80 c2 sha1:f51d370
81 c3 sha1:0559556
82 c4 sha1:d966c5c
83 c1 sha256:f8c2b9d
84 c2 sha256:3fb6318
85 c3 sha256:168ab68
86 c4 sha256:3526539
87
88 # changed-message
89 m1 sha1:f686024
90 m2 sha1:4ab067d
91 m3 sha1:b9cb956
92 m4 sha1:8add5f1
93 m1 sha256:31e6281
94 m2 sha256:a06bf1b
95 m3 sha256:82dc654
96 m4 sha256:48470c5
97
98 # renamed
99 n1 sha1:f258d75
100 n2 sha1:017b62d
101 n3 sha1:3ce7af6
102 n4 sha1:1e6226b
103 n1 sha256:ad52114
104 n2 sha256:3b54c8f
105 n3 sha256:3b0a644
106 n4 sha256:e461653
107
108 # mode change
109 o1 sha1:4d39cb3
110 o2 sha1:26c107f
111 o3 sha1:4c1e0f5
112 o1 sha256:d0dd598
113 o2 sha256:c4a279e
114 o3 sha256:78459d7
115
116 # added and removed
117 s1 sha1:096b1ba
118 s2 sha1:d92e698
119 s3 sha1:9a1db4d
120 s4 sha1:fea3b5c
121 s1 sha256:a7f9134
122 s2 sha256:b4c2580
123 s3 sha256:1d62aa2
124 s4 sha256:48160e8
125
126 # Empty delimiter (included so lines match neatly)
127 __ sha1:-------
128 __ sha256:-------
129 EOF
130 '
131
132 test_expect_success 'simple A..B A..C (unmodified)' '
133 git range-diff --no-color main..topic main..unmodified \
134 >actual &&
135 cat >expect <<-EOF &&
136 1: $(test_oid t1) = 1: $(test_oid u1) s/5/A/
137 2: $(test_oid t2) = 2: $(test_oid u2) s/4/A/
138 3: $(test_oid t3) = 3: $(test_oid u3) s/11/B/
139 4: $(test_oid t4) = 4: $(test_oid u4) s/12/B/
140 EOF
141 test_cmp expect actual
142 '
143
144 test_expect_success 'simple B...C (unmodified)' '
145 git range-diff --no-color topic...unmodified >actual &&
146 # same "expect" as above
147 test_cmp expect actual
148 '
149
150 test_expect_success 'simple A B C (unmodified)' '
151 git range-diff --no-color main topic unmodified >actual &&
152 # same "expect" as above
153 test_cmp expect actual
154 '
155
156 test_expect_success 'A^! and A^-<n> (unmodified)' '
157 git range-diff --no-color topic^! unmodified^-1 >actual &&
158 cat >expect <<-EOF &&
159 1: $(test_oid t4) = 1: $(test_oid u4) s/12/B/
160 EOF
161 test_cmp expect actual
162 '
163
164 test_expect_success 'A^{/..} is not mistaken for a range' '
165 test_must_fail git range-diff topic^.. topic^{/..} 2>error &&
166 test_i18ngrep "not a commit range" error
167 '
168
169 test_expect_success 'trivial reordering' '
170 git range-diff --no-color main topic reordered >actual &&
171 cat >expect <<-EOF &&
172 1: $(test_oid t1) = 1: $(test_oid r1) s/5/A/
173 3: $(test_oid t3) = 2: $(test_oid r2) s/11/B/
174 4: $(test_oid t4) = 3: $(test_oid r3) s/12/B/
175 2: $(test_oid t2) = 4: $(test_oid r4) s/4/A/
176 EOF
177 test_cmp expect actual
178 '
179
180 test_expect_success 'removed a commit' '
181 git range-diff --no-color main topic removed >actual &&
182 cat >expect <<-EOF &&
183 1: $(test_oid t1) = 1: $(test_oid d1) s/5/A/
184 2: $(test_oid t2) < -: $(test_oid __) s/4/A/
185 3: $(test_oid t3) = 2: $(test_oid d2) s/11/B/
186 4: $(test_oid t4) = 3: $(test_oid d3) s/12/B/
187 EOF
188 test_cmp expect actual
189 '
190
191 test_expect_success 'added a commit' '
192 git range-diff --no-color main topic added >actual &&
193 cat >expect <<-EOF &&
194 1: $(test_oid t1) = 1: $(test_oid a1) s/5/A/
195 2: $(test_oid t2) = 2: $(test_oid a2) s/4/A/
196 -: $(test_oid __) > 3: $(test_oid a3) s/6/A/
197 3: $(test_oid t3) = 4: $(test_oid a4) s/11/B/
198 4: $(test_oid t4) = 5: $(test_oid a5) s/12/B/
199 EOF
200 test_cmp expect actual
201 '
202
203 test_expect_success 'new base, A B C' '
204 git range-diff --no-color main topic rebased >actual &&
205 cat >expect <<-EOF &&
206 1: $(test_oid t1) = 1: $(test_oid b1) s/5/A/
207 2: $(test_oid t2) = 2: $(test_oid b2) s/4/A/
208 3: $(test_oid t3) = 3: $(test_oid b3) s/11/B/
209 4: $(test_oid t4) = 4: $(test_oid b4) s/12/B/
210 EOF
211 test_cmp expect actual
212 '
213
214 test_expect_success 'new base, B...C' '
215 # this syntax includes the commits from main!
216 git range-diff --no-color topic...rebased >actual &&
217 cat >expect <<-EOF &&
218 -: $(test_oid __) > 1: $(test_oid b5) unrelated
219 1: $(test_oid t1) = 2: $(test_oid b1) s/5/A/
220 2: $(test_oid t2) = 3: $(test_oid b2) s/4/A/
221 3: $(test_oid t3) = 4: $(test_oid b3) s/11/B/
222 4: $(test_oid t4) = 5: $(test_oid b4) s/12/B/
223 EOF
224 test_cmp expect actual
225 '
226
227 test_expect_success 'changed commit' '
228 git range-diff --no-color topic...changed >actual &&
229 cat >expect <<-EOF &&
230 1: $(test_oid t1) = 1: $(test_oid c1) s/5/A/
231 2: $(test_oid t2) = 2: $(test_oid c2) s/4/A/
232 3: $(test_oid t3) ! 3: $(test_oid c3) s/11/B/
233 @@ file: A
234 9
235 10
236 -11
237 -+B
238 ++BB
239 12
240 13
241 14
242 4: $(test_oid t4) ! 4: $(test_oid c4) s/12/B/
243 @@ file
244 @@ file: A
245 9
246 10
247 - B
248 + BB
249 -12
250 +B
251 13
252 EOF
253 test_cmp expect actual
254 '
255
256 test_expect_success 'changed commit with --no-patch diff option' '
257 git range-diff --no-color --no-patch topic...changed >actual &&
258 cat >expect <<-EOF &&
259 1: $(test_oid t1) = 1: $(test_oid c1) s/5/A/
260 2: $(test_oid t2) = 2: $(test_oid c2) s/4/A/
261 3: $(test_oid t3) ! 3: $(test_oid c3) s/11/B/
262 4: $(test_oid t4) ! 4: $(test_oid c4) s/12/B/
263 EOF
264 test_cmp expect actual
265 '
266
267 test_expect_success 'changed commit with --stat diff option' '
268 git range-diff --no-color --stat topic...changed >actual &&
269 cat >expect <<-EOF &&
270 1: $(test_oid t1) = 1: $(test_oid c1) s/5/A/
271 2: $(test_oid t2) = 2: $(test_oid c2) s/4/A/
272 3: $(test_oid t3) ! 3: $(test_oid c3) s/11/B/
273 a => b | 2 +-
274 1 file changed, 1 insertion(+), 1 deletion(-)
275 4: $(test_oid t4) ! 4: $(test_oid c4) s/12/B/
276 a => b | 2 +-
277 1 file changed, 1 insertion(+), 1 deletion(-)
278 EOF
279 test_cmp expect actual
280 '
281
282 test_expect_success 'changed commit with sm config' '
283 git range-diff --no-color --submodule=log topic...changed >actual &&
284 cat >expect <<-EOF &&
285 1: $(test_oid t1) = 1: $(test_oid c1) s/5/A/
286 2: $(test_oid t2) = 2: $(test_oid c2) s/4/A/
287 3: $(test_oid t3) ! 3: $(test_oid c3) s/11/B/
288 @@ file: A
289 9
290 10
291 -11
292 -+B
293 ++BB
294 12
295 13
296 14
297 4: $(test_oid t4) ! 4: $(test_oid c4) s/12/B/
298 @@ file
299 @@ file: A
300 9
301 10
302 - B
303 + BB
304 -12
305 +B
306 13
307 EOF
308 test_cmp expect actual
309 '
310
311 test_expect_success 'renamed file' '
312 git range-diff --no-color --submodule=log topic...renamed-file >actual &&
313 sed s/Z/\ /g >expect <<-EOF &&
314 1: $(test_oid t1) = 1: $(test_oid n1) s/5/A/
315 2: $(test_oid t2) ! 2: $(test_oid n2) s/4/A/
316 @@ Metadata
317 ZAuthor: Thomas Rast <trast@inf.ethz.ch>
318 Z
319 Z ## Commit message ##
320 - s/4/A/
321 + s/4/A/ + rename file
322 Z
323 - ## file ##
324 + ## file => renamed-file ##
325 Z@@
326 Z 1
327 Z 2
328 3: $(test_oid t3) ! 3: $(test_oid n3) s/11/B/
329 @@ Metadata
330 Z ## Commit message ##
331 Z s/11/B/
332 Z
333 - ## file ##
334 -@@ file: A
335 + ## renamed-file ##
336 +@@ renamed-file: A
337 Z 8
338 Z 9
339 Z 10
340 4: $(test_oid t4) ! 4: $(test_oid n4) s/12/B/
341 @@ Metadata
342 Z ## Commit message ##
343 Z s/12/B/
344 Z
345 - ## file ##
346 -@@ file: A
347 + ## renamed-file ##
348 +@@ renamed-file: A
349 Z 9
350 Z 10
351 Z B
352 EOF
353 test_cmp expect actual
354 '
355
356 test_expect_success 'file with mode only change' '
357 git range-diff --no-color --submodule=log topic...mode-only-change >actual &&
358 sed s/Z/\ /g >expect <<-EOF &&
359 1: $(test_oid t2) ! 1: $(test_oid o1) s/4/A/
360 @@ Metadata
361 ZAuthor: Thomas Rast <trast@inf.ethz.ch>
362 Z
363 Z ## Commit message ##
364 - s/4/A/
365 + s/4/A/ + add other-file
366 Z
367 Z ## file ##
368 Z@@
369 @@ file
370 Z A
371 Z 6
372 Z 7
373 +
374 + ## other-file (new) ##
375 2: $(test_oid t3) ! 2: $(test_oid o2) s/11/B/
376 @@ Metadata
377 ZAuthor: Thomas Rast <trast@inf.ethz.ch>
378 Z
379 Z ## Commit message ##
380 - s/11/B/
381 + s/11/B/ + mode change other-file
382 Z
383 Z ## file ##
384 Z@@ file: A
385 @@ file: A
386 Z 12
387 Z 13
388 Z 14
389 +
390 + ## other-file (mode change 100644 => 100755) ##
391 3: $(test_oid t4) = 3: $(test_oid o3) s/12/B/
392 EOF
393 test_cmp expect actual
394 '
395
396 test_expect_success 'file added and later removed' '
397 git range-diff --no-color --submodule=log topic...added-removed >actual &&
398 sed s/Z/\ /g >expect <<-EOF &&
399 1: $(test_oid t1) = 1: $(test_oid s1) s/5/A/
400 2: $(test_oid t2) ! 2: $(test_oid s2) s/4/A/
401 @@ Metadata
402 ZAuthor: Thomas Rast <trast@inf.ethz.ch>
403 Z
404 Z ## Commit message ##
405 - s/4/A/
406 + s/4/A/ + new-file
407 Z
408 Z ## file ##
409 Z@@
410 @@ file
411 Z A
412 Z 6
413 Z 7
414 +
415 + ## new-file (new) ##
416 3: $(test_oid t3) ! 3: $(test_oid s3) s/11/B/
417 @@ Metadata
418 ZAuthor: Thomas Rast <trast@inf.ethz.ch>
419 Z
420 Z ## Commit message ##
421 - s/11/B/
422 + s/11/B/ + remove file
423 Z
424 Z ## file ##
425 Z@@ file: A
426 @@ file: A
427 Z 12
428 Z 13
429 Z 14
430 +
431 + ## new-file (deleted) ##
432 4: $(test_oid t4) = 4: $(test_oid s4) s/12/B/
433 EOF
434 test_cmp expect actual
435 '
436
437 test_expect_success 'no commits on one side' '
438 git commit --amend -m "new message" &&
439 git range-diff main HEAD@{1} HEAD
440 '
441
442 test_expect_success 'changed message' '
443 git range-diff --no-color topic...changed-message >actual &&
444 sed s/Z/\ /g >expect <<-EOF &&
445 1: $(test_oid t1) = 1: $(test_oid m1) s/5/A/
446 2: $(test_oid t2) ! 2: $(test_oid m2) s/4/A/
447 @@ Metadata
448 Z ## Commit message ##
449 Z s/4/A/
450 Z
451 + Also a silly comment here!
452 +
453 Z ## file ##
454 Z@@
455 Z 1
456 3: $(test_oid t3) = 3: $(test_oid m3) s/11/B/
457 4: $(test_oid t4) = 4: $(test_oid m4) s/12/B/
458 EOF
459 test_cmp expect actual
460 '
461
462 test_expect_success 'dual-coloring' '
463 sed -e "s|^:||" >expect <<-EOF &&
464 :<YELLOW>1: $(test_oid c1) = 1: $(test_oid m1) s/5/A/<RESET>
465 :<RED>2: $(test_oid c2) <RESET><YELLOW>!<RESET><GREEN> 2: $(test_oid m2)<RESET><YELLOW> s/4/A/<RESET>
466 : <REVERSE><CYAN>@@<RESET> <RESET>Metadata<RESET>
467 : ## Commit message ##<RESET>
468 : s/4/A/<RESET>
469 : <RESET>
470 : <REVERSE><GREEN>+<RESET><BOLD> Also a silly comment here!<RESET>
471 : <REVERSE><GREEN>+<RESET>
472 : ## file ##<RESET>
473 : <CYAN> @@<RESET>
474 : 1<RESET>
475 :<RED>3: $(test_oid c3) <RESET><YELLOW>!<RESET><GREEN> 3: $(test_oid m3)<RESET><YELLOW> s/11/B/<RESET>
476 : <REVERSE><CYAN>@@<RESET> <RESET>file: A<RESET>
477 : 9<RESET>
478 : 10<RESET>
479 : <RED> -11<RESET>
480 : <REVERSE><RED>-<RESET><FAINT;GREEN>+BB<RESET>
481 : <REVERSE><GREEN>+<RESET><BOLD;GREEN>+B<RESET>
482 : 12<RESET>
483 : 13<RESET>
484 : 14<RESET>
485 :<RED>4: $(test_oid c4) <RESET><YELLOW>!<RESET><GREEN> 4: $(test_oid m4)<RESET><YELLOW> s/12/B/<RESET>
486 : <REVERSE><CYAN>@@<RESET> <RESET>file<RESET>
487 : <CYAN> @@ file: A<RESET>
488 : 9<RESET>
489 : 10<RESET>
490 : <REVERSE><RED>-<RESET><FAINT> BB<RESET>
491 : <REVERSE><GREEN>+<RESET><BOLD> B<RESET>
492 : <RED> -12<RESET>
493 : <GREEN> +B<RESET>
494 : 13<RESET>
495 EOF
496 git range-diff changed...changed-message --color --dual-color >actual.raw &&
497 test_decode_color >actual <actual.raw &&
498 test_cmp expect actual
499 '
500
501 for prev in topic main..topic
502 do
503 test_expect_success "format-patch --range-diff=$prev" '
504 git format-patch --cover-letter --range-diff=$prev \
505 main..unmodified >actual &&
506 test_when_finished "rm 000?-*" &&
507 test_line_count = 5 actual &&
508 test_i18ngrep "^Range-diff:$" 0000-* &&
509 grep "= 1: .* s/5/A" 0000-* &&
510 grep "= 2: .* s/4/A" 0000-* &&
511 grep "= 3: .* s/11/B" 0000-* &&
512 grep "= 4: .* s/12/B" 0000-*
513 '
514 done
515
516 test_expect_success 'format-patch --range-diff as commentary' '
517 git format-patch --range-diff=HEAD~1 HEAD~1 >actual &&
518 test_when_finished "rm 0001-*" &&
519 test_line_count = 1 actual &&
520 test_i18ngrep "^Range-diff:$" 0001-* &&
521 grep "> 1: .* new message" 0001-*
522 '
523
524 test_expect_success 'range-diff overrides diff.noprefix internally' '
525 git -c diff.noprefix=true range-diff HEAD^...
526 '
527
528 test_expect_success 'basic with modified format.pretty with suffix' '
529 git -c format.pretty="format:commit %H%d%n" range-diff \
530 main..topic main..unmodified
531 '
532
533 test_expect_success 'basic with modified format.pretty without "commit "' '
534 git -c format.pretty="format:%H%n" range-diff \
535 main..topic main..unmodified
536 '
537
538 test_expect_success 'range-diff compares notes by default' '
539 git notes add -m "topic note" topic &&
540 git notes add -m "unmodified note" unmodified &&
541 test_when_finished git notes remove topic unmodified &&
542 git range-diff --no-color main..topic main..unmodified \
543 >actual &&
544 sed s/Z/\ /g >expect <<-EOF &&
545 1: $(test_oid t1) = 1: $(test_oid u1) s/5/A/
546 2: $(test_oid t2) = 2: $(test_oid u2) s/4/A/
547 3: $(test_oid t3) = 3: $(test_oid u3) s/11/B/
548 4: $(test_oid t4) ! 4: $(test_oid u4) s/12/B/
549 @@ Commit message
550 Z
551 Z
552 Z ## Notes ##
553 - topic note
554 + unmodified note
555 Z
556 Z ## file ##
557 Z@@ file: A
558 EOF
559 test_cmp expect actual
560 '
561
562 test_expect_success 'range-diff with --no-notes' '
563 git notes add -m "topic note" topic &&
564 git notes add -m "unmodified note" unmodified &&
565 test_when_finished git notes remove topic unmodified &&
566 git range-diff --no-color --no-notes main..topic main..unmodified \
567 >actual &&
568 cat >expect <<-EOF &&
569 1: $(test_oid t1) = 1: $(test_oid u1) s/5/A/
570 2: $(test_oid t2) = 2: $(test_oid u2) s/4/A/
571 3: $(test_oid t3) = 3: $(test_oid u3) s/11/B/
572 4: $(test_oid t4) = 4: $(test_oid u4) s/12/B/
573 EOF
574 test_cmp expect actual
575 '
576
577 test_expect_success 'range-diff with multiple --notes' '
578 git notes --ref=note1 add -m "topic note1" topic &&
579 git notes --ref=note1 add -m "unmodified note1" unmodified &&
580 test_when_finished git notes --ref=note1 remove topic unmodified &&
581 git notes --ref=note2 add -m "topic note2" topic &&
582 git notes --ref=note2 add -m "unmodified note2" unmodified &&
583 test_when_finished git notes --ref=note2 remove topic unmodified &&
584 git range-diff --no-color --notes=note1 --notes=note2 main..topic main..unmodified \
585 >actual &&
586 sed s/Z/\ /g >expect <<-EOF &&
587 1: $(test_oid t1) = 1: $(test_oid u1) s/5/A/
588 2: $(test_oid t2) = 2: $(test_oid u2) s/4/A/
589 3: $(test_oid t3) = 3: $(test_oid u3) s/11/B/
590 4: $(test_oid t4) ! 4: $(test_oid u4) s/12/B/
591 @@ Commit message
592 Z
593 Z
594 Z ## Notes (note1) ##
595 - topic note1
596 + unmodified note1
597 Z
598 Z
599 Z ## Notes (note2) ##
600 - topic note2
601 + unmodified note2
602 Z
603 Z ## file ##
604 Z@@ file: A
605 EOF
606 test_cmp expect actual
607 '
608
609 test_expect_success 'format-patch --range-diff does not compare notes by default' '
610 git notes add -m "topic note" topic &&
611 git notes add -m "unmodified note" unmodified &&
612 test_when_finished git notes remove topic unmodified &&
613 git format-patch --cover-letter --range-diff=$prev \
614 main..unmodified >actual &&
615 test_when_finished "rm 000?-*" &&
616 test_line_count = 5 actual &&
617 test_i18ngrep "^Range-diff:$" 0000-* &&
618 grep "= 1: .* s/5/A" 0000-* &&
619 grep "= 2: .* s/4/A" 0000-* &&
620 grep "= 3: .* s/11/B" 0000-* &&
621 grep "= 4: .* s/12/B" 0000-* &&
622 ! grep "Notes" 0000-* &&
623 ! grep "note" 0000-*
624 '
625
626 test_expect_success 'format-patch --range-diff with --no-notes' '
627 git notes add -m "topic note" topic &&
628 git notes add -m "unmodified note" unmodified &&
629 test_when_finished git notes remove topic unmodified &&
630 git format-patch --no-notes --cover-letter --range-diff=$prev \
631 main..unmodified >actual &&
632 test_when_finished "rm 000?-*" &&
633 test_line_count = 5 actual &&
634 test_i18ngrep "^Range-diff:$" 0000-* &&
635 grep "= 1: .* s/5/A" 0000-* &&
636 grep "= 2: .* s/4/A" 0000-* &&
637 grep "= 3: .* s/11/B" 0000-* &&
638 grep "= 4: .* s/12/B" 0000-* &&
639 ! grep "Notes" 0000-* &&
640 ! grep "note" 0000-*
641 '
642
643 test_expect_success 'format-patch --range-diff with --notes' '
644 git notes add -m "topic note" topic &&
645 git notes add -m "unmodified note" unmodified &&
646 test_when_finished git notes remove topic unmodified &&
647 git format-patch --notes --cover-letter --range-diff=$prev \
648 main..unmodified >actual &&
649 test_when_finished "rm 000?-*" &&
650 test_line_count = 5 actual &&
651 test_i18ngrep "^Range-diff:$" 0000-* &&
652 grep "= 1: .* s/5/A" 0000-* &&
653 grep "= 2: .* s/4/A" 0000-* &&
654 grep "= 3: .* s/11/B" 0000-* &&
655 grep "! 4: .* s/12/B" 0000-* &&
656 sed s/Z/\ /g >expect <<-EOF &&
657 @@ Commit message
658 Z
659 Z
660 Z ## Notes ##
661 - topic note
662 + unmodified note
663 Z
664 Z ## file ##
665 Z@@ file: A
666 EOF
667 sed "/@@ Commit message/,/@@ file: A/!d" 0000-* >actual &&
668 test_cmp expect actual
669 '
670
671 test_expect_success 'format-patch --range-diff with format.notes config' '
672 git notes add -m "topic note" topic &&
673 git notes add -m "unmodified note" unmodified &&
674 test_when_finished git notes remove topic unmodified &&
675 test_config format.notes true &&
676 git format-patch --cover-letter --range-diff=$prev \
677 main..unmodified >actual &&
678 test_when_finished "rm 000?-*" &&
679 test_line_count = 5 actual &&
680 test_i18ngrep "^Range-diff:$" 0000-* &&
681 grep "= 1: .* s/5/A" 0000-* &&
682 grep "= 2: .* s/4/A" 0000-* &&
683 grep "= 3: .* s/11/B" 0000-* &&
684 grep "! 4: .* s/12/B" 0000-* &&
685 sed s/Z/\ /g >expect <<-EOF &&
686 @@ Commit message
687 Z
688 Z
689 Z ## Notes ##
690 - topic note
691 + unmodified note
692 Z
693 Z ## file ##
694 Z@@ file: A
695 EOF
696 sed "/@@ Commit message/,/@@ file: A/!d" 0000-* >actual &&
697 test_cmp expect actual
698 '
699
700 test_expect_success 'format-patch --range-diff with multiple notes' '
701 git notes --ref=note1 add -m "topic note1" topic &&
702 git notes --ref=note1 add -m "unmodified note1" unmodified &&
703 test_when_finished git notes --ref=note1 remove topic unmodified &&
704 git notes --ref=note2 add -m "topic note2" topic &&
705 git notes --ref=note2 add -m "unmodified note2" unmodified &&
706 test_when_finished git notes --ref=note2 remove topic unmodified &&
707 git format-patch --notes=note1 --notes=note2 --cover-letter --range-diff=$prev \
708 main..unmodified >actual &&
709 test_when_finished "rm 000?-*" &&
710 test_line_count = 5 actual &&
711 test_i18ngrep "^Range-diff:$" 0000-* &&
712 grep "= 1: .* s/5/A" 0000-* &&
713 grep "= 2: .* s/4/A" 0000-* &&
714 grep "= 3: .* s/11/B" 0000-* &&
715 grep "! 4: .* s/12/B" 0000-* &&
716 sed s/Z/\ /g >expect <<-EOF &&
717 @@ Commit message
718 Z
719 Z
720 Z ## Notes (note1) ##
721 - topic note1
722 + unmodified note1
723 Z
724 Z
725 Z ## Notes (note2) ##
726 - topic note2
727 + unmodified note2
728 Z
729 Z ## file ##
730 Z@@ file: A
731 EOF
732 sed "/@@ Commit message/,/@@ file: A/!d" 0000-* >actual &&
733 test_cmp expect actual
734 '
735
736 test_done