]> git.ipfire.org Git - thirdparty/git.git/blame - t/t1600-index.sh
Merge branch 'gc/branch-recurse-submodules-fix'
[thirdparty/git.git] / t / t1600-index.sh
CommitLineData
136347d7
TG
1#!/bin/sh
2
3test_description='index file specific tests'
4
d96fb140 5TEST_PASSES_SANITIZE_LEAK=true
136347d7
TG
6. ./test-lib.sh
7
daad41c9
SG
8sane_unset GIT_TEST_SPLIT_INDEX
9
136347d7
TG
10test_expect_success 'setup' '
11 echo 1 >a
12'
13
14test_expect_success 'bogus GIT_INDEX_VERSION issues warning' '
15 (
16 rm -f .git/index &&
17 GIT_INDEX_VERSION=2bogus &&
18 export GIT_INDEX_VERSION &&
bdfe1f0d
SG
19 git add a 2>err &&
20 sed "s/[0-9]//" err >actual.err &&
136347d7
TG
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
1108cea7 25 test_cmp expect.err actual.err
136347d7
TG
26 )
27'
28
29test_expect_success 'out of bounds GIT_INDEX_VERSION issues warning' '
30 (
31 rm -f .git/index &&
32 GIT_INDEX_VERSION=1 &&
33 export GIT_INDEX_VERSION &&
bdfe1f0d
SG
34 git add a 2>err &&
35 sed "s/[0-9]//" err >actual.err &&
136347d7
TG
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
1108cea7 40 test_cmp expect.err actual.err
136347d7
TG
41 )
42'
43
44test_expect_success 'no warning with bogus GIT_INDEX_VERSION and existing index' '
45 (
46 GIT_INDEX_VERSION=1 &&
47 export GIT_INDEX_VERSION &&
48 git add a 2>actual.err &&
1c5e94f4 49 test_must_be_empty actual.err
136347d7
TG
50 )
51'
52
3c09d684
TG
53test_expect_success 'out of bounds index.version issues warning' '
54 (
55 sane_unset GIT_INDEX_VERSION &&
56 rm -f .git/index &&
57 git config --add index.version 1 &&
bdfe1f0d
SG
58 git add a 2>err &&
59 sed "s/[0-9]//" err >actual.err &&
3c09d684
TG
60 sed -e "s/ Z$/ /" <<-\EOF >expect.err &&
61 warning: index.version set, but the value is invalid.
62 Using version Z
63 EOF
1108cea7 64 test_cmp expect.err actual.err
3c09d684
TG
65 )
66'
67
c6cc4c5a
DS
68test_index_version () {
69 INDEX_VERSION_CONFIG=$1 &&
70 FEATURE_MANY_FILES=$2 &&
71 ENV_VAR_VERSION=$3
72 EXPECTED_OUTPUT_VERSION=$4 &&
3c09d684
TG
73 (
74 rm -f .git/index &&
c6cc4c5a
DS
75 rm -f .git/config &&
76 if test "$INDEX_VERSION_CONFIG" -ne 0
77 then
78 git config --add index.version $INDEX_VERSION_CONFIG
79 fi &&
80 git config --add feature.manyFiles $FEATURE_MANY_FILES
81 if test "$ENV_VAR_VERSION" -ne 0
82 then
83 GIT_INDEX_VERSION=$ENV_VAR_VERSION &&
84 export GIT_INDEX_VERSION
85 else
86 unset GIT_INDEX_VERSION
87 fi &&
c3442568 88 git add a &&
c6cc4c5a 89 echo $EXPECTED_OUTPUT_VERSION >expect &&
cc6f663d 90 test-tool index-version <.git/index >actual &&
3c09d684
TG
91 test_cmp expect actual
92 )
c6cc4c5a
DS
93}
94
95test_expect_success 'index version config precedence' '
c11e9966
DS
96 test_index_version 0 false 0 2 &&
97 test_index_version 2 false 0 2 &&
98 test_index_version 3 false 0 2 &&
99 test_index_version 4 false 0 4 &&
c6cc4c5a
DS
100 test_index_version 2 false 4 4 &&
101 test_index_version 2 true 0 2 &&
102 test_index_version 0 true 0 4 &&
103 test_index_version 0 true 2 2
3c09d684
TG
104'
105
136347d7 106test_done