]> rtime.felk.cvut.cz Git - git.git/blob - t/t3301-notes.sh
Merge branch 'ar/config-from-command-line'
[git.git] / t / t3301-notes.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2007 Johannes E. Schindelin
4 #
5
6 test_description='Test commit notes'
7
8 . ./test-lib.sh
9
10 cat > fake_editor.sh << \EOF
11 #!/bin/sh
12 echo "$MSG" > "$1"
13 echo "$MSG" >& 2
14 EOF
15 chmod a+x fake_editor.sh
16 GIT_EDITOR=./fake_editor.sh
17 export GIT_EDITOR
18
19 test_expect_success 'cannot annotate non-existing HEAD' '
20         (MSG=3 && export MSG && test_must_fail git notes add)
21 '
22
23 test_expect_success setup '
24         : > a1 &&
25         git add a1 &&
26         test_tick &&
27         git commit -m 1st &&
28         : > a2 &&
29         git add a2 &&
30         test_tick &&
31         git commit -m 2nd
32 '
33
34 test_expect_success 'need valid notes ref' '
35         (MSG=1 GIT_NOTES_REF=/ && export MSG GIT_NOTES_REF &&
36          test_must_fail git notes add) &&
37         (MSG=2 GIT_NOTES_REF=/ && export MSG GIT_NOTES_REF &&
38          test_must_fail git notes show)
39 '
40
41 test_expect_success 'refusing to add notes in refs/heads/' '
42         (MSG=1 GIT_NOTES_REF=refs/heads/bogus &&
43          export MSG GIT_NOTES_REF &&
44          test_must_fail git notes add)
45 '
46
47 test_expect_success 'refusing to edit notes in refs/remotes/' '
48         (MSG=1 GIT_NOTES_REF=refs/remotes/bogus &&
49          export MSG GIT_NOTES_REF &&
50          test_must_fail git notes edit)
51 '
52
53 # 1 indicates caught gracefully by die, 128 means git-show barked
54 test_expect_success 'handle empty notes gracefully' '
55         git notes show ; test 1 = $?
56 '
57
58 test_expect_success 'show non-existent notes entry with %N' '
59         for l in A B
60         do
61                 echo "$l"
62         done >expect &&
63         git show -s --format='A%n%NB' >output &&
64         test_cmp expect output
65 '
66
67 test_expect_success 'create notes' '
68         git config core.notesRef refs/notes/commits &&
69         MSG=b4 git notes add &&
70         test ! -f .git/NOTES_EDITMSG &&
71         test 1 = $(git ls-tree refs/notes/commits | wc -l) &&
72         test b4 = $(git notes show) &&
73         git show HEAD^ &&
74         test_must_fail git notes show HEAD^
75 '
76
77 test_expect_success 'show notes entry with %N' '
78         for l in A b4 B
79         do
80                 echo "$l"
81         done >expect &&
82         git show -s --format='A%n%NB' >output &&
83         test_cmp expect output
84 '
85
86 cat >expect <<EOF
87 d423f8c refs/notes/commits@{0}: notes: Notes added by 'git notes add'
88 EOF
89
90 test_expect_success 'create reflog entry' '
91         git reflog show refs/notes/commits >output &&
92         test_cmp expect output
93 '
94
95 test_expect_success 'edit existing notes' '
96         MSG=b3 git notes edit &&
97         test ! -f .git/NOTES_EDITMSG &&
98         test 1 = $(git ls-tree refs/notes/commits | wc -l) &&
99         test b3 = $(git notes show) &&
100         git show HEAD^ &&
101         test_must_fail git notes show HEAD^
102 '
103
104 test_expect_success 'cannot add note where one exists' '
105         ! MSG=b2 git notes add &&
106         test ! -f .git/NOTES_EDITMSG &&
107         test 1 = $(git ls-tree refs/notes/commits | wc -l) &&
108         test b3 = $(git notes show) &&
109         git show HEAD^ &&
110         test_must_fail git notes show HEAD^
111 '
112
113 test_expect_success 'can overwrite existing note with "git notes add -f"' '
114         MSG=b1 git notes add -f &&
115         test ! -f .git/NOTES_EDITMSG &&
116         test 1 = $(git ls-tree refs/notes/commits | wc -l) &&
117         test b1 = $(git notes show) &&
118         git show HEAD^ &&
119         test_must_fail git notes show HEAD^
120 '
121
122 cat > expect << EOF
123 commit 268048bfb8a1fb38e703baceb8ab235421bf80c5
124 Author: A U Thor <author@example.com>
125 Date:   Thu Apr 7 15:14:13 2005 -0700
126
127     2nd
128
129 Notes:
130     b1
131 EOF
132
133 test_expect_success 'show notes' '
134         ! (git cat-file commit HEAD | grep b1) &&
135         git log -1 > output &&
136         test_cmp expect output
137 '
138
139 test_expect_success 'create multi-line notes (setup)' '
140         : > a3 &&
141         git add a3 &&
142         test_tick &&
143         git commit -m 3rd &&
144         MSG="b3
145 c3c3c3c3
146 d3d3d3" git notes add
147 '
148
149 cat > expect-multiline << EOF
150 commit 1584215f1d29c65e99c6c6848626553fdd07fd75
151 Author: A U Thor <author@example.com>
152 Date:   Thu Apr 7 15:15:13 2005 -0700
153
154     3rd
155
156 Notes:
157     b3
158     c3c3c3c3
159     d3d3d3
160 EOF
161
162 printf "\n" >> expect-multiline
163 cat expect >> expect-multiline
164
165 test_expect_success 'show multi-line notes' '
166         git log -2 > output &&
167         test_cmp expect-multiline output
168 '
169 test_expect_success 'create -F notes (setup)' '
170         : > a4 &&
171         git add a4 &&
172         test_tick &&
173         git commit -m 4th &&
174         echo "xyzzy" > note5 &&
175         git notes add -F note5
176 '
177
178 cat > expect-F << EOF
179 commit 15023535574ded8b1a89052b32673f84cf9582b8
180 Author: A U Thor <author@example.com>
181 Date:   Thu Apr 7 15:16:13 2005 -0700
182
183     4th
184
185 Notes:
186     xyzzy
187 EOF
188
189 printf "\n" >> expect-F
190 cat expect-multiline >> expect-F
191
192 test_expect_success 'show -F notes' '
193         git log -3 > output &&
194         test_cmp expect-F output
195 '
196
197 cat >expect << EOF
198 commit 15023535574ded8b1a89052b32673f84cf9582b8
199 tree e070e3af51011e47b183c33adf9736736a525709
200 parent 1584215f1d29c65e99c6c6848626553fdd07fd75
201 author A U Thor <author@example.com> 1112912173 -0700
202 committer C O Mitter <committer@example.com> 1112912173 -0700
203
204     4th
205 EOF
206 test_expect_success 'git log --pretty=raw does not show notes' '
207         git log -1 --pretty=raw >output &&
208         test_cmp expect output
209 '
210
211 cat >>expect <<EOF
212
213 Notes:
214     xyzzy
215 EOF
216 test_expect_success 'git log --show-notes' '
217         git log -1 --pretty=raw --show-notes >output &&
218         test_cmp expect output
219 '
220
221 test_expect_success 'git log --no-notes' '
222         git log -1 --no-notes >output &&
223         ! grep xyzzy output
224 '
225
226 test_expect_success 'git format-patch does not show notes' '
227         git format-patch -1 --stdout >output &&
228         ! grep xyzzy output
229 '
230
231 test_expect_success 'git format-patch --show-notes does show notes' '
232         git format-patch --show-notes -1 --stdout >output &&
233         grep xyzzy output
234 '
235
236 for pretty in \
237         "" --pretty --pretty=raw --pretty=short --pretty=medium \
238         --pretty=full --pretty=fuller --pretty=format:%s --oneline
239 do
240         case "$pretty" in
241         "") p= not= negate="" ;;
242         ?*) p="$pretty" not=" not" negate="!" ;;
243         esac
244         test_expect_success "git show $pretty does$not show notes" '
245                 git show $p >output &&
246                 eval "$negate grep xyzzy output"
247         '
248 done
249
250 test_expect_success 'create -m notes (setup)' '
251         : > a5 &&
252         git add a5 &&
253         test_tick &&
254         git commit -m 5th &&
255         git notes add -m spam -m "foo
256 bar
257 baz"
258 '
259
260 whitespace="    "
261 cat > expect-m << EOF
262 commit bd1753200303d0a0344be813e504253b3d98e74d
263 Author: A U Thor <author@example.com>
264 Date:   Thu Apr 7 15:17:13 2005 -0700
265
266     5th
267
268 Notes:
269     spam
270 $whitespace
271     foo
272     bar
273     baz
274 EOF
275
276 printf "\n" >> expect-m
277 cat expect-F >> expect-m
278
279 test_expect_success 'show -m notes' '
280         git log -4 > output &&
281         test_cmp expect-m output
282 '
283
284 test_expect_success 'remove note with add -f -F /dev/null (setup)' '
285         git notes add -f -F /dev/null
286 '
287
288 cat > expect-rm-F << EOF
289 commit bd1753200303d0a0344be813e504253b3d98e74d
290 Author: A U Thor <author@example.com>
291 Date:   Thu Apr 7 15:17:13 2005 -0700
292
293     5th
294 EOF
295
296 printf "\n" >> expect-rm-F
297 cat expect-F >> expect-rm-F
298
299 test_expect_success 'verify note removal with -F /dev/null' '
300         git log -4 > output &&
301         test_cmp expect-rm-F output &&
302         ! git notes show
303 '
304
305 test_expect_success 'do not create empty note with -m "" (setup)' '
306         git notes add -m ""
307 '
308
309 test_expect_success 'verify non-creation of note with -m ""' '
310         git log -4 > output &&
311         test_cmp expect-rm-F output &&
312         ! git notes show
313 '
314
315 cat > expect-combine_m_and_F << EOF
316 foo
317
318 xyzzy
319
320 bar
321
322 zyxxy
323
324 baz
325 EOF
326
327 test_expect_success 'create note with combination of -m and -F' '
328         echo "xyzzy" > note_a &&
329         echo "zyxxy" > note_b &&
330         git notes add -m "foo" -F note_a -m "bar" -F note_b -m "baz" &&
331         git notes show > output &&
332         test_cmp expect-combine_m_and_F output
333 '
334
335 test_expect_success 'remove note with "git notes remove" (setup)' '
336         git notes remove HEAD^ &&
337         git notes remove
338 '
339
340 cat > expect-rm-remove << EOF
341 commit bd1753200303d0a0344be813e504253b3d98e74d
342 Author: A U Thor <author@example.com>
343 Date:   Thu Apr 7 15:17:13 2005 -0700
344
345     5th
346
347 commit 15023535574ded8b1a89052b32673f84cf9582b8
348 Author: A U Thor <author@example.com>
349 Date:   Thu Apr 7 15:16:13 2005 -0700
350
351     4th
352 EOF
353
354 printf "\n" >> expect-rm-remove
355 cat expect-multiline >> expect-rm-remove
356
357 test_expect_success 'verify note removal with "git notes remove"' '
358         git log -4 > output &&
359         test_cmp expect-rm-remove output &&
360         ! git notes show HEAD^
361 '
362
363 cat > expect << EOF
364 c18dc024e14f08d18d14eea0d747ff692d66d6a3 1584215f1d29c65e99c6c6848626553fdd07fd75
365 c9c6af7f78bc47490dbf3e822cf2f3c24d4b9061 268048bfb8a1fb38e703baceb8ab235421bf80c5
366 EOF
367
368 test_expect_success 'list notes with "git notes list"' '
369         git notes list > output &&
370         test_cmp expect output
371 '
372
373 test_expect_success 'list notes with "git notes"' '
374         git notes > output &&
375         test_cmp expect output
376 '
377
378 cat > expect << EOF
379 c18dc024e14f08d18d14eea0d747ff692d66d6a3
380 EOF
381
382 test_expect_success 'list specific note with "git notes list <object>"' '
383         git notes list HEAD^^ > output &&
384         test_cmp expect output
385 '
386
387 cat > expect << EOF
388 EOF
389
390 test_expect_success 'listing non-existing notes fails' '
391         test_must_fail git notes list HEAD > output &&
392         test_cmp expect output
393 '
394
395 cat > expect << EOF
396 Initial set of notes
397
398 More notes appended with git notes append
399 EOF
400
401 test_expect_success 'append to existing note with "git notes append"' '
402         git notes add -m "Initial set of notes" &&
403         git notes append -m "More notes appended with git notes append" &&
404         git notes show > output &&
405         test_cmp expect output
406 '
407
408 cat > expect_list << EOF
409 c18dc024e14f08d18d14eea0d747ff692d66d6a3 1584215f1d29c65e99c6c6848626553fdd07fd75
410 c9c6af7f78bc47490dbf3e822cf2f3c24d4b9061 268048bfb8a1fb38e703baceb8ab235421bf80c5
411 4b6ad22357cc8a1296720574b8d2fbc22fab0671 bd1753200303d0a0344be813e504253b3d98e74d
412 EOF
413
414 test_expect_success '"git notes list" does not expand to "git notes list HEAD"' '
415         git notes list > output &&
416         test_cmp expect_list output
417 '
418
419 test_expect_success 'appending empty string does not change existing note' '
420         git notes append -m "" &&
421         git notes show > output &&
422         test_cmp expect output
423 '
424
425 test_expect_success 'git notes append == add when there is no existing note' '
426         git notes remove HEAD &&
427         test_must_fail git notes list HEAD &&
428         git notes append -m "Initial set of notes
429
430 More notes appended with git notes append" &&
431         git notes show > output &&
432         test_cmp expect output
433 '
434
435 test_expect_success 'appending empty string to non-existing note does not create note' '
436         git notes remove HEAD &&
437         test_must_fail git notes list HEAD &&
438         git notes append -m "" &&
439         test_must_fail git notes list HEAD
440 '
441
442 test_expect_success 'create other note on a different notes ref (setup)' '
443         : > a6 &&
444         git add a6 &&
445         test_tick &&
446         git commit -m 6th &&
447         GIT_NOTES_REF="refs/notes/other" git notes add -m "other note"
448 '
449
450 cat > expect-other << EOF
451 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
452 Author: A U Thor <author@example.com>
453 Date:   Thu Apr 7 15:18:13 2005 -0700
454
455     6th
456
457 Notes (other):
458     other note
459 EOF
460
461 cat > expect-not-other << EOF
462 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
463 Author: A U Thor <author@example.com>
464 Date:   Thu Apr 7 15:18:13 2005 -0700
465
466     6th
467 EOF
468
469 test_expect_success 'Do not show note on other ref by default' '
470         git log -1 > output &&
471         test_cmp expect-not-other output
472 '
473
474 test_expect_success 'Do show note when ref is given in GIT_NOTES_REF' '
475         GIT_NOTES_REF="refs/notes/other" git log -1 > output &&
476         test_cmp expect-other output
477 '
478
479 test_expect_success 'Do show note when ref is given in core.notesRef config' '
480         git config core.notesRef "refs/notes/other" &&
481         git log -1 > output &&
482         test_cmp expect-other output
483 '
484
485 test_expect_success 'Do not show note when core.notesRef is overridden' '
486         GIT_NOTES_REF="refs/notes/wrong" git log -1 > output &&
487         test_cmp expect-not-other output
488 '
489
490 cat > expect-both << EOF
491 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
492 Author: A U Thor <author@example.com>
493 Date:   Thu Apr 7 15:18:13 2005 -0700
494
495     6th
496
497 Notes:
498     order test
499
500 Notes (other):
501     other note
502
503 commit bd1753200303d0a0344be813e504253b3d98e74d
504 Author: A U Thor <author@example.com>
505 Date:   Thu Apr 7 15:17:13 2005 -0700
506
507     5th
508
509 Notes:
510     replacement for deleted note
511 EOF
512
513 test_expect_success 'Show all notes when notes.displayRef=refs/notes/*' '
514         GIT_NOTES_REF=refs/notes/commits git notes add \
515                 -m"replacement for deleted note" HEAD^ &&
516         GIT_NOTES_REF=refs/notes/commits git notes add -m"order test" &&
517         git config --unset core.notesRef &&
518         git config notes.displayRef "refs/notes/*" &&
519         git log -2 > output &&
520         test_cmp expect-both output
521 '
522
523 test_expect_success 'core.notesRef is implicitly in notes.displayRef' '
524         git config core.notesRef refs/notes/commits &&
525         git config notes.displayRef refs/notes/other &&
526         git log -2 > output &&
527         test_cmp expect-both output
528 '
529
530 test_expect_success 'notes.displayRef can be given more than once' '
531         git config --unset core.notesRef &&
532         git config notes.displayRef refs/notes/commits &&
533         git config --add notes.displayRef refs/notes/other &&
534         git log -2 > output &&
535         test_cmp expect-both output
536 '
537
538 cat > expect-both-reversed << EOF
539 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
540 Author: A U Thor <author@example.com>
541 Date:   Thu Apr 7 15:18:13 2005 -0700
542
543     6th
544
545 Notes (other):
546     other note
547
548 Notes:
549     order test
550 EOF
551
552 test_expect_success 'notes.displayRef respects order' '
553         git config core.notesRef refs/notes/other &&
554         git config --unset-all notes.displayRef &&
555         git config notes.displayRef refs/notes/commits &&
556         git log -1 > output &&
557         test_cmp expect-both-reversed output
558 '
559
560 test_expect_success 'GIT_NOTES_DISPLAY_REF works' '
561         git config --unset-all core.notesRef &&
562         git config --unset-all notes.displayRef &&
563         GIT_NOTES_DISPLAY_REF=refs/notes/commits:refs/notes/other \
564                 git log -2 > output &&
565         test_cmp expect-both output
566 '
567
568 cat > expect-none << EOF
569 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
570 Author: A U Thor <author@example.com>
571 Date:   Thu Apr 7 15:18:13 2005 -0700
572
573     6th
574
575 commit bd1753200303d0a0344be813e504253b3d98e74d
576 Author: A U Thor <author@example.com>
577 Date:   Thu Apr 7 15:17:13 2005 -0700
578
579     5th
580 EOF
581
582 test_expect_success 'GIT_NOTES_DISPLAY_REF overrides config' '
583         git config notes.displayRef "refs/notes/*" &&
584         GIT_NOTES_REF= GIT_NOTES_DISPLAY_REF= git log -2 > output &&
585         test_cmp expect-none output
586 '
587
588 test_expect_success '--show-notes=* adds to GIT_NOTES_DISPLAY_REF' '
589         GIT_NOTES_REF= GIT_NOTES_DISPLAY_REF= git log --show-notes=* -2 > output &&
590         test_cmp expect-both output
591 '
592
593 cat > expect-commits << EOF
594 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
595 Author: A U Thor <author@example.com>
596 Date:   Thu Apr 7 15:18:13 2005 -0700
597
598     6th
599
600 Notes:
601     order test
602 EOF
603
604 test_expect_success '--no-standard-notes' '
605         git log --no-standard-notes --show-notes=commits -1 > output &&
606         test_cmp expect-commits output
607 '
608
609 test_expect_success '--standard-notes' '
610         git log --no-standard-notes --show-notes=commits \
611                 --standard-notes -2 > output &&
612         test_cmp expect-both output
613 '
614
615 test_expect_success '--show-notes=ref accumulates' '
616         git log --show-notes=other --show-notes=commits \
617                  --no-standard-notes -1 > output &&
618         test_cmp expect-both-reversed output
619 '
620
621 test_expect_success 'Allow notes on non-commits (trees, blobs, tags)' '
622         git config core.notesRef refs/notes/other &&
623         echo "Note on a tree" > expect
624         git notes add -m "Note on a tree" HEAD: &&
625         git notes show HEAD: > actual &&
626         test_cmp expect actual &&
627         echo "Note on a blob" > expect
628         filename=$(git ls-tree --name-only HEAD | head -n1) &&
629         git notes add -m "Note on a blob" HEAD:$filename &&
630         git notes show HEAD:$filename > actual &&
631         test_cmp expect actual &&
632         echo "Note on a tag" > expect
633         git tag -a -m "This is an annotated tag" foobar HEAD^ &&
634         git notes add -m "Note on a tag" foobar &&
635         git notes show foobar > actual &&
636         test_cmp expect actual
637 '
638
639 cat > expect << EOF
640 commit 2ede89468182a62d0bde2583c736089bcf7d7e92
641 Author: A U Thor <author@example.com>
642 Date:   Thu Apr 7 15:19:13 2005 -0700
643
644     7th
645
646 Notes (other):
647     other note
648 EOF
649
650 test_expect_success 'create note from other note with "git notes add -C"' '
651         : > a7 &&
652         git add a7 &&
653         test_tick &&
654         git commit -m 7th &&
655         git notes add -C $(git notes list HEAD^) &&
656         git log -1 > actual &&
657         test_cmp expect actual &&
658         test "$(git notes list HEAD)" = "$(git notes list HEAD^)"
659 '
660
661 test_expect_success 'create note from non-existing note with "git notes add -C" fails' '
662         : > a8 &&
663         git add a8 &&
664         test_tick &&
665         git commit -m 8th &&
666         test_must_fail git notes add -C deadbeef &&
667         test_must_fail git notes list HEAD
668 '
669
670 cat > expect << EOF
671 commit 016e982bad97eacdbda0fcbd7ce5b0ba87c81f1b
672 Author: A U Thor <author@example.com>
673 Date:   Thu Apr 7 15:21:13 2005 -0700
674
675     9th
676
677 Notes (other):
678     yet another note
679 EOF
680
681 test_expect_success 'create note from other note with "git notes add -c"' '
682         : > a9 &&
683         git add a9 &&
684         test_tick &&
685         git commit -m 9th &&
686         MSG="yet another note" git notes add -c $(git notes list HEAD^^) &&
687         git log -1 > actual &&
688         test_cmp expect actual
689 '
690
691 test_expect_success 'create note from non-existing note with "git notes add -c" fails' '
692         : > a10 &&
693         git add a10 &&
694         test_tick &&
695         git commit -m 10th &&
696         test_must_fail MSG="yet another note" git notes add -c deadbeef &&
697         test_must_fail git notes list HEAD
698 '
699
700 cat > expect << EOF
701 commit 016e982bad97eacdbda0fcbd7ce5b0ba87c81f1b
702 Author: A U Thor <author@example.com>
703 Date:   Thu Apr 7 15:21:13 2005 -0700
704
705     9th
706
707 Notes (other):
708     yet another note
709 $whitespace
710     yet another note
711 EOF
712
713 test_expect_success 'append to note from other note with "git notes append -C"' '
714         git notes append -C $(git notes list HEAD^) HEAD^ &&
715         git log -1 HEAD^ > actual &&
716         test_cmp expect actual
717 '
718
719 cat > expect << EOF
720 commit ffed603236bfa3891c49644257a83598afe8ae5a
721 Author: A U Thor <author@example.com>
722 Date:   Thu Apr 7 15:22:13 2005 -0700
723
724     10th
725
726 Notes (other):
727     other note
728 EOF
729
730 test_expect_success 'create note from other note with "git notes append -c"' '
731         MSG="other note" git notes append -c $(git notes list HEAD^) &&
732         git log -1 > actual &&
733         test_cmp expect actual
734 '
735
736 cat > expect << EOF
737 commit ffed603236bfa3891c49644257a83598afe8ae5a
738 Author: A U Thor <author@example.com>
739 Date:   Thu Apr 7 15:22:13 2005 -0700
740
741     10th
742
743 Notes (other):
744     other note
745 $whitespace
746     yet another note
747 EOF
748
749 test_expect_success 'append to note from other note with "git notes append -c"' '
750         MSG="yet another note" git notes append -c $(git notes list HEAD) &&
751         git log -1 > actual &&
752         test_cmp expect actual
753 '
754
755 cat > expect << EOF
756 commit 6352c5e33dbcab725fe0579be16aa2ba8eb369be
757 Author: A U Thor <author@example.com>
758 Date:   Thu Apr 7 15:23:13 2005 -0700
759
760     11th
761
762 Notes (other):
763     other note
764 $whitespace
765     yet another note
766 EOF
767
768 test_expect_success 'copy note with "git notes copy"' '
769         : > a11 &&
770         git add a11 &&
771         test_tick &&
772         git commit -m 11th &&
773         git notes copy HEAD^ HEAD &&
774         git log -1 > actual &&
775         test_cmp expect actual &&
776         test "$(git notes list HEAD)" = "$(git notes list HEAD^)"
777 '
778
779 test_expect_success 'prevent overwrite with "git notes copy"' '
780         test_must_fail git notes copy HEAD~2 HEAD &&
781         git log -1 > actual &&
782         test_cmp expect actual &&
783         test "$(git notes list HEAD)" = "$(git notes list HEAD^)"
784 '
785
786 cat > expect << EOF
787 commit 6352c5e33dbcab725fe0579be16aa2ba8eb369be
788 Author: A U Thor <author@example.com>
789 Date:   Thu Apr 7 15:23:13 2005 -0700
790
791     11th
792
793 Notes (other):
794     yet another note
795 $whitespace
796     yet another note
797 EOF
798
799 test_expect_success 'allow overwrite with "git notes copy -f"' '
800         git notes copy -f HEAD~2 HEAD &&
801         git log -1 > actual &&
802         test_cmp expect actual &&
803         test "$(git notes list HEAD)" = "$(git notes list HEAD~2)"
804 '
805
806 test_expect_success 'cannot copy note from object without notes' '
807         : > a12 &&
808         git add a12 &&
809         test_tick &&
810         git commit -m 12th &&
811         : > a13 &&
812         git add a13 &&
813         test_tick &&
814         git commit -m 13th &&
815         test_must_fail git notes copy HEAD^ HEAD
816 '
817
818 cat > expect << EOF
819 commit e5d4fb5698d564ab8c73551538ecaf2b0c666185
820 Author: A U Thor <author@example.com>
821 Date:   Thu Apr 7 15:25:13 2005 -0700
822
823     13th
824
825 Notes (other):
826     yet another note
827 $whitespace
828     yet another note
829
830 commit 7038787dfe22a14c3867ce816dbba39845359719
831 Author: A U Thor <author@example.com>
832 Date:   Thu Apr 7 15:24:13 2005 -0700
833
834     12th
835
836 Notes (other):
837     other note
838 $whitespace
839     yet another note
840 EOF
841
842 test_expect_success 'git notes copy --stdin' '
843         (echo $(git rev-parse HEAD~3) $(git rev-parse HEAD^); \
844         echo $(git rev-parse HEAD~2) $(git rev-parse HEAD)) |
845         git notes copy --stdin &&
846         git log -2 > output &&
847         test_cmp expect output &&
848         test "$(git notes list HEAD)" = "$(git notes list HEAD~2)" &&
849         test "$(git notes list HEAD^)" = "$(git notes list HEAD~3)"
850 '
851
852 cat > expect << EOF
853 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
854 Author: A U Thor <author@example.com>
855 Date:   Thu Apr 7 15:27:13 2005 -0700
856
857     15th
858
859 commit be28d8b4d9951ad940d229ee3b0b9ee3b1ec273d
860 Author: A U Thor <author@example.com>
861 Date:   Thu Apr 7 15:26:13 2005 -0700
862
863     14th
864 EOF
865
866 test_expect_success 'git notes copy --for-rewrite (unconfigured)' '
867         test_commit 14th &&
868         test_commit 15th &&
869         (echo $(git rev-parse HEAD~3) $(git rev-parse HEAD^); \
870         echo $(git rev-parse HEAD~2) $(git rev-parse HEAD)) |
871         git notes copy --for-rewrite=foo &&
872         git log -2 > output &&
873         test_cmp expect output
874 '
875
876 cat > expect << EOF
877 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
878 Author: A U Thor <author@example.com>
879 Date:   Thu Apr 7 15:27:13 2005 -0700
880
881     15th
882
883 Notes (other):
884     yet another note
885 $whitespace
886     yet another note
887
888 commit be28d8b4d9951ad940d229ee3b0b9ee3b1ec273d
889 Author: A U Thor <author@example.com>
890 Date:   Thu Apr 7 15:26:13 2005 -0700
891
892     14th
893
894 Notes (other):
895     other note
896 $whitespace
897     yet another note
898 EOF
899
900 test_expect_success 'git notes copy --for-rewrite (enabled)' '
901         git config notes.rewriteMode overwrite &&
902         git config notes.rewriteRef "refs/notes/*" &&
903         (echo $(git rev-parse HEAD~3) $(git rev-parse HEAD^); \
904         echo $(git rev-parse HEAD~2) $(git rev-parse HEAD)) |
905         git notes copy --for-rewrite=foo &&
906         git log -2 > output &&
907         test_cmp expect output
908 '
909
910 test_expect_success 'git notes copy --for-rewrite (disabled)' '
911         git config notes.rewrite.bar false &&
912         echo $(git rev-parse HEAD~3) $(git rev-parse HEAD) |
913         git notes copy --for-rewrite=bar &&
914         git log -2 > output &&
915         test_cmp expect output
916 '
917
918 cat > expect << EOF
919 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
920 Author: A U Thor <author@example.com>
921 Date:   Thu Apr 7 15:27:13 2005 -0700
922
923     15th
924
925 Notes (other):
926     a fresh note
927 EOF
928
929 test_expect_success 'git notes copy --for-rewrite (overwrite)' '
930         git notes add -f -m"a fresh note" HEAD^ &&
931         echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
932         git notes copy --for-rewrite=foo &&
933         git log -1 > output &&
934         test_cmp expect output
935 '
936
937 test_expect_success 'git notes copy --for-rewrite (ignore)' '
938         git config notes.rewriteMode ignore &&
939         echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
940         git notes copy --for-rewrite=foo &&
941         git log -1 > output &&
942         test_cmp expect output
943 '
944
945 cat > expect << EOF
946 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
947 Author: A U Thor <author@example.com>
948 Date:   Thu Apr 7 15:27:13 2005 -0700
949
950     15th
951
952 Notes (other):
953     a fresh note
954     another fresh note
955 EOF
956
957 test_expect_success 'git notes copy --for-rewrite (append)' '
958         git notes add -f -m"another fresh note" HEAD^ &&
959         git config notes.rewriteMode concatenate &&
960         echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
961         git notes copy --for-rewrite=foo &&
962         git log -1 > output &&
963         test_cmp expect output
964 '
965
966 cat > expect << EOF
967 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
968 Author: A U Thor <author@example.com>
969 Date:   Thu Apr 7 15:27:13 2005 -0700
970
971     15th
972
973 Notes (other):
974     a fresh note
975     another fresh note
976     append 1
977     append 2
978 EOF
979
980 test_expect_success 'git notes copy --for-rewrite (append two to one)' '
981         git notes add -f -m"append 1" HEAD^ &&
982         git notes add -f -m"append 2" HEAD^^ &&
983         (echo $(git rev-parse HEAD^) $(git rev-parse HEAD);
984         echo $(git rev-parse HEAD^^) $(git rev-parse HEAD)) |
985         git notes copy --for-rewrite=foo &&
986         git log -1 > output &&
987         test_cmp expect output
988 '
989
990 test_expect_success 'git notes copy --for-rewrite (append empty)' '
991         git notes remove HEAD^ &&
992         echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
993         git notes copy --for-rewrite=foo &&
994         git log -1 > output &&
995         test_cmp expect output
996 '
997
998 cat > expect << EOF
999 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
1000 Author: A U Thor <author@example.com>
1001 Date:   Thu Apr 7 15:27:13 2005 -0700
1002
1003     15th
1004
1005 Notes (other):
1006     replacement note 1
1007 EOF
1008
1009 test_expect_success 'GIT_NOTES_REWRITE_MODE works' '
1010         git notes add -f -m"replacement note 1" HEAD^ &&
1011         echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
1012         GIT_NOTES_REWRITE_MODE=overwrite git notes copy --for-rewrite=foo &&
1013         git log -1 > output &&
1014         test_cmp expect output
1015 '
1016
1017 cat > expect << EOF
1018 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
1019 Author: A U Thor <author@example.com>
1020 Date:   Thu Apr 7 15:27:13 2005 -0700
1021
1022     15th
1023
1024 Notes (other):
1025     replacement note 2
1026 EOF
1027
1028 test_expect_success 'GIT_NOTES_REWRITE_REF works' '
1029         git config notes.rewriteMode overwrite &&
1030         git notes add -f -m"replacement note 2" HEAD^ &&
1031         git config --unset-all notes.rewriteRef &&
1032         echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
1033         GIT_NOTES_REWRITE_REF=refs/notes/commits:refs/notes/other \
1034                 git notes copy --for-rewrite=foo &&
1035         git log -1 > output &&
1036         test_cmp expect output
1037 '
1038
1039 test_expect_success 'GIT_NOTES_REWRITE_REF overrides config' '
1040         git config notes.rewriteRef refs/notes/other &&
1041         git notes add -f -m"replacement note 3" HEAD^ &&
1042         echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
1043         GIT_NOTES_REWRITE_REF= git notes copy --for-rewrite=foo &&
1044         git log -1 > output &&
1045         test_cmp expect output
1046 '
1047 test_done