]> git.ipfire.org Git - thirdparty/git.git/blame - t/t1300-repo-config.sh
t/test-lib.sh: exit with small negagive int is ok with test_must_fail
[thirdparty/git.git] / t / t1300-repo-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
10test -f .git/config && rm .git/config
11
5be60078 12git config core.penguin "little blue"
942c1f53
JS
13
14cat > expect << EOF
942c1f53
JS
15[core]
16 penguin = little blue
17EOF
18
19test_expect_success 'initial' 'cmp .git/config expect'
20
5be60078 21git config Core.Movie BadPhysics
942c1f53
JS
22
23cat > expect << EOF
942c1f53
JS
24[core]
25 penguin = little blue
26 Movie = BadPhysics
27EOF
28
29test_expect_success 'mixed case' 'cmp .git/config expect'
30
5be60078 31git config Cores.WhatEver Second
942c1f53
JS
32
33cat > expect << EOF
942c1f53
JS
34[core]
35 penguin = little blue
36 Movie = BadPhysics
37[Cores]
38 WhatEver = Second
39EOF
40
41test_expect_success 'similar section' 'cmp .git/config expect'
42
5be60078 43git config CORE.UPPERCASE true
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
53
54test_expect_success 'similar section' 'cmp .git/config expect'
55
f98d863d 56test_expect_success 'replace with non-match' \
5be60078 57 'git config core.penguin kingpin !blue'
f98d863d
JS
58
59test_expect_success 'replace with non-match (actually matching)' \
5be60078 60 'git config core.penguin "very blue" !kingpin'
f98d863d
JS
61
62cat > expect << EOF
f98d863d
JS
63[core]
64 penguin = very blue
65 Movie = BadPhysics
66 UPPERCASE = true
67 penguin = kingpin
68[Cores]
69 WhatEver = Second
70EOF
71
72test_expect_success 'non-match result' 'cmp .git/config expect'
73
7a31cc0f
FL
74cat > .git/config <<\EOF
75[alpha]
76bar = foo
77[beta]
78baz = multiple \
79lines
80EOF
81
82test_expect_success 'unset with cont. lines' \
83 'git config --unset beta.baz'
84
85cat > expect <<\EOF
86[alpha]
87bar = foo
88[beta]
89EOF
90
91test_expect_success 'unset with cont. lines is correct' 'cmp .git/config expect'
92
942c1f53
JS
93cat > .git/config << EOF
94[beta] ; silly comment # another comment
95noIndent= sillyValue ; 'nother silly comment
96
97# empty line
98 ; comment
99 haha ="beta" # last silly comment
4ddba79d
JS
100haha = hello
101 haha = bello
942c1f53
JS
102[nextSection] noNewline = ouch
103EOF
104
4ddba79d
JS
105cp .git/config .git/config2
106
107test_expect_success 'multiple unset' \
5be60078 108 'git config --unset-all beta.haha'
4ddba79d
JS
109
110cat > expect << EOF
111[beta] ; silly comment # another comment
112noIndent= sillyValue ; 'nother silly comment
113
114# empty line
115 ; comment
116[nextSection] noNewline = ouch
117EOF
118
119test_expect_success 'multiple unset is correct' 'cmp .git/config expect'
120
121mv .git/config2 .git/config
122
123test_expect_success '--replace-all' \
5be60078 124 'git config --replace-all beta.haha gamma'
4ddba79d
JS
125
126cat > expect << EOF
127[beta] ; silly comment # another comment
128noIndent= sillyValue ; 'nother silly comment
129
130# empty line
131 ; comment
132 haha = gamma
133[nextSection] noNewline = ouch
134EOF
135
136test_expect_success 'all replaced' 'cmp .git/config expect'
137
5be60078 138git config beta.haha alpha
942c1f53
JS
139
140cat > expect << EOF
141[beta] ; silly comment # another comment
142noIndent= sillyValue ; 'nother silly comment
143
144# empty line
145 ; comment
146 haha = alpha
147[nextSection] noNewline = ouch
148EOF
149
150test_expect_success 'really mean test' 'cmp .git/config expect'
151
5be60078 152git config nextsection.nonewline wow
942c1f53
JS
153
154cat > expect << EOF
155[beta] ; silly comment # another comment
156noIndent= sillyValue ; 'nother silly comment
157
158# empty line
159 ; comment
160 haha = alpha
161[nextSection]
162 nonewline = wow
163EOF
164
165test_expect_success 'really really mean test' 'cmp .git/config expect'
166
5be60078
JH
167test_expect_success 'get value' 'test alpha = $(git config beta.haha)'
168git config --unset beta.haha
942c1f53
JS
169
170cat > expect << EOF
171[beta] ; silly comment # another comment
172noIndent= sillyValue ; 'nother silly comment
173
174# empty line
175 ; comment
176[nextSection]
177 nonewline = wow
178EOF
179
180test_expect_success 'unset' 'cmp .git/config expect'
181
5be60078 182git config nextsection.NoNewLine "wow2 for me" "for me$"
942c1f53
JS
183
184cat > expect << EOF
185[beta] ; silly comment # another comment
186noIndent= sillyValue ; 'nother silly comment
187
188# empty line
189 ; comment
190[nextSection]
191 nonewline = wow
192 NoNewLine = wow2 for me
193EOF
194
195test_expect_success 'multivar' 'cmp .git/config expect'
196
f98d863d 197test_expect_success 'non-match' \
5be60078 198 'git config --get nextsection.nonewline !for'
f98d863d
JS
199
200test_expect_success 'non-match value' \
5be60078 201 'test wow = $(git config --get nextsection.nonewline !for)'
f98d863d 202
41ac414e
JH
203test_expect_success 'ambiguous get' '
204 ! git config --get nextsection.nonewline
205'
4ddba79d
JS
206
207test_expect_success 'get multivar' \
5be60078 208 'git config --get-all nextsection.nonewline'
4ddba79d 209
5be60078 210git config nextsection.nonewline "wow3" "wow$"
942c1f53
JS
211
212cat > expect << EOF
213[beta] ; silly comment # another comment
214noIndent= sillyValue ; 'nother silly comment
215
216# empty line
217 ; comment
218[nextSection]
219 nonewline = wow3
220 NoNewLine = wow2 for me
221EOF
222
223test_expect_success 'multivar replace' 'cmp .git/config expect'
224
41ac414e
JH
225test_expect_success 'ambiguous value' '
226 ! git config nextsection.nonewline
227'
4ddba79d 228
41ac414e
JH
229test_expect_success 'ambiguous unset' '
230 ! git config --unset nextsection.nonewline
231'
942c1f53 232
41ac414e
JH
233test_expect_success 'invalid unset' '
234 ! git config --unset somesection.nonewline
235'
942c1f53 236
5be60078 237git config --unset nextsection.nonewline "wow3$"
942c1f53
JS
238
239cat > expect << EOF
240[beta] ; silly comment # another comment
241noIndent= sillyValue ; 'nother silly comment
242
243# empty line
244 ; comment
245[nextSection]
246 NoNewLine = wow2 for me
247EOF
248
249test_expect_success 'multivar unset' 'cmp .git/config expect'
250
41ac414e 251test_expect_success 'invalid key' '! git config inval.2key blabla'
942c1f53 252
5be60078 253test_expect_success 'correct key' 'git config 123456.a123 987'
942c1f53 254
b17e659d 255test_expect_success 'hierarchical section' \
5be60078 256 'git config Version.1.2.3eX.Alpha beta'
b17e659d
JS
257
258cat > expect << EOF
259[beta] ; silly comment # another comment
260noIndent= sillyValue ; 'nother silly comment
261
262# empty line
263 ; comment
264[nextSection]
265 NoNewLine = wow2 for me
266[123456]
267 a123 = 987
d14f7764
LT
268[Version "1.2.3eX"]
269 Alpha = beta
b17e659d
JS
270EOF
271
272test_expect_success 'hierarchical section value' 'cmp .git/config expect'
273
2fa9a0fb
JS
274cat > expect << EOF
275beta.noindent=sillyValue
276nextsection.nonewline=wow2 for me
277123456.a123=987
d55aaefa 278version.1.2.3eX.alpha=beta
2fa9a0fb
JS
279EOF
280
281test_expect_success 'working --list' \
5be60078 282 'git config --list > output && cmp output expect'
2fa9a0fb
JS
283
284cat > expect << EOF
285beta.noindent sillyValue
286nextsection.nonewline wow2 for me
287EOF
288
289test_expect_success '--get-regexp' \
5be60078 290 'git config --get-regexp in > output && cmp output expect'
2fa9a0fb 291
5be60078 292git config --add nextsection.nonewline "wow4 for you"
89c4afe0
BG
293
294cat > expect << EOF
295wow2 for me
296wow4 for you
297EOF
298
299test_expect_success '--add' \
5be60078 300 'git config --get-all nextsection.nonewline > output && cmp output expect'
89c4afe0 301
f067a137
JF
302cat > .git/config << EOF
303[novalue]
304 variable
09bc098c
CC
305[emptyvalue]
306 variable =
f067a137
JF
307EOF
308
309test_expect_success 'get variable with no value' \
5be60078 310 'git config --get novalue.variable ^$'
f067a137 311
09bc098c
CC
312test_expect_success 'get variable with empty value' \
313 'git config --get emptyvalue.variable ^$'
314
b69ba460
FL
315echo novalue.variable > expect
316
317test_expect_success 'get-regexp variable with no value' \
5be60078 318 'git config --get-regexp novalue > output &&
b69ba460
FL
319 cmp output expect'
320
09bc098c
CC
321echo 'emptyvalue.variable ' > expect
322
323test_expect_success 'get-regexp variable with empty value' \
324 'git config --get-regexp emptyvalue > output &&
325 cmp output expect'
326
327echo true > expect
328
329test_expect_success 'get bool variable with no value' \
330 'git config --bool novalue.variable > output &&
331 cmp output expect'
332
333echo false > expect
334
335test_expect_success 'get bool variable with empty value' \
336 'git config --bool emptyvalue.variable > output &&
337 cmp output expect'
338
5be60078 339git config > output 2>&1
2fa9a0fb
JS
340
341test_expect_success 'no arguments, but no crash' \
342 "test $? = 129 && grep usage output"
343
bd886fd3
SE
344cat > .git/config << EOF
345[a.b]
346 c = d
347EOF
348
5be60078 349git config a.x y
bd886fd3
SE
350
351cat > expect << EOF
352[a.b]
353 c = d
354[a]
355 x = y
356EOF
357
358test_expect_success 'new section is partial match of another' 'cmp .git/config expect'
359
5be60078
JH
360git config b.x y
361git config a.b c
bd886fd3
SE
362
363cat > expect << EOF
364[a.b]
365 c = d
366[a]
367 x = y
368 b = c
369[b]
370 x = y
371EOF
372
373test_expect_success 'new variable inserts into proper section' 'cmp .git/config expect'
374
773a69fb
AR
375test_expect_success 'alternative GIT_CONFIG (non-existing file should fail)' \
376 'git config --file non-existing-config -l; test $? != 0'
377
9c3796fc
JS
378cat > other-config << EOF
379[ein]
380 bahn = strasse
381EOF
382
383cat > expect << EOF
384ein.bahn=strasse
385EOF
386
5be60078 387GIT_CONFIG=other-config git config -l > output
9c3796fc
JS
388
389test_expect_success 'alternative GIT_CONFIG' 'cmp output expect'
390
773a69fb
AR
391test_expect_success 'alternative GIT_CONFIG (--file)' \
392 'git config --file other-config -l > output && cmp output expect'
393
5be60078 394GIT_CONFIG=other-config git config anwohner.park ausweis
9c3796fc
JS
395
396cat > expect << EOF
397[ein]
398 bahn = strasse
399[anwohner]
400 park = ausweis
401EOF
402
403test_expect_success '--set in alternative GIT_CONFIG' 'cmp other-config expect'
404
0667fcfb
JS
405cat > .git/config << EOF
406# Hallo
407 #Bello
408[branch "eins"]
409 x = 1
410[branch.eins]
411 y = 1
412 [branch "1 234 blabl/a"]
413weird
414EOF
415
416test_expect_success "rename section" \
5be60078 417 "git config --rename-section branch.eins branch.zwei"
0667fcfb
JS
418
419cat > expect << EOF
420# Hallo
421 #Bello
422[branch "zwei"]
423 x = 1
424[branch "zwei"]
425 y = 1
426 [branch "1 234 blabl/a"]
427weird
428EOF
429
3af82863 430test_expect_success "rename succeeded" "test_cmp expect .git/config"
0667fcfb 431
41ac414e
JH
432test_expect_success "rename non-existing section" '
433 ! git config --rename-section branch."world domination" branch.drei
434'
0667fcfb 435
3af82863 436test_expect_success "rename succeeded" "test_cmp expect .git/config"
0667fcfb
JS
437
438test_expect_success "rename another section" \
5be60078 439 'git config --rename-section branch."1 234 blabl/a" branch.drei'
0667fcfb
JS
440
441cat > expect << EOF
442# Hallo
443 #Bello
444[branch "zwei"]
445 x = 1
446[branch "zwei"]
447 y = 1
448[branch "drei"]
449weird
450EOF
451
3af82863 452test_expect_success "rename succeeded" "test_cmp expect .git/config"
0667fcfb 453
118f8b24
PB
454cat >> .git/config << EOF
455 [branch "zwei"] a = 1 [branch "vier"]
456EOF
457
458test_expect_success "remove section" "git config --remove-section branch.zwei"
459
460cat > expect << EOF
461# Hallo
462 #Bello
463[branch "drei"]
464weird
465EOF
466
467test_expect_success "section was removed properly" \
3af82863 468 "test_cmp expect .git/config"
118f8b24 469
b18a2be3
SP
470rm .git/config
471
472cat > expect << EOF
473[gitcvs]
474 enabled = true
475 dbname = %Ggitcvs2.%a.%m.sqlite
476[gitcvs "ext"]
477 dbname = %Ggitcvs1.%a.%m.sqlite
478EOF
479
480test_expect_success 'section ending' '
481
5be60078
JH
482 git config gitcvs.enabled true &&
483 git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
484 git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
b18a2be3
SP
485 cmp .git/config expect
486
487'
488
d77a64d3
SP
489test_expect_success numbers '
490
5be60078
JH
491 git config kilo.gram 1k &&
492 git config mega.ton 1m &&
493 k=$(git config --int --get kilo.gram) &&
d77a64d3 494 test z1024 = "z$k" &&
5be60078 495 m=$(git config --int --get mega.ton) &&
d77a64d3
SP
496 test z1048576 = "z$m"
497'
498
c8deb5a1
SP
499cat > expect <<EOF
500fatal: bad config value for 'aninvalid.unit' in .git/config
501EOF
502
503test_expect_success 'invalid unit' '
504
505 git config aninvalid.unit "1auto" &&
506 s=$(git config aninvalid.unit) &&
507 test "z1auto" = "z$s" &&
508 if git config --int --get aninvalid.unit 2>actual
509 then
510 echo config should have failed
511 false
512 fi &&
513 cmp actual expect
514'
515
cab333cb
FL
516cat > expect << EOF
517true
518false
519true
520false
521true
522false
523true
524false
525EOF
526
527test_expect_success bool '
528
5be60078
JH
529 git config bool.true1 01 &&
530 git config bool.true2 -1 &&
531 git config bool.true3 YeS &&
532 git config bool.true4 true &&
533 git config bool.false1 000 &&
534 git config bool.false2 "" &&
535 git config bool.false3 nO &&
536 git config bool.false4 FALSE &&
cab333cb
FL
537 rm -f result &&
538 for i in 1 2 3 4
539 do
5be60078
JH
540 git config --bool --get bool.true$i >>result
541 git config --bool --get bool.false$i >>result
cab333cb
FL
542 done &&
543 cmp expect result'
544
41ac414e 545test_expect_success 'invalid bool (--get)' '
cab333cb 546
5be60078 547 git config bool.nobool foobar &&
41ac414e 548 ! git config --bool --get bool.nobool'
cab333cb 549
41ac414e 550test_expect_success 'invalid bool (set)' '
db1696b8 551
41ac414e 552 ! git config --bool bool.nobool foobar'
db1696b8
FL
553
554rm .git/config
555
556cat > expect <<\EOF
557[bool]
558 true1 = true
559 true2 = true
560 true3 = true
561 true4 = true
562 false1 = false
563 false2 = false
564 false3 = false
565 false4 = false
566EOF
567
568test_expect_success 'set --bool' '
569
5be60078
JH
570 git config --bool bool.true1 01 &&
571 git config --bool bool.true2 -1 &&
572 git config --bool bool.true3 YeS &&
573 git config --bool bool.true4 true &&
574 git config --bool bool.false1 000 &&
575 git config --bool bool.false2 "" &&
576 git config --bool bool.false3 nO &&
577 git config --bool bool.false4 FALSE &&
db1696b8
FL
578 cmp expect .git/config'
579
580rm .git/config
581
582cat > expect <<\EOF
583[int]
584 val1 = 1
585 val2 = -1
586 val3 = 5242880
587EOF
588
589test_expect_success 'set --int' '
590
5be60078
JH
591 git config --int int.val1 01 &&
592 git config --int int.val2 -1 &&
593 git config --int int.val3 5m &&
db1696b8
FL
594 cmp expect .git/config'
595
cdd4fb15
BG
596rm .git/config
597
c35b0b58
JH
598cat >expect <<\EOF
599[bool]
600 true1 = true
601 true2 = true
602 false1 = false
603 false2 = false
604[int]
605 int1 = 0
606 int2 = 1
607 int3 = -1
608EOF
609
610test_expect_success 'get --bool-or-int' '
611 (
612 echo "[bool]"
613 echo true1
614 echo true2 = true
615 echo false = false
616 echo "[int]"
617 echo int1 = 0
618 echo int2 = 1
619 echo int3 = -1
620 ) >>.git/config &&
621 test $(git config --bool-or-int bool.true1) = true &&
622 test $(git config --bool-or-int bool.true2) = true &&
623 test $(git config --bool-or-int bool.false) = false &&
624 test $(git config --bool-or-int int.int1) = 0 &&
625 test $(git config --bool-or-int int.int2) = 1 &&
626 test $(git config --bool-or-int int.int3) = -1
627
628'
629
630rm .git/config
631cat >expect <<\EOF
632[bool]
633 true1 = true
634 false1 = false
635 true2 = true
636 false2 = false
637[int]
638 int1 = 0
639 int2 = 1
640 int3 = -1
641EOF
642
643test_expect_success 'set --bool-or-int' '
644 git config --bool-or-int bool.true1 true &&
645 git config --bool-or-int bool.false1 false &&
646 git config --bool-or-int bool.true2 yes &&
647 git config --bool-or-int bool.false2 no &&
648 git config --bool-or-int int.int1 0 &&
649 git config --bool-or-int int.int2 1 &&
650 git config --bool-or-int int.int3 -1 &&
651 test_cmp expect .git/config
652'
653
654rm .git/config
655
5be60078
JH
656git config quote.leading " test"
657git config quote.ending "test "
658git config quote.semicolon "test;test"
659git config quote.hash "test#test"
cdd4fb15
BG
660
661cat > expect << EOF
662[quote]
663 leading = " test"
664 ending = "test "
665 semicolon = "test;test"
666 hash = "test#test"
667EOF
668
669test_expect_success 'quoting' 'cmp .git/config expect'
670
41ac414e
JH
671test_expect_success 'key with newline' '
672 ! git config "key.with
673newline" 123'
6f71686e 674
e0d10e1c 675test_expect_success 'value with newline' 'git config key.sub value.with\\\
6f71686e
JS
676newline'
677
83cd10a0
JN
678cat > .git/config <<\EOF
679[section]
680 ; comment \
681 continued = cont\
682inued
683 noncont = not continued ; \
684 quotecont = "cont;\
685inued"
686EOF
687
688cat > expect <<\EOF
689section.continued=continued
690section.noncont=not continued
691section.quotecont=cont;inued
692EOF
693
e0d10e1c 694git config --list > result
83cd10a0
JN
695
696test_expect_success 'value continued on next line' 'cmp result expect'
697
2275d502
FL
698cat > .git/config <<\EOF
699[section "sub=section"]
700 val1 = foo=bar
701 val2 = foo\nbar
702 val3 = \n\n
703 val4 =
704 val5
705EOF
706
707cat > expect <<\EOF
2b9a5020
AR
708section.sub=section.val1
709foo=barQsection.sub=section.val2
710foo
711barQsection.sub=section.val3
2275d502
FL
712
713
2b9a5020
AR
714Qsection.sub=section.val4
715Qsection.sub=section.val5Q
2275d502
FL
716EOF
717
e85fe4d8 718git config --null --list | perl -pe 'y/\000/Q/' > result
2b9a5020 719echo >>result
2275d502
FL
720
721test_expect_success '--null --list' 'cmp result expect'
722
e85fe4d8 723git config --null --get-regexp 'val[0-9]' | perl -pe 'y/\000/Q/' > result
2b9a5020 724echo >>result
2275d502
FL
725
726test_expect_success '--null --get-regexp' 'cmp result expect'
727
65a5a21d
JH
728test_expect_success 'symlinked configuration' '
729
730 ln -s notyet myconfig &&
731 GIT_CONFIG=myconfig git config test.frotz nitfol &&
732 test -h myconfig &&
733 test -f notyet &&
734 test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
735 GIT_CONFIG=myconfig git config test.xyzzy rezrov &&
736 test -h myconfig &&
737 test -f notyet &&
738 test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
739 test "z$(GIT_CONFIG=notyet git config test.xyzzy)" = zrezrov
740
741'
742
942c1f53 743test_done