3 # Copyright (c) 2008 Nguyễn Thái Ngọc Duy
6 test_description='test worktree writing operations when skip-worktree is used'
10 test_expect_success 'setup' '
12 echo modified >> init.t &&
14 git add init.t added &&
15 git commit -m "modified and added" &&
19 test_expect_success 'read-tree updates worktree, absent case' '
20 git checkout -f top &&
21 git update-index --skip-worktree init.t &&
23 git read-tree -m -u HEAD^ &&
24 echo init > expected &&
25 test_cmp expected init.t
28 test_expect_success 'read-tree updates worktree, dirty case' '
29 git checkout -f top &&
30 git update-index --skip-worktree init.t &&
31 echo dirty >> init.t &&
32 test_must_fail git read-tree -m -u HEAD^ &&
33 grep -q dirty init.t &&
34 test "$(git ls-files -t init.t)" = "S init.t" &&
35 git update-index --no-skip-worktree init.t
38 test_expect_success 'read-tree removes worktree, absent case' '
39 git checkout -f top &&
40 git update-index --skip-worktree added &&
42 git read-tree -m -u HEAD^ &&
46 test_expect_success 'read-tree removes worktree, dirty case' '
47 git checkout -f top &&
48 git update-index --skip-worktree added &&
49 echo dirty >> added &&
50 test_must_fail git read-tree -m -u HEAD^ &&
51 grep -q dirty added &&
52 test "$(git ls-files -t added)" = "S added" &&
53 git update-index --no-skip-worktree added
58 git update-index --remove 1 &&
59 git update-index --add --cacheinfo 100644 $EMPTY_BLOB 1 &&
60 git update-index --skip-worktree 1
64 echo "100644 $EMPTY_BLOB 0 1" > expected &&
65 git ls-files --stage 1 > result &&
66 test_cmp expected result &&
71 git update-index --force-remove 1 &&
73 git update-index --add --cacheinfo 100644 $EMPTY_BLOB 1 &&
74 git update-index --skip-worktree 1
78 echo "100644 $EMPTY_BLOB 0 1" > expected &&
79 git ls-files --stage 1 > result &&
80 test_cmp expected result &&
93 test_expect_success 'index setup' '
94 git checkout -f init &&
96 touch ./1 ./2 sub/1 sub/2 &&
97 git add 1 2 sub/1 sub/2 &&
98 git update-index --skip-worktree 1 sub/1 &&
99 git ls-files -t > result &&
100 test_cmp expected result
103 test_expect_success 'git-add ignores worktree content' '
109 test_expect_success 'git-add ignores worktree content' '
115 test_expect_success 'git-rm fails if worktree is dirty' '
117 test_must_fail git rm 1 &&
122 Would remove expected
125 test_expect_success 'git-clean, absent case' '
127 git clean -n > result &&
128 test_i18ncmp expected result
131 test_expect_success 'git-clean, dirty case' '
133 git clean -n > result &&
134 test_i18ncmp expected result
137 #TODO test_expect_failure 'git-apply adds file' false
138 #TODO test_expect_failure 'git-apply updates file' false
139 #TODO test_expect_failure 'git-apply removes file' false
140 #TODO test_expect_failure 'git-mv to skip-worktree' false
141 #TODO test_expect_failure 'git-mv from skip-worktree' false
142 #TODO test_expect_failure 'git-checkout' false