]> git.ipfire.org Git - thirdparty/git.git/blame - t/t3701-add-interactive.sh
Merge branch 'ea/blame-use-oideq'
[thirdparty/git.git] / t / t3701-add-interactive.sh
CommitLineData
18bc7616
JK
1#!/bin/sh
2
3test_description='add -i basic tests'
4. ./test-lib.sh
8552972b 5. "$TEST_DIRECTORY"/lib-terminal.sh
18bc7616 6
a070221e
JN
7if ! test_have_prereq PERL
8then
9 skip_all='skipping add -i tests, perl not available'
10 test_done
11fi
12
902f414a
PW
13diff_cmp () {
14 for x
15 do
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"
24}
25
8539b465
JS
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.
32
33force_color () {
4d9e7c15
DL
34 # The first element of $@ may be a shell function, as a result POSIX
35 # does not guarantee that "one-shot assignment" will not persist after
36 # the function call. Thus, we prevent these variables from escaping
37 # this function's context with this subshell.
38 (
39 GIT_PAGER_IN_USE=true &&
40 TERM=vt100 &&
41 export GIT_PAGER_IN_USE TERM &&
42 "$@"
43 )
8539b465
JS
44}
45
a070221e 46test_expect_success 'setup (initial)' '
18bc7616
JK
47 echo content >file &&
48 git add file &&
49 echo more >>file &&
50 echo lines >>file
51'
a070221e 52test_expect_success 'status works (initial)' '
18bc7616
JK
53 git add -i </dev/null >output &&
54 grep "+1/-0 *+2/-0 file" output
55'
f0459319 56
a070221e 57test_expect_success 'setup expected' '
e4d671c6
PW
58 cat >expected <<-\EOF
59 new file mode 100644
60 index 0000000..d95f3ad
61 --- /dev/null
62 +++ b/file
63 @@ -0,0 +1 @@
64 +content
65 EOF
f0459319
ÆAB
66'
67
a070221e 68test_expect_success 'diff works (initial)' '
0590ff26 69 test_write_lines d 1 | git add -i >output &&
18bc7616 70 sed -ne "/new file/,/content/p" <output >diff &&
902f414a 71 diff_cmp expected diff
18bc7616 72'
a070221e 73test_expect_success 'revert works (initial)' '
18bc7616 74 git add file &&
0590ff26 75 test_write_lines r 1 | git add -i &&
18bc7616
JK
76 git ls-files >output &&
77 ! grep . output
78'
79
849e43cc
JS
80test_expect_success 'add untracked (multiple)' '
81 test_when_finished "git reset && rm [1-9]" &&
82 touch $(test_seq 9) &&
83 test_write_lines a "2-5 8-" | git add -i -- [1-9] &&
84 test_write_lines 2 3 4 5 8 9 >expected &&
85 git ls-files [1-9] >output &&
86 test_cmp expected output
87'
88
a070221e 89test_expect_success 'setup (commit)' '
18bc7616
JK
90 echo baseline >file &&
91 git add file &&
92 git commit -m commit &&
93 echo content >>file &&
94 git add file &&
95 echo more >>file &&
96 echo lines >>file
97'
a070221e 98test_expect_success 'status works (commit)' '
18bc7616
JK
99 git add -i </dev/null >output &&
100 grep "+1/-0 *+2/-0 file" output
101'
f0459319 102
a070221e 103test_expect_success 'setup expected' '
e4d671c6
PW
104 cat >expected <<-\EOF
105 index 180b47c..b6f2c08 100644
106 --- a/file
107 +++ b/file
108 @@ -1 +1,2 @@
109 baseline
110 +content
111 EOF
f0459319
ÆAB
112'
113
a070221e 114test_expect_success 'diff works (commit)' '
0590ff26 115 test_write_lines d 1 | git add -i >output &&
18bc7616 116 sed -ne "/^index/,/content/p" <output >diff &&
902f414a 117 diff_cmp expected diff
18bc7616 118'
a070221e 119test_expect_success 'revert works (commit)' '
18bc7616 120 git add file &&
0590ff26 121 test_write_lines r 1 | git add -i &&
18bc7616
JK
122 git add -i </dev/null >output &&
123 grep "unchanged *+3/-0 file" output
124'
125
a070221e 126test_expect_success 'setup expected' '
e4d671c6
PW
127 cat >expected <<-\EOF
128 EOF
f0459319
ÆAB
129'
130
a070221e 131test_expect_success 'dummy edit works' '
11489a65 132 test_set_editor : &&
0590ff26 133 test_write_lines e a | git add -p &&
ac083c47 134 git diff > diff &&
902f414a 135 diff_cmp expected diff
ac083c47
TR
136'
137
a070221e 138test_expect_success 'setup patch' '
e4d671c6
PW
139 cat >patch <<-\EOF
140 @@ -1,1 +1,4 @@
141 this
142 +patch
143 -does not
144 apply
145 EOF
f0459319
ÆAB
146'
147
a070221e 148test_expect_success 'setup fake editor' '
11489a65 149 write_script "fake_editor.sh" <<-\EOF &&
e4d671c6
PW
150 mv -f "$1" oldpatch &&
151 mv -f patch "$1"
152 EOF
f0459319
ÆAB
153 test_set_editor "$(pwd)/fake_editor.sh"
154'
155
a070221e 156test_expect_success 'bad edit rejected' '
ac083c47 157 git reset &&
0590ff26 158 test_write_lines e n d | git add -p >output &&
ac083c47
TR
159 grep "hunk does not apply" output
160'
161
a070221e 162test_expect_success 'setup patch' '
e4d671c6
PW
163 cat >patch <<-\EOF
164 this patch
165 is garbage
166 EOF
f0459319
ÆAB
167'
168
a070221e 169test_expect_success 'garbage edit rejected' '
ac083c47 170 git reset &&
0590ff26 171 test_write_lines e n d | git add -p >output &&
ac083c47
TR
172 grep "hunk does not apply" output
173'
174
a070221e 175test_expect_success 'setup patch' '
e4d671c6
PW
176 cat >patch <<-\EOF
177 @@ -1,0 +1,0 @@
178 baseline
179 +content
180 +newcontent
181 +lines
182 EOF
f0459319
ÆAB
183'
184
a070221e 185test_expect_success 'setup expected' '
e4d671c6
PW
186 cat >expected <<-\EOF
187 diff --git a/file b/file
188 index b5dd6c9..f910ae9 100644
189 --- a/file
190 +++ b/file
191 @@ -1,4 +1,4 @@
192 baseline
193 content
194 -newcontent
195 +more
196 lines
197 EOF
f0459319
ÆAB
198'
199
a070221e 200test_expect_success 'real edit works' '
0590ff26 201 test_write_lines e n d | git add -p &&
ac083c47 202 git diff >output &&
902f414a 203 diff_cmp expected output
ac083c47
TR
204'
205
f4d35a6b
PW
206test_expect_success 'setup file' '
207 test_write_lines a "" b "" c >file &&
208 git add file &&
209 test_write_lines a "" d "" c >file
210'
211
212test_expect_success 'setup patch' '
213 SP=" " &&
214 NULL="" &&
215 cat >patch <<-EOF
216 @@ -1,4 +1,4 @@
217 a
218 $NULL
219 -b
220 +f
221 $SP
222 c
223 EOF
224'
225
226test_expect_success 'setup expected' '
227 cat >expected <<-EOF
228 diff --git a/file b/file
229 index b5dd6c9..f910ae9 100644
230 --- a/file
231 +++ b/file
232 @@ -1,5 +1,5 @@
233 a
234 $SP
235 -f
236 +d
237 $SP
238 c
239 EOF
240'
241
242test_expect_success 'edit can strip spaces from empty context lines' '
243 test_write_lines e n q | git add -p 2>error &&
244 test_must_be_empty error &&
245 git diff >output &&
246 diff_cmp expected output
247'
248
a070221e 249test_expect_success 'skip files similarly as commit -a' '
b145b211
PV
250 git reset &&
251 echo file >.gitignore &&
252 echo changed >file &&
253 echo y | git add -p file &&
254 git diff >output &&
255 git reset &&
256 git commit -am commit &&
257 git diff >expected &&
902f414a 258 diff_cmp expected output &&
b145b211
PV
259 git reset --hard HEAD^
260'
261rm -f .gitignore
262
a070221e 263test_expect_success FILEMODE 'patch does not affect mode' '
b717a627
JK
264 git reset --hard &&
265 echo content >>file &&
266 chmod +x file &&
ca724686 267 printf "n\\ny\\n" | git add -p &&
b717a627
JK
268 git show :file | grep content &&
269 git diff file | grep "new mode"
270'
271
a070221e 272test_expect_success FILEMODE 'stage mode but not hunk' '
ca724686
JK
273 git reset --hard &&
274 echo content >>file &&
275 chmod +x file &&
276 printf "y\\nn\\n" | git add -p &&
277 git diff --cached file | grep "new mode" &&
278 git diff file | grep "+content"
279'
280
87ca2eaa 281
a070221e 282test_expect_success FILEMODE 'stage mode and hunk' '
87ca2eaa
KS
283 git reset --hard &&
284 echo content >>file &&
285 chmod +x file &&
286 printf "y\\ny\\n" | git add -p &&
287 git diff --cached file | grep "new mode" &&
288 git diff --cached file | grep "+content" &&
289 test -z "$(git diff file)"
290'
291
26ec126a 292# end of tests disabled when filemode is not usable
ca724686 293
24be352d
JS
294test_expect_success 'different prompts for mode change/deleted' '
295 git reset --hard &&
296 >file &&
297 >deleted &&
298 git add --chmod=+x file deleted &&
299 echo changed >file &&
300 rm deleted &&
301 test_write_lines n n n |
302 git -c core.filemode=true add -p >actual &&
303 sed -n "s/^\(([0-9/]*) Stage .*?\).*/\1/p" actual >actual.filtered &&
304 cat >expect <<-\EOF &&
305 (1/1) Stage deletion [y,n,q,a,d,?]?
306 (1/2) Stage mode change [y,n,q,a,d,j,J,g,/,?]?
307 (2/2) Stage this hunk [y,n,q,a,d,K,g,/,e,?]?
308 EOF
309 test_cmp expect actual.filtered
310'
311
0c3222c4
JS
312test_expect_success 'correct message when there is nothing to do' '
313 git reset --hard &&
314 git add -p 2>err &&
315 test_i18ngrep "No changes" err &&
316 printf "\\0123" >binary &&
317 git add binary &&
318 printf "\\0abc" >binary &&
319 git add -p 2>err &&
320 test_i18ngrep "Only binary files changed" err
321'
322
a070221e 323test_expect_success 'setup again' '
32a90233
JS
324 git reset --hard &&
325 test_chmod +x file &&
326 echo content >>file
327'
328
f67182bf 329# Write the patch file with a new line at the top and bottom
a070221e 330test_expect_success 'setup patch' '
e4d671c6
PW
331 cat >patch <<-\EOF
332 index 180b47c..b6f2c08 100644
333 --- a/file
334 +++ b/file
335 @@ -1,2 +1,4 @@
336 +firstline
337 baseline
338 content
339 +lastline
b3e0fcfe 340 \ No newline at end of file
e4d671c6 341 EOF
f0459319
ÆAB
342'
343
b3e0fcfe 344# Expected output, diff is similar to the patch but w/ diff at the top
a070221e 345test_expect_success 'setup expected' '
b3e0fcfe
PW
346 echo diff --git a/file b/file >expected &&
347 cat patch |sed "/^index/s/ 100644/ 100755/" >>expected &&
348 cat >expected-output <<-\EOF
e4d671c6
PW
349 --- a/file
350 +++ b/file
351 @@ -1,2 +1,4 @@
352 +firstline
353 baseline
354 content
355 +lastline
b3e0fcfe
PW
356 \ No newline at end of file
357 @@ -1,2 +1,3 @@
358 +firstline
359 baseline
360 content
361 @@ -1,2 +2,3 @@
362 baseline
363 content
364 +lastline
365 \ No newline at end of file
e4d671c6 366 EOF
f0459319
ÆAB
367'
368
f67182bf 369# Test splitting the first patch, then adding both
b3e0fcfe 370test_expect_success C_LOCALE_OUTPUT 'add first line works' '
f67182bf
MG
371 git commit -am "clear local changes" &&
372 git apply patch &&
b3e0fcfe 373 printf "%s\n" s y y | git add -p file 2>error |
8085050a 374 sed -n -e "s/^([1-2]\/[1-2]) Stage this hunk[^@]*\(@@ .*\)/\1/" \
b3e0fcfe
PW
375 -e "/^[-+@ \\\\]"/p >output &&
376 test_must_be_empty error &&
377 git diff --cached >diff &&
378 diff_cmp expected diff &&
379 test_cmp expected-output output
f67182bf
MG
380'
381
a070221e 382test_expect_success 'setup expected' '
e4d671c6
PW
383 cat >expected <<-\EOF
384 diff --git a/non-empty b/non-empty
385 deleted file mode 100644
386 index d95f3ad..0000000
387 --- a/non-empty
388 +++ /dev/null
389 @@ -1 +0,0 @@
390 -content
391 EOF
f0459319
ÆAB
392'
393
a070221e 394test_expect_success 'deleting a non-empty file' '
8947fdd5
JK
395 git reset --hard &&
396 echo content >non-empty &&
397 git add non-empty &&
398 git commit -m non-empty &&
399 rm non-empty &&
400 echo y | git add -p non-empty &&
401 git diff --cached >diff &&
902f414a 402 diff_cmp expected diff
8947fdd5
JK
403'
404
a070221e 405test_expect_success 'setup expected' '
e4d671c6
PW
406 cat >expected <<-\EOF
407 diff --git a/empty b/empty
408 deleted file mode 100644
409 index e69de29..0000000
410 EOF
f0459319 411'
24ab81ae 412
a070221e 413test_expect_success 'deleting an empty file' '
24ab81ae
JK
414 git reset --hard &&
415 > empty &&
416 git add empty &&
417 git commit -m empty &&
418 rm empty &&
419 echo y | git add -p empty &&
420 git diff --cached >diff &&
902f414a 421 diff_cmp expected diff
24ab81ae
JK
422'
423
2c8bd847
JS
424test_expect_success 'adding an empty file' '
425 git init added &&
426 (
427 cd added &&
428 test_commit initial &&
429 >empty &&
430 git add empty &&
431 test_tick &&
432 git commit -m empty &&
433 git tag added-file &&
434 git reset --hard HEAD^ &&
435 test_path_is_missing empty &&
436
437 echo y | git checkout -p added-file -- >actual &&
438 test_path_is_file empty &&
439 test_i18ngrep "Apply addition to index and worktree" actual
440 )
441'
442
a070221e 443test_expect_success 'split hunk setup' '
f3217e2b 444 git reset --hard &&
11489a65 445 test_write_lines 10 20 30 40 50 60 >test &&
f3217e2b
JH
446 git add test &&
447 test_tick &&
448 git commit -m test &&
449
11489a65 450 test_write_lines 10 15 20 21 22 23 24 30 40 50 60 >test
f3217e2b
JH
451'
452
9254bdfb
JS
453test_expect_success 'goto hunk' '
454 test_when_finished "git reset" &&
455 tr _ " " >expect <<-EOF &&
456 (2/2) Stage this hunk [y,n,q,a,d,K,g,/,e,?]? + 1: -1,2 +1,3 +15
457 _ 2: -2,4 +3,8 +21
458 go to which hunk? @@ -1,2 +1,3 @@
459 _10
460 +15
461 _20
462 (1/2) Stage this hunk [y,n,q,a,d,j,J,g,/,e,?]?_
463 EOF
464 test_write_lines s y g 1 | git add -p >actual &&
465 tail -n 7 <actual >actual.trimmed &&
466 test_cmp expect actual.trimmed
467'
468
d6cf8733
JS
469test_expect_success 'navigate to hunk via regex' '
470 test_when_finished "git reset" &&
471 tr _ " " >expect <<-EOF &&
472 (2/2) Stage this hunk [y,n,q,a,d,K,g,/,e,?]? @@ -1,2 +1,3 @@
473 _10
474 +15
475 _20
476 (1/2) Stage this hunk [y,n,q,a,d,j,J,g,/,e,?]?_
477 EOF
478 test_write_lines s y /1,2 | git add -p >actual &&
479 tail -n 5 <actual >actual.trimmed &&
480 test_cmp expect actual.trimmed
481'
482
a070221e 483test_expect_success 'split hunk "add -p (edit)"' '
f3217e2b
JH
484 # Split, say Edit and do nothing. Then:
485 #
486 # 1. Broken version results in a patch that does not apply and
487 # only takes [y/n] (edit again) so the first q is discarded
488 # and then n attempts to discard the edit. Repeat q enough
489 # times to get out.
490 #
491 # 2. Correct version applies the (not)edited version, and asks
41ccfdd9 492 # about the next hunk, against which we say q and program
f3217e2b 493 # exits.
416145f0 494 printf "%s\n" s e q n q q |
f3217e2b
JH
495 EDITOR=: git add -p &&
496 git diff >actual &&
497 ! grep "^+15" actual
498'
499
1bf01040 500test_expect_failure 'split hunk "add -p (no, yes, edit)"' '
11489a65 501 test_write_lines 5 10 20 21 30 31 40 50 60 >test &&
1bf01040
MM
502 git reset &&
503 # test sequence is s(plit), n(o), y(es), e(dit)
504 # q n q q is there to make sure we exit at the end.
505 printf "%s\n" s n y e q n q q |
506 EDITOR=: git add -p 2>error &&
507 test_must_be_empty error &&
508 git diff >actual &&
509 ! grep "^+31" actual
510'
511
510aeca1
JS
512test_expect_success 'split hunk with incomplete line at end' '
513 git reset --hard &&
514 printf "missing LF" >>test &&
515 git add test &&
516 test_write_lines before 10 20 30 40 50 60 70 >test &&
517 git grep --cached missing &&
518 test_write_lines s n y q | git add -p &&
519 test_must_fail git grep --cached missing &&
520 git grep before &&
521 test_must_fail git grep --cached before
522'
523
0f0fba2c
JS
524test_expect_failure 'edit, adding lines to the first hunk' '
525 test_write_lines 10 11 20 30 40 50 51 60 >test &&
526 git reset &&
527 tr _ " " >patch <<-EOF &&
528 @@ -1,5 +1,6 @@
529 _10
530 +11
531 +12
532 _20
533 +21
534 +22
535 _30
536 EOF
537 # test sequence is s(plit), e(dit), n(o)
538 # q n q q is there to make sure we exit at the end.
539 printf "%s\n" s e n q n q q |
540 EDITOR=./fake_editor.sh git add -p 2>error &&
541 test_must_be_empty error &&
542 git diff --cached >actual &&
543 grep "^+22" actual
544'
545
4066bd67
JK
546test_expect_success 'patch mode ignores unmerged entries' '
547 git reset --hard &&
548 test_commit conflict &&
549 test_commit non-conflict &&
550 git checkout -b side &&
551 test_commit side conflict.t &&
552 git checkout master &&
553 test_commit master conflict.t &&
554 test_must_fail git merge side &&
555 echo changed >non-conflict.t &&
556 echo y | git add -p >output &&
557 ! grep a/conflict.t output &&
558 cat >expected <<-\EOF &&
559 * Unmerged path conflict.t
560 diff --git a/non-conflict.t b/non-conflict.t
561 index f766221..5ea2ed4 100644
562 --- a/non-conflict.t
563 +++ b/non-conflict.t
564 @@ -1 +1 @@
565 -non-conflict
566 +changed
567 EOF
568 git diff --cached >diff &&
902f414a 569 diff_cmp expected diff
4066bd67
JK
570'
571
8539b465 572test_expect_success 'diffs can be colorized' '
55cccf4b
JK
573 git reset --hard &&
574
55cccf4b 575 echo content >test &&
8539b465
JS
576 printf y >y &&
577 force_color git add -p >output 2>&1 <y &&
55cccf4b
JK
578
579 # We do not want to depend on the exact coloring scheme
580 # git uses for diffs, so just check that we saw some kind of color.
581 grep "$(printf "\\033")" output
582'
583
da806352
JK
584test_expect_success 'colorized diffs respect diff.wsErrorHighlight' '
585 git reset --hard &&
586
587 echo "old " >test &&
588 git add test &&
589 echo "new " >test &&
590
591 printf y >y &&
592 force_color git -c diff.wsErrorHighlight=all add -p >output.raw 2>&1 <y &&
593 test_decode_color <output.raw >output &&
594 grep "old<" output
595'
596
8539b465 597test_expect_success 'diffFilter filters diff' '
af3570ed
JK
598 git reset --hard &&
599
600 echo content >test &&
601 test_config interactive.diffFilter "sed s/^/foo:/" &&
8539b465
JS
602 printf y >y &&
603 force_color git add -p >output 2>&1 <y &&
af3570ed
JK
604
605 # avoid depending on the exact coloring or content of the prompts,
606 # and just make sure we saw our diff prefixed
607 grep foo:.*content output
608'
609
8539b465 610test_expect_success 'detect bogus diffFilter output' '
42f7d454
JK
611 git reset --hard &&
612
613 echo content >test &&
1e4ffc76 614 test_config interactive.diffFilter "sed 1d" &&
8539b465 615 printf y >y &&
4d9e7c15 616 force_color test_must_fail git add -p <y
42f7d454
JK
617'
618
e91162be
JS
619test_expect_success 'diff.algorithm is passed to `git diff-files`' '
620 git reset --hard &&
621
622 >file &&
623 git add file &&
624 echo changed >file &&
89c85593 625 test_must_fail git -c diff.algorithm=bogus add -p 2>err &&
e91162be
JS
626 test_i18ngrep "error: option diff-algorithm accepts " err
627'
628
c852bd54
JK
629test_expect_success 'patch-mode via -i prompts for files' '
630 git reset --hard &&
631
632 echo one >file &&
633 echo two >test &&
634 git add -i <<-\EOF &&
635 patch
636 test
637
638 y
639 quit
640 EOF
641
642 echo test >expect &&
643 git diff --cached --name-only >actual &&
902f414a 644 diff_cmp expect actual
c852bd54
JK
645'
646
7288e12c
JK
647test_expect_success 'add -p handles globs' '
648 git reset --hard &&
649
650 mkdir -p subdir &&
651 echo base >one.c &&
652 echo base >subdir/two.c &&
653 git add "*.c" &&
654 git commit -m base &&
655
656 echo change >one.c &&
657 echo change >subdir/two.c &&
658 git add -p "*.c" <<-\EOF &&
659 y
660 y
661 EOF
662
663 cat >expect <<-\EOF &&
664 one.c
665 subdir/two.c
666 EOF
667 git diff --cached --name-only >actual &&
668 test_cmp expect actual
669'
670
be4dbbbe
PS
671test_expect_success 'add -p handles relative paths' '
672 git reset --hard &&
673
674 echo base >relpath.c &&
675 git add "*.c" &&
676 git commit -m relpath &&
677
678 echo change >relpath.c &&
679 mkdir -p subdir &&
680 git -C subdir add -p .. 2>error <<-\EOF &&
681 y
682 EOF
683
684 test_must_be_empty error &&
685
686 cat >expect <<-\EOF &&
687 relpath.c
688 EOF
689 git diff --cached --name-only >actual &&
690 test_cmp expect actual
691'
692
7288e12c
JK
693test_expect_success 'add -p does not expand argument lists' '
694 git reset --hard &&
695
696 echo content >not-changed &&
697 git add not-changed &&
698 git commit -m "add not-changed file" &&
699
700 echo change >file &&
701 GIT_TRACE=$(pwd)/trace.out git add -p . <<-\EOF &&
702 y
703 EOF
704
705 # we know that "file" must be mentioned since we actually
706 # update it, but we want to be sure that our "." pathspec
707 # was not expanded into the argument list of any command.
708 # So look only for "not-changed".
79336116 709 ! grep -E "^trace: (built-in|exec|run_command): .*not-changed" trace.out
7288e12c
JK
710'
711
d85d7ecb
JK
712test_expect_success 'hunk-editing handles custom comment char' '
713 git reset --hard &&
714 echo change >>file &&
715 test_config core.commentChar "\$" &&
716 echo e | GIT_EDITOR=true git add -p &&
717 git diff --exit-code
718'
719
6be4595e
JK
720test_expect_success 'add -p works even with color.ui=always' '
721 git reset --hard &&
722 echo change >>file &&
723 test_config color.ui always &&
724 echo y | git add -p &&
725 echo file >expect &&
726 git diff --cached --name-only >actual &&
727 test_cmp expect actual
728'
729
12434efc
NTND
730test_expect_success 'setup different kinds of dirty submodules' '
731 test_create_repo for-submodules &&
732 (
733 cd for-submodules &&
734 test_commit initial &&
735 test_create_repo dirty-head &&
736 (
737 cd dirty-head &&
738 test_commit initial
739 ) &&
740 cp -R dirty-head dirty-otherwise &&
741 cp -R dirty-head dirty-both-ways &&
742 git add dirty-head &&
743 git add dirty-otherwise dirty-both-ways &&
744 git commit -m initial &&
745
746 cd dirty-head &&
747 test_commit updated &&
748 cd ../dirty-both-ways &&
749 test_commit updated &&
750 echo dirty >>initial &&
751 : >untracked &&
752 cd ../dirty-otherwise &&
753 echo dirty >>initial &&
754 : >untracked
755 ) &&
756 git -C for-submodules diff-files --name-only >actual &&
757 cat >expected <<-\EOF &&
758 dirty-both-ways
759 dirty-head
760 dirty-otherwise
761 EOF
762 test_cmp expected actual &&
763 git -C for-submodules diff-files --name-only --ignore-submodules=dirty >actual &&
764 cat >expected <<-\EOF &&
765 dirty-both-ways
766 dirty-head
767 EOF
768 test_cmp expected actual
769'
770
771test_expect_success 'status ignores dirty submodules (except HEAD)' '
772 git -C for-submodules add -i </dev/null >output &&
773 grep dirty-head output &&
774 grep dirty-both-ways output &&
775 ! grep dirty-otherwise output
776'
777
23fea4c2
PW
778test_expect_success 'set up pathological context' '
779 git reset --hard &&
780 test_write_lines a a a a a a a a a a a >a &&
781 git add a &&
782 git commit -m a &&
783 test_write_lines c b a a a a a a a b a a a a >a &&
784 test_write_lines a a a a a a a b a a a a >expected-1 &&
785 test_write_lines b a a a a a a a b a a a a >expected-2 &&
786 # check editing can cope with missing header and deleted context lines
787 # as well as changes to other lines
788 test_write_lines +b " a" >patch
789'
790
fecc6f3a 791test_expect_success 'add -p works with pathological context lines' '
23fea4c2
PW
792 git reset &&
793 printf "%s\n" n y |
794 git add -p &&
795 git cat-file blob :a >actual &&
796 test_cmp expected-1 actual
797'
798
2b8ea7f3 799test_expect_success 'add -p patch editing works with pathological context lines' '
23fea4c2
PW
800 git reset &&
801 # n q q below is in case edit fails
802 printf "%s\n" e y n q q |
803 git add -p &&
804 git cat-file blob :a >actual &&
805 test_cmp expected-2 actual
806'
807
2bd69b90
PW
808test_expect_success 'checkout -p works with pathological context lines' '
809 test_write_lines a a a a a a >a &&
810 git add a &&
64d1022e 811 test_write_lines a b a b a b a b a b a >a &&
2bd69b90
PW
812 test_write_lines s n n y q | git checkout -p &&
813 test_write_lines a b a b a a b a b a >expect &&
814 test_cmp expect a
815'
8c159044
816
817test_expect_success 'show help from add--helper' '
818 git reset --hard &&
819 cat >expect <<-EOF &&
820
821 <BOLD>*** Commands ***<RESET>
822 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
823 5: <BOLD;BLUE>p<RESET>atch 6: <BOLD;BLUE>d<RESET>iff 7: <BOLD;BLUE>q<RESET>uit 8: <BOLD;BLUE>h<RESET>elp
824 <BOLD;BLUE>What now<RESET>> <BOLD;RED>status - show paths with changes<RESET>
825 <BOLD;RED>update - add working tree state to the staged set of changes<RESET>
826 <BOLD;RED>revert - revert staged set of changes back to the HEAD version<RESET>
827 <BOLD;RED>patch - pick hunks and update selectively<RESET>
828 <BOLD;RED>diff - view diff between HEAD and index<RESET>
829 <BOLD;RED>add untracked - add contents of untracked files to the staged set of changes<RESET>
830 <BOLD>*** Commands ***<RESET>
831 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
832 5: <BOLD;BLUE>p<RESET>atch 6: <BOLD;BLUE>d<RESET>iff 7: <BOLD;BLUE>q<RESET>uit 8: <BOLD;BLUE>h<RESET>elp
833 <BOLD;BLUE>What now<RESET>>$SP
834 Bye.
835 EOF
8539b465 836 test_write_lines h | force_color git add -i >actual.colored &&
8c159044
837 test_decode_color <actual.colored >actual &&
838 test_i18ncmp expect actual
839'
840
18bc7616 841test_done