worktree: introduce is_shared_symref()
[alt-git.git] / t / t1600-index.sh
blob0ebbae130589b9ad748b85041def88588788d770
1 #!/bin/sh
3 test_description='index file specific tests'
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
8 sane_unset GIT_TEST_SPLIT_INDEX
10 test_expect_success 'setup' '
11 echo 1 >a
14 test_expect_success 'bogus GIT_INDEX_VERSION issues warning' '
16 rm -f .git/index &&
17 GIT_INDEX_VERSION=2bogus &&
18 export GIT_INDEX_VERSION &&
19 git add a 2>err &&
20 sed "s/[0-9]//" err >actual.err &&
21 sed -e "s/ Z$/ /" <<-\EOF >expect.err &&
22 warning: GIT_INDEX_VERSION set, but the value is invalid.
23 Using version Z
24 EOF
25 test_cmp expect.err actual.err
29 test_expect_success 'out of bounds GIT_INDEX_VERSION issues warning' '
31 rm -f .git/index &&
32 GIT_INDEX_VERSION=1 &&
33 export GIT_INDEX_VERSION &&
34 git add a 2>err &&
35 sed "s/[0-9]//" err >actual.err &&
36 sed -e "s/ Z$/ /" <<-\EOF >expect.err &&
37 warning: GIT_INDEX_VERSION set, but the value is invalid.
38 Using version Z
39 EOF
40 test_cmp expect.err actual.err
44 test_expect_success 'no warning with bogus GIT_INDEX_VERSION and existing index' '
46 GIT_INDEX_VERSION=1 &&
47 export GIT_INDEX_VERSION &&
48 git add a 2>actual.err &&
49 test_must_be_empty actual.err
53 test_expect_success 'out of bounds index.version issues warning' '
55 sane_unset GIT_INDEX_VERSION &&
56 rm -f .git/index &&
57 git config --add index.version 1 &&
58 git add a 2>err &&
59 sed "s/[0-9]//" err >actual.err &&
60 sed -e "s/ Z$/ /" <<-\EOF >expect.err &&
61 warning: index.version set, but the value is invalid.
62 Using version Z
63 EOF
64 test_cmp expect.err actual.err
68 test_expect_success 'index.skipHash config option' '
69 rm -f .git/index &&
70 git -c index.skipHash=true add a &&
71 test_trailing_hash .git/index >hash &&
72 echo $(test_oid zero) >expect &&
73 test_cmp expect hash &&
74 git fsck &&
76 rm -f .git/index &&
77 git -c feature.manyFiles=true add a &&
78 test_trailing_hash .git/index >hash &&
79 cmp expect hash &&
81 rm -f .git/index &&
82 git -c feature.manyFiles=true \
83 -c index.skipHash=false add a &&
84 test_trailing_hash .git/index >hash &&
85 ! cmp expect hash &&
87 test_commit start &&
88 git -c protocol.file.allow=always submodule add ./ sub &&
89 git config index.skipHash false &&
90 git -C sub config index.skipHash true &&
91 >sub/file &&
92 git -C sub add a &&
93 test_trailing_hash .git/modules/sub/index >hash &&
94 test_cmp expect hash &&
95 git -C sub fsck
98 test_index_version () {
99 INDEX_VERSION_CONFIG=$1 &&
100 FEATURE_MANY_FILES=$2 &&
101 ENV_VAR_VERSION=$3
102 EXPECTED_OUTPUT_VERSION=$4 &&
104 rm -f .git/index &&
105 rm -f .git/config &&
106 if test "$INDEX_VERSION_CONFIG" -ne 0
107 then
108 git config --add index.version $INDEX_VERSION_CONFIG
109 fi &&
110 git config --add feature.manyFiles $FEATURE_MANY_FILES
111 if test "$ENV_VAR_VERSION" -ne 0
112 then
113 GIT_INDEX_VERSION=$ENV_VAR_VERSION &&
114 export GIT_INDEX_VERSION
115 else
116 unset GIT_INDEX_VERSION
117 fi &&
118 git add a &&
119 echo $EXPECTED_OUTPUT_VERSION >expect &&
120 test-tool index-version <.git/index >actual &&
121 test_cmp expect actual
125 test_expect_success 'index version config precedence' '
126 test_index_version 0 false 0 2 &&
127 test_index_version 2 false 0 2 &&
128 test_index_version 3 false 0 2 &&
129 test_index_version 4 false 0 4 &&
130 test_index_version 2 false 4 4 &&
131 test_index_version 2 true 0 2 &&
132 test_index_version 0 true 0 4 &&
133 test_index_version 0 true 2 2
136 test_done