3 test_description
='add -i basic tests'
5 .
"$TEST_DIRECTORY"/lib-terminal.sh
7 if ! test_have_prereq PERL
9 skip_all
='skipping add -i tests, perl not available'
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 /' \
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.
34 env GIT_PAGER_IN_USE
=true TERM
=vt100
"$@"
37 test_expect_success
'setup (initial)' '
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' '
51 index 0000000..d95f3ad
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)' '
66 test_write_lines r 1 | git add -i &&
67 git ls-files >output &&
71 test_expect_success
'setup (commit)' '
72 echo baseline >file &&
74 git commit -m commit &&
75 echo content >>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' '
87 index 180b47c..b6f2c08 100644
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)' '
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' '
115 test_write_lines e a | git add -p &&
117 diff_cmp expected diff
120 test_expect_success
'setup patch' '
130 test_expect_success
'setup fake editor' '
131 write_script "fake_editor.sh" <<-\EOF &&
132 mv -f "$1" oldpatch &&
135 test_set_editor "$(pwd)/fake_editor.sh"
138 test_expect_success
'bad edit rejected' '
140 test_write_lines e n d | git add -p >output &&
141 grep "hunk does not apply" output
144 test_expect_success
'setup patch' '
151 test_expect_success
'garbage edit rejected' '
153 test_write_lines e n d | git add -p >output &&
154 grep "hunk does not apply" output
157 test_expect_success
'setup patch' '
167 test_expect_success
'setup expected' '
168 cat >expected <<-\EOF
169 diff --git a/file b/file
170 index b5dd6c9..f910ae9 100644
182 test_expect_success
'real edit works' '
183 test_write_lines e n d | git add -p &&
185 diff_cmp expected output
188 test_expect_success
'setup file' '
189 test_write_lines a "" b "" c >file &&
191 test_write_lines a "" d "" c >file
194 test_expect_success
'setup patch' '
208 test_expect_success
'setup expected' '
210 diff --git a/file b/file
211 index b5dd6c9..f910ae9 100644
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 &&
228 diff_cmp expected output
231 test_expect_success
'skip files similarly as commit -a' '
233 echo file >.gitignore &&
234 echo changed >file &&
235 echo y | git add -p file &&
238 git commit -am commit &&
239 git diff >expected &&
240 diff_cmp expected output &&
241 git reset --hard HEAD^
245 test_expect_success FILEMODE
'patch does not affect mode' '
247 echo content >>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' '
256 echo content >>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' '
266 echo content >>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' '
280 git add --chmod=+x file deleted &&
281 echo changed >file &&
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' '
297 test_i18ngrep "No changes" err &&
298 printf "\\0123" >binary &&
300 printf "\\0abc" >binary &&
302 test_i18ngrep "Only binary files changed" err
305 test_expect_success
'setup again' '
307 test_chmod +x file &&
311 # Write the patch file with a new line at the top and bottom
312 test_expect_success
'setup patch' '
314 index 180b47c..b6f2c08 100644
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
338 \ No newline at end of file
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" &&
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
376 test_expect_success
'deleting a non-empty file' '
378 echo content >non-empty &&
380 git commit -m 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' '
399 git commit -m 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' '
408 test_write_lines 10 20 30 40 50 60 >test &&
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
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
454 # 2. Correct version applies the (not)edited version, and asks
455 # about the next hunk, against which we say q and program
457 printf "%s\n" s e q n q q |
458 EDITOR=: git add -p &&
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 &&
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 &&
475 test_expect_success
'split hunk with incomplete line at end' '
477 printf "missing LF" >>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 &&
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 &&
490 tr _ " " >patch <<-EOF &&
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 &&
509 test_expect_success
'patch mode ignores unmerged entries' '
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
531 git diff --cached >diff &&
532 diff_cmp expected diff
535 test_expect_success
'diffs can be colorized' '
538 echo content >test &&
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' '
550 echo content >test &&
551 test_config interactive.diffFilter "sed s/^/foo:/" &&
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' '
563 echo content >test &&
564 test_config interactive.diffFilter "echo too-short" &&
566 test_must_fail force_color git add -p <y
569 test_expect_success
'diff.algorithm is passed to `git diff-files`' '
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' '
584 git add -i <<-\EOF &&
593 git diff --cached --name-only >actual &&
594 diff_cmp expect actual
597 test_expect_success
'add -p handles globs' '
602 echo base >subdir/two.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 &&
617 git diff --cached --name-only >actual &&
618 test_cmp expect actual
621 test_expect_success
'add -p handles relative paths' '
624 echo base >relpath.c &&
626 git commit -m relpath &&
628 echo change >relpath.c &&
630 git -C subdir add -p .. 2>error <<-\EOF &&
634 test_must_be_empty error &&
636 cat >expect <<-\EOF &&
639 git diff --cached --name-only >actual &&
640 test_cmp expect actual
643 test_expect_success
'add -p does not expand argument lists' '
646 echo content >not-changed &&
647 git add not-changed &&
648 git commit -m "add not-changed 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' '
664 echo change >>file &&
665 test_config core.commentChar "\$" &&
666 echo e | GIT_EDITOR=true git add -p &&
670 test_expect_success
'add -p works even with color.ui=always' '
672 echo change >>file &&
673 test_config color.ui always &&
674 echo y | git add -p &&
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 &&
684 test_commit initial &&
685 test_create_repo dirty-head &&
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 &&
697 test_commit updated &&
698 cd ../dirty-both-ways &&
699 test_commit updated &&
700 echo dirty >>initial &&
702 cd ../dirty-otherwise &&
703 echo dirty >>initial &&
706 git -C for-submodules diff-files --name-only >actual &&
707 cat >expected <<-\EOF &&
712 test_cmp expected actual &&
713 git -C for-submodules diff-files --name-only --ignore-submodules=dirty >actual &&
714 cat >expected <<-\EOF &&
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' '
730 test_write_lines a a a a a a a a a a a >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' '
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' '
751 # n q q below is in case edit fails
752 printf "%s\n" e y n q q |
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 &&
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 &&
767 test_expect_success
'show help from add--helper' '
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
786 test_write_lines h | force_color git add -i >actual.colored &&
787 test_decode_color <actual.colored >actual &&
788 test_i18ncmp expect actual