Optimize match_pathspec() to avoid fnmatch()
[git/dscho.git] / t / t3701-add-interactive.sh
blobf15be93e7709acbb517bb85020d4d6b94a50f725
1 #!/bin/sh
3 test_description='add -i basic tests'
4 . ./test-lib.sh
6 test_expect_success 'setup (initial)' '
7 echo content >file &&
8 git add file &&
9 echo more >>file &&
10 echo lines >>file
12 test_expect_success 'status works (initial)' '
13 git add -i </dev/null >output &&
14 grep "+1/-0 *+2/-0 file" output
16 cat >expected <<EOF
17 new file mode 100644
18 index 0000000..d95f3ad
19 --- /dev/null
20 +++ b/file
21 @@ -0,0 +1 @@
22 +content
23 EOF
24 test_expect_success 'diff works (initial)' '
25 (echo d; echo 1) | git add -i >output &&
26 sed -ne "/new file/,/content/p" <output >diff &&
27 test_cmp expected diff
29 test_expect_success 'revert works (initial)' '
30 git add file &&
31 (echo r; echo 1) | git add -i &&
32 git ls-files >output &&
33 ! grep . output
36 test_expect_success 'setup (commit)' '
37 echo baseline >file &&
38 git add file &&
39 git commit -m commit &&
40 echo content >>file &&
41 git add file &&
42 echo more >>file &&
43 echo lines >>file
45 test_expect_success 'status works (commit)' '
46 git add -i </dev/null >output &&
47 grep "+1/-0 *+2/-0 file" output
49 cat >expected <<EOF
50 index 180b47c..b6f2c08 100644
51 --- a/file
52 +++ b/file
53 @@ -1 +1,2 @@
54 baseline
55 +content
56 EOF
57 test_expect_success 'diff works (commit)' '
58 (echo d; echo 1) | git add -i >output &&
59 sed -ne "/^index/,/content/p" <output >diff &&
60 test_cmp expected diff
62 test_expect_success 'revert works (commit)' '
63 git add file &&
64 (echo r; echo 1) | git add -i &&
65 git add -i </dev/null >output &&
66 grep "unchanged *+3/-0 file" output
69 test_expect_success 'patch does not affect mode' '
70 git reset --hard &&
71 echo content >>file &&
72 chmod +x file &&
73 printf "n\\ny\\n" | git add -p &&
74 git show :file | grep content &&
75 git diff file | grep "new mode"
78 test_expect_success 'stage mode but not hunk' '
79 git reset --hard &&
80 echo content >>file &&
81 chmod +x file &&
82 printf "y\\nn\\n" | git add -p &&
83 git diff --cached file | grep "new mode" &&
84 git diff file | grep "+content"
88 test_done