]> git.ipfire.org Git - thirdparty/git.git/blame - t/t1300-config.sh
t1300: rename it to reflect that `repo-config` was deprecated
[thirdparty/git.git] / t / t1300-config.sh
CommitLineData
942c1f53
JS
1#!/bin/sh
2#
3# Copyright (c) 2005 Johannes Schindelin
4#
5
5be60078 6test_description='Test git config in different settings'
942c1f53
JS
7
8. ./test-lib.sh
9
5a953fc5
JK
10test_expect_success 'clear default config' '
11 rm -f .git/config
12'
942c1f53
JS
13
14cat > expect << EOF
942c1f53
JS
15[core]
16 penguin = little blue
17EOF
5a953fc5
JK
18test_expect_success 'initial' '
19 git config core.penguin "little blue" &&
20 test_cmp expect .git/config
21'
942c1f53
JS
22
23cat > expect << EOF
942c1f53
JS
24[core]
25 penguin = little blue
26 Movie = BadPhysics
27EOF
5a953fc5
JK
28test_expect_success 'mixed case' '
29 git config Core.Movie BadPhysics &&
30 test_cmp expect .git/config
31'
942c1f53
JS
32
33cat > expect << EOF
942c1f53
JS
34[core]
35 penguin = little blue
36 Movie = BadPhysics
37[Cores]
38 WhatEver = Second
39EOF
5a953fc5 40test_expect_success 'similar section' '
02380389 41 git config Cores.WhatEver Second &&
5a953fc5
JK
42 test_cmp expect .git/config
43'
942c1f53
JS
44
45cat > expect << EOF
942c1f53
JS
46[core]
47 penguin = little blue
48 Movie = BadPhysics
49 UPPERCASE = true
50[Cores]
51 WhatEver = Second
52EOF
5a953fc5
JK
53test_expect_success 'uppercase section' '
54 git config CORE.UPPERCASE true &&
55 test_cmp expect .git/config
56'
942c1f53 57
ed838e66
JK
58test_expect_success 'replace with non-match' '
59 git config core.penguin kingpin !blue
60'
f98d863d 61
ed838e66
JK
62test_expect_success 'replace with non-match (actually matching)' '
63 git config core.penguin "very blue" !kingpin
64'
f98d863d
JS
65
66cat > expect << EOF
f98d863d
JS
67[core]
68 penguin = very blue
69 Movie = BadPhysics
70 UPPERCASE = true
71 penguin = kingpin
72[Cores]
73 WhatEver = Second
74EOF
75
5a953fc5 76test_expect_success 'non-match result' 'test_cmp expect .git/config'
f98d863d 77
88d42af8
JK
78test_expect_success 'find mixed-case key by canonical name' '
79 echo Second >expect &&
80 git config cores.whatever >actual &&
81 test_cmp expect actual
82'
83
84test_expect_success 'find mixed-case key by non-canonical name' '
85 echo Second >expect &&
86 git config CoReS.WhAtEvEr >actual &&
87 test_cmp expect actual
88'
89
90test_expect_success 'subsections are not canonicalized by git-config' '
91 cat >>.git/config <<-\EOF &&
92 [section.SubSection]
93 key = one
94 [section "SubSection"]
95 key = two
96 EOF
97 echo one >expect &&
98 git config section.subsection.key >actual &&
99 test_cmp expect actual &&
100 echo two >expect &&
101 git config section.SubSection.key >actual &&
102 test_cmp expect actual
103'
f98d863d 104
7a31cc0f
FL
105cat > .git/config <<\EOF
106[alpha]
107bar = foo
108[beta]
109baz = multiple \
110lines
111EOF
112
ed838e66
JK
113test_expect_success 'unset with cont. lines' '
114 git config --unset beta.baz
115'
7a31cc0f
FL
116
117cat > expect <<\EOF
118[alpha]
119bar = foo
120[beta]
121EOF
122
5a953fc5 123test_expect_success 'unset with cont. lines is correct' 'test_cmp expect .git/config'
7a31cc0f 124
942c1f53
JS
125cat > .git/config << EOF
126[beta] ; silly comment # another comment
127noIndent= sillyValue ; 'nother silly comment
128
129# empty line
130 ; comment
131 haha ="beta" # last silly comment
4ddba79d
JS
132haha = hello
133 haha = bello
942c1f53
JS
134[nextSection] noNewline = ouch
135EOF
136
4ddba79d
JS
137cp .git/config .git/config2
138
ed838e66
JK
139test_expect_success 'multiple unset' '
140 git config --unset-all beta.haha
141'
4ddba79d
JS
142
143cat > expect << EOF
144[beta] ; silly comment # another comment
145noIndent= sillyValue ; 'nother silly comment
146
147# empty line
148 ; comment
149[nextSection] noNewline = ouch
150EOF
151
ed838e66
JK
152test_expect_success 'multiple unset is correct' '
153 test_cmp expect .git/config
154'
4ddba79d 155
bf71b4b3
CR
156cp .git/config2 .git/config
157
158test_expect_success '--replace-all missing value' '
159 test_must_fail git config --replace-all beta.haha &&
160 test_cmp .git/config2 .git/config
161'
162
163rm .git/config2
4ddba79d 164
ed838e66
JK
165test_expect_success '--replace-all' '
166 git config --replace-all beta.haha gamma
167'
4ddba79d
JS
168
169cat > expect << EOF
170[beta] ; silly comment # another comment
171noIndent= sillyValue ; 'nother silly comment
172
173# empty line
174 ; comment
175 haha = gamma
176[nextSection] noNewline = ouch
177EOF
178
ed838e66
JK
179test_expect_success 'all replaced' '
180 test_cmp expect .git/config
181'
942c1f53
JS
182
183cat > expect << EOF
184[beta] ; silly comment # another comment
185noIndent= sillyValue ; 'nother silly comment
186
187# empty line
188 ; comment
189 haha = alpha
190[nextSection] noNewline = ouch
191EOF
5a953fc5
JK
192test_expect_success 'really mean test' '
193 git config beta.haha alpha &&
194 test_cmp expect .git/config
195'
942c1f53
JS
196
197cat > expect << EOF
198[beta] ; silly comment # another comment
199noIndent= sillyValue ; 'nother silly comment
200
201# empty line
202 ; comment
203 haha = alpha
204[nextSection]
205 nonewline = wow
206EOF
5a953fc5
JK
207test_expect_success 'really really mean test' '
208 git config nextsection.nonewline wow &&
209 test_cmp expect .git/config
210'
942c1f53 211
ed838e66
JK
212test_expect_success 'get value' '
213 echo alpha >expect &&
214 git config beta.haha >actual &&
215 test_cmp expect actual
216'
942c1f53
JS
217
218cat > expect << EOF
219[beta] ; silly comment # another comment
220noIndent= sillyValue ; 'nother silly comment
221
222# empty line
223 ; comment
224[nextSection]
225 nonewline = wow
226EOF
5a953fc5
JK
227test_expect_success 'unset' '
228 git config --unset beta.haha &&
229 test_cmp expect .git/config
230'
942c1f53
JS
231
232cat > expect << EOF
233[beta] ; silly comment # another comment
234noIndent= sillyValue ; 'nother silly comment
235
236# empty line
237 ; comment
238[nextSection]
239 nonewline = wow
240 NoNewLine = wow2 for me
241EOF
5a953fc5
JK
242test_expect_success 'multivar' '
243 git config nextsection.NoNewLine "wow2 for me" "for me$" &&
244 test_cmp expect .git/config
245'
942c1f53 246
ed838e66
JK
247test_expect_success 'non-match' '
248 git config --get nextsection.nonewline !for
249'
f98d863d 250
ed838e66
JK
251test_expect_success 'non-match value' '
252 echo wow >expect &&
253 git config --get nextsection.nonewline !for >actual &&
254 test_cmp expect actual
255'
f98d863d 256
00b347d3
JK
257test_expect_success 'multi-valued get returns final one' '
258 echo "wow2 for me" >expect &&
259 git config --get nextsection.nonewline >actual &&
260 test_cmp expect actual
41ac414e 261'
4ddba79d 262
cb20b691
JK
263test_expect_success 'multi-valued get-all returns all' '
264 cat >expect <<-\EOF &&
265 wow
266 wow2 for me
267 EOF
268 git config --get-all nextsection.nonewline >actual &&
269 test_cmp expect actual
ed838e66 270'
4ddba79d 271
942c1f53
JS
272cat > expect << EOF
273[beta] ; silly comment # another comment
274noIndent= sillyValue ; 'nother silly comment
275
276# empty line
277 ; comment
278[nextSection]
279 nonewline = wow3
280 NoNewLine = wow2 for me
281EOF
5a953fc5
JK
282test_expect_success 'multivar replace' '
283 git config nextsection.nonewline "wow3" "wow$" &&
284 test_cmp expect .git/config
285'
942c1f53 286
41ac414e 287test_expect_success 'ambiguous unset' '
d492b31c 288 test_must_fail git config --unset nextsection.nonewline
41ac414e 289'
942c1f53 290
41ac414e 291test_expect_success 'invalid unset' '
d492b31c 292 test_must_fail git config --unset somesection.nonewline
41ac414e 293'
942c1f53 294
942c1f53
JS
295cat > expect << EOF
296[beta] ; silly comment # another comment
297noIndent= sillyValue ; 'nother silly comment
298
299# empty line
300 ; comment
301[nextSection]
302 NoNewLine = wow2 for me
303EOF
304
5a953fc5
JK
305test_expect_success 'multivar unset' '
306 git config --unset nextsection.nonewline "wow3$" &&
307 test_cmp expect .git/config
308'
942c1f53 309
d492b31c 310test_expect_success 'invalid key' 'test_must_fail git config inval.2key blabla'
942c1f53 311
5be60078 312test_expect_success 'correct key' 'git config 123456.a123 987'
942c1f53 313
ed838e66
JK
314test_expect_success 'hierarchical section' '
315 git config Version.1.2.3eX.Alpha beta
316'
b17e659d
JS
317
318cat > expect << EOF
319[beta] ; silly comment # another comment
320noIndent= sillyValue ; 'nother silly comment
321
322# empty line
323 ; comment
324[nextSection]
325 NoNewLine = wow2 for me
326[123456]
327 a123 = 987
d14f7764
LT
328[Version "1.2.3eX"]
329 Alpha = beta
b17e659d
JS
330EOF
331
ed838e66
JK
332test_expect_success 'hierarchical section value' '
333 test_cmp expect .git/config
334'
b17e659d 335
2fa9a0fb
JS
336cat > expect << EOF
337beta.noindent=sillyValue
338nextsection.nonewline=wow2 for me
339123456.a123=987
d55aaefa 340version.1.2.3eX.alpha=beta
2fa9a0fb
JS
341EOF
342
ed838e66
JK
343test_expect_success 'working --list' '
344 git config --list > output &&
345 test_cmp expect output
346'
1f2baa78
JK
347cat > expect << EOF
348EOF
349
350test_expect_success '--list without repo produces empty output' '
351 git --git-dir=nonexistent config --list >output &&
352 test_cmp expect output
353'
354
578625fa
SG
355cat > expect << EOF
356beta.noindent
357nextsection.nonewline
358123456.a123
359version.1.2.3eX.alpha
360EOF
361
362test_expect_success '--name-only --list' '
363 git config --name-only --list >output &&
364 test_cmp expect output
365'
366
2fa9a0fb
JS
367cat > expect << EOF
368beta.noindent sillyValue
369nextsection.nonewline wow2 for me
370EOF
371
ed838e66
JK
372test_expect_success '--get-regexp' '
373 git config --get-regexp in >output &&
374 test_cmp expect output
375'
2fa9a0fb 376
578625fa
SG
377cat > expect << EOF
378beta.noindent
379nextsection.nonewline
380EOF
381
382test_expect_success '--name-only --get-regexp' '
383 git config --name-only --get-regexp in >output &&
384 test_cmp expect output
385'
386
89c4afe0
BG
387cat > expect << EOF
388wow2 for me
389wow4 for you
390EOF
391
5a953fc5
JK
392test_expect_success '--add' '
393 git config --add nextsection.nonewline "wow4 for you" &&
394 git config --get-all nextsection.nonewline > output &&
395 test_cmp expect output
396'
89c4afe0 397
f067a137
JF
398cat > .git/config << EOF
399[novalue]
400 variable
09bc098c
CC
401[emptyvalue]
402 variable =
f067a137
JF
403EOF
404
ed838e66
JK
405test_expect_success 'get variable with no value' '
406 git config --get novalue.variable ^$
407'
f067a137 408
ed838e66
JK
409test_expect_success 'get variable with empty value' '
410 git config --get emptyvalue.variable ^$
411'
09bc098c 412
b69ba460
FL
413echo novalue.variable > expect
414
ed838e66
JK
415test_expect_success 'get-regexp variable with no value' '
416 git config --get-regexp novalue > output &&
417 test_cmp expect output
418'
b69ba460 419
008e3cc5
MM
420echo 'novalue.variable true' > expect
421
ed838e66
JK
422test_expect_success 'get-regexp --bool variable with no value' '
423 git config --bool --get-regexp novalue > output &&
424 test_cmp expect output
425'
008e3cc5 426
09bc098c
CC
427echo 'emptyvalue.variable ' > expect
428
ed838e66
JK
429test_expect_success 'get-regexp variable with empty value' '
430 git config --get-regexp emptyvalue > output &&
431 test_cmp expect output
432'
09bc098c
CC
433
434echo true > expect
435
ed838e66
JK
436test_expect_success 'get bool variable with no value' '
437 git config --bool novalue.variable > output &&
438 test_cmp expect output
439'
09bc098c
CC
440
441echo false > expect
442
ed838e66
JK
443test_expect_success 'get bool variable with empty value' '
444 git config --bool emptyvalue.variable > output &&
445 test_cmp expect output
446'
09bc098c 447
003f69b2
JK
448test_expect_success 'no arguments, but no crash' '
449 test_must_fail git config >output 2>&1 &&
9a001381 450 test_i18ngrep usage output
003f69b2 451'
2fa9a0fb 452
bd886fd3
SE
453cat > .git/config << EOF
454[a.b]
455 c = d
456EOF
457
bd886fd3
SE
458cat > expect << EOF
459[a.b]
460 c = d
461[a]
462 x = y
463EOF
464
5a953fc5
JK
465test_expect_success 'new section is partial match of another' '
466 git config a.x y &&
467 test_cmp expect .git/config
468'
bd886fd3
SE
469
470cat > expect << EOF
471[a.b]
472 c = d
473[a]
474 x = y
475 b = c
476[b]
477 x = y
478EOF
479
5a953fc5
JK
480test_expect_success 'new variable inserts into proper section' '
481 git config b.x y &&
482 git config a.b c &&
483 test_cmp expect .git/config
484'
bd886fd3 485
f7e87141 486test_expect_success 'alternative --file (non-existing file should fail)' '
ed838e66
JK
487 test_must_fail git config --file non-existing-config -l
488'
773a69fb 489
9c3796fc
JS
490cat > other-config << EOF
491[ein]
492 bahn = strasse
493EOF
494
495cat > expect << EOF
496ein.bahn=strasse
497EOF
498
5a953fc5 499test_expect_success 'alternative GIT_CONFIG' '
3caec73b 500 GIT_CONFIG=other-config git config --list >output &&
5a953fc5
JK
501 test_cmp expect output
502'
9c3796fc 503
ed838e66 504test_expect_success 'alternative GIT_CONFIG (--file)' '
3caec73b 505 git config --file other-config --list >output &&
ed838e66
JK
506 test_cmp expect output
507'
773a69fb 508
3caec73b
KS
509test_expect_success 'alternative GIT_CONFIG (--file=-)' '
510 git config --file - --list <other-config >output &&
511 test_cmp expect output
512'
513
514test_expect_success 'setting a value in stdin is an error' '
515 test_must_fail git config --file - some.value foo
516'
517
518test_expect_success 'editing stdin is an error' '
519 test_must_fail git config --file - --edit
520'
521
65807ee6
JH
522test_expect_success 'refer config from subdirectory' '
523 mkdir x &&
524 (
525 cd x &&
27370b11 526 echo strasse >expect &&
65807ee6
JH
527 git config --get --file ../other-config ein.bahn >actual &&
528 test_cmp expect actual
529 )
530
531'
532
f7e87141 533test_expect_success 'refer config from subdirectory via --file' '
270a3443
JK
534 (
535 cd x &&
f7e87141 536 git config --file=../other-config --get ein.bahn >actual &&
270a3443
JK
537 test_cmp expect actual
538 )
539'
540
9c3796fc
JS
541cat > expect << EOF
542[ein]
543 bahn = strasse
544[anwohner]
545 park = ausweis
546EOF
547
f7e87141
JK
548test_expect_success '--set in alternative file' '
549 git config --file=other-config anwohner.park ausweis &&
5a953fc5
JK
550 test_cmp expect other-config
551'
9c3796fc 552
0667fcfb
JS
553cat > .git/config << EOF
554# Hallo
555 #Bello
556[branch "eins"]
557 x = 1
558[branch.eins]
559 y = 1
560 [branch "1 234 blabl/a"]
561weird
562EOF
563
ed838e66
JK
564test_expect_success 'rename section' '
565 git config --rename-section branch.eins branch.zwei
566'
0667fcfb
JS
567
568cat > expect << EOF
569# Hallo
570 #Bello
571[branch "zwei"]
572 x = 1
573[branch "zwei"]
574 y = 1
575 [branch "1 234 blabl/a"]
576weird
577EOF
578
ed838e66
JK
579test_expect_success 'rename succeeded' '
580 test_cmp expect .git/config
581'
0667fcfb 582
ed838e66 583test_expect_success 'rename non-existing section' '
d492b31c
SB
584 test_must_fail git config --rename-section \
585 branch."world domination" branch.drei
41ac414e 586'
0667fcfb 587
ed838e66
JK
588test_expect_success 'rename succeeded' '
589 test_cmp expect .git/config
590'
0667fcfb 591
ed838e66
JK
592test_expect_success 'rename another section' '
593 git config --rename-section branch."1 234 blabl/a" branch.drei
594'
0667fcfb
JS
595
596cat > expect << EOF
597# Hallo
598 #Bello
599[branch "zwei"]
600 x = 1
601[branch "zwei"]
602 y = 1
603[branch "drei"]
604weird
605EOF
606
ed838e66
JK
607test_expect_success 'rename succeeded' '
608 test_cmp expect .git/config
609'
9a5abfc7
AV
610
611cat >> .git/config << EOF
612[branch "vier"] z = 1
613EOF
614
ed838e66
JK
615test_expect_success 'rename a section with a var on the same line' '
616 git config --rename-section branch.vier branch.zwei
617'
9a5abfc7
AV
618
619cat > expect << EOF
620# Hallo
621 #Bello
622[branch "zwei"]
623 x = 1
624[branch "zwei"]
625 y = 1
626[branch "drei"]
627weird
628[branch "zwei"]
629 z = 1
630EOF
631
ed838e66
JK
632test_expect_success 'rename succeeded' '
633 test_cmp expect .git/config
634'
0667fcfb 635
94a35b1a
JK
636test_expect_success 'renaming empty section name is rejected' '
637 test_must_fail git config --rename-section branch.zwei ""
638'
639
640test_expect_success 'renaming to bogus section is rejected' '
641 test_must_fail git config --rename-section branch.zwei "bogus name"
642'
643
118f8b24
PB
644cat >> .git/config << EOF
645 [branch "zwei"] a = 1 [branch "vier"]
646EOF
647
ed838e66
JK
648test_expect_success 'remove section' '
649 git config --remove-section branch.zwei
650'
118f8b24
PB
651
652cat > expect << EOF
653# Hallo
654 #Bello
655[branch "drei"]
656weird
657EOF
658
ed838e66
JK
659test_expect_success 'section was removed properly' '
660 test_cmp expect .git/config
661'
118f8b24 662
b18a2be3
SP
663cat > expect << EOF
664[gitcvs]
665 enabled = true
666 dbname = %Ggitcvs2.%a.%m.sqlite
667[gitcvs "ext"]
668 dbname = %Ggitcvs1.%a.%m.sqlite
669EOF
670
671test_expect_success 'section ending' '
795290e5 672 rm -f .git/config &&
5be60078
JH
673 git config gitcvs.enabled true &&
674 git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
675 git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
5a953fc5 676 test_cmp expect .git/config
b18a2be3
SP
677
678'
679
d77a64d3 680test_expect_success numbers '
5be60078
JH
681 git config kilo.gram 1k &&
682 git config mega.ton 1m &&
ed838e66
JK
683 echo 1024 >expect &&
684 echo 1048576 >>expect &&
685 git config --int --get kilo.gram >actual &&
686 git config --int --get mega.ton >>actual &&
687 test_cmp expect actual
d77a64d3
SP
688'
689
00160242
JK
690test_expect_success '--int is at least 64 bits' '
691 git config giga.watts 121g &&
692 echo 129922760704 >expect &&
693 git config --int --get giga.watts >actual &&
694 test_cmp expect actual
695'
696
c8deb5a1 697test_expect_success 'invalid unit' '
c8deb5a1 698 git config aninvalid.unit "1auto" &&
ed838e66
JK
699 echo 1auto >expect &&
700 git config aninvalid.unit >actual &&
701 test_cmp expect actual &&
ed838e66 702 test_must_fail git config --int --get aninvalid.unit 2>actual &&
2ec20212 703 test_i18ngrep "bad numeric config value .1auto. for .aninvalid.unit. in file .git/config: invalid unit" actual
c8deb5a1
SP
704'
705
e2e14251
JS
706test_expect_success 'line number is reported correctly' '
707 printf "[bool]\n\tvar\n" >invalid &&
708 test_must_fail git config -f invalid --path bool.var 2>actual &&
709 test_i18ngrep "line 2" actual
710'
711
473166b9 712test_expect_success 'invalid stdin config' '
473166b9 713 echo "[broken" | test_must_fail git config --list --file - >output 2>&1 &&
2ec20212 714 test_i18ngrep "bad config line 1 in standard input" output
473166b9
LS
715'
716
cab333cb
FL
717cat > expect << EOF
718true
719false
720true
721false
722true
723false
724true
725false
726EOF
727
728test_expect_success bool '
729
5be60078
JH
730 git config bool.true1 01 &&
731 git config bool.true2 -1 &&
732 git config bool.true3 YeS &&
733 git config bool.true4 true &&
734 git config bool.false1 000 &&
735 git config bool.false2 "" &&
736 git config bool.false3 nO &&
737 git config bool.false4 FALSE &&
cab333cb
FL
738 rm -f result &&
739 for i in 1 2 3 4
740 do
5be60078
JH
741 git config --bool --get bool.true$i >>result
742 git config --bool --get bool.false$i >>result
cab333cb 743 done &&
ed838e66 744 test_cmp expect result'
cab333cb 745
41ac414e 746test_expect_success 'invalid bool (--get)' '
cab333cb 747
5be60078 748 git config bool.nobool foobar &&
d492b31c 749 test_must_fail git config --bool --get bool.nobool'
cab333cb 750
41ac414e 751test_expect_success 'invalid bool (set)' '
db1696b8 752
d492b31c 753 test_must_fail git config --bool bool.nobool foobar'
db1696b8 754
db1696b8
FL
755cat > expect <<\EOF
756[bool]
757 true1 = true
758 true2 = true
759 true3 = true
760 true4 = true
761 false1 = false
762 false2 = false
763 false3 = false
764 false4 = false
765EOF
766
767test_expect_success 'set --bool' '
768
795290e5 769 rm -f .git/config &&
5be60078
JH
770 git config --bool bool.true1 01 &&
771 git config --bool bool.true2 -1 &&
772 git config --bool bool.true3 YeS &&
773 git config --bool bool.true4 true &&
774 git config --bool bool.false1 000 &&
775 git config --bool bool.false2 "" &&
776 git config --bool bool.false3 nO &&
777 git config --bool bool.false4 FALSE &&
ed838e66 778 test_cmp expect .git/config'
db1696b8 779
db1696b8
FL
780cat > expect <<\EOF
781[int]
782 val1 = 1
783 val2 = -1
784 val3 = 5242880
785EOF
786
787test_expect_success 'set --int' '
788
795290e5 789 rm -f .git/config &&
5be60078
JH
790 git config --int int.val1 01 &&
791 git config --int int.val2 -1 &&
792 git config --int int.val3 5m &&
ed838e66
JK
793 test_cmp expect .git/config
794'
db1696b8 795
ed838e66
JK
796test_expect_success 'get --bool-or-int' '
797 cat >.git/config <<-\EOF &&
798 [bool]
799 true1
c35b0b58 800 true2 = true
ed838e66
JK
801 false = false
802 [int]
c35b0b58
JH
803 int1 = 0
804 int2 = 1
805 int3 = -1
ed838e66
JK
806 EOF
807 cat >expect <<-\EOF &&
808 true
809 true
810 false
811 0
812 1
813 -1
814 EOF
815 {
816 git config --bool-or-int bool.true1 &&
817 git config --bool-or-int bool.true2 &&
818 git config --bool-or-int bool.false &&
819 git config --bool-or-int int.int1 &&
820 git config --bool-or-int int.int2 &&
821 git config --bool-or-int int.int3
822 } >actual &&
823 test_cmp expect actual
c35b0b58
JH
824'
825
c35b0b58
JH
826cat >expect <<\EOF
827[bool]
828 true1 = true
829 false1 = false
830 true2 = true
831 false2 = false
832[int]
833 int1 = 0
834 int2 = 1
835 int3 = -1
836EOF
837
838test_expect_success 'set --bool-or-int' '
795290e5 839 rm -f .git/config &&
c35b0b58
JH
840 git config --bool-or-int bool.true1 true &&
841 git config --bool-or-int bool.false1 false &&
842 git config --bool-or-int bool.true2 yes &&
843 git config --bool-or-int bool.false2 no &&
844 git config --bool-or-int int.int1 0 &&
845 git config --bool-or-int int.int2 1 &&
846 git config --bool-or-int int.int3 -1 &&
847 test_cmp expect .git/config
848'
849
1349484e
MM
850cat >expect <<\EOF
851[path]
852 home = ~/
853 normal = /dev/null
854 trailingtilde = foo~
855EOF
856
f57a8715 857test_expect_success !MINGW 'set --path' '
795290e5 858 rm -f .git/config &&
1349484e
MM
859 git config --path path.home "~/" &&
860 git config --path path.normal "/dev/null" &&
861 git config --path path.trailingtilde "foo~" &&
862 test_cmp expect .git/config'
863
f57a8715 864if test_have_prereq !MINGW && test "${HOME+set}"
79bf1490
JN
865then
866 test_set_prereq HOMEVAR
867fi
868
1349484e
MM
869cat >expect <<EOF
870$HOME/
871/dev/null
872foo~
873EOF
874
79bf1490 875test_expect_success HOMEVAR 'get --path' '
1349484e
MM
876 git config --get --path path.home > result &&
877 git config --get --path path.normal >> result &&
878 git config --get --path path.trailingtilde >> result &&
879 test_cmp expect result
880'
881
79bf1490
JN
882cat >expect <<\EOF
883/dev/null
884foo~
885EOF
886
f57a8715 887test_expect_success !MINGW 'get --path copes with unset $HOME' '
79bf1490
JN
888 (
889 unset HOME;
890 test_must_fail git config --get --path path.home \
891 >result 2>msg &&
892 git config --get --path path.normal >>result &&
893 git config --get --path path.trailingtilde >>result
894 ) &&
1edbaac3 895 test_i18ngrep "[Ff]ailed to expand.*~/" msg &&
79bf1490
JN
896 test_cmp expect result
897'
898
962c38ee
CMN
899test_expect_success 'get --path barfs on boolean variable' '
900 echo "[path]bool" >.git/config &&
901 test_must_fail git config --get --path path.bool
902'
903
5f967424
HM
904test_expect_success 'get --expiry-date' '
905 rel="3.weeks.5.days.00:00" &&
906 rel_out="$rel ->" &&
907 cat >.git/config <<-\EOF &&
908 [date]
909 valid1 = "3.weeks.5.days 00:00"
910 valid2 = "Fri Jun 4 15:46:55 2010"
911 valid3 = "2017/11/11 11:11:11PM"
912 valid4 = "2017/11/10 09:08:07 PM"
913 valid5 = "never"
914 invalid1 = "abc"
915 EOF
916 cat >expect <<-EOF &&
917 $(test-date timestamp $rel)
918 1275666415
919 1510441871
920 1510348087
921 0
922 EOF
923 {
924 echo "$rel_out $(git config --expiry-date date.valid1)"
925 git config --expiry-date date.valid2 &&
926 git config --expiry-date date.valid3 &&
927 git config --expiry-date date.valid4 &&
928 git config --expiry-date date.valid5
929 } >actual &&
930 test_cmp expect actual &&
931 test_must_fail git config --expiry-date date.invalid1
932'
933
cdd4fb15
BG
934cat > expect << EOF
935[quote]
936 leading = " test"
937 ending = "test "
938 semicolon = "test;test"
939 hash = "test#test"
940EOF
5a953fc5 941test_expect_success 'quoting' '
795290e5 942 rm -f .git/config &&
5a953fc5
JK
943 git config quote.leading " test" &&
944 git config quote.ending "test " &&
945 git config quote.semicolon "test;test" &&
946 git config quote.hash "test#test" &&
947 test_cmp expect .git/config
948'
cdd4fb15 949
41ac414e 950test_expect_success 'key with newline' '
d492b31c 951 test_must_fail git config "key.with
41ac414e 952newline" 123'
6f71686e 953
e0d10e1c 954test_expect_success 'value with newline' 'git config key.sub value.with\\\
6f71686e
JS
955newline'
956
83cd10a0
JN
957cat > .git/config <<\EOF
958[section]
959 ; comment \
960 continued = cont\
961inued
962 noncont = not continued ; \
963 quotecont = "cont;\
964inued"
965EOF
966
967cat > expect <<\EOF
968section.continued=continued
969section.noncont=not continued
970section.quotecont=cont;inued
971EOF
972
5a953fc5
JK
973test_expect_success 'value continued on next line' '
974 git config --list > result &&
ed838e66 975 test_cmp result expect
5a953fc5 976'
83cd10a0 977
2275d502
FL
978cat > .git/config <<\EOF
979[section "sub=section"]
980 val1 = foo=bar
981 val2 = foo\nbar
982 val3 = \n\n
983 val4 =
984 val5
985EOF
986
987cat > expect <<\EOF
2b9a5020
AR
988section.sub=section.val1
989foo=barQsection.sub=section.val2
990foo
991barQsection.sub=section.val3
2275d502
FL
992
993
2b9a5020
AR
994Qsection.sub=section.val4
995Qsection.sub=section.val5Q
2275d502 996EOF
5a953fc5 997test_expect_success '--null --list' '
a0578e03
LS
998 git config --null --list >result.raw &&
999 nul_to_q <result.raw >result &&
5a953fc5
JK
1000 echo >>result &&
1001 test_cmp expect result
1002'
2275d502 1003
5a953fc5 1004test_expect_success '--null --get-regexp' '
a0578e03
LS
1005 git config --null --get-regexp "val[0-9]" >result.raw &&
1006 nul_to_q <result.raw >result &&
5a953fc5
JK
1007 echo >>result &&
1008 test_cmp expect result
1009'
2275d502 1010
ebdaae37
BS
1011test_expect_success 'inner whitespace kept verbatim' '
1012 git config section.val "foo bar" &&
ed838e66
JK
1013 echo "foo bar" >expect &&
1014 git config section.val >actual &&
1015 test_cmp expect actual
ebdaae37
BS
1016'
1017
704a3143 1018test_expect_success SYMLINKS 'symlinked configuration' '
65a5a21d 1019 ln -s notyet myconfig &&
f7e87141 1020 git config --file=myconfig test.frotz nitfol &&
65a5a21d
JH
1021 test -h myconfig &&
1022 test -f notyet &&
f7e87141
JK
1023 test "z$(git config --file=notyet test.frotz)" = znitfol &&
1024 git config --file=myconfig test.xyzzy rezrov &&
65a5a21d
JH
1025 test -h myconfig &&
1026 test -f notyet &&
ed838e66
JK
1027 cat >expect <<-\EOF &&
1028 nitfol
1029 rezrov
1030 EOF
1031 {
f7e87141
JK
1032 git config --file=notyet test.frotz &&
1033 git config --file=notyet test.xyzzy
ed838e66
JK
1034 } >actual &&
1035 test_cmp expect actual
65a5a21d
JH
1036'
1037
1f2baa78 1038test_expect_success 'nonexistent configuration' '
551a3e60
JK
1039 test_must_fail git config --file=doesnotexist --list &&
1040 test_must_fail git config --file=doesnotexist test.xyzzy
1f2baa78
JK
1041'
1042
1043test_expect_success SYMLINKS 'symlink to nonexistent configuration' '
1044 ln -s doesnotexist linktonada &&
1045 ln -s linktonada linktolinktonada &&
551a3e60
JK
1046 test_must_fail git config --file=linktonada --list &&
1047 test_must_fail git config --file=linktolinktonada --list
1f2baa78
JK
1048'
1049
dc4179f9
DM
1050test_expect_success 'check split_cmdline return' "
1051 git config alias.split-cmdline-fix 'echo \"' &&
1052 test_must_fail git split-cmdline-fix &&
1053 echo foo > foo &&
1054 git add foo &&
1055 git commit -m 'initial commit' &&
1056 git config branch.master.mergeoptions 'echo \"' &&
1057 test_must_fail git merge master
ed838e66 1058"
dc4179f9 1059
8b1fa778 1060test_expect_success 'git -c "key=value" support' '
ed838e66
JK
1061 cat >expect <<-\EOF &&
1062 value
1063 value
1064 true
1065 EOF
1066 {
1067 git -c core.name=value config core.name &&
1068 git -c foo.CamelCase=value config foo.camelcase &&
1069 git -c foo.flag config --bool foo.flag
1070 } >actual &&
1071 test_cmp expect actual &&
b09c53a3
LP
1072 test_must_fail git -c name=value config core.name
1073'
1074
a789ca70
JH
1075# We just need a type-specifier here that cares about the
1076# distinction internally between a NULL boolean and a real
1077# string (because most of git's internal parsers do care).
1078# Using "--path" works, but we do not otherwise care about
1079# its semantics.
1080test_expect_success 'git -c can represent empty string' '
1081 echo >expect &&
1082 git -c foo.empty= config --path foo.empty >actual &&
1083 test_cmp expect actual
1084'
1085
b09c53a3
LP
1086test_expect_success 'key sanity-checking' '
1087 test_must_fail git config foo=bar &&
1088 test_must_fail git config foo=.bar &&
1089 test_must_fail git config foo.ba=r &&
1090 test_must_fail git config foo.1bar &&
1091 test_must_fail git config foo."ba
1092 z".bar &&
2169ddc0
LP
1093 test_must_fail git config . false &&
1094 test_must_fail git config .foo false &&
1095 test_must_fail git config foo. false &&
1096 test_must_fail git config .foo. false &&
b09c53a3
LP
1097 git config foo.bar true &&
1098 git config foo."ba =z".bar false
8b1fa778
AR
1099'
1100
73546c08 1101test_expect_success 'git -c works with aliases of builtins' '
06eb708f
JK
1102 git config alias.checkconfig "-c foo.check=bar config foo.check" &&
1103 echo bar >expect &&
1104 git checkconfig >actual &&
1105 test_cmp expect actual
1106'
1107
643df7e2 1108test_expect_success 'aliases can be CamelCased' '
084b0440
JS
1109 test_config alias.CamelCased "rev-parse HEAD" &&
1110 git CamelCased >out &&
1111 git rev-parse HEAD >expect &&
1112 test_cmp expect out
1113'
1114
5bf6529a
JK
1115test_expect_success 'git -c does not split values on equals' '
1116 echo "value with = in it" >expect &&
1117 git -c core.foo="value with = in it" config core.foo >actual &&
1118 test_cmp expect actual
1119'
1120
1c2c9bee
JK
1121test_expect_success 'git -c dies on bogus config' '
1122 test_must_fail git -c core.bare=foo rev-parse
1123'
1124
1125test_expect_success 'git -c complains about empty key' '
1126 test_must_fail git -c "=foo" rev-parse
1127'
1128
c5d6350b
JK
1129test_expect_success 'git -c complains about empty key and value' '
1130 test_must_fail git -c "" rev-parse
1131'
1132
d1f88498
JK
1133test_expect_success 'multiple git -c appends config' '
1134 test_config alias.x "!git -c x.two=2 config --get-regexp ^x\.*" &&
1135 cat >expect <<-\EOF &&
1136 x.one 1
1137 x.two 2
1138 EOF
1139 git -c x.one=1 x >actual &&
1140 test_cmp expect actual
1141'
1142
1274a155
JH
1143test_expect_success 'last one wins: two level vars' '
1144
1145 # sec.var and sec.VAR are the same variable, as the first
1146 # and the last level of a configuration variable name is
1147 # case insensitive.
1148
1149 echo VAL >expect &&
1150
1151 git -c sec.var=val -c sec.VAR=VAL config --get sec.var >actual &&
1152 test_cmp expect actual &&
1153 git -c SEC.var=val -c sec.var=VAL config --get sec.var >actual &&
1154 test_cmp expect actual &&
1155
1156 git -c sec.var=val -c sec.VAR=VAL config --get SEC.var >actual &&
1157 test_cmp expect actual &&
1158 git -c SEC.var=val -c sec.var=VAL config --get sec.VAR >actual &&
1159 test_cmp expect actual
1160'
1161
1162test_expect_success 'last one wins: three level vars' '
1163
1164 # v.a.r and v.A.r are not the same variable, as the middle
1165 # level of a three-level configuration variable name is
1166 # case sensitive.
1167
1168 echo val >expect &&
1169 git -c v.a.r=val -c v.A.r=VAL config --get v.a.r >actual &&
1170 test_cmp expect actual &&
1171 git -c v.a.r=val -c v.A.r=VAL config --get V.a.R >actual &&
1172 test_cmp expect actual &&
1173
1174 # v.a.r and V.a.R are the same variable, as the first
1175 # and the last level of a configuration variable name is
1176 # case insensitive.
1177
1178 echo VAL >expect &&
1179 git -c v.a.r=val -c v.a.R=VAL config --get v.a.r >actual &&
1180 test_cmp expect actual &&
1181 git -c v.a.r=val -c V.a.r=VAL config --get v.a.r >actual &&
1182 test_cmp expect actual &&
1183 git -c v.a.r=val -c v.a.R=VAL config --get V.a.R >actual &&
1184 test_cmp expect actual &&
1185 git -c v.a.r=val -c V.a.r=VAL config --get V.a.R >actual &&
1186 test_cmp expect actual
1187'
1188
1189for VAR in a .a a. a.0b a."b c". a."b c".0d
1190do
1191 test_expect_success "git -c $VAR=VAL rejects invalid '$VAR'" '
1192 test_must_fail git -c "$VAR=VAL" config -l
1193 '
1194done
1195
1196for VAR in a.b a."b c".d
1197do
1198 test_expect_success "git -c $VAR=VAL works with valid '$VAR'" '
1199 echo VAL >expect &&
1200 git -c "$VAR=VAL" config --get "$VAR" >actual &&
1201 test_cmp expect actual
1202 '
1203done
1204
d1f88498
JK
1205test_expect_success 'git -c is not confused by empty environment' '
1206 GIT_CONFIG_PARAMETERS="" git -c x.one=1 config --list
1207'
1208
270a3443
JK
1209test_expect_success 'git config --edit works' '
1210 git config -f tmp test.value no &&
1211 echo test.value=yes >expect &&
1212 GIT_EDITOR="echo [test]value=yes >" git config -f tmp --edit &&
1213 git config -f tmp --list >actual &&
1214 test_cmp expect actual
1215'
1216
1217test_expect_success 'git config --edit respects core.editor' '
1218 git config -f tmp test.value no &&
1219 echo test.value=yes >expect &&
1220 test_config core.editor "echo [test]value=yes >" &&
1221 git config -f tmp --edit &&
1222 git config -f tmp --list >actual &&
1223 test_cmp expect actual
1224'
1225
4b340593
MS
1226# malformed configuration files
1227test_expect_success 'barf on syntax error' '
1228 cat >.git/config <<-\EOF &&
1229 # broken section line
1230 [section]
1231 key garbage
1232 EOF
1233 test_must_fail git config --get section.key >actual 2>error &&
1edbaac3 1234 test_i18ngrep " line 3 " error
4b340593
MS
1235'
1236
1237test_expect_success 'barf on incomplete section header' '
1238 cat >.git/config <<-\EOF &&
1239 # broken section line
1240 [section
1241 key = value
1242 EOF
1243 test_must_fail git config --get section.key >actual 2>error &&
1edbaac3 1244 test_i18ngrep " line 2 " error
4b340593
MS
1245'
1246
1247test_expect_success 'barf on incomplete string' '
1248 cat >.git/config <<-\EOF &&
1249 # broken section line
1250 [section]
1251 key = "value string
1252 EOF
1253 test_must_fail git config --get section.key >actual 2>error &&
1edbaac3 1254 test_i18ngrep " line 3 " error
4b340593
MS
1255'
1256
d4770964
JH
1257test_expect_success 'urlmatch' '
1258 cat >.git/config <<-\EOF &&
1259 [http]
1260 sslVerify
1261 [http "https://weak.example.com"]
1262 sslVerify = false
1263 cookieFile = /tmp/cookie.txt
1264 EOF
1265
27b30be6
JK
1266 test_expect_code 1 git config --bool --get-urlmatch doesnt.exist https://good.example.com >actual &&
1267 test_must_be_empty actual &&
1268
d4770964
JH
1269 echo true >expect &&
1270 git config --bool --get-urlmatch http.SSLverify https://good.example.com >actual &&
1271 test_cmp expect actual &&
1272
1273 echo false >expect &&
1274 git config --bool --get-urlmatch http.sslverify https://weak.example.com >actual &&
1275 test_cmp expect actual &&
1276
1277 {
1278 echo http.cookiefile /tmp/cookie.txt &&
1279 echo http.sslverify false
1280 } >expect &&
1281 git config --get-urlmatch HTTP https://weak.example.com >actual &&
1282 test_cmp expect actual
1283'
1284
af99049c
PS
1285test_expect_success 'urlmatch favors more specific URLs' '
1286 cat >.git/config <<-\EOF &&
1287 [http "https://example.com/"]
1288 cookieFile = /tmp/root.txt
1289 [http "https://example.com/subdirectory"]
1290 cookieFile = /tmp/subdirectory.txt
1291 [http "https://user@example.com/"]
1292 cookieFile = /tmp/user.txt
1293 [http "https://averylonguser@example.com/"]
1294 cookieFile = /tmp/averylonguser.txt
a272b9e7
PS
1295 [http "https://preceding.example.com"]
1296 cookieFile = /tmp/preceding.txt
1297 [http "https://*.example.com"]
1298 cookieFile = /tmp/wildcard.txt
1299 [http "https://*.example.com/wildcardwithsubdomain"]
1300 cookieFile = /tmp/wildcardwithsubdomain.txt
1301 [http "https://trailing.example.com"]
1302 cookieFile = /tmp/trailing.txt
1303 [http "https://user@*.example.com/"]
1304 cookieFile = /tmp/wildcardwithuser.txt
1305 [http "https://sub.example.com/"]
1306 cookieFile = /tmp/sub.txt
af99049c
PS
1307 EOF
1308
1309 echo http.cookiefile /tmp/root.txt >expect &&
1310 git config --get-urlmatch HTTP https://example.com >actual &&
1311 test_cmp expect actual &&
1312
1313 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1314 git config --get-urlmatch HTTP https://example.com/subdirectory >actual &&
1315 test_cmp expect actual &&
1316
1317 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1318 git config --get-urlmatch HTTP https://example.com/subdirectory/nested >actual &&
1319 test_cmp expect actual &&
1320
1321 echo http.cookiefile /tmp/user.txt >expect &&
1322 git config --get-urlmatch HTTP https://user@example.com/ >actual &&
1323 test_cmp expect actual &&
1324
1325 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1326 git config --get-urlmatch HTTP https://averylonguser@example.com/subdirectory >actual &&
a272b9e7
PS
1327 test_cmp expect actual &&
1328
1329 echo http.cookiefile /tmp/preceding.txt >expect &&
1330 git config --get-urlmatch HTTP https://preceding.example.com >actual &&
1331 test_cmp expect actual &&
1332
1333 echo http.cookiefile /tmp/wildcard.txt >expect &&
1334 git config --get-urlmatch HTTP https://wildcard.example.com >actual &&
1335 test_cmp expect actual &&
1336
1337 echo http.cookiefile /tmp/sub.txt >expect &&
1338 git config --get-urlmatch HTTP https://sub.example.com/wildcardwithsubdomain >actual &&
1339 test_cmp expect actual &&
1340
1341 echo http.cookiefile /tmp/trailing.txt >expect &&
1342 git config --get-urlmatch HTTP https://trailing.example.com >actual &&
1343 test_cmp expect actual &&
1344
1345 echo http.cookiefile /tmp/sub.txt >expect &&
1346 git config --get-urlmatch HTTP https://user@sub.example.com >actual &&
1347 test_cmp expect actual
1348'
1349
1350test_expect_success 'urlmatch with wildcard' '
1351 cat >.git/config <<-\EOF &&
1352 [http]
1353 sslVerify
1354 [http "https://*.example.com"]
1355 sslVerify = false
1356 cookieFile = /tmp/cookie.txt
1357 EOF
1358
1359 test_expect_code 1 git config --bool --get-urlmatch doesnt.exist https://good.example.com >actual &&
1360 test_must_be_empty actual &&
1361
1362 echo true >expect &&
1363 git config --bool --get-urlmatch http.SSLverify https://example.com >actual &&
1364 test_cmp expect actual &&
1365
1366 echo true >expect &&
1367 git config --bool --get-urlmatch http.SSLverify https://good-example.com >actual &&
1368 test_cmp expect actual &&
1369
1370 echo true >expect &&
1371 git config --bool --get-urlmatch http.sslverify https://deep.nested.example.com >actual &&
1372 test_cmp expect actual &&
1373
1374 echo false >expect &&
1375 git config --bool --get-urlmatch http.sslverify https://good.example.com >actual &&
1376 test_cmp expect actual &&
1377
1378 {
1379 echo http.cookiefile /tmp/cookie.txt &&
1380 echo http.sslverify false
1381 } >expect &&
1382 git config --get-urlmatch HTTP https://good.example.com >actual &&
1383 test_cmp expect actual &&
1384
1385 echo http.sslverify >expect &&
1386 git config --get-urlmatch HTTP https://more.example.com.au >actual &&
af99049c
PS
1387 test_cmp expect actual
1388'
1389
53ca053b
JK
1390# good section hygiene
1391test_expect_failure 'unsetting the last key in a section removes header' '
1392 cat >.git/config <<-\EOF &&
1393 # some generic comment on the configuration file itself
1394 # a comment specific to this "section" section.
1395 [section]
1396 # some intervening lines
1397 # that should also be dropped
1398
1399 key = value
1400 # please be careful when you update the above variable
1401 EOF
1402
1403 cat >expect <<-\EOF &&
1404 # some generic comment on the configuration file itself
1405 EOF
1406
1407 git config --unset section.key &&
1408 test_cmp expect .git/config
1409'
1410
1411test_expect_failure 'adding a key into an empty section reuses header' '
1412 cat >.git/config <<-\EOF &&
1413 [section]
1414 EOF
1415
1416 q_to_tab >expect <<-\EOF &&
1417 [section]
1418 Qkey = value
1419 EOF
1420
60687de5 1421 git config section.key value &&
53ca053b
JK
1422 test_cmp expect .git/config
1423'
1424
daa22c6f
EW
1425test_expect_success POSIXPERM,PERL 'preserves existing permissions' '
1426 chmod 0600 .git/config &&
1427 git config imap.pass Hunter2 &&
1428 perl -e \
1429 "die q(badset) if ((stat(q(.git/config)))[2] & 07777) != 0600" &&
1430 git config --rename-section imap pop &&
1431 perl -e \
1432 "die q(badrename) if ((stat(q(.git/config)))[2] & 07777) != 0600"
1433'
1434
45bf3297
JS
1435! test_have_prereq MINGW ||
1436HOME="$(pwd)" # convert to Windows path
1437
70bd879a
LS
1438test_expect_success 'set up --show-origin tests' '
1439 INCLUDE_DIR="$HOME/include" &&
1440 mkdir -p "$INCLUDE_DIR" &&
1441 cat >"$INCLUDE_DIR"/absolute.include <<-\EOF &&
1442 [user]
1443 absolute = include
1444 EOF
1445 cat >"$INCLUDE_DIR"/relative.include <<-\EOF &&
1446 [user]
1447 relative = include
1448 EOF
1449 cat >"$HOME"/.gitconfig <<-EOF &&
1450 [user]
1451 global = true
1452 override = global
1453 [include]
1454 path = "$INCLUDE_DIR/absolute.include"
1455 EOF
1456 cat >.git/config <<-\EOF
1457 [user]
1458 local = true
1459 override = local
1460 [include]
1461 path = ../include/relative.include
1462 EOF
1463'
1464
1465test_expect_success '--show-origin with --list' '
1466 cat >expect <<-EOF &&
1467 file:$HOME/.gitconfig user.global=true
1468 file:$HOME/.gitconfig user.override=global
1469 file:$HOME/.gitconfig include.path=$INCLUDE_DIR/absolute.include
1470 file:$INCLUDE_DIR/absolute.include user.absolute=include
1471 file:.git/config user.local=true
1472 file:.git/config user.override=local
1473 file:.git/config include.path=../include/relative.include
1474 file:.git/../include/relative.include user.relative=include
1475 command line: user.cmdline=true
1476 EOF
1477 git -c user.cmdline=true config --list --show-origin >output &&
1478 test_cmp expect output
1479'
1480
1481test_expect_success '--show-origin with --list --null' '
1482 cat >expect <<-EOF &&
1483 file:$HOME/.gitconfigQuser.global
1484 trueQfile:$HOME/.gitconfigQuser.override
1485 globalQfile:$HOME/.gitconfigQinclude.path
1486 $INCLUDE_DIR/absolute.includeQfile:$INCLUDE_DIR/absolute.includeQuser.absolute
1487 includeQfile:.git/configQuser.local
1488 trueQfile:.git/configQuser.override
1489 localQfile:.git/configQinclude.path
1490 ../include/relative.includeQfile:.git/../include/relative.includeQuser.relative
1491 includeQcommand line:Quser.cmdline
1492 trueQ
1493 EOF
1494 git -c user.cmdline=true config --null --list --show-origin >output.raw &&
1495 nul_to_q <output.raw >output &&
1496 # The here-doc above adds a newline that the --null output would not
1497 # include. Add it here to make the two comparable.
1498 echo >>output &&
1499 test_cmp expect output
1500'
1501
1502test_expect_success '--show-origin with single file' '
1503 cat >expect <<-\EOF &&
1504 file:.git/config user.local=true
1505 file:.git/config user.override=local
1506 file:.git/config include.path=../include/relative.include
1507 EOF
1508 git config --local --list --show-origin >output &&
1509 test_cmp expect output
1510'
1511
1512test_expect_success '--show-origin with --get-regexp' '
1513 cat >expect <<-EOF &&
1514 file:$HOME/.gitconfig user.global true
1515 file:.git/config user.local true
1516 EOF
1517 git config --show-origin --get-regexp "user\.[g|l].*" >output &&
1518 test_cmp expect output
1519'
1520
1521test_expect_success '--show-origin getting a single key' '
1522 cat >expect <<-\EOF &&
1523 file:.git/config local
1524 EOF
1525 git config --show-origin user.override >output &&
1526 test_cmp expect output
1527'
1528
1529test_expect_success 'set up custom config file' '
1530 CUSTOM_CONFIG_FILE="file\" (dq) and spaces.conf" &&
1531 cat >"$CUSTOM_CONFIG_FILE" <<-\EOF
1532 [user]
1533 custom = true
1534 EOF
1535'
1536
45bf3297 1537test_expect_success !MINGW '--show-origin escape special file name characters' '
70bd879a
LS
1538 cat >expect <<-\EOF &&
1539 file:"file\" (dq) and spaces.conf" user.custom=true
1540 EOF
1541 git config --file "$CUSTOM_CONFIG_FILE" --show-origin --list >output &&
1542 test_cmp expect output
1543'
1544
1545test_expect_success '--show-origin stdin' '
1546 cat >expect <<-\EOF &&
1547 standard input: user.custom=true
1548 EOF
1549 git config --file - --show-origin --list <"$CUSTOM_CONFIG_FILE" >output &&
1550 test_cmp expect output
1551'
1552
1553test_expect_success '--show-origin stdin with file include' '
1554 cat >"$INCLUDE_DIR"/stdin.include <<-EOF &&
1555 [user]
1556 stdin = include
1557 EOF
1558 cat >expect <<-EOF &&
1559 file:$INCLUDE_DIR/stdin.include include
1560 EOF
1561 echo "[include]path=\"$INCLUDE_DIR\"/stdin.include" \
1562 | git config --show-origin --includes --file - user.stdin >output &&
1563 test_cmp expect output
1564'
1565
45bf3297 1566test_expect_success !MINGW '--show-origin blob' '
70bd879a
LS
1567 cat >expect <<-\EOF &&
1568 blob:a9d9f9e555b5c6f07cbe09d3f06fe3df11e09c08 user.custom=true
1569 EOF
1570 blob=$(git hash-object -w "$CUSTOM_CONFIG_FILE") &&
1571 git config --blob=$blob --show-origin --list >output &&
1572 test_cmp expect output
1573'
1574
45bf3297 1575test_expect_success !MINGW '--show-origin blob ref' '
70bd879a
LS
1576 cat >expect <<-\EOF &&
1577 blob:"master:file\" (dq) and spaces.conf" user.custom=true
1578 EOF
1579 git add "$CUSTOM_CONFIG_FILE" &&
1580 git commit -m "new config file" &&
1581 git config --blob=master:"$CUSTOM_CONFIG_FILE" --show-origin --list >output &&
1582 test_cmp expect output
1583'
1584
25cd2919 1585test_expect_success '--local requires a repo' '
588a538a
JK
1586 # we expect 128 to ensure that we do not simply
1587 # fail to find anything and return code "1"
1588 test_expect_code 128 nongit git config --local foo.bar
1589'
1590
942c1f53 1591test_done