rev-list: allow commit-only bitmap traversals
[git/raj.git] / t / t3701-add-interactive.sh
blob12ee321707a33bd8455fb30ea24c57d002c13b68
1 #!/bin/sh
3 test_description='add -i basic tests'
4 . ./test-lib.sh
5 . "$TEST_DIRECTORY"/lib-terminal.sh
7 if ! test_have_prereq PERL
8 then
9 skip_all='skipping add -i tests, perl not available'
10 test_done
13 diff_cmp () {
14 for x
16 sed -e '/^index/s/[0-9a-f]*[1-9a-f][0-9a-f]*\.\./1234567../' \
17 -e '/^index/s/\.\.[0-9a-f]*[1-9a-f][0-9a-f]*/..9abcdef/' \
18 -e '/^index/s/ 00*\.\./ 0000000../' \
19 -e '/^index/s/\.\.00*$/..0000000/' \
20 -e '/^index/s/\.\.00* /..0000000 /' \
21 "$x" >"$x.filtered"
22 done
23 test_cmp "$1.filtered" "$2.filtered"
26 # This function uses a trick to manipulate the interactive add to use color:
27 # the `want_color()` function special-cases the situation where a pager was
28 # spawned and Git now wants to output colored text: to detect that situation,
29 # the environment variable `GIT_PAGER_IN_USE` is set. However, color is
30 # suppressed despite that environment variable if the `TERM` variable
31 # indicates a dumb terminal, so we set that variable, too.
33 force_color () {
34 env GIT_PAGER_IN_USE=true TERM=vt100 "$@"
37 test_expect_success 'setup (initial)' '
38 echo content >file &&
39 git add file &&
40 echo more >>file &&
41 echo lines >>file
43 test_expect_success 'status works (initial)' '
44 git add -i </dev/null >output &&
45 grep "+1/-0 *+2/-0 file" output
48 test_expect_success 'setup expected' '
49 cat >expected <<-\EOF
50 new file mode 100644
51 index 0000000..d95f3ad
52 --- /dev/null
53 +++ b/file
54 @@ -0,0 +1 @@
55 +content
56 EOF
59 test_expect_success 'diff works (initial)' '
60 test_write_lines d 1 | git add -i >output &&
61 sed -ne "/new file/,/content/p" <output >diff &&
62 diff_cmp expected diff
64 test_expect_success 'revert works (initial)' '
65 git add file &&
66 test_write_lines r 1 | git add -i &&
67 git ls-files >output &&
68 ! grep . output
71 test_expect_success 'setup (commit)' '
72 echo baseline >file &&
73 git add file &&
74 git commit -m commit &&
75 echo content >>file &&
76 git add file &&
77 echo more >>file &&
78 echo lines >>file
80 test_expect_success 'status works (commit)' '
81 git add -i </dev/null >output &&
82 grep "+1/-0 *+2/-0 file" output
85 test_expect_success 'setup expected' '
86 cat >expected <<-\EOF
87 index 180b47c..b6f2c08 100644
88 --- a/file
89 +++ b/file
90 @@ -1 +1,2 @@
91 baseline
92 +content
93 EOF
96 test_expect_success 'diff works (commit)' '
97 test_write_lines d 1 | git add -i >output &&
98 sed -ne "/^index/,/content/p" <output >diff &&
99 diff_cmp expected diff
101 test_expect_success 'revert works (commit)' '
102 git add file &&
103 test_write_lines r 1 | git add -i &&
104 git add -i </dev/null >output &&
105 grep "unchanged *+3/-0 file" output
108 test_expect_success 'setup expected' '
109 cat >expected <<-\EOF
113 test_expect_success 'dummy edit works' '
114 test_set_editor : &&
115 test_write_lines e a | git add -p &&
116 git diff > diff &&
117 diff_cmp expected diff
120 test_expect_success 'setup patch' '
121 cat >patch <<-\EOF
122 @@ -1,1 +1,4 @@
123 this
124 +patch
125 -does not
126 apply
130 test_expect_success 'setup fake editor' '
131 write_script "fake_editor.sh" <<-\EOF &&
132 mv -f "$1" oldpatch &&
133 mv -f patch "$1"
135 test_set_editor "$(pwd)/fake_editor.sh"
138 test_expect_success 'bad edit rejected' '
139 git reset &&
140 test_write_lines e n d | git add -p >output &&
141 grep "hunk does not apply" output
144 test_expect_success 'setup patch' '
145 cat >patch <<-\EOF
146 this patch
147 is garbage
151 test_expect_success 'garbage edit rejected' '
152 git reset &&
153 test_write_lines e n d | git add -p >output &&
154 grep "hunk does not apply" output
157 test_expect_success 'setup patch' '
158 cat >patch <<-\EOF
159 @@ -1,0 +1,0 @@
160 baseline
161 +content
162 +newcontent
163 +lines
167 test_expect_success 'setup expected' '
168 cat >expected <<-\EOF
169 diff --git a/file b/file
170 index b5dd6c9..f910ae9 100644
171 --- a/file
172 +++ b/file
173 @@ -1,4 +1,4 @@
174 baseline
175 content
176 -newcontent
177 +more
178 lines
182 test_expect_success 'real edit works' '
183 test_write_lines e n d | git add -p &&
184 git diff >output &&
185 diff_cmp expected output
188 test_expect_success 'setup file' '
189 test_write_lines a "" b "" c >file &&
190 git add file &&
191 test_write_lines a "" d "" c >file
194 test_expect_success 'setup patch' '
195 SP=" " &&
196 NULL="" &&
197 cat >patch <<-EOF
198 @@ -1,4 +1,4 @@
200 $NULL
208 test_expect_success 'setup expected' '
209 cat >expected <<-EOF
210 diff --git a/file b/file
211 index b5dd6c9..f910ae9 100644
212 --- a/file
213 +++ b/file
214 @@ -1,5 +1,5 @@
224 test_expect_success 'edit can strip spaces from empty context lines' '
225 test_write_lines e n q | git add -p 2>error &&
226 test_must_be_empty error &&
227 git diff >output &&
228 diff_cmp expected output
231 test_expect_success 'skip files similarly as commit -a' '
232 git reset &&
233 echo file >.gitignore &&
234 echo changed >file &&
235 echo y | git add -p file &&
236 git diff >output &&
237 git reset &&
238 git commit -am commit &&
239 git diff >expected &&
240 diff_cmp expected output &&
241 git reset --hard HEAD^
243 rm -f .gitignore
245 test_expect_success FILEMODE 'patch does not affect mode' '
246 git reset --hard &&
247 echo content >>file &&
248 chmod +x file &&
249 printf "n\\ny\\n" | git add -p &&
250 git show :file | grep content &&
251 git diff file | grep "new mode"
254 test_expect_success FILEMODE 'stage mode but not hunk' '
255 git reset --hard &&
256 echo content >>file &&
257 chmod +x file &&
258 printf "y\\nn\\n" | git add -p &&
259 git diff --cached file | grep "new mode" &&
260 git diff file | grep "+content"
264 test_expect_success FILEMODE 'stage mode and hunk' '
265 git reset --hard &&
266 echo content >>file &&
267 chmod +x file &&
268 printf "y\\ny\\n" | git add -p &&
269 git diff --cached file | grep "new mode" &&
270 git diff --cached file | grep "+content" &&
271 test -z "$(git diff file)"
274 # end of tests disabled when filemode is not usable
276 test_expect_success 'different prompts for mode change/deleted' '
277 git reset --hard &&
278 >file &&
279 >deleted &&
280 git add --chmod=+x file deleted &&
281 echo changed >file &&
282 rm deleted &&
283 test_write_lines n n n |
284 git -c core.filemode=true add -p >actual &&
285 sed -n "s/^\(([0-9/]*) Stage .*?\).*/\1/p" actual >actual.filtered &&
286 cat >expect <<-\EOF &&
287 (1/1) Stage deletion [y,n,q,a,d,?]?
288 (1/2) Stage mode change [y,n,q,a,d,j,J,g,/,?]?
289 (2/2) Stage this hunk [y,n,q,a,d,K,g,/,e,?]?
291 test_cmp expect actual.filtered
294 test_expect_success 'correct message when there is nothing to do' '
295 git reset --hard &&
296 git add -p 2>err &&
297 test_i18ngrep "No changes" err &&
298 printf "\\0123" >binary &&
299 git add binary &&
300 printf "\\0abc" >binary &&
301 git add -p 2>err &&
302 test_i18ngrep "Only binary files changed" err
305 test_expect_success 'setup again' '
306 git reset --hard &&
307 test_chmod +x file &&
308 echo content >>file
311 # Write the patch file with a new line at the top and bottom
312 test_expect_success 'setup patch' '
313 cat >patch <<-\EOF
314 index 180b47c..b6f2c08 100644
315 --- a/file
316 +++ b/file
317 @@ -1,2 +1,4 @@
318 +firstline
319 baseline
320 content
321 +lastline
322 \ No newline at end of file
326 # Expected output, diff is similar to the patch but w/ diff at the top
327 test_expect_success 'setup expected' '
328 echo diff --git a/file b/file >expected &&
329 cat patch |sed "/^index/s/ 100644/ 100755/" >>expected &&
330 cat >expected-output <<-\EOF
331 --- a/file
332 +++ b/file
333 @@ -1,2 +1,4 @@
334 +firstline
335 baseline
336 content
337 +lastline
338 \ No newline at end of file
339 @@ -1,2 +1,3 @@
340 +firstline
341 baseline
342 content
343 @@ -1,2 +2,3 @@
344 baseline
345 content
346 +lastline
347 \ No newline at end of file
351 # Test splitting the first patch, then adding both
352 test_expect_success C_LOCALE_OUTPUT 'add first line works' '
353 git commit -am "clear local changes" &&
354 git apply patch &&
355 printf "%s\n" s y y | git add -p file 2>error |
356 sed -n -e "s/^([1-2]\/[1-2]) Stage this hunk[^@]*\(@@ .*\)/\1/" \
357 -e "/^[-+@ \\\\]"/p >output &&
358 test_must_be_empty error &&
359 git diff --cached >diff &&
360 diff_cmp expected diff &&
361 test_cmp expected-output output
364 test_expect_success 'setup expected' '
365 cat >expected <<-\EOF
366 diff --git a/non-empty b/non-empty
367 deleted file mode 100644
368 index d95f3ad..0000000
369 --- a/non-empty
370 +++ /dev/null
371 @@ -1 +0,0 @@
372 -content
376 test_expect_success 'deleting a non-empty file' '
377 git reset --hard &&
378 echo content >non-empty &&
379 git add non-empty &&
380 git commit -m non-empty &&
381 rm non-empty &&
382 echo y | git add -p non-empty &&
383 git diff --cached >diff &&
384 diff_cmp expected diff
387 test_expect_success 'setup expected' '
388 cat >expected <<-\EOF
389 diff --git a/empty b/empty
390 deleted file mode 100644
391 index e69de29..0000000
395 test_expect_success 'deleting an empty file' '
396 git reset --hard &&
397 > empty &&
398 git add empty &&
399 git commit -m empty &&
400 rm empty &&
401 echo y | git add -p empty &&
402 git diff --cached >diff &&
403 diff_cmp expected diff
406 test_expect_success 'split hunk setup' '
407 git reset --hard &&
408 test_write_lines 10 20 30 40 50 60 >test &&
409 git add test &&
410 test_tick &&
411 git commit -m test &&
413 test_write_lines 10 15 20 21 22 23 24 30 40 50 60 >test
416 test_expect_success 'goto hunk' '
417 test_when_finished "git reset" &&
418 tr _ " " >expect <<-EOF &&
419 (2/2) Stage this hunk [y,n,q,a,d,K,g,/,e,?]? + 1: -1,2 +1,3 +15
420 _ 2: -2,4 +3,8 +21
421 go to which hunk? @@ -1,2 +1,3 @@
425 (1/2) Stage this hunk [y,n,q,a,d,j,J,g,/,e,?]?_
427 test_write_lines s y g 1 | git add -p >actual &&
428 tail -n 7 <actual >actual.trimmed &&
429 test_cmp expect actual.trimmed
432 test_expect_success 'navigate to hunk via regex' '
433 test_when_finished "git reset" &&
434 tr _ " " >expect <<-EOF &&
435 (2/2) Stage this hunk [y,n,q,a,d,K,g,/,e,?]? @@ -1,2 +1,3 @@
439 (1/2) Stage this hunk [y,n,q,a,d,j,J,g,/,e,?]?_
441 test_write_lines s y /1,2 | git add -p >actual &&
442 tail -n 5 <actual >actual.trimmed &&
443 test_cmp expect actual.trimmed
446 test_expect_success 'split hunk "add -p (edit)"' '
447 # Split, say Edit and do nothing. Then:
449 # 1. Broken version results in a patch that does not apply and
450 # only takes [y/n] (edit again) so the first q is discarded
451 # and then n attempts to discard the edit. Repeat q enough
452 # times to get out.
454 # 2. Correct version applies the (not)edited version, and asks
455 # about the next hunk, against which we say q and program
456 # exits.
457 printf "%s\n" s e q n q q |
458 EDITOR=: git add -p &&
459 git diff >actual &&
460 ! grep "^+15" actual
463 test_expect_failure 'split hunk "add -p (no, yes, edit)"' '
464 test_write_lines 5 10 20 21 30 31 40 50 60 >test &&
465 git reset &&
466 # test sequence is s(plit), n(o), y(es), e(dit)
467 # q n q q is there to make sure we exit at the end.
468 printf "%s\n" s n y e q n q q |
469 EDITOR=: git add -p 2>error &&
470 test_must_be_empty error &&
471 git diff >actual &&
472 ! grep "^+31" actual
475 test_expect_success 'split hunk with incomplete line at end' '
476 git reset --hard &&
477 printf "missing LF" >>test &&
478 git add test &&
479 test_write_lines before 10 20 30 40 50 60 70 >test &&
480 git grep --cached missing &&
481 test_write_lines s n y q | git add -p &&
482 test_must_fail git grep --cached missing &&
483 git grep before &&
484 test_must_fail git grep --cached before
487 test_expect_failure 'edit, adding lines to the first hunk' '
488 test_write_lines 10 11 20 30 40 50 51 60 >test &&
489 git reset &&
490 tr _ " " >patch <<-EOF &&
491 @@ -1,5 +1,6 @@
500 # test sequence is s(plit), e(dit), n(o)
501 # q n q q is there to make sure we exit at the end.
502 printf "%s\n" s e n q n q q |
503 EDITOR=./fake_editor.sh git add -p 2>error &&
504 test_must_be_empty error &&
505 git diff --cached >actual &&
506 grep "^+22" actual
509 test_expect_success 'patch mode ignores unmerged entries' '
510 git reset --hard &&
511 test_commit conflict &&
512 test_commit non-conflict &&
513 git checkout -b side &&
514 test_commit side conflict.t &&
515 git checkout master &&
516 test_commit master conflict.t &&
517 test_must_fail git merge side &&
518 echo changed >non-conflict.t &&
519 echo y | git add -p >output &&
520 ! grep a/conflict.t output &&
521 cat >expected <<-\EOF &&
522 * Unmerged path conflict.t
523 diff --git a/non-conflict.t b/non-conflict.t
524 index f766221..5ea2ed4 100644
525 --- a/non-conflict.t
526 +++ b/non-conflict.t
527 @@ -1 +1 @@
528 -non-conflict
529 +changed
531 git diff --cached >diff &&
532 diff_cmp expected diff
535 test_expect_success 'diffs can be colorized' '
536 git reset --hard &&
538 echo content >test &&
539 printf y >y &&
540 force_color git add -p >output 2>&1 <y &&
542 # We do not want to depend on the exact coloring scheme
543 # git uses for diffs, so just check that we saw some kind of color.
544 grep "$(printf "\\033")" output
547 test_expect_success 'diffFilter filters diff' '
548 git reset --hard &&
550 echo content >test &&
551 test_config interactive.diffFilter "sed s/^/foo:/" &&
552 printf y >y &&
553 force_color git add -p >output 2>&1 <y &&
555 # avoid depending on the exact coloring or content of the prompts,
556 # and just make sure we saw our diff prefixed
557 grep foo:.*content output
560 test_expect_success 'detect bogus diffFilter output' '
561 git reset --hard &&
563 echo content >test &&
564 test_config interactive.diffFilter "echo too-short" &&
565 printf y >y &&
566 test_must_fail force_color git add -p <y
569 test_expect_success 'diff.algorithm is passed to `git diff-files`' '
570 git reset --hard &&
572 >file &&
573 git add file &&
574 echo changed >file &&
575 test_must_fail git -c diff.algorithm=bogus add -p 2>err &&
576 test_i18ngrep "error: option diff-algorithm accepts " err
579 test_expect_success 'patch-mode via -i prompts for files' '
580 git reset --hard &&
582 echo one >file &&
583 echo two >test &&
584 git add -i <<-\EOF &&
585 patch
586 test
589 quit
592 echo test >expect &&
593 git diff --cached --name-only >actual &&
594 diff_cmp expect actual
597 test_expect_success 'add -p handles globs' '
598 git reset --hard &&
600 mkdir -p subdir &&
601 echo base >one.c &&
602 echo base >subdir/two.c &&
603 git add "*.c" &&
604 git commit -m base &&
606 echo change >one.c &&
607 echo change >subdir/two.c &&
608 git add -p "*.c" <<-\EOF &&
613 cat >expect <<-\EOF &&
614 one.c
615 subdir/two.c
617 git diff --cached --name-only >actual &&
618 test_cmp expect actual
621 test_expect_success 'add -p handles relative paths' '
622 git reset --hard &&
624 echo base >relpath.c &&
625 git add "*.c" &&
626 git commit -m relpath &&
628 echo change >relpath.c &&
629 mkdir -p subdir &&
630 git -C subdir add -p .. 2>error <<-\EOF &&
634 test_must_be_empty error &&
636 cat >expect <<-\EOF &&
637 relpath.c
639 git diff --cached --name-only >actual &&
640 test_cmp expect actual
643 test_expect_success 'add -p does not expand argument lists' '
644 git reset --hard &&
646 echo content >not-changed &&
647 git add not-changed &&
648 git commit -m "add not-changed file" &&
650 echo change >file &&
651 GIT_TRACE=$(pwd)/trace.out git add -p . <<-\EOF &&
655 # we know that "file" must be mentioned since we actually
656 # update it, but we want to be sure that our "." pathspec
657 # was not expanded into the argument list of any command.
658 # So look only for "not-changed".
659 ! grep -E "^trace: (built-in|exec|run_command): .*not-changed" trace.out
662 test_expect_success 'hunk-editing handles custom comment char' '
663 git reset --hard &&
664 echo change >>file &&
665 test_config core.commentChar "\$" &&
666 echo e | GIT_EDITOR=true git add -p &&
667 git diff --exit-code
670 test_expect_success 'add -p works even with color.ui=always' '
671 git reset --hard &&
672 echo change >>file &&
673 test_config color.ui always &&
674 echo y | git add -p &&
675 echo file >expect &&
676 git diff --cached --name-only >actual &&
677 test_cmp expect actual
680 test_expect_success 'setup different kinds of dirty submodules' '
681 test_create_repo for-submodules &&
683 cd for-submodules &&
684 test_commit initial &&
685 test_create_repo dirty-head &&
687 cd dirty-head &&
688 test_commit initial
689 ) &&
690 cp -R dirty-head dirty-otherwise &&
691 cp -R dirty-head dirty-both-ways &&
692 git add dirty-head &&
693 git add dirty-otherwise dirty-both-ways &&
694 git commit -m initial &&
696 cd dirty-head &&
697 test_commit updated &&
698 cd ../dirty-both-ways &&
699 test_commit updated &&
700 echo dirty >>initial &&
701 : >untracked &&
702 cd ../dirty-otherwise &&
703 echo dirty >>initial &&
704 : >untracked
705 ) &&
706 git -C for-submodules diff-files --name-only >actual &&
707 cat >expected <<-\EOF &&
708 dirty-both-ways
709 dirty-head
710 dirty-otherwise
712 test_cmp expected actual &&
713 git -C for-submodules diff-files --name-only --ignore-submodules=dirty >actual &&
714 cat >expected <<-\EOF &&
715 dirty-both-ways
716 dirty-head
718 test_cmp expected actual
721 test_expect_success 'status ignores dirty submodules (except HEAD)' '
722 git -C for-submodules add -i </dev/null >output &&
723 grep dirty-head output &&
724 grep dirty-both-ways output &&
725 ! grep dirty-otherwise output
728 test_expect_success 'set up pathological context' '
729 git reset --hard &&
730 test_write_lines a a a a a a a a a a a >a &&
731 git add a &&
732 git commit -m a &&
733 test_write_lines c b a a a a a a a b a a a a >a &&
734 test_write_lines a a a a a a a b a a a a >expected-1 &&
735 test_write_lines b a a a a a a a b a a a a >expected-2 &&
736 # check editing can cope with missing header and deleted context lines
737 # as well as changes to other lines
738 test_write_lines +b " a" >patch
741 test_expect_success 'add -p works with pathological context lines' '
742 git reset &&
743 printf "%s\n" n y |
744 git add -p &&
745 git cat-file blob :a >actual &&
746 test_cmp expected-1 actual
749 test_expect_success 'add -p patch editing works with pathological context lines' '
750 git reset &&
751 # n q q below is in case edit fails
752 printf "%s\n" e y n q q |
753 git add -p &&
754 git cat-file blob :a >actual &&
755 test_cmp expected-2 actual
758 test_expect_success 'checkout -p works with pathological context lines' '
759 test_write_lines a a a a a a >a &&
760 git add a &&
761 test_write_lines a b a b a b a b a b a > a&&
762 test_write_lines s n n y q | git checkout -p &&
763 test_write_lines a b a b a a b a b a >expect &&
764 test_cmp expect a
767 test_expect_success 'show help from add--helper' '
768 git reset --hard &&
769 cat >expect <<-EOF &&
771 <BOLD>*** Commands ***<RESET>
772 1: <BOLD;BLUE>s<RESET>tatus 2: <BOLD;BLUE>u<RESET>pdate 3: <BOLD;BLUE>r<RESET>evert 4: <BOLD;BLUE>a<RESET>dd untracked
773 5: <BOLD;BLUE>p<RESET>atch 6: <BOLD;BLUE>d<RESET>iff 7: <BOLD;BLUE>q<RESET>uit 8: <BOLD;BLUE>h<RESET>elp
774 <BOLD;BLUE>What now<RESET>> <BOLD;RED>status - show paths with changes<RESET>
775 <BOLD;RED>update - add working tree state to the staged set of changes<RESET>
776 <BOLD;RED>revert - revert staged set of changes back to the HEAD version<RESET>
777 <BOLD;RED>patch - pick hunks and update selectively<RESET>
778 <BOLD;RED>diff - view diff between HEAD and index<RESET>
779 <BOLD;RED>add untracked - add contents of untracked files to the staged set of changes<RESET>
780 <BOLD>*** Commands ***<RESET>
781 1: <BOLD;BLUE>s<RESET>tatus 2: <BOLD;BLUE>u<RESET>pdate 3: <BOLD;BLUE>r<RESET>evert 4: <BOLD;BLUE>a<RESET>dd untracked
782 5: <BOLD;BLUE>p<RESET>atch 6: <BOLD;BLUE>d<RESET>iff 7: <BOLD;BLUE>q<RESET>uit 8: <BOLD;BLUE>h<RESET>elp
783 <BOLD;BLUE>What now<RESET>>$SP
784 Bye.
786 test_write_lines h | force_color git add -i >actual.colored &&
787 test_decode_color <actual.colored >actual &&
788 test_i18ncmp expect actual
791 test_done