Merge branch 'jc/revision-dash-count-parsing'
[git.git] / t / t3301-notes.sh
blobcfd67ff3dfc64b160bbc53318df3eb661970f2e1
1 #!/bin/sh
3 # Copyright (c) 2007 Johannes E. Schindelin
6 test_description='Test commit notes'
8 . ./test-lib.sh
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
19 test_expect_success 'cannot annotate non-existing HEAD' '
20 test_must_fail env MSG=3 git notes add
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
34 test_expect_success 'need valid notes ref' '
35 test_must_fail env MSG=1 GIT_NOTES_REF=/ git notes show &&
36 test_must_fail env MSG=2 GIT_NOTES_REF=/ git notes show
39 test_expect_success 'refusing to add notes in refs/heads/' '
40 test_must_fail env MSG=1 GIT_NOTES_REF=refs/heads/bogus git notes add
43 test_expect_success 'refusing to edit notes in refs/remotes/' '
44 test_must_fail env MSG=1 GIT_NOTES_REF=refs/heads/bogus git notes edit
47 # 1 indicates caught gracefully by die, 128 means git-show barked
48 test_expect_success 'handle empty notes gracefully' '
49 test_expect_code 1 git notes show
52 test_expect_success 'show non-existent notes entry with %N' '
53 for l in A B
55 echo "$l"
56 done >expect &&
57 git show -s --format='A%n%NB' >output &&
58 test_cmp expect output
61 test_expect_success 'create notes' '
62 git config core.notesRef refs/notes/commits &&
63 MSG=b4 git notes add &&
64 test ! -f .git/NOTES_EDITMSG &&
65 test 1 = $(git ls-tree refs/notes/commits | wc -l) &&
66 test b4 = $(git notes show) &&
67 git show HEAD^ &&
68 test_must_fail git notes show HEAD^
71 test_expect_success 'show notes entry with %N' '
72 for l in A b4 B
74 echo "$l"
75 done >expect &&
76 git show -s --format='A%n%NB' >output &&
77 test_cmp expect output
80 cat >expect <<EOF
81 d423f8c refs/notes/commits@{0}: notes: Notes added by 'git notes add'
82 EOF
84 test_expect_success 'create reflog entry' '
85 git reflog show refs/notes/commits >output &&
86 test_cmp expect output
89 test_expect_success 'edit existing notes' '
90 MSG=b3 git notes edit &&
91 test ! -f .git/NOTES_EDITMSG &&
92 test 1 = $(git ls-tree refs/notes/commits | wc -l) &&
93 test b3 = $(git notes show) &&
94 git show HEAD^ &&
95 test_must_fail git notes show HEAD^
98 test_expect_success 'cannot "git notes add -m" where notes already exists' '
99 test_must_fail git notes add -m "b2" &&
100 test ! -f .git/NOTES_EDITMSG &&
101 test 1 = $(git ls-tree refs/notes/commits | wc -l) &&
102 test b3 = $(git notes show) &&
103 git show HEAD^ &&
104 test_must_fail git notes show HEAD^
107 test_expect_success 'can overwrite existing note with "git notes add -f -m"' '
108 git notes add -f -m "b1" &&
109 test ! -f .git/NOTES_EDITMSG &&
110 test 1 = $(git ls-tree refs/notes/commits | wc -l) &&
111 test b1 = $(git notes show) &&
112 git show HEAD^ &&
113 test_must_fail git notes show HEAD^
116 test_expect_success 'add w/no options on existing note morphs into edit' '
117 MSG=b2 git notes add &&
118 test ! -f .git/NOTES_EDITMSG &&
119 test 1 = $(git ls-tree refs/notes/commits | wc -l) &&
120 test b2 = $(git notes show) &&
121 git show HEAD^ &&
122 test_must_fail git notes show HEAD^
125 test_expect_success 'can overwrite existing note with "git notes add -f"' '
126 MSG=b1 git notes add -f &&
127 test ! -f .git/NOTES_EDITMSG &&
128 test 1 = $(git ls-tree refs/notes/commits | wc -l) &&
129 test b1 = $(git notes show) &&
130 git show HEAD^ &&
131 test_must_fail git notes show HEAD^
134 cat > expect << EOF
135 commit 268048bfb8a1fb38e703baceb8ab235421bf80c5
136 Author: A U Thor <author@example.com>
137 Date: Thu Apr 7 15:14:13 2005 -0700
141 Notes:
145 test_expect_success 'show notes' '
146 ! (git cat-file commit HEAD | grep b1) &&
147 git log -1 > output &&
148 test_cmp expect output
151 test_expect_success 'create multi-line notes (setup)' '
152 : > a3 &&
153 git add a3 &&
154 test_tick &&
155 git commit -m 3rd &&
156 MSG="b3
157 c3c3c3c3
158 d3d3d3" git notes add
161 cat > expect-multiline << EOF
162 commit 1584215f1d29c65e99c6c6848626553fdd07fd75
163 Author: A U Thor <author@example.com>
164 Date: Thu Apr 7 15:15:13 2005 -0700
168 Notes:
170 c3c3c3c3
171 d3d3d3
174 printf "\n" >> expect-multiline
175 cat expect >> expect-multiline
177 test_expect_success 'show multi-line notes' '
178 git log -2 > output &&
179 test_cmp expect-multiline output
181 test_expect_success 'create -F notes (setup)' '
182 : > a4 &&
183 git add a4 &&
184 test_tick &&
185 git commit -m 4th &&
186 echo "xyzzy" > note5 &&
187 git notes add -F note5
190 cat > expect-F << EOF
191 commit 15023535574ded8b1a89052b32673f84cf9582b8
192 Author: A U Thor <author@example.com>
193 Date: Thu Apr 7 15:16:13 2005 -0700
197 Notes:
198 xyzzy
201 printf "\n" >> expect-F
202 cat expect-multiline >> expect-F
204 test_expect_success 'show -F notes' '
205 git log -3 > output &&
206 test_cmp expect-F output
209 test_expect_success 'Re-adding -F notes without -f fails' '
210 echo "zyxxy" > note5 &&
211 test_must_fail git notes add -F note5 &&
212 git log -3 > output &&
213 test_cmp expect-F output
216 cat >expect << EOF
217 commit 15023535574ded8b1a89052b32673f84cf9582b8
218 tree e070e3af51011e47b183c33adf9736736a525709
219 parent 1584215f1d29c65e99c6c6848626553fdd07fd75
220 author A U Thor <author@example.com> 1112912173 -0700
221 committer C O Mitter <committer@example.com> 1112912173 -0700
225 test_expect_success 'git log --pretty=raw does not show notes' '
226 git log -1 --pretty=raw >output &&
227 test_cmp expect output
230 cat >>expect <<EOF
232 Notes:
233 xyzzy
235 test_expect_success 'git log --show-notes' '
236 git log -1 --pretty=raw --show-notes >output &&
237 test_cmp expect output
240 test_expect_success 'git log --no-notes' '
241 git log -1 --no-notes >output &&
242 ! grep xyzzy output
245 test_expect_success 'git format-patch does not show notes' '
246 git format-patch -1 --stdout >output &&
247 ! grep xyzzy output
250 test_expect_success 'git format-patch --show-notes does show notes' '
251 git format-patch --show-notes -1 --stdout >output &&
252 grep xyzzy output
255 for pretty in \
256 "" --pretty --pretty=raw --pretty=short --pretty=medium \
257 --pretty=full --pretty=fuller --pretty=format:%s --oneline
259 case "$pretty" in
260 "") p= not= negate="" ;;
261 ?*) p="$pretty" not=" not" negate="!" ;;
262 esac
263 test_expect_success "git show $pretty does$not show notes" '
264 git show $p >output &&
265 eval "$negate grep xyzzy output"
267 done
269 test_expect_success 'setup alternate notes ref' '
270 git notes --ref=alternate add -m alternate
273 test_expect_success 'git log --notes shows default notes' '
274 git log -1 --notes >output &&
275 grep xyzzy output &&
276 ! grep alternate output
279 test_expect_success 'git log --notes=X shows only X' '
280 git log -1 --notes=alternate >output &&
281 ! grep xyzzy output &&
282 grep alternate output
285 test_expect_success 'git log --notes --notes=X shows both' '
286 git log -1 --notes --notes=alternate >output &&
287 grep xyzzy output &&
288 grep alternate output
291 test_expect_success 'git log --no-notes resets default state' '
292 git log -1 --notes --notes=alternate \
293 --no-notes --notes=alternate \
294 >output &&
295 ! grep xyzzy output &&
296 grep alternate output
299 test_expect_success 'git log --no-notes resets ref list' '
300 git log -1 --notes --notes=alternate \
301 --no-notes --notes \
302 >output &&
303 grep xyzzy output &&
304 ! grep alternate output
307 test_expect_success 'create -m notes (setup)' '
308 : > a5 &&
309 git add a5 &&
310 test_tick &&
311 git commit -m 5th &&
312 git notes add -m spam -m "foo
314 baz"
317 whitespace=" "
318 cat > expect-m << EOF
319 commit bd1753200303d0a0344be813e504253b3d98e74d
320 Author: A U Thor <author@example.com>
321 Date: Thu Apr 7 15:17:13 2005 -0700
325 Notes:
326 spam
327 $whitespace
333 printf "\n" >> expect-m
334 cat expect-F >> expect-m
336 test_expect_success 'show -m notes' '
337 git log -4 > output &&
338 test_cmp expect-m output
341 test_expect_success 'remove note with add -f -F /dev/null (setup)' '
342 git notes add -f -F /dev/null
345 cat > expect-rm-F << EOF
346 commit bd1753200303d0a0344be813e504253b3d98e74d
347 Author: A U Thor <author@example.com>
348 Date: Thu Apr 7 15:17:13 2005 -0700
353 printf "\n" >> expect-rm-F
354 cat expect-F >> expect-rm-F
356 test_expect_success 'verify note removal with -F /dev/null' '
357 git log -4 > output &&
358 test_cmp expect-rm-F output &&
359 test_must_fail git notes show
362 test_expect_success 'do not create empty note with -m "" (setup)' '
363 git notes add -m ""
366 test_expect_success 'verify non-creation of note with -m ""' '
367 git log -4 > output &&
368 test_cmp expect-rm-F output &&
369 test_must_fail git notes show
372 cat > expect-combine_m_and_F << EOF
375 xyzzy
379 zyxxy
384 test_expect_success 'create note with combination of -m and -F' '
385 echo "xyzzy" > note_a &&
386 echo "zyxxy" > note_b &&
387 git notes add -m "foo" -F note_a -m "bar" -F note_b -m "baz" &&
388 git notes show > output &&
389 test_cmp expect-combine_m_and_F output
392 test_expect_success 'remove note with "git notes remove" (setup)' '
393 git notes remove HEAD^ &&
394 git notes remove
397 cat > expect-rm-remove << EOF
398 commit bd1753200303d0a0344be813e504253b3d98e74d
399 Author: A U Thor <author@example.com>
400 Date: Thu Apr 7 15:17:13 2005 -0700
404 commit 15023535574ded8b1a89052b32673f84cf9582b8
405 Author: A U Thor <author@example.com>
406 Date: Thu Apr 7 15:16:13 2005 -0700
411 printf "\n" >> expect-rm-remove
412 cat expect-multiline >> expect-rm-remove
414 test_expect_success 'verify note removal with "git notes remove"' '
415 git log -4 > output &&
416 test_cmp expect-rm-remove output &&
417 test_must_fail git notes show HEAD^
420 cat > expect << EOF
421 c18dc024e14f08d18d14eea0d747ff692d66d6a3 1584215f1d29c65e99c6c6848626553fdd07fd75
422 c9c6af7f78bc47490dbf3e822cf2f3c24d4b9061 268048bfb8a1fb38e703baceb8ab235421bf80c5
425 test_expect_success 'removing non-existing note should not create new commit' '
426 git rev-parse --verify refs/notes/commits > before_commit &&
427 test_must_fail git notes remove HEAD^ &&
428 git rev-parse --verify refs/notes/commits > after_commit &&
429 test_cmp before_commit after_commit
432 test_expect_success 'removing more than one' '
433 before=$(git rev-parse --verify refs/notes/commits) &&
434 test_when_finished "git update-ref refs/notes/commits $before" &&
436 # We have only two -- add another and make sure it stays
437 git notes add -m "extra" &&
438 git notes list HEAD >after-removal-expect &&
439 git notes remove HEAD^^ HEAD^^^ &&
440 git notes list | sed -e "s/ .*//" >actual &&
441 test_cmp after-removal-expect actual
444 test_expect_success 'removing is atomic' '
445 before=$(git rev-parse --verify refs/notes/commits) &&
446 test_when_finished "git update-ref refs/notes/commits $before" &&
447 test_must_fail git notes remove HEAD^^ HEAD^^^ HEAD^ &&
448 after=$(git rev-parse --verify refs/notes/commits) &&
449 test "$before" = "$after"
452 test_expect_success 'removing with --ignore-missing' '
453 before=$(git rev-parse --verify refs/notes/commits) &&
454 test_when_finished "git update-ref refs/notes/commits $before" &&
456 # We have only two -- add another and make sure it stays
457 git notes add -m "extra" &&
458 git notes list HEAD >after-removal-expect &&
459 git notes remove --ignore-missing HEAD^^ HEAD^^^ HEAD^ &&
460 git notes list | sed -e "s/ .*//" >actual &&
461 test_cmp after-removal-expect actual
464 test_expect_success 'removing with --ignore-missing but bogus ref' '
465 before=$(git rev-parse --verify refs/notes/commits) &&
466 test_when_finished "git update-ref refs/notes/commits $before" &&
467 test_must_fail git notes remove --ignore-missing HEAD^^ HEAD^^^ NO-SUCH-COMMIT &&
468 after=$(git rev-parse --verify refs/notes/commits) &&
469 test "$before" = "$after"
472 test_expect_success 'remove reads from --stdin' '
473 before=$(git rev-parse --verify refs/notes/commits) &&
474 test_when_finished "git update-ref refs/notes/commits $before" &&
476 # We have only two -- add another and make sure it stays
477 git notes add -m "extra" &&
478 git notes list HEAD >after-removal-expect &&
479 git rev-parse HEAD^^ HEAD^^^ >input &&
480 git notes remove --stdin <input &&
481 git notes list | sed -e "s/ .*//" >actual &&
482 test_cmp after-removal-expect actual
485 test_expect_success 'remove --stdin is also atomic' '
486 before=$(git rev-parse --verify refs/notes/commits) &&
487 test_when_finished "git update-ref refs/notes/commits $before" &&
488 git rev-parse HEAD^^ HEAD^^^ HEAD^ >input &&
489 test_must_fail git notes remove --stdin <input &&
490 after=$(git rev-parse --verify refs/notes/commits) &&
491 test "$before" = "$after"
494 test_expect_success 'removing with --stdin --ignore-missing' '
495 before=$(git rev-parse --verify refs/notes/commits) &&
496 test_when_finished "git update-ref refs/notes/commits $before" &&
498 # We have only two -- add another and make sure it stays
499 git notes add -m "extra" &&
500 git notes list HEAD >after-removal-expect &&
501 git rev-parse HEAD^^ HEAD^^^ HEAD^ >input &&
502 git notes remove --ignore-missing --stdin <input &&
503 git notes list | sed -e "s/ .*//" >actual &&
504 test_cmp after-removal-expect actual
507 test_expect_success 'list notes with "git notes list"' '
508 git notes list > output &&
509 test_cmp expect output
512 test_expect_success 'list notes with "git notes"' '
513 git notes > output &&
514 test_cmp expect output
517 cat > expect << EOF
518 c18dc024e14f08d18d14eea0d747ff692d66d6a3
521 test_expect_success 'list specific note with "git notes list <object>"' '
522 git notes list HEAD^^ > output &&
523 test_cmp expect output
526 cat > expect << EOF
529 test_expect_success 'listing non-existing notes fails' '
530 test_must_fail git notes list HEAD > output &&
531 test_cmp expect output
534 cat > expect << EOF
535 Initial set of notes
537 More notes appended with git notes append
540 test_expect_success 'append to existing note with "git notes append"' '
541 git notes add -m "Initial set of notes" &&
542 git notes append -m "More notes appended with git notes append" &&
543 git notes show > output &&
544 test_cmp expect output
547 cat > expect_list << EOF
548 c18dc024e14f08d18d14eea0d747ff692d66d6a3 1584215f1d29c65e99c6c6848626553fdd07fd75
549 c9c6af7f78bc47490dbf3e822cf2f3c24d4b9061 268048bfb8a1fb38e703baceb8ab235421bf80c5
550 4b6ad22357cc8a1296720574b8d2fbc22fab0671 bd1753200303d0a0344be813e504253b3d98e74d
553 test_expect_success '"git notes list" does not expand to "git notes list HEAD"' '
554 git notes list > output &&
555 test_cmp expect_list output
558 test_expect_success 'appending empty string does not change existing note' '
559 git notes append -m "" &&
560 git notes show > output &&
561 test_cmp expect output
564 test_expect_success 'git notes append == add when there is no existing note' '
565 git notes remove HEAD &&
566 test_must_fail git notes list HEAD &&
567 git notes append -m "Initial set of notes
569 More notes appended with git notes append" &&
570 git notes show > output &&
571 test_cmp expect output
574 test_expect_success 'appending empty string to non-existing note does not create note' '
575 git notes remove HEAD &&
576 test_must_fail git notes list HEAD &&
577 git notes append -m "" &&
578 test_must_fail git notes list HEAD
581 test_expect_success 'create other note on a different notes ref (setup)' '
582 : > a6 &&
583 git add a6 &&
584 test_tick &&
585 git commit -m 6th &&
586 GIT_NOTES_REF="refs/notes/other" git notes add -m "other note"
589 cat > expect-other << EOF
590 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
591 Author: A U Thor <author@example.com>
592 Date: Thu Apr 7 15:18:13 2005 -0700
596 Notes (other):
597 other note
600 cat > expect-not-other << EOF
601 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
602 Author: A U Thor <author@example.com>
603 Date: Thu Apr 7 15:18:13 2005 -0700
608 test_expect_success 'Do not show note on other ref by default' '
609 git log -1 > output &&
610 test_cmp expect-not-other output
613 test_expect_success 'Do show note when ref is given in GIT_NOTES_REF' '
614 GIT_NOTES_REF="refs/notes/other" git log -1 > output &&
615 test_cmp expect-other output
618 test_expect_success 'Do show note when ref is given in core.notesRef config' '
619 git config core.notesRef "refs/notes/other" &&
620 git log -1 > output &&
621 test_cmp expect-other output
624 test_expect_success 'Do not show note when core.notesRef is overridden' '
625 GIT_NOTES_REF="refs/notes/wrong" git log -1 > output &&
626 test_cmp expect-not-other output
629 cat > expect-both << EOF
630 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
631 Author: A U Thor <author@example.com>
632 Date: Thu Apr 7 15:18:13 2005 -0700
636 Notes:
637 order test
639 Notes (other):
640 other note
642 commit bd1753200303d0a0344be813e504253b3d98e74d
643 Author: A U Thor <author@example.com>
644 Date: Thu Apr 7 15:17:13 2005 -0700
648 Notes:
649 replacement for deleted note
652 test_expect_success 'Show all notes when notes.displayRef=refs/notes/*' '
653 GIT_NOTES_REF=refs/notes/commits git notes add \
654 -m"replacement for deleted note" HEAD^ &&
655 GIT_NOTES_REF=refs/notes/commits git notes add -m"order test" &&
656 git config --unset core.notesRef &&
657 git config notes.displayRef "refs/notes/*" &&
658 git log -2 > output &&
659 test_cmp expect-both output
662 test_expect_success 'core.notesRef is implicitly in notes.displayRef' '
663 git config core.notesRef refs/notes/commits &&
664 git config notes.displayRef refs/notes/other &&
665 git log -2 > output &&
666 test_cmp expect-both output
669 test_expect_success 'notes.displayRef can be given more than once' '
670 git config --unset core.notesRef &&
671 git config notes.displayRef refs/notes/commits &&
672 git config --add notes.displayRef refs/notes/other &&
673 git log -2 > output &&
674 test_cmp expect-both output
677 cat > expect-both-reversed << EOF
678 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
679 Author: A U Thor <author@example.com>
680 Date: Thu Apr 7 15:18:13 2005 -0700
684 Notes (other):
685 other note
687 Notes:
688 order test
691 test_expect_success 'notes.displayRef respects order' '
692 git config core.notesRef refs/notes/other &&
693 git config --unset-all notes.displayRef &&
694 git config notes.displayRef refs/notes/commits &&
695 git log -1 > output &&
696 test_cmp expect-both-reversed output
699 test_expect_success 'GIT_NOTES_DISPLAY_REF works' '
700 git config --unset-all core.notesRef &&
701 git config --unset-all notes.displayRef &&
702 GIT_NOTES_DISPLAY_REF=refs/notes/commits:refs/notes/other \
703 git log -2 > output &&
704 test_cmp expect-both output
707 cat > expect-none << EOF
708 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
709 Author: A U Thor <author@example.com>
710 Date: Thu Apr 7 15:18:13 2005 -0700
714 commit bd1753200303d0a0344be813e504253b3d98e74d
715 Author: A U Thor <author@example.com>
716 Date: Thu Apr 7 15:17:13 2005 -0700
721 test_expect_success 'GIT_NOTES_DISPLAY_REF overrides config' '
722 git config notes.displayRef "refs/notes/*" &&
723 GIT_NOTES_REF= GIT_NOTES_DISPLAY_REF= git log -2 > output &&
724 test_cmp expect-none output
727 test_expect_success '--show-notes=* adds to GIT_NOTES_DISPLAY_REF' '
728 GIT_NOTES_REF= GIT_NOTES_DISPLAY_REF= git log --show-notes=* -2 > output &&
729 test_cmp expect-both output
732 cat > expect-commits << EOF
733 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
734 Author: A U Thor <author@example.com>
735 Date: Thu Apr 7 15:18:13 2005 -0700
739 Notes:
740 order test
743 test_expect_success '--no-standard-notes' '
744 git log --no-standard-notes --show-notes=commits -1 > output &&
745 test_cmp expect-commits output
748 test_expect_success '--standard-notes' '
749 git log --no-standard-notes --show-notes=commits \
750 --standard-notes -2 > output &&
751 test_cmp expect-both output
754 test_expect_success '--show-notes=ref accumulates' '
755 git log --show-notes=other --show-notes=commits \
756 --no-standard-notes -1 > output &&
757 test_cmp expect-both-reversed output
760 test_expect_success 'Allow notes on non-commits (trees, blobs, tags)' '
761 git config core.notesRef refs/notes/other &&
762 echo "Note on a tree" > expect &&
763 git notes add -m "Note on a tree" HEAD: &&
764 git notes show HEAD: > actual &&
765 test_cmp expect actual &&
766 echo "Note on a blob" > expect &&
767 filename=$(git ls-tree --name-only HEAD | head -n1) &&
768 git notes add -m "Note on a blob" HEAD:$filename &&
769 git notes show HEAD:$filename > actual &&
770 test_cmp expect actual &&
771 echo "Note on a tag" > expect &&
772 git tag -a -m "This is an annotated tag" foobar HEAD^ &&
773 git notes add -m "Note on a tag" foobar &&
774 git notes show foobar > actual &&
775 test_cmp expect actual
778 cat > expect << EOF
779 commit 2ede89468182a62d0bde2583c736089bcf7d7e92
780 Author: A U Thor <author@example.com>
781 Date: Thu Apr 7 15:19:13 2005 -0700
785 Notes (other):
786 other note
789 test_expect_success 'create note from other note with "git notes add -C"' '
790 : > a7 &&
791 git add a7 &&
792 test_tick &&
793 git commit -m 7th &&
794 git notes add -C $(git notes list HEAD^) &&
795 git log -1 > actual &&
796 test_cmp expect actual &&
797 test "$(git notes list HEAD)" = "$(git notes list HEAD^)"
800 test_expect_success 'create note from non-existing note with "git notes add -C" fails' '
801 : > a8 &&
802 git add a8 &&
803 test_tick &&
804 git commit -m 8th &&
805 test_must_fail git notes add -C deadbeef &&
806 test_must_fail git notes list HEAD
809 test_expect_success 'create note from non-blob with "git notes add -C" fails' '
810 commit=$(git rev-parse --verify HEAD) &&
811 tree=$(git rev-parse --verify HEAD:) &&
812 test_must_fail git notes add -C $commit &&
813 test_must_fail git notes add -C $tree &&
814 test_must_fail git notes list HEAD
817 cat > expect << EOF
818 commit 80d796defacd5db327b7a4e50099663902fbdc5c
819 Author: A U Thor <author@example.com>
820 Date: Thu Apr 7 15:20:13 2005 -0700
824 Notes (other):
825 This is a blob object
828 test_expect_success 'create note from blob with "git notes add -C" reuses blob id' '
829 blob=$(echo "This is a blob object" | git hash-object -w --stdin) &&
830 git notes add -C $blob &&
831 git log -1 > actual &&
832 test_cmp expect actual &&
833 test "$(git notes list HEAD)" = "$blob"
836 cat > expect << EOF
837 commit 016e982bad97eacdbda0fcbd7ce5b0ba87c81f1b
838 Author: A U Thor <author@example.com>
839 Date: Thu Apr 7 15:21:13 2005 -0700
843 Notes (other):
844 yet another note
847 test_expect_success 'create note from other note with "git notes add -c"' '
848 : > a9 &&
849 git add a9 &&
850 test_tick &&
851 git commit -m 9th &&
852 MSG="yet another note" git notes add -c $(git notes list HEAD^^) &&
853 git log -1 > actual &&
854 test_cmp expect actual
857 test_expect_success 'create note from non-existing note with "git notes add -c" fails' '
858 : > a10 &&
859 git add a10 &&
860 test_tick &&
861 git commit -m 10th &&
862 test_must_fail env MSG="yet another note" git notes add -c deadbeef &&
863 test_must_fail git notes list HEAD
866 cat > expect << EOF
867 commit 016e982bad97eacdbda0fcbd7ce5b0ba87c81f1b
868 Author: A U Thor <author@example.com>
869 Date: Thu Apr 7 15:21:13 2005 -0700
873 Notes (other):
874 yet another note
875 $whitespace
876 yet another note
879 test_expect_success 'append to note from other note with "git notes append -C"' '
880 git notes append -C $(git notes list HEAD^) HEAD^ &&
881 git log -1 HEAD^ > actual &&
882 test_cmp expect actual
885 cat > expect << EOF
886 commit ffed603236bfa3891c49644257a83598afe8ae5a
887 Author: A U Thor <author@example.com>
888 Date: Thu Apr 7 15:22:13 2005 -0700
890 10th
892 Notes (other):
893 other note
896 test_expect_success 'create note from other note with "git notes append -c"' '
897 MSG="other note" git notes append -c $(git notes list HEAD^) &&
898 git log -1 > actual &&
899 test_cmp expect actual
902 cat > expect << EOF
903 commit ffed603236bfa3891c49644257a83598afe8ae5a
904 Author: A U Thor <author@example.com>
905 Date: Thu Apr 7 15:22:13 2005 -0700
907 10th
909 Notes (other):
910 other note
911 $whitespace
912 yet another note
915 test_expect_success 'append to note from other note with "git notes append -c"' '
916 MSG="yet another note" git notes append -c $(git notes list HEAD) &&
917 git log -1 > actual &&
918 test_cmp expect actual
921 cat > expect << EOF
922 commit 6352c5e33dbcab725fe0579be16aa2ba8eb369be
923 Author: A U Thor <author@example.com>
924 Date: Thu Apr 7 15:23:13 2005 -0700
926 11th
928 Notes (other):
929 other note
930 $whitespace
931 yet another note
934 test_expect_success 'copy note with "git notes copy"' '
935 : > a11 &&
936 git add a11 &&
937 test_tick &&
938 git commit -m 11th &&
939 git notes copy HEAD^ HEAD &&
940 git log -1 > actual &&
941 test_cmp expect actual &&
942 test "$(git notes list HEAD)" = "$(git notes list HEAD^)"
945 test_expect_success 'prevent overwrite with "git notes copy"' '
946 test_must_fail git notes copy HEAD~2 HEAD &&
947 git log -1 > actual &&
948 test_cmp expect actual &&
949 test "$(git notes list HEAD)" = "$(git notes list HEAD^)"
952 cat > expect << EOF
953 commit 6352c5e33dbcab725fe0579be16aa2ba8eb369be
954 Author: A U Thor <author@example.com>
955 Date: Thu Apr 7 15:23:13 2005 -0700
957 11th
959 Notes (other):
960 yet another note
961 $whitespace
962 yet another note
965 test_expect_success 'allow overwrite with "git notes copy -f"' '
966 git notes copy -f HEAD~2 HEAD &&
967 git log -1 > actual &&
968 test_cmp expect actual &&
969 test "$(git notes list HEAD)" = "$(git notes list HEAD~2)"
972 test_expect_success 'cannot copy note from object without notes' '
973 : > a12 &&
974 git add a12 &&
975 test_tick &&
976 git commit -m 12th &&
977 : > a13 &&
978 git add a13 &&
979 test_tick &&
980 git commit -m 13th &&
981 test_must_fail git notes copy HEAD^ HEAD
984 cat > expect << EOF
985 commit e5d4fb5698d564ab8c73551538ecaf2b0c666185
986 Author: A U Thor <author@example.com>
987 Date: Thu Apr 7 15:25:13 2005 -0700
989 13th
991 Notes (other):
992 yet another note
993 $whitespace
994 yet another note
996 commit 7038787dfe22a14c3867ce816dbba39845359719
997 Author: A U Thor <author@example.com>
998 Date: Thu Apr 7 15:24:13 2005 -0700
1000 12th
1002 Notes (other):
1003 other note
1004 $whitespace
1005 yet another note
1008 test_expect_success 'git notes copy --stdin' '
1009 (echo $(git rev-parse HEAD~3) $(git rev-parse HEAD^); \
1010 echo $(git rev-parse HEAD~2) $(git rev-parse HEAD)) |
1011 git notes copy --stdin &&
1012 git log -2 > output &&
1013 test_cmp expect output &&
1014 test "$(git notes list HEAD)" = "$(git notes list HEAD~2)" &&
1015 test "$(git notes list HEAD^)" = "$(git notes list HEAD~3)"
1018 cat > expect << EOF
1019 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
1020 Author: A U Thor <author@example.com>
1021 Date: Thu Apr 7 15:27:13 2005 -0700
1023 15th
1025 commit be28d8b4d9951ad940d229ee3b0b9ee3b1ec273d
1026 Author: A U Thor <author@example.com>
1027 Date: Thu Apr 7 15:26:13 2005 -0700
1029 14th
1032 test_expect_success 'git notes copy --for-rewrite (unconfigured)' '
1033 test_commit 14th &&
1034 test_commit 15th &&
1035 (echo $(git rev-parse HEAD~3) $(git rev-parse HEAD^); \
1036 echo $(git rev-parse HEAD~2) $(git rev-parse HEAD)) |
1037 git notes copy --for-rewrite=foo &&
1038 git log -2 > output &&
1039 test_cmp expect output
1042 cat > expect << EOF
1043 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
1044 Author: A U Thor <author@example.com>
1045 Date: Thu Apr 7 15:27:13 2005 -0700
1047 15th
1049 Notes (other):
1050 yet another note
1051 $whitespace
1052 yet another note
1054 commit be28d8b4d9951ad940d229ee3b0b9ee3b1ec273d
1055 Author: A U Thor <author@example.com>
1056 Date: Thu Apr 7 15:26:13 2005 -0700
1058 14th
1060 Notes (other):
1061 other note
1062 $whitespace
1063 yet another note
1066 test_expect_success 'git notes copy --for-rewrite (enabled)' '
1067 git config notes.rewriteMode overwrite &&
1068 git config notes.rewriteRef "refs/notes/*" &&
1069 (echo $(git rev-parse HEAD~3) $(git rev-parse HEAD^); \
1070 echo $(git rev-parse HEAD~2) $(git rev-parse HEAD)) |
1071 git notes copy --for-rewrite=foo &&
1072 git log -2 > output &&
1073 test_cmp expect output
1076 test_expect_success 'git notes copy --for-rewrite (disabled)' '
1077 git config notes.rewrite.bar false &&
1078 echo $(git rev-parse HEAD~3) $(git rev-parse HEAD) |
1079 git notes copy --for-rewrite=bar &&
1080 git log -2 > output &&
1081 test_cmp expect output
1084 cat > expect << EOF
1085 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
1086 Author: A U Thor <author@example.com>
1087 Date: Thu Apr 7 15:27:13 2005 -0700
1089 15th
1091 Notes (other):
1092 a fresh note
1095 test_expect_success 'git notes copy --for-rewrite (overwrite)' '
1096 git notes add -f -m"a fresh note" HEAD^ &&
1097 echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
1098 git notes copy --for-rewrite=foo &&
1099 git log -1 > output &&
1100 test_cmp expect output
1103 test_expect_success 'git notes copy --for-rewrite (ignore)' '
1104 git config notes.rewriteMode ignore &&
1105 echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
1106 git notes copy --for-rewrite=foo &&
1107 git log -1 > output &&
1108 test_cmp expect output
1111 cat > expect << EOF
1112 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
1113 Author: A U Thor <author@example.com>
1114 Date: Thu Apr 7 15:27:13 2005 -0700
1116 15th
1118 Notes (other):
1119 a fresh note
1120 $whitespace
1121 another fresh note
1124 test_expect_success 'git notes copy --for-rewrite (append)' '
1125 git notes add -f -m"another fresh note" HEAD^ &&
1126 git config notes.rewriteMode concatenate &&
1127 echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
1128 git notes copy --for-rewrite=foo &&
1129 git log -1 > output &&
1130 test_cmp expect output
1133 cat > expect << EOF
1134 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
1135 Author: A U Thor <author@example.com>
1136 Date: Thu Apr 7 15:27:13 2005 -0700
1138 15th
1140 Notes (other):
1141 a fresh note
1142 $whitespace
1143 another fresh note
1144 $whitespace
1145 append 1
1146 $whitespace
1147 append 2
1150 test_expect_success 'git notes copy --for-rewrite (append two to one)' '
1151 git notes add -f -m"append 1" HEAD^ &&
1152 git notes add -f -m"append 2" HEAD^^ &&
1153 (echo $(git rev-parse HEAD^) $(git rev-parse HEAD);
1154 echo $(git rev-parse HEAD^^) $(git rev-parse HEAD)) |
1155 git notes copy --for-rewrite=foo &&
1156 git log -1 > output &&
1157 test_cmp expect output
1160 test_expect_success 'git notes copy --for-rewrite (append empty)' '
1161 git notes remove HEAD^ &&
1162 echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
1163 git notes copy --for-rewrite=foo &&
1164 git log -1 > output &&
1165 test_cmp expect output
1168 cat > expect << EOF
1169 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
1170 Author: A U Thor <author@example.com>
1171 Date: Thu Apr 7 15:27:13 2005 -0700
1173 15th
1175 Notes (other):
1176 replacement note 1
1179 test_expect_success 'GIT_NOTES_REWRITE_MODE works' '
1180 git notes add -f -m"replacement note 1" HEAD^ &&
1181 echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
1182 GIT_NOTES_REWRITE_MODE=overwrite git notes copy --for-rewrite=foo &&
1183 git log -1 > output &&
1184 test_cmp expect output
1187 cat > expect << EOF
1188 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
1189 Author: A U Thor <author@example.com>
1190 Date: Thu Apr 7 15:27:13 2005 -0700
1192 15th
1194 Notes (other):
1195 replacement note 2
1198 test_expect_success 'GIT_NOTES_REWRITE_REF works' '
1199 git config notes.rewriteMode overwrite &&
1200 git notes add -f -m"replacement note 2" HEAD^ &&
1201 git config --unset-all notes.rewriteRef &&
1202 echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
1203 GIT_NOTES_REWRITE_REF=refs/notes/commits:refs/notes/other \
1204 git notes copy --for-rewrite=foo &&
1205 git log -1 > output &&
1206 test_cmp expect output
1209 test_expect_success 'GIT_NOTES_REWRITE_REF overrides config' '
1210 git config notes.rewriteRef refs/notes/other &&
1211 git notes add -f -m"replacement note 3" HEAD^ &&
1212 echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
1213 GIT_NOTES_REWRITE_REF= git notes copy --for-rewrite=foo &&
1214 git log -1 > output &&
1215 test_cmp expect output
1218 test_expect_success 'git notes copy diagnoses too many or too few parameters' '
1219 test_must_fail git notes copy &&
1220 test_must_fail git notes copy one two three
1223 test_expect_success 'git notes get-ref (no overrides)' '
1224 git config --unset core.notesRef &&
1225 sane_unset GIT_NOTES_REF &&
1226 test "$(git notes get-ref)" = "refs/notes/commits"
1229 test_expect_success 'git notes get-ref (core.notesRef)' '
1230 git config core.notesRef refs/notes/foo &&
1231 test "$(git notes get-ref)" = "refs/notes/foo"
1234 test_expect_success 'git notes get-ref (GIT_NOTES_REF)' '
1235 test "$(GIT_NOTES_REF=refs/notes/bar git notes get-ref)" = "refs/notes/bar"
1238 test_expect_success 'git notes get-ref (--ref)' '
1239 test "$(GIT_NOTES_REF=refs/notes/bar git notes --ref=baz get-ref)" = "refs/notes/baz"
1242 test_done