]>
Commit | Line | Data |
---|---|---|
942c1f53 JS |
1 | #!/bin/sh |
2 | # | |
3 | # Copyright (c) 2005 Johannes Schindelin | |
4 | # | |
5 | ||
5be60078 | 6 | test_description='Test git config in different settings' |
942c1f53 JS |
7 | |
8 | . ./test-lib.sh | |
9 | ||
5a953fc5 JK |
10 | test_expect_success 'clear default config' ' |
11 | rm -f .git/config | |
12 | ' | |
942c1f53 JS |
13 | |
14 | cat > expect << EOF | |
942c1f53 JS |
15 | [core] |
16 | penguin = little blue | |
17 | EOF | |
5a953fc5 JK |
18 | test_expect_success 'initial' ' |
19 | git config core.penguin "little blue" && | |
20 | test_cmp expect .git/config | |
21 | ' | |
942c1f53 JS |
22 | |
23 | cat > expect << EOF | |
942c1f53 JS |
24 | [core] |
25 | penguin = little blue | |
26 | Movie = BadPhysics | |
27 | EOF | |
5a953fc5 JK |
28 | test_expect_success 'mixed case' ' |
29 | git config Core.Movie BadPhysics && | |
30 | test_cmp expect .git/config | |
31 | ' | |
942c1f53 JS |
32 | |
33 | cat > expect << EOF | |
942c1f53 JS |
34 | [core] |
35 | penguin = little blue | |
36 | Movie = BadPhysics | |
37 | [Cores] | |
38 | WhatEver = Second | |
39 | EOF | |
5a953fc5 JK |
40 | test_expect_success 'similar section' ' |
41 | git config Cores.WhatEver Second | |
42 | test_cmp expect .git/config | |
43 | ' | |
942c1f53 JS |
44 | |
45 | cat > expect << EOF | |
942c1f53 JS |
46 | [core] |
47 | penguin = little blue | |
48 | Movie = BadPhysics | |
49 | UPPERCASE = true | |
50 | [Cores] | |
51 | WhatEver = Second | |
52 | EOF | |
5a953fc5 JK |
53 | test_expect_success 'uppercase section' ' |
54 | git config CORE.UPPERCASE true && | |
55 | test_cmp expect .git/config | |
56 | ' | |
942c1f53 | 57 | |
f98d863d | 58 | test_expect_success 'replace with non-match' \ |
5be60078 | 59 | 'git config core.penguin kingpin !blue' |
f98d863d JS |
60 | |
61 | test_expect_success 'replace with non-match (actually matching)' \ | |
5be60078 | 62 | 'git config core.penguin "very blue" !kingpin' |
f98d863d JS |
63 | |
64 | cat > expect << EOF | |
f98d863d JS |
65 | [core] |
66 | penguin = very blue | |
67 | Movie = BadPhysics | |
68 | UPPERCASE = true | |
69 | penguin = kingpin | |
70 | [Cores] | |
71 | WhatEver = Second | |
72 | EOF | |
73 | ||
5a953fc5 | 74 | test_expect_success 'non-match result' 'test_cmp expect .git/config' |
f98d863d | 75 | |
88d42af8 JK |
76 | test_expect_success 'find mixed-case key by canonical name' ' |
77 | echo Second >expect && | |
78 | git config cores.whatever >actual && | |
79 | test_cmp expect actual | |
80 | ' | |
81 | ||
82 | test_expect_success 'find mixed-case key by non-canonical name' ' | |
83 | echo Second >expect && | |
84 | git config CoReS.WhAtEvEr >actual && | |
85 | test_cmp expect actual | |
86 | ' | |
87 | ||
88 | test_expect_success 'subsections are not canonicalized by git-config' ' | |
89 | cat >>.git/config <<-\EOF && | |
90 | [section.SubSection] | |
91 | key = one | |
92 | [section "SubSection"] | |
93 | key = two | |
94 | EOF | |
95 | echo one >expect && | |
96 | git config section.subsection.key >actual && | |
97 | test_cmp expect actual && | |
98 | echo two >expect && | |
99 | git config section.SubSection.key >actual && | |
100 | test_cmp expect actual | |
101 | ' | |
f98d863d | 102 | |
7a31cc0f FL |
103 | cat > .git/config <<\EOF |
104 | [alpha] | |
105 | bar = foo | |
106 | [beta] | |
107 | baz = multiple \ | |
108 | lines | |
109 | EOF | |
110 | ||
111 | test_expect_success 'unset with cont. lines' \ | |
112 | 'git config --unset beta.baz' | |
113 | ||
114 | cat > expect <<\EOF | |
115 | [alpha] | |
116 | bar = foo | |
117 | [beta] | |
118 | EOF | |
119 | ||
5a953fc5 | 120 | test_expect_success 'unset with cont. lines is correct' 'test_cmp expect .git/config' |
7a31cc0f | 121 | |
942c1f53 JS |
122 | cat > .git/config << EOF |
123 | [beta] ; silly comment # another comment | |
124 | noIndent= sillyValue ; 'nother silly comment | |
125 | ||
126 | # empty line | |
127 | ; comment | |
128 | haha ="beta" # last silly comment | |
4ddba79d JS |
129 | haha = hello |
130 | haha = bello | |
942c1f53 JS |
131 | [nextSection] noNewline = ouch |
132 | EOF | |
133 | ||
4ddba79d JS |
134 | cp .git/config .git/config2 |
135 | ||
136 | test_expect_success 'multiple unset' \ | |
5be60078 | 137 | 'git config --unset-all beta.haha' |
4ddba79d JS |
138 | |
139 | cat > expect << EOF | |
140 | [beta] ; silly comment # another comment | |
141 | noIndent= sillyValue ; 'nother silly comment | |
142 | ||
143 | # empty line | |
144 | ; comment | |
145 | [nextSection] noNewline = ouch | |
146 | EOF | |
147 | ||
5a953fc5 | 148 | test_expect_success 'multiple unset is correct' 'test_cmp expect .git/config' |
4ddba79d | 149 | |
bf71b4b3 CR |
150 | cp .git/config2 .git/config |
151 | ||
152 | test_expect_success '--replace-all missing value' ' | |
153 | test_must_fail git config --replace-all beta.haha && | |
154 | test_cmp .git/config2 .git/config | |
155 | ' | |
156 | ||
157 | rm .git/config2 | |
4ddba79d JS |
158 | |
159 | test_expect_success '--replace-all' \ | |
5be60078 | 160 | 'git config --replace-all beta.haha gamma' |
4ddba79d JS |
161 | |
162 | cat > expect << EOF | |
163 | [beta] ; silly comment # another comment | |
164 | noIndent= sillyValue ; 'nother silly comment | |
165 | ||
166 | # empty line | |
167 | ; comment | |
168 | haha = gamma | |
169 | [nextSection] noNewline = ouch | |
170 | EOF | |
171 | ||
5a953fc5 | 172 | test_expect_success 'all replaced' 'test_cmp expect .git/config' |
942c1f53 JS |
173 | |
174 | cat > expect << EOF | |
175 | [beta] ; silly comment # another comment | |
176 | noIndent= sillyValue ; 'nother silly comment | |
177 | ||
178 | # empty line | |
179 | ; comment | |
180 | haha = alpha | |
181 | [nextSection] noNewline = ouch | |
182 | EOF | |
5a953fc5 JK |
183 | test_expect_success 'really mean test' ' |
184 | git config beta.haha alpha && | |
185 | test_cmp expect .git/config | |
186 | ' | |
942c1f53 JS |
187 | |
188 | cat > expect << EOF | |
189 | [beta] ; silly comment # another comment | |
190 | noIndent= sillyValue ; 'nother silly comment | |
191 | ||
192 | # empty line | |
193 | ; comment | |
194 | haha = alpha | |
195 | [nextSection] | |
196 | nonewline = wow | |
197 | EOF | |
5a953fc5 JK |
198 | test_expect_success 'really really mean test' ' |
199 | git config nextsection.nonewline wow && | |
200 | test_cmp expect .git/config | |
201 | ' | |
942c1f53 | 202 | |
5be60078 | 203 | test_expect_success 'get value' 'test alpha = $(git config beta.haha)' |
942c1f53 JS |
204 | |
205 | cat > expect << EOF | |
206 | [beta] ; silly comment # another comment | |
207 | noIndent= sillyValue ; 'nother silly comment | |
208 | ||
209 | # empty line | |
210 | ; comment | |
211 | [nextSection] | |
212 | nonewline = wow | |
213 | EOF | |
5a953fc5 JK |
214 | test_expect_success 'unset' ' |
215 | git config --unset beta.haha && | |
216 | test_cmp expect .git/config | |
217 | ' | |
942c1f53 JS |
218 | |
219 | cat > expect << EOF | |
220 | [beta] ; silly comment # another comment | |
221 | noIndent= sillyValue ; 'nother silly comment | |
222 | ||
223 | # empty line | |
224 | ; comment | |
225 | [nextSection] | |
226 | nonewline = wow | |
227 | NoNewLine = wow2 for me | |
228 | EOF | |
5a953fc5 JK |
229 | test_expect_success 'multivar' ' |
230 | git config nextsection.NoNewLine "wow2 for me" "for me$" && | |
231 | test_cmp expect .git/config | |
232 | ' | |
942c1f53 | 233 | |
f98d863d | 234 | test_expect_success 'non-match' \ |
5be60078 | 235 | 'git config --get nextsection.nonewline !for' |
f98d863d JS |
236 | |
237 | test_expect_success 'non-match value' \ | |
5be60078 | 238 | 'test wow = $(git config --get nextsection.nonewline !for)' |
f98d863d | 239 | |
41ac414e | 240 | test_expect_success 'ambiguous get' ' |
d492b31c | 241 | test_must_fail git config --get nextsection.nonewline |
41ac414e | 242 | ' |
4ddba79d JS |
243 | |
244 | test_expect_success 'get multivar' \ | |
5be60078 | 245 | 'git config --get-all nextsection.nonewline' |
4ddba79d | 246 | |
942c1f53 JS |
247 | cat > expect << EOF |
248 | [beta] ; silly comment # another comment | |
249 | noIndent= sillyValue ; 'nother silly comment | |
250 | ||
251 | # empty line | |
252 | ; comment | |
253 | [nextSection] | |
254 | nonewline = wow3 | |
255 | NoNewLine = wow2 for me | |
256 | EOF | |
5a953fc5 JK |
257 | test_expect_success 'multivar replace' ' |
258 | git config nextsection.nonewline "wow3" "wow$" && | |
259 | test_cmp expect .git/config | |
260 | ' | |
942c1f53 | 261 | |
41ac414e | 262 | test_expect_success 'ambiguous value' ' |
d492b31c | 263 | test_must_fail git config nextsection.nonewline |
41ac414e | 264 | ' |
4ddba79d | 265 | |
41ac414e | 266 | test_expect_success 'ambiguous unset' ' |
d492b31c | 267 | test_must_fail git config --unset nextsection.nonewline |
41ac414e | 268 | ' |
942c1f53 | 269 | |
41ac414e | 270 | test_expect_success 'invalid unset' ' |
d492b31c | 271 | test_must_fail git config --unset somesection.nonewline |
41ac414e | 272 | ' |
942c1f53 | 273 | |
942c1f53 JS |
274 | cat > expect << EOF |
275 | [beta] ; silly comment # another comment | |
276 | noIndent= sillyValue ; 'nother silly comment | |
277 | ||
278 | # empty line | |
279 | ; comment | |
280 | [nextSection] | |
281 | NoNewLine = wow2 for me | |
282 | EOF | |
283 | ||
5a953fc5 JK |
284 | test_expect_success 'multivar unset' ' |
285 | git config --unset nextsection.nonewline "wow3$" && | |
286 | test_cmp expect .git/config | |
287 | ' | |
942c1f53 | 288 | |
d492b31c | 289 | test_expect_success 'invalid key' 'test_must_fail git config inval.2key blabla' |
942c1f53 | 290 | |
5be60078 | 291 | test_expect_success 'correct key' 'git config 123456.a123 987' |
942c1f53 | 292 | |
b17e659d | 293 | test_expect_success 'hierarchical section' \ |
5be60078 | 294 | 'git config Version.1.2.3eX.Alpha beta' |
b17e659d JS |
295 | |
296 | cat > expect << EOF | |
297 | [beta] ; silly comment # another comment | |
298 | noIndent= sillyValue ; 'nother silly comment | |
299 | ||
300 | # empty line | |
301 | ; comment | |
302 | [nextSection] | |
303 | NoNewLine = wow2 for me | |
304 | [123456] | |
305 | a123 = 987 | |
d14f7764 LT |
306 | [Version "1.2.3eX"] |
307 | Alpha = beta | |
b17e659d JS |
308 | EOF |
309 | ||
5a953fc5 | 310 | test_expect_success 'hierarchical section value' 'test_cmp expect .git/config' |
b17e659d | 311 | |
2fa9a0fb JS |
312 | cat > expect << EOF |
313 | beta.noindent=sillyValue | |
314 | nextsection.nonewline=wow2 for me | |
315 | 123456.a123=987 | |
d55aaefa | 316 | version.1.2.3eX.alpha=beta |
2fa9a0fb JS |
317 | EOF |
318 | ||
319 | test_expect_success 'working --list' \ | |
5be60078 | 320 | 'git config --list > output && cmp output expect' |
2fa9a0fb | 321 | |
1f2baa78 JK |
322 | cat > expect << EOF |
323 | EOF | |
324 | ||
325 | test_expect_success '--list without repo produces empty output' ' | |
326 | git --git-dir=nonexistent config --list >output && | |
327 | test_cmp expect output | |
328 | ' | |
329 | ||
2fa9a0fb JS |
330 | cat > expect << EOF |
331 | beta.noindent sillyValue | |
332 | nextsection.nonewline wow2 for me | |
333 | EOF | |
334 | ||
335 | test_expect_success '--get-regexp' \ | |
5be60078 | 336 | 'git config --get-regexp in > output && cmp output expect' |
2fa9a0fb | 337 | |
89c4afe0 BG |
338 | cat > expect << EOF |
339 | wow2 for me | |
340 | wow4 for you | |
341 | EOF | |
342 | ||
5a953fc5 JK |
343 | test_expect_success '--add' ' |
344 | git config --add nextsection.nonewline "wow4 for you" && | |
345 | git config --get-all nextsection.nonewline > output && | |
346 | test_cmp expect output | |
347 | ' | |
89c4afe0 | 348 | |
f067a137 JF |
349 | cat > .git/config << EOF |
350 | [novalue] | |
351 | variable | |
09bc098c CC |
352 | [emptyvalue] |
353 | variable = | |
f067a137 JF |
354 | EOF |
355 | ||
356 | test_expect_success 'get variable with no value' \ | |
5be60078 | 357 | 'git config --get novalue.variable ^$' |
f067a137 | 358 | |
09bc098c CC |
359 | test_expect_success 'get variable with empty value' \ |
360 | 'git config --get emptyvalue.variable ^$' | |
361 | ||
b69ba460 FL |
362 | echo novalue.variable > expect |
363 | ||
364 | test_expect_success 'get-regexp variable with no value' \ | |
5be60078 | 365 | 'git config --get-regexp novalue > output && |
b69ba460 FL |
366 | cmp output expect' |
367 | ||
008e3cc5 MM |
368 | echo 'novalue.variable true' > expect |
369 | ||
370 | test_expect_success 'get-regexp --bool variable with no value' \ | |
371 | 'git config --bool --get-regexp novalue > output && | |
372 | cmp output expect' | |
373 | ||
09bc098c CC |
374 | echo 'emptyvalue.variable ' > expect |
375 | ||
376 | test_expect_success 'get-regexp variable with empty value' \ | |
377 | 'git config --get-regexp emptyvalue > output && | |
378 | cmp output expect' | |
379 | ||
380 | echo true > expect | |
381 | ||
382 | test_expect_success 'get bool variable with no value' \ | |
383 | 'git config --bool novalue.variable > output && | |
384 | cmp output expect' | |
385 | ||
386 | echo false > expect | |
387 | ||
388 | test_expect_success 'get bool variable with empty value' \ | |
389 | 'git config --bool emptyvalue.variable > output && | |
390 | cmp output expect' | |
391 | ||
003f69b2 JK |
392 | test_expect_success 'no arguments, but no crash' ' |
393 | test_must_fail git config >output 2>&1 && | |
394 | grep usage output | |
395 | ' | |
2fa9a0fb | 396 | |
bd886fd3 SE |
397 | cat > .git/config << EOF |
398 | [a.b] | |
399 | c = d | |
400 | EOF | |
401 | ||
bd886fd3 SE |
402 | cat > expect << EOF |
403 | [a.b] | |
404 | c = d | |
405 | [a] | |
406 | x = y | |
407 | EOF | |
408 | ||
5a953fc5 JK |
409 | test_expect_success 'new section is partial match of another' ' |
410 | git config a.x y && | |
411 | test_cmp expect .git/config | |
412 | ' | |
bd886fd3 SE |
413 | |
414 | cat > expect << EOF | |
415 | [a.b] | |
416 | c = d | |
417 | [a] | |
418 | x = y | |
419 | b = c | |
420 | [b] | |
421 | x = y | |
422 | EOF | |
423 | ||
5a953fc5 JK |
424 | test_expect_success 'new variable inserts into proper section' ' |
425 | git config b.x y && | |
426 | git config a.b c && | |
427 | test_cmp expect .git/config | |
428 | ' | |
bd886fd3 | 429 | |
773a69fb | 430 | test_expect_success 'alternative GIT_CONFIG (non-existing file should fail)' \ |
003f69b2 | 431 | 'test_must_fail git config --file non-existing-config -l' |
773a69fb | 432 | |
9c3796fc JS |
433 | cat > other-config << EOF |
434 | [ein] | |
435 | bahn = strasse | |
436 | EOF | |
437 | ||
438 | cat > expect << EOF | |
439 | ein.bahn=strasse | |
440 | EOF | |
441 | ||
5a953fc5 JK |
442 | test_expect_success 'alternative GIT_CONFIG' ' |
443 | GIT_CONFIG=other-config git config -l >output && | |
444 | test_cmp expect output | |
445 | ' | |
9c3796fc | 446 | |
773a69fb AR |
447 | test_expect_success 'alternative GIT_CONFIG (--file)' \ |
448 | 'git config --file other-config -l > output && cmp output expect' | |
449 | ||
65807ee6 JH |
450 | test_expect_success 'refer config from subdirectory' ' |
451 | mkdir x && | |
452 | ( | |
453 | cd x && | |
454 | echo strasse >expect | |
455 | git config --get --file ../other-config ein.bahn >actual && | |
456 | test_cmp expect actual | |
457 | ) | |
458 | ||
459 | ' | |
460 | ||
9c3796fc JS |
461 | cat > expect << EOF |
462 | [ein] | |
463 | bahn = strasse | |
464 | [anwohner] | |
465 | park = ausweis | |
466 | EOF | |
467 | ||
5a953fc5 JK |
468 | test_expect_success '--set in alternative GIT_CONFIG' ' |
469 | GIT_CONFIG=other-config git config anwohner.park ausweis && | |
470 | test_cmp expect other-config | |
471 | ' | |
9c3796fc | 472 | |
0667fcfb JS |
473 | cat > .git/config << EOF |
474 | # Hallo | |
475 | #Bello | |
476 | [branch "eins"] | |
477 | x = 1 | |
478 | [branch.eins] | |
479 | y = 1 | |
480 | [branch "1 234 blabl/a"] | |
481 | weird | |
482 | EOF | |
483 | ||
484 | test_expect_success "rename section" \ | |
5be60078 | 485 | "git config --rename-section branch.eins branch.zwei" |
0667fcfb JS |
486 | |
487 | cat > expect << EOF | |
488 | # Hallo | |
489 | #Bello | |
490 | [branch "zwei"] | |
491 | x = 1 | |
492 | [branch "zwei"] | |
493 | y = 1 | |
494 | [branch "1 234 blabl/a"] | |
495 | weird | |
496 | EOF | |
497 | ||
3af82863 | 498 | test_expect_success "rename succeeded" "test_cmp expect .git/config" |
0667fcfb | 499 | |
41ac414e | 500 | test_expect_success "rename non-existing section" ' |
d492b31c SB |
501 | test_must_fail git config --rename-section \ |
502 | branch."world domination" branch.drei | |
41ac414e | 503 | ' |
0667fcfb | 504 | |
3af82863 | 505 | test_expect_success "rename succeeded" "test_cmp expect .git/config" |
0667fcfb JS |
506 | |
507 | test_expect_success "rename another section" \ | |
5be60078 | 508 | 'git config --rename-section branch."1 234 blabl/a" branch.drei' |
0667fcfb JS |
509 | |
510 | cat > expect << EOF | |
511 | # Hallo | |
512 | #Bello | |
513 | [branch "zwei"] | |
514 | x = 1 | |
515 | [branch "zwei"] | |
516 | y = 1 | |
517 | [branch "drei"] | |
518 | weird | |
519 | EOF | |
520 | ||
3af82863 | 521 | test_expect_success "rename succeeded" "test_cmp expect .git/config" |
9a5abfc7 AV |
522 | |
523 | cat >> .git/config << EOF | |
524 | [branch "vier"] z = 1 | |
525 | EOF | |
526 | ||
527 | test_expect_success "rename a section with a var on the same line" \ | |
528 | 'git config --rename-section branch.vier branch.zwei' | |
529 | ||
530 | cat > expect << EOF | |
531 | # Hallo | |
532 | #Bello | |
533 | [branch "zwei"] | |
534 | x = 1 | |
535 | [branch "zwei"] | |
536 | y = 1 | |
537 | [branch "drei"] | |
538 | weird | |
539 | [branch "zwei"] | |
540 | z = 1 | |
541 | EOF | |
542 | ||
543 | test_expect_success "rename succeeded" "test_cmp expect .git/config" | |
0667fcfb | 544 | |
118f8b24 PB |
545 | cat >> .git/config << EOF |
546 | [branch "zwei"] a = 1 [branch "vier"] | |
547 | EOF | |
548 | ||
549 | test_expect_success "remove section" "git config --remove-section branch.zwei" | |
550 | ||
551 | cat > expect << EOF | |
552 | # Hallo | |
553 | #Bello | |
554 | [branch "drei"] | |
555 | weird | |
556 | EOF | |
557 | ||
558 | test_expect_success "section was removed properly" \ | |
3af82863 | 559 | "test_cmp expect .git/config" |
118f8b24 | 560 | |
b18a2be3 SP |
561 | cat > expect << EOF |
562 | [gitcvs] | |
563 | enabled = true | |
564 | dbname = %Ggitcvs2.%a.%m.sqlite | |
565 | [gitcvs "ext"] | |
566 | dbname = %Ggitcvs1.%a.%m.sqlite | |
567 | EOF | |
568 | ||
569 | test_expect_success 'section ending' ' | |
570 | ||
795290e5 | 571 | rm -f .git/config && |
5be60078 JH |
572 | git config gitcvs.enabled true && |
573 | git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite && | |
574 | git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite && | |
5a953fc5 | 575 | test_cmp expect .git/config |
b18a2be3 SP |
576 | |
577 | ' | |
578 | ||
d77a64d3 SP |
579 | test_expect_success numbers ' |
580 | ||
5be60078 JH |
581 | git config kilo.gram 1k && |
582 | git config mega.ton 1m && | |
583 | k=$(git config --int --get kilo.gram) && | |
d77a64d3 | 584 | test z1024 = "z$k" && |
5be60078 | 585 | m=$(git config --int --get mega.ton) && |
d77a64d3 SP |
586 | test z1048576 = "z$m" |
587 | ' | |
588 | ||
c8deb5a1 SP |
589 | cat > expect <<EOF |
590 | fatal: bad config value for 'aninvalid.unit' in .git/config | |
591 | EOF | |
592 | ||
593 | test_expect_success 'invalid unit' ' | |
594 | ||
595 | git config aninvalid.unit "1auto" && | |
596 | s=$(git config aninvalid.unit) && | |
597 | test "z1auto" = "z$s" && | |
598 | if git config --int --get aninvalid.unit 2>actual | |
599 | then | |
600 | echo config should have failed | |
601 | false | |
602 | fi && | |
603 | cmp actual expect | |
604 | ' | |
605 | ||
cab333cb FL |
606 | cat > expect << EOF |
607 | true | |
608 | false | |
609 | true | |
610 | false | |
611 | true | |
612 | false | |
613 | true | |
614 | false | |
615 | EOF | |
616 | ||
617 | test_expect_success bool ' | |
618 | ||
5be60078 JH |
619 | git config bool.true1 01 && |
620 | git config bool.true2 -1 && | |
621 | git config bool.true3 YeS && | |
622 | git config bool.true4 true && | |
623 | git config bool.false1 000 && | |
624 | git config bool.false2 "" && | |
625 | git config bool.false3 nO && | |
626 | git config bool.false4 FALSE && | |
cab333cb FL |
627 | rm -f result && |
628 | for i in 1 2 3 4 | |
629 | do | |
5be60078 JH |
630 | git config --bool --get bool.true$i >>result |
631 | git config --bool --get bool.false$i >>result | |
cab333cb FL |
632 | done && |
633 | cmp expect result' | |
634 | ||
41ac414e | 635 | test_expect_success 'invalid bool (--get)' ' |
cab333cb | 636 | |
5be60078 | 637 | git config bool.nobool foobar && |
d492b31c | 638 | test_must_fail git config --bool --get bool.nobool' |
cab333cb | 639 | |
41ac414e | 640 | test_expect_success 'invalid bool (set)' ' |
db1696b8 | 641 | |
d492b31c | 642 | test_must_fail git config --bool bool.nobool foobar' |
db1696b8 | 643 | |
db1696b8 FL |
644 | cat > expect <<\EOF |
645 | [bool] | |
646 | true1 = true | |
647 | true2 = true | |
648 | true3 = true | |
649 | true4 = true | |
650 | false1 = false | |
651 | false2 = false | |
652 | false3 = false | |
653 | false4 = false | |
654 | EOF | |
655 | ||
656 | test_expect_success 'set --bool' ' | |
657 | ||
795290e5 | 658 | rm -f .git/config && |
5be60078 JH |
659 | git config --bool bool.true1 01 && |
660 | git config --bool bool.true2 -1 && | |
661 | git config --bool bool.true3 YeS && | |
662 | git config --bool bool.true4 true && | |
663 | git config --bool bool.false1 000 && | |
664 | git config --bool bool.false2 "" && | |
665 | git config --bool bool.false3 nO && | |
666 | git config --bool bool.false4 FALSE && | |
db1696b8 FL |
667 | cmp expect .git/config' |
668 | ||
db1696b8 FL |
669 | cat > expect <<\EOF |
670 | [int] | |
671 | val1 = 1 | |
672 | val2 = -1 | |
673 | val3 = 5242880 | |
674 | EOF | |
675 | ||
676 | test_expect_success 'set --int' ' | |
677 | ||
795290e5 | 678 | rm -f .git/config && |
5be60078 JH |
679 | git config --int int.val1 01 && |
680 | git config --int int.val2 -1 && | |
681 | git config --int int.val3 5m && | |
db1696b8 FL |
682 | cmp expect .git/config' |
683 | ||
c35b0b58 JH |
684 | cat >expect <<\EOF |
685 | [bool] | |
686 | true1 = true | |
687 | true2 = true | |
688 | false1 = false | |
689 | false2 = false | |
690 | [int] | |
691 | int1 = 0 | |
692 | int2 = 1 | |
693 | int3 = -1 | |
694 | EOF | |
695 | ||
696 | test_expect_success 'get --bool-or-int' ' | |
795290e5 | 697 | rm -f .git/config && |
c35b0b58 JH |
698 | ( |
699 | echo "[bool]" | |
700 | echo true1 | |
701 | echo true2 = true | |
702 | echo false = false | |
703 | echo "[int]" | |
704 | echo int1 = 0 | |
705 | echo int2 = 1 | |
706 | echo int3 = -1 | |
707 | ) >>.git/config && | |
708 | test $(git config --bool-or-int bool.true1) = true && | |
709 | test $(git config --bool-or-int bool.true2) = true && | |
710 | test $(git config --bool-or-int bool.false) = false && | |
711 | test $(git config --bool-or-int int.int1) = 0 && | |
712 | test $(git config --bool-or-int int.int2) = 1 && | |
713 | test $(git config --bool-or-int int.int3) = -1 | |
714 | ||
715 | ' | |
716 | ||
c35b0b58 JH |
717 | cat >expect <<\EOF |
718 | [bool] | |
719 | true1 = true | |
720 | false1 = false | |
721 | true2 = true | |
722 | false2 = false | |
723 | [int] | |
724 | int1 = 0 | |
725 | int2 = 1 | |
726 | int3 = -1 | |
727 | EOF | |
728 | ||
729 | test_expect_success 'set --bool-or-int' ' | |
795290e5 | 730 | rm -f .git/config && |
c35b0b58 JH |
731 | git config --bool-or-int bool.true1 true && |
732 | git config --bool-or-int bool.false1 false && | |
733 | git config --bool-or-int bool.true2 yes && | |
734 | git config --bool-or-int bool.false2 no && | |
735 | git config --bool-or-int int.int1 0 && | |
736 | git config --bool-or-int int.int2 1 && | |
737 | git config --bool-or-int int.int3 -1 && | |
738 | test_cmp expect .git/config | |
739 | ' | |
740 | ||
1349484e MM |
741 | cat >expect <<\EOF |
742 | [path] | |
743 | home = ~/ | |
744 | normal = /dev/null | |
745 | trailingtilde = foo~ | |
746 | EOF | |
747 | ||
3ba9ba8f | 748 | test_expect_success NOT_MINGW 'set --path' ' |
795290e5 | 749 | rm -f .git/config && |
1349484e MM |
750 | git config --path path.home "~/" && |
751 | git config --path path.normal "/dev/null" && | |
752 | git config --path path.trailingtilde "foo~" && | |
753 | test_cmp expect .git/config' | |
754 | ||
3ba9ba8f | 755 | if test_have_prereq NOT_MINGW && test "${HOME+set}" |
79bf1490 JN |
756 | then |
757 | test_set_prereq HOMEVAR | |
758 | fi | |
759 | ||
1349484e MM |
760 | cat >expect <<EOF |
761 | $HOME/ | |
762 | /dev/null | |
763 | foo~ | |
764 | EOF | |
765 | ||
79bf1490 | 766 | test_expect_success HOMEVAR 'get --path' ' |
1349484e MM |
767 | git config --get --path path.home > result && |
768 | git config --get --path path.normal >> result && | |
769 | git config --get --path path.trailingtilde >> result && | |
770 | test_cmp expect result | |
771 | ' | |
772 | ||
79bf1490 JN |
773 | cat >expect <<\EOF |
774 | /dev/null | |
775 | foo~ | |
776 | EOF | |
777 | ||
3ba9ba8f | 778 | test_expect_success NOT_MINGW 'get --path copes with unset $HOME' ' |
79bf1490 JN |
779 | ( |
780 | unset HOME; | |
781 | test_must_fail git config --get --path path.home \ | |
782 | >result 2>msg && | |
783 | git config --get --path path.normal >>result && | |
784 | git config --get --path path.trailingtilde >>result | |
785 | ) && | |
786 | grep "[Ff]ailed to expand.*~/" msg && | |
787 | test_cmp expect result | |
788 | ' | |
789 | ||
cdd4fb15 BG |
790 | cat > expect << EOF |
791 | [quote] | |
792 | leading = " test" | |
793 | ending = "test " | |
794 | semicolon = "test;test" | |
795 | hash = "test#test" | |
796 | EOF | |
5a953fc5 | 797 | test_expect_success 'quoting' ' |
795290e5 | 798 | rm -f .git/config && |
5a953fc5 JK |
799 | git config quote.leading " test" && |
800 | git config quote.ending "test " && | |
801 | git config quote.semicolon "test;test" && | |
802 | git config quote.hash "test#test" && | |
803 | test_cmp expect .git/config | |
804 | ' | |
cdd4fb15 | 805 | |
41ac414e | 806 | test_expect_success 'key with newline' ' |
d492b31c | 807 | test_must_fail git config "key.with |
41ac414e | 808 | newline" 123' |
6f71686e | 809 | |
e0d10e1c | 810 | test_expect_success 'value with newline' 'git config key.sub value.with\\\ |
6f71686e JS |
811 | newline' |
812 | ||
83cd10a0 JN |
813 | cat > .git/config <<\EOF |
814 | [section] | |
815 | ; comment \ | |
816 | continued = cont\ | |
817 | inued | |
818 | noncont = not continued ; \ | |
819 | quotecont = "cont;\ | |
820 | inued" | |
821 | EOF | |
822 | ||
823 | cat > expect <<\EOF | |
824 | section.continued=continued | |
825 | section.noncont=not continued | |
826 | section.quotecont=cont;inued | |
827 | EOF | |
828 | ||
5a953fc5 JK |
829 | test_expect_success 'value continued on next line' ' |
830 | git config --list > result && | |
831 | cmp result expect | |
832 | ' | |
83cd10a0 | 833 | |
2275d502 FL |
834 | cat > .git/config <<\EOF |
835 | [section "sub=section"] | |
836 | val1 = foo=bar | |
837 | val2 = foo\nbar | |
838 | val3 = \n\n | |
839 | val4 = | |
840 | val5 | |
841 | EOF | |
842 | ||
843 | cat > expect <<\EOF | |
2b9a5020 AR |
844 | section.sub=section.val1 |
845 | foo=barQsection.sub=section.val2 | |
846 | foo | |
847 | barQsection.sub=section.val3 | |
2275d502 FL |
848 | |
849 | ||
2b9a5020 AR |
850 | Qsection.sub=section.val4 |
851 | Qsection.sub=section.val5Q | |
2275d502 | 852 | EOF |
5a953fc5 JK |
853 | test_expect_success '--null --list' ' |
854 | git config --null --list | nul_to_q >result && | |
855 | echo >>result && | |
856 | test_cmp expect result | |
857 | ' | |
2275d502 | 858 | |
5a953fc5 JK |
859 | test_expect_success '--null --get-regexp' ' |
860 | git config --null --get-regexp "val[0-9]" | nul_to_q >result && | |
861 | echo >>result && | |
862 | test_cmp expect result | |
863 | ' | |
2275d502 | 864 | |
ebdaae37 BS |
865 | test_expect_success 'inner whitespace kept verbatim' ' |
866 | git config section.val "foo bar" && | |
867 | test "z$(git config section.val)" = "zfoo bar" | |
868 | ' | |
869 | ||
704a3143 | 870 | test_expect_success SYMLINKS 'symlinked configuration' ' |
65a5a21d JH |
871 | |
872 | ln -s notyet myconfig && | |
873 | GIT_CONFIG=myconfig git config test.frotz nitfol && | |
874 | test -h myconfig && | |
875 | test -f notyet && | |
876 | test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol && | |
877 | GIT_CONFIG=myconfig git config test.xyzzy rezrov && | |
878 | test -h myconfig && | |
879 | test -f notyet && | |
880 | test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol && | |
881 | test "z$(GIT_CONFIG=notyet git config test.xyzzy)" = zrezrov | |
882 | ||
883 | ' | |
884 | ||
1f2baa78 JK |
885 | test_expect_success 'nonexistent configuration' ' |
886 | ( | |
887 | GIT_CONFIG=doesnotexist && | |
888 | export GIT_CONFIG && | |
889 | test_must_fail git config --list && | |
890 | test_must_fail git config test.xyzzy | |
891 | ) | |
892 | ' | |
893 | ||
894 | test_expect_success SYMLINKS 'symlink to nonexistent configuration' ' | |
895 | ln -s doesnotexist linktonada && | |
896 | ln -s linktonada linktolinktonada && | |
897 | ( | |
898 | GIT_CONFIG=linktonada && | |
899 | export GIT_CONFIG && | |
900 | test_must_fail git config --list && | |
901 | GIT_CONFIG=linktolinktonada && | |
902 | test_must_fail git config --list | |
903 | ) | |
904 | ' | |
905 | ||
dc4179f9 DM |
906 | test_expect_success 'check split_cmdline return' " |
907 | git config alias.split-cmdline-fix 'echo \"' && | |
908 | test_must_fail git split-cmdline-fix && | |
909 | echo foo > foo && | |
910 | git add foo && | |
911 | git commit -m 'initial commit' && | |
912 | git config branch.master.mergeoptions 'echo \"' && | |
913 | test_must_fail git merge master | |
914 | " | |
915 | ||
8b1fa778 | 916 | test_expect_success 'git -c "key=value" support' ' |
8b1fa778 | 917 | test "z$(git -c core.name=value config core.name)" = zvalue && |
b09c53a3 LP |
918 | test "z$(git -c foo.CamelCase=value config foo.camelcase)" = zvalue && |
919 | test "z$(git -c foo.flag config --bool foo.flag)" = ztrue && | |
920 | test_must_fail git -c name=value config core.name | |
921 | ' | |
922 | ||
923 | test_expect_success 'key sanity-checking' ' | |
924 | test_must_fail git config foo=bar && | |
925 | test_must_fail git config foo=.bar && | |
926 | test_must_fail git config foo.ba=r && | |
927 | test_must_fail git config foo.1bar && | |
928 | test_must_fail git config foo."ba | |
929 | z".bar && | |
2169ddc0 LP |
930 | test_must_fail git config . false && |
931 | test_must_fail git config .foo false && | |
932 | test_must_fail git config foo. false && | |
933 | test_must_fail git config .foo. false && | |
b09c53a3 LP |
934 | git config foo.bar true && |
935 | git config foo."ba =z".bar false | |
8b1fa778 AR |
936 | ' |
937 | ||
73546c08 | 938 | test_expect_success 'git -c works with aliases of builtins' ' |
06eb708f JK |
939 | git config alias.checkconfig "-c foo.check=bar config foo.check" && |
940 | echo bar >expect && | |
941 | git checkconfig >actual && | |
942 | test_cmp expect actual | |
943 | ' | |
944 | ||
5bf6529a JK |
945 | test_expect_success 'git -c does not split values on equals' ' |
946 | echo "value with = in it" >expect && | |
947 | git -c core.foo="value with = in it" config core.foo >actual && | |
948 | test_cmp expect actual | |
949 | ' | |
950 | ||
1c2c9bee JK |
951 | test_expect_success 'git -c dies on bogus config' ' |
952 | test_must_fail git -c core.bare=foo rev-parse | |
953 | ' | |
954 | ||
955 | test_expect_success 'git -c complains about empty key' ' | |
956 | test_must_fail git -c "=foo" rev-parse | |
957 | ' | |
958 | ||
c5d6350b JK |
959 | test_expect_success 'git -c complains about empty key and value' ' |
960 | test_must_fail git -c "" rev-parse | |
961 | ' | |
962 | ||
942c1f53 | 963 | test_done |