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