3 test_description
='Test git config-set API in different settings'
7 # 'check_config get_* section.key value' verifies that the entry for
8 # section.key is 'value'
10 if test "$1" = expect_code
12 expect_code
="$2" && shift && shift
16 op
=$1 key
=$2 && shift && shift &&
21 test_expect_code
$expect_code test-tool config
"$op" "$key" >actual
&&
22 test_cmp expect actual
25 test_expect_success
'setup default config' '
26 cat >.git/config <<-\EOF
65 test_expect_success
'get value for a simple key' '
66 check_config get_value case.penguin "very blue"
69 test_expect_success
'get value for a key with value as an empty string' '
70 check_config get_value case.my ""
73 test_expect_success
'get value for a key with value as NULL' '
74 check_config get_value case.foo "(NULL)"
77 test_expect_success
'upper case key' '
78 check_config get_value case.UPPERCASE "true" &&
79 check_config get_value case.uppercase "true"
82 test_expect_success
'mixed case key' '
83 check_config get_value case.MixedCase "true" &&
84 check_config get_value case.MIXEDCASE "true" &&
85 check_config get_value case.mixedcase "true"
88 test_expect_success
'key and value with mixed case' '
89 check_config get_value case.Movie "BadPhysics"
92 test_expect_success
'key with case sensitive subsection' '
93 check_config get_value "my.Foo bAr.hi" "mixed-case" &&
94 check_config get_value "my.FOO BAR.hi" "upper-case" &&
95 check_config get_value "my.foo bar.hi" "lower-case"
98 test_expect_success
'key with case insensitive section header' '
99 check_config get_value cores.baz "ball" &&
100 check_config get_value Cores.baz "ball" &&
101 check_config get_value CORES.baz "ball" &&
102 check_config get_value coreS.baz "ball"
105 test_expect_success
'key with case insensitive section header & variable' '
106 check_config get_value CORES.BAZ "ball" &&
107 check_config get_value cores.baz "ball" &&
108 check_config get_value cores.BaZ "ball" &&
109 check_config get_value cOreS.bAz "ball"
112 test_expect_success
'find value with misspelled key' '
113 check_config expect_code 1 get_value "my.fOo Bar.hi" "Value not found for \"my.fOo Bar.hi\""
116 test_expect_success
'find value with the highest priority' '
117 check_config get_value case.baz "hask"
120 test_expect_success
'return value for an existing key' '
121 test-tool config get lamb.chop >out 2>err &&
122 test_must_be_empty out &&
123 test_must_be_empty err
126 test_expect_success
'return value for value-less key' '
127 test-tool config get value.less >out 2>err &&
128 test_must_be_empty out &&
129 test_must_be_empty err
132 test_expect_success
'return value for a missing key' '
133 cat >expect <<-\EOF &&
134 Value not found for "missing.key"
136 test_expect_code 1 test-tool config get missing.key >actual 2>err &&
137 test_cmp actual expect &&
138 test_must_be_empty err
141 test_expect_success
'return value for a bad key: CONFIG_INVALID_KEY' '
142 cat >expect <<-\EOF &&
143 Key "fails.iskeychar.-" is invalid
145 test_expect_code 1 test-tool config get fails.iskeychar.- >actual 2>err &&
146 test_cmp actual expect &&
147 test_must_be_empty out
150 test_expect_success
'return value for a bad key: CONFIG_NO_SECTION_OR_NAME' '
151 cat >expect <<-\EOF &&
152 Key "keynosection" has no section
154 test_expect_code 1 test-tool config get keynosection >actual 2>err &&
155 test_cmp actual expect &&
156 test_must_be_empty out
159 test_expect_success
'find integer value for a key' '
160 check_config get_int lamb.chop 65
163 test_expect_success
'parse integer value during iteration' '
164 check_config git_config_int lamb.chop 65
167 test_expect_success
'find string value for a key' '
168 check_config get_string case.baz hask &&
169 check_config expect_code 1 get_string case.ba "Value not found for \"case.ba\""
172 test_expect_success
'check line error when NULL string is queried' '
173 test_expect_code 128 test-tool config get_string case.foo 2>result &&
174 test_grep "fatal: .*case\.foo.*\.git/config.*line 7" result
177 test_expect_success
'find integer if value is non parse-able' '
178 check_config expect_code 128 get_int lamb.head
181 test_expect_success
'non parse-able integer value during iteration' '
182 check_config expect_code 128 git_config_int lamb.head 2>result &&
183 grep "fatal: bad numeric config value .* in file \.git/config" result
186 test_expect_success
'find bool value for the entered key' '
187 check_config get_bool goat.head 1 &&
188 check_config get_bool goat.skin 0 &&
189 check_config get_bool goat.nose 1 &&
190 check_config get_bool goat.horns 1 &&
191 check_config get_bool goat.legs 1
194 test_expect_success
'find multiple values' '
195 check_config get_value_multi case.baz sam bat hask
198 test_NULL_in_multi
() {
202 test_expect_success
"$op: NULL value in config${file:+ in $file}" '
206 config=.git/config &&
207 test_when_finished "mv $config.old $config" &&
208 mv "$config" "$config".old
211 # Value-less in the middle of a list
212 cat >"$config" <<-\EOF &&
231 test-tool config "$op" a.key $file >actual &&
232 test_cmp expect actual &&
234 # Value-less at the end of a least
235 cat >"$config" <<-\EOF &&
254 test-tool config "$op" a.key $file >actual &&
255 test_cmp expect actual
259 test_NULL_in_multi
"get_value_multi"
260 test_NULL_in_multi
"configset_get_value" "my.config"
261 test_NULL_in_multi
"configset_get_value_multi" "my.config"
263 test_expect_success
'find value from a configset' '
264 cat >config2 <<-\EOF &&
273 test-tool config configset_get_value my.new config2 .git/config >actual &&
274 test_cmp expect actual
277 test_expect_success
'find value with highest priority from a configset' '
279 test-tool config configset_get_value case.baz config2 .git/config >actual &&
280 test_cmp expect actual
283 test_expect_success
'find value_list for a key from a configset' '
284 cat >expect <<-\EOF &&
291 test-tool config configset_get_value_multi case.baz config2 .git/config >actual &&
292 test_cmp expect actual
295 test_expect_success
'proper error on non-existent files' '
296 echo "Error (-1) reading configuration file non-existent-file." >expect &&
297 test_expect_code 2 test-tool config configset_get_value foo.bar non-existent-file 2>actual &&
298 test_cmp expect actual
301 test_expect_success
'proper error on directory "files"' '
302 echo "Error (-1) reading configuration file a-directory." >expect &&
304 test_expect_code 2 test-tool config configset_get_value foo.bar a-directory 2>output &&
305 grep "^warning:" output &&
306 grep "^Error" output >actual &&
307 test_cmp expect actual
310 test_expect_success POSIXPERM
,SANITY
'proper error on non-accessible files' '
311 chmod -r .git/config &&
312 test_when_finished "chmod +r .git/config" &&
313 echo "Error (-1) reading configuration file .git/config." >expect &&
314 test_expect_code 2 test-tool config configset_get_value foo.bar .git/config 2>output &&
315 grep "^warning:" output &&
316 grep "^Error" output >actual &&
317 test_cmp expect actual
320 test_expect_success
'proper error on error in default config files' '
321 cp .git/config .git/config.old &&
322 test_when_finished "mv .git/config.old .git/config" &&
323 echo "[" >>.git/config &&
324 echo "fatal: bad config line 36 in file .git/config" >expect &&
325 test_expect_code 128 test-tool config get_value foo.bar 2>actual &&
326 test_cmp expect actual
329 test_expect_success
'proper error on error in custom config files' '
330 echo "[" >>syntax-error &&
331 echo "fatal: bad config line 1 in file syntax-error" >expect &&
332 test_expect_code 128 test-tool config configset_get_value foo.bar syntax-error 2>actual &&
333 test_cmp expect actual
336 test_expect_success
'check line errors for malformed values' '
337 mv .git/config .git/config.old &&
338 test_when_finished "mv .git/config.old .git/config" &&
339 cat >.git/config <<-\EOF &&
343 test_expect_code 128 git br 2>result &&
344 test_grep "missing value for .alias\.br" result &&
345 test_grep "fatal: .*\.git/config" result &&
346 test_grep "fatal: .*line 2" result
349 test_expect_success
'error on modifying repo config without repo' '
350 nongit test_must_fail git config a.b c 2>err &&
351 test_grep "not in a git directory" err
354 cmdline_config
="'foo.bar=from-cmdline'"
355 test_expect_success
'iteration shows correct origins' '
356 printf "[ignore]\n\tthis = please\n[foo]bar = from-repo\n" >.git/config &&
357 printf "[foo]\n\tbar = from-home\n" >.gitconfig &&
358 if test_have_prereq MINGW
360 # Use Windows path (i.e. *not* $HOME)
361 HOME_GITCONFIG=$(pwd)/.gitconfig
363 # Do not get fooled by symbolic links, i.e. $HOME != $(pwd)
364 HOME_GITCONFIG=$HOME/.gitconfig
366 cat >expect <<-EOF &&
395 GIT_CONFIG_PARAMETERS=$cmdline_config test-tool config iterate >actual &&
396 test_cmp expect actual