3 test_description
='Intent to add'
7 test_expect_success
'intent to add' '
18 test_expect_success
'git status' '
19 git status --porcelain | grep -v actual >actual &&
20 cat >expect <<-\EOF &&
25 test_cmp expect actual
28 test_expect_success
'check result of "add -N"' '
29 git ls-files -s file >actual &&
30 empty=$(git hash-object --stdin </dev/null) &&
31 echo "100644 $empty 0 file" >expect &&
32 test_cmp expect actual
35 test_expect_success
'intent to add is just an ordinary empty blob' '
37 git ls-files -s file >actual &&
38 git ls-files -s elif | sed -e "s/elif/file/" >expect &&
39 test_cmp expect actual
42 test_expect_success
'intent to add does not clobber existing paths' '
43 git add -N file elif &&
44 empty=$(git hash-object --stdin </dev/null) &&
45 git ls-files -s >actual &&
46 ! grep "$empty" actual
49 test_expect_success
'i-t-a entry is simply ignored' '
51 git commit -a -m initial &&
58 git commit -m second &&
59 test $(git ls-tree HEAD -- nitfol | wc -l) = 0 &&
60 test $(git diff --name-only HEAD -- nitfol | wc -l) = 1 &&
61 test $(git diff --name-only --ita-invisible-in-index HEAD -- nitfol | wc -l) = 0 &&
62 test $(git diff --name-only --ita-invisible-in-index -- nitfol | wc -l) = 1
65 test_expect_success
'can commit with an unrelated i-t-a entry in index' '
67 echo bozbar >rezrov &&
71 git commit -m partial rezrov
74 test_expect_success
'can "commit -a" with an i-t-a entry' '
81 test_expect_success
'cache-tree invalidates i-t-a paths' '
90 git diff --cached --name-only >actual &&
91 echo dir/bar >expect &&
92 test_cmp expect actual &&
94 git write-tree >/dev/null &&
96 git diff --cached --name-only >actual &&
97 echo dir/bar >expect &&
98 test_cmp expect actual
101 test_expect_success
'cache-tree does not ignore dir that has i-t-a entries' '
102 git init ita-in-dir &&
112 git commit -m committed &&
113 git ls-tree -r HEAD >actual &&
118 test_expect_success
'cache-tree does skip dir that becomes empty' '
120 git init ita-in-dir &&
125 git add -N 1/2/3/4 &&
126 git write-tree >actual &&
127 echo $EMPTY_TREE >expected &&
128 test_cmp expected actual
132 test_expect_success
'commit: ita entries ignored in empty intial commit check' '
133 git init empty-intial-commit &&
135 cd empty-intial-commit &&
138 test_must_fail git commit -m nothing-new-here
142 test_expect_success
'commit: ita entries ignored in empty commit check' '
143 git init empty-subsequent-commit &&
145 cd empty-subsequent-commit &&
149 test_must_fail git commit -m nothing-new-here