remote-hg: add tests for special filenames
[git] / t / t1300-repo-config.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2005 Johannes Schindelin
4 #
5
6 test_description='Test git config in different settings'
7
8 . ./test-lib.sh
9
10 test_expect_success 'clear default config' '
11         rm -f .git/config
12 '
13
14 cat > expect << EOF
15 [core]
16         penguin = little blue
17 EOF
18 test_expect_success 'initial' '
19         git config core.penguin "little blue" &&
20         test_cmp expect .git/config
21 '
22
23 cat > expect << EOF
24 [core]
25         penguin = little blue
26         Movie = BadPhysics
27 EOF
28 test_expect_success 'mixed case' '
29         git config Core.Movie BadPhysics &&
30         test_cmp expect .git/config
31 '
32
33 cat > expect << EOF
34 [core]
35         penguin = little blue
36         Movie = BadPhysics
37 [Cores]
38         WhatEver = Second
39 EOF
40 test_expect_success 'similar section' '
41         git config Cores.WhatEver Second &&
42         test_cmp expect .git/config
43 '
44
45 cat > expect << EOF
46 [core]
47         penguin = little blue
48         Movie = BadPhysics
49         UPPERCASE = true
50 [Cores]
51         WhatEver = Second
52 EOF
53 test_expect_success 'uppercase section' '
54         git config CORE.UPPERCASE true &&
55         test_cmp expect .git/config
56 '
57
58 test_expect_success 'replace with non-match' '
59         git config core.penguin kingpin !blue
60 '
61
62 test_expect_success 'replace with non-match (actually matching)' '
63         git config core.penguin "very blue" !kingpin
64 '
65
66 cat > expect << EOF
67 [core]
68         penguin = very blue
69         Movie = BadPhysics
70         UPPERCASE = true
71         penguin = kingpin
72 [Cores]
73         WhatEver = Second
74 EOF
75
76 test_expect_success 'non-match result' 'test_cmp expect .git/config'
77
78 test_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
84 test_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
90 test_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 '
104
105 cat > .git/config <<\EOF
106 [alpha]
107 bar = foo
108 [beta]
109 baz = multiple \
110 lines
111 EOF
112
113 test_expect_success 'unset with cont. lines' '
114         git config --unset beta.baz
115 '
116
117 cat > expect <<\EOF
118 [alpha]
119 bar = foo
120 [beta]
121 EOF
122
123 test_expect_success 'unset with cont. lines is correct' 'test_cmp expect .git/config'
124
125 cat > .git/config << EOF
126 [beta] ; silly comment # another comment
127 noIndent= sillyValue ; 'nother silly comment
128
129 # empty line
130                 ; comment
131                 haha   ="beta" # last silly comment
132 haha = hello
133         haha = bello
134 [nextSection] noNewline = ouch
135 EOF
136
137 cp .git/config .git/config2
138
139 test_expect_success 'multiple unset' '
140         git config --unset-all beta.haha
141 '
142
143 cat > expect << EOF
144 [beta] ; silly comment # another comment
145 noIndent= sillyValue ; 'nother silly comment
146
147 # empty line
148                 ; comment
149 [nextSection] noNewline = ouch
150 EOF
151
152 test_expect_success 'multiple unset is correct' '
153         test_cmp expect .git/config
154 '
155
156 cp .git/config2 .git/config
157
158 test_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
163 rm .git/config2
164
165 test_expect_success '--replace-all' '
166         git config --replace-all beta.haha gamma
167 '
168
169 cat > expect << EOF
170 [beta] ; silly comment # another comment
171 noIndent= sillyValue ; 'nother silly comment
172
173 # empty line
174                 ; comment
175         haha = gamma
176 [nextSection] noNewline = ouch
177 EOF
178
179 test_expect_success 'all replaced' '
180         test_cmp expect .git/config
181 '
182
183 cat > expect << EOF
184 [beta] ; silly comment # another comment
185 noIndent= sillyValue ; 'nother silly comment
186
187 # empty line
188                 ; comment
189         haha = alpha
190 [nextSection] noNewline = ouch
191 EOF
192 test_expect_success 'really mean test' '
193         git config beta.haha alpha &&
194         test_cmp expect .git/config
195 '
196
197 cat > expect << EOF
198 [beta] ; silly comment # another comment
199 noIndent= sillyValue ; 'nother silly comment
200
201 # empty line
202                 ; comment
203         haha = alpha
204 [nextSection]
205         nonewline = wow
206 EOF
207 test_expect_success 'really really mean test' '
208         git config nextsection.nonewline wow &&
209         test_cmp expect .git/config
210 '
211
212 test_expect_success 'get value' '
213         echo alpha >expect &&
214         git config beta.haha >actual &&
215         test_cmp expect actual
216 '
217
218 cat > expect << EOF
219 [beta] ; silly comment # another comment
220 noIndent= sillyValue ; 'nother silly comment
221
222 # empty line
223                 ; comment
224 [nextSection]
225         nonewline = wow
226 EOF
227 test_expect_success 'unset' '
228         git config --unset beta.haha &&
229         test_cmp expect .git/config
230 '
231
232 cat > expect << EOF
233 [beta] ; silly comment # another comment
234 noIndent= sillyValue ; 'nother silly comment
235
236 # empty line
237                 ; comment
238 [nextSection]
239         nonewline = wow
240         NoNewLine = wow2 for me
241 EOF
242 test_expect_success 'multivar' '
243         git config nextsection.NoNewLine "wow2 for me" "for me$" &&
244         test_cmp expect .git/config
245 '
246
247 test_expect_success 'non-match' '
248         git config --get nextsection.nonewline !for
249 '
250
251 test_expect_success 'non-match value' '
252         echo wow >expect &&
253         git config --get nextsection.nonewline !for >actual &&
254         test_cmp expect actual
255 '
256
257 test_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
261 '
262
263 test_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
270 '
271
272 cat > expect << EOF
273 [beta] ; silly comment # another comment
274 noIndent= sillyValue ; 'nother silly comment
275
276 # empty line
277                 ; comment
278 [nextSection]
279         nonewline = wow3
280         NoNewLine = wow2 for me
281 EOF
282 test_expect_success 'multivar replace' '
283         git config nextsection.nonewline "wow3" "wow$" &&
284         test_cmp expect .git/config
285 '
286
287 test_expect_success 'ambiguous unset' '
288         test_must_fail git config --unset nextsection.nonewline
289 '
290
291 test_expect_success 'invalid unset' '
292         test_must_fail git config --unset somesection.nonewline
293 '
294
295 cat > expect << EOF
296 [beta] ; silly comment # another comment
297 noIndent= sillyValue ; 'nother silly comment
298
299 # empty line
300                 ; comment
301 [nextSection]
302         NoNewLine = wow2 for me
303 EOF
304
305 test_expect_success 'multivar unset' '
306         git config --unset nextsection.nonewline "wow3$" &&
307         test_cmp expect .git/config
308 '
309
310 test_expect_success 'invalid key' 'test_must_fail git config inval.2key blabla'
311
312 test_expect_success 'correct key' 'git config 123456.a123 987'
313
314 test_expect_success 'hierarchical section' '
315         git config Version.1.2.3eX.Alpha beta
316 '
317
318 cat > expect << EOF
319 [beta] ; silly comment # another comment
320 noIndent= sillyValue ; 'nother silly comment
321
322 # empty line
323                 ; comment
324 [nextSection]
325         NoNewLine = wow2 for me
326 [123456]
327         a123 = 987
328 [Version "1.2.3eX"]
329         Alpha = beta
330 EOF
331
332 test_expect_success 'hierarchical section value' '
333         test_cmp expect .git/config
334 '
335
336 cat > expect << EOF
337 alias.ci=commit
338 alias.co=checkout
339 alias.rb=rebase
340 alias.st=status
341 beta.noindent=sillyValue
342 nextsection.nonewline=wow2 for me
343 123456.a123=987
344 version.1.2.3eX.alpha=beta
345 EOF
346
347 test_expect_success 'working --list' '
348         git config --list > output &&
349         test_cmp expect output
350 '
351 cat > expect << EOF
352 alias.ci=commit
353 alias.co=checkout
354 alias.rb=rebase
355 alias.st=status
356 EOF
357
358 test_expect_success '--list without repo produces empty output' '
359         git --git-dir=nonexistent config --list >output &&
360         test_cmp expect output
361 '
362
363 cat > expect << EOF
364 beta.noindent sillyValue
365 nextsection.nonewline wow2 for me
366 EOF
367
368 test_expect_success '--get-regexp' '
369         git config --get-regexp in >output &&
370         test_cmp expect output
371 '
372
373 cat > expect << EOF
374 wow2 for me
375 wow4 for you
376 EOF
377
378 test_expect_success '--add' '
379         git config --add nextsection.nonewline "wow4 for you" &&
380         git config --get-all nextsection.nonewline > output &&
381         test_cmp expect output
382 '
383
384 cat > .git/config << EOF
385 [novalue]
386         variable
387 [emptyvalue]
388         variable =
389 EOF
390
391 test_expect_success 'get variable with no value' '
392         git config --get novalue.variable ^$
393 '
394
395 test_expect_success 'get variable with empty value' '
396         git config --get emptyvalue.variable ^$
397 '
398
399 echo novalue.variable > expect
400
401 test_expect_success 'get-regexp variable with no value' '
402         git config --get-regexp novalue > output &&
403         test_cmp expect output
404 '
405
406 echo 'novalue.variable true' > expect
407
408 test_expect_success 'get-regexp --bool variable with no value' '
409         git config --bool --get-regexp novalue > output &&
410         test_cmp expect output
411 '
412
413 echo 'emptyvalue.variable ' > expect
414
415 test_expect_success 'get-regexp variable with empty value' '
416         git config --get-regexp emptyvalue > output &&
417         test_cmp expect output
418 '
419
420 echo true > expect
421
422 test_expect_success 'get bool variable with no value' '
423         git config --bool novalue.variable > output &&
424         test_cmp expect output
425 '
426
427 echo false > expect
428
429 test_expect_success 'get bool variable with empty value' '
430         git config --bool emptyvalue.variable > output &&
431         test_cmp expect output
432 '
433
434 test_expect_success 'no arguments, but no crash' '
435         test_must_fail git config >output 2>&1 &&
436         test_i18ngrep usage output
437 '
438
439 cat > .git/config << EOF
440 [a.b]
441         c = d
442 EOF
443
444 cat > expect << EOF
445 [a.b]
446         c = d
447 [a]
448         x = y
449 EOF
450
451 test_expect_success 'new section is partial match of another' '
452         git config a.x y &&
453         test_cmp expect .git/config
454 '
455
456 cat > expect << EOF
457 [a.b]
458         c = d
459 [a]
460         x = y
461         b = c
462 [b]
463         x = y
464 EOF
465
466 test_expect_success 'new variable inserts into proper section' '
467         git config b.x y &&
468         git config a.b c &&
469         test_cmp expect .git/config
470 '
471
472 test_expect_success 'alternative GIT_CONFIG (non-existing file should fail)' '
473         test_must_fail git config --file non-existing-config -l
474 '
475
476 cat > other-config << EOF
477 [ein]
478         bahn = strasse
479 EOF
480
481 cat > expect << EOF
482 ein.bahn=strasse
483 EOF
484
485 test_expect_success 'alternative GIT_CONFIG' '
486         GIT_CONFIG=other-config git config -l >output &&
487         test_cmp expect output
488 '
489
490 test_expect_success 'alternative GIT_CONFIG (--file)' '
491         git config --file other-config -l > output &&
492         test_cmp expect output
493 '
494
495 test_expect_success 'refer config from subdirectory' '
496         mkdir x &&
497         (
498                 cd x &&
499                 echo strasse >expect &&
500                 git config --get --file ../other-config ein.bahn >actual &&
501                 test_cmp expect actual
502         )
503
504 '
505
506 test_expect_success 'refer config from subdirectory via GIT_CONFIG' '
507         (
508                 cd x &&
509                 GIT_CONFIG=../other-config git config --get ein.bahn >actual &&
510                 test_cmp expect actual
511         )
512 '
513
514 cat > expect << EOF
515 [ein]
516         bahn = strasse
517 [anwohner]
518         park = ausweis
519 EOF
520
521 test_expect_success '--set in alternative GIT_CONFIG' '
522         GIT_CONFIG=other-config git config anwohner.park ausweis &&
523         test_cmp expect other-config
524 '
525
526 cat > .git/config << EOF
527 # Hallo
528         #Bello
529 [branch "eins"]
530         x = 1
531 [branch.eins]
532         y = 1
533         [branch "1 234 blabl/a"]
534 weird
535 EOF
536
537 test_expect_success 'rename section' '
538         git config --rename-section branch.eins branch.zwei
539 '
540
541 cat > expect << EOF
542 # Hallo
543         #Bello
544 [branch "zwei"]
545         x = 1
546 [branch "zwei"]
547         y = 1
548         [branch "1 234 blabl/a"]
549 weird
550 EOF
551
552 test_expect_success 'rename succeeded' '
553         test_cmp expect .git/config
554 '
555
556 test_expect_success 'rename non-existing section' '
557         test_must_fail git config --rename-section \
558                 branch."world domination" branch.drei
559 '
560
561 test_expect_success 'rename succeeded' '
562         test_cmp expect .git/config
563 '
564
565 test_expect_success 'rename another section' '
566         git config --rename-section branch."1 234 blabl/a" branch.drei
567 '
568
569 cat > expect << EOF
570 # Hallo
571         #Bello
572 [branch "zwei"]
573         x = 1
574 [branch "zwei"]
575         y = 1
576 [branch "drei"]
577 weird
578 EOF
579
580 test_expect_success 'rename succeeded' '
581         test_cmp expect .git/config
582 '
583
584 cat >> .git/config << EOF
585 [branch "vier"] z = 1
586 EOF
587
588 test_expect_success 'rename a section with a var on the same line' '
589         git config --rename-section branch.vier branch.zwei
590 '
591
592 cat > expect << EOF
593 # Hallo
594         #Bello
595 [branch "zwei"]
596         x = 1
597 [branch "zwei"]
598         y = 1
599 [branch "drei"]
600 weird
601 [branch "zwei"]
602         z = 1
603 EOF
604
605 test_expect_success 'rename succeeded' '
606         test_cmp expect .git/config
607 '
608
609 test_expect_success 'renaming empty section name is rejected' '
610         test_must_fail git config --rename-section branch.zwei ""
611 '
612
613 test_expect_success 'renaming to bogus section is rejected' '
614         test_must_fail git config --rename-section branch.zwei "bogus name"
615 '
616
617 cat >> .git/config << EOF
618   [branch "zwei"] a = 1 [branch "vier"]
619 EOF
620
621 test_expect_success 'remove section' '
622         git config --remove-section branch.zwei
623 '
624
625 cat > expect << EOF
626 # Hallo
627         #Bello
628 [branch "drei"]
629 weird
630 EOF
631
632 test_expect_success 'section was removed properly' '
633         test_cmp expect .git/config
634 '
635
636 cat > expect << EOF
637 [gitcvs]
638         enabled = true
639         dbname = %Ggitcvs2.%a.%m.sqlite
640 [gitcvs "ext"]
641         dbname = %Ggitcvs1.%a.%m.sqlite
642 EOF
643
644 test_expect_success 'section ending' '
645         rm -f .git/config &&
646         git config gitcvs.enabled true &&
647         git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
648         git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
649         test_cmp expect .git/config
650
651 '
652
653 test_expect_success numbers '
654         git config kilo.gram 1k &&
655         git config mega.ton 1m &&
656         echo 1024 >expect &&
657         echo 1048576 >>expect &&
658         git config --int --get kilo.gram >actual &&
659         git config --int --get mega.ton >>actual &&
660         test_cmp expect actual
661 '
662
663 test_expect_success 'invalid unit' '
664         git config aninvalid.unit "1auto" &&
665         echo 1auto >expect &&
666         git config aninvalid.unit >actual &&
667         test_cmp expect actual &&
668         cat > expect <<-\EOF
669         fatal: bad config value for '\''aninvalid.unit'\'' in .git/config
670         EOF
671         test_must_fail git config --int --get aninvalid.unit 2>actual &&
672         test_cmp actual expect
673 '
674
675 cat > expect << EOF
676 true
677 false
678 true
679 false
680 true
681 false
682 true
683 false
684 EOF
685
686 test_expect_success bool '
687
688         git config bool.true1 01 &&
689         git config bool.true2 -1 &&
690         git config bool.true3 YeS &&
691         git config bool.true4 true &&
692         git config bool.false1 000 &&
693         git config bool.false2 "" &&
694         git config bool.false3 nO &&
695         git config bool.false4 FALSE &&
696         rm -f result &&
697         for i in 1 2 3 4
698         do
699             git config --bool --get bool.true$i >>result
700             git config --bool --get bool.false$i >>result
701         done &&
702         test_cmp expect result'
703
704 test_expect_success 'invalid bool (--get)' '
705
706         git config bool.nobool foobar &&
707         test_must_fail git config --bool --get bool.nobool'
708
709 test_expect_success 'invalid bool (set)' '
710
711         test_must_fail git config --bool bool.nobool foobar'
712
713 cat > expect <<\EOF
714 [bool]
715         true1 = true
716         true2 = true
717         true3 = true
718         true4 = true
719         false1 = false
720         false2 = false
721         false3 = false
722         false4 = false
723 EOF
724
725 test_expect_success 'set --bool' '
726
727         rm -f .git/config &&
728         git config --bool bool.true1 01 &&
729         git config --bool bool.true2 -1 &&
730         git config --bool bool.true3 YeS &&
731         git config --bool bool.true4 true &&
732         git config --bool bool.false1 000 &&
733         git config --bool bool.false2 "" &&
734         git config --bool bool.false3 nO &&
735         git config --bool bool.false4 FALSE &&
736         test_cmp expect .git/config'
737
738 cat > expect <<\EOF
739 [int]
740         val1 = 1
741         val2 = -1
742         val3 = 5242880
743 EOF
744
745 test_expect_success 'set --int' '
746
747         rm -f .git/config &&
748         git config --int int.val1 01 &&
749         git config --int int.val2 -1 &&
750         git config --int int.val3 5m &&
751         test_cmp expect .git/config
752 '
753
754 test_expect_success 'get --bool-or-int' '
755         cat >.git/config <<-\EOF &&
756         [bool]
757         true1
758         true2 = true
759         false = false
760         [int]
761         int1 = 0
762         int2 = 1
763         int3 = -1
764         EOF
765         cat >expect <<-\EOF &&
766         true
767         true
768         false
769         0
770         1
771         -1
772         EOF
773         {
774                 git config --bool-or-int bool.true1 &&
775                 git config --bool-or-int bool.true2 &&
776                 git config --bool-or-int bool.false &&
777                 git config --bool-or-int int.int1 &&
778                 git config --bool-or-int int.int2 &&
779                 git config --bool-or-int int.int3
780         } >actual &&
781         test_cmp expect actual
782 '
783
784 cat >expect <<\EOF
785 [bool]
786         true1 = true
787         false1 = false
788         true2 = true
789         false2 = false
790 [int]
791         int1 = 0
792         int2 = 1
793         int3 = -1
794 EOF
795
796 test_expect_success 'set --bool-or-int' '
797         rm -f .git/config &&
798         git config --bool-or-int bool.true1 true &&
799         git config --bool-or-int bool.false1 false &&
800         git config --bool-or-int bool.true2 yes &&
801         git config --bool-or-int bool.false2 no &&
802         git config --bool-or-int int.int1 0 &&
803         git config --bool-or-int int.int2 1 &&
804         git config --bool-or-int int.int3 -1 &&
805         test_cmp expect .git/config
806 '
807
808 cat >expect <<\EOF
809 [path]
810         home = ~/
811         normal = /dev/null
812         trailingtilde = foo~
813 EOF
814
815 test_expect_success NOT_MINGW 'set --path' '
816         rm -f .git/config &&
817         git config --path path.home "~/" &&
818         git config --path path.normal "/dev/null" &&
819         git config --path path.trailingtilde "foo~" &&
820         test_cmp expect .git/config'
821
822 if test_have_prereq NOT_MINGW && test "${HOME+set}"
823 then
824         test_set_prereq HOMEVAR
825 fi
826
827 cat >expect <<EOF
828 $HOME/
829 /dev/null
830 foo~
831 EOF
832
833 test_expect_success HOMEVAR 'get --path' '
834         git config --get --path path.home > result &&
835         git config --get --path path.normal >> result &&
836         git config --get --path path.trailingtilde >> result &&
837         test_cmp expect result
838 '
839
840 cat >expect <<\EOF
841 /dev/null
842 foo~
843 EOF
844
845 test_expect_success NOT_MINGW 'get --path copes with unset $HOME' '
846         (
847                 unset HOME;
848                 test_must_fail git config --get --path path.home \
849                         >result 2>msg &&
850                 git config --get --path path.normal >>result &&
851                 git config --get --path path.trailingtilde >>result
852         ) &&
853         grep "[Ff]ailed to expand.*~/" msg &&
854         test_cmp expect result
855 '
856
857 test_expect_success 'get --path barfs on boolean variable' '
858         echo "[path]bool" >.git/config &&
859         test_must_fail git config --get --path path.bool
860 '
861
862 cat > expect << EOF
863 [quote]
864         leading = " test"
865         ending = "test "
866         semicolon = "test;test"
867         hash = "test#test"
868 EOF
869 test_expect_success 'quoting' '
870         rm -f .git/config &&
871         git config quote.leading " test" &&
872         git config quote.ending "test " &&
873         git config quote.semicolon "test;test" &&
874         git config quote.hash "test#test" &&
875         test_cmp expect .git/config
876 '
877
878 test_expect_success 'key with newline' '
879         test_must_fail git config "key.with
880 newline" 123'
881
882 test_expect_success 'value with newline' 'git config key.sub value.with\\\
883 newline'
884
885 cat > .git/config <<\EOF
886 [section]
887         ; comment \
888         continued = cont\
889 inued
890         noncont   = not continued ; \
891         quotecont = "cont;\
892 inued"
893 EOF
894
895 cat > expect <<\EOF
896 alias.ci=commit
897 alias.co=checkout
898 alias.rb=rebase
899 alias.st=status
900 section.continued=continued
901 section.noncont=not continued
902 section.quotecont=cont;inued
903 EOF
904
905 test_expect_success 'value continued on next line' '
906         git config --list > result &&
907         test_cmp result expect
908 '
909
910 cat > .git/config <<\EOF
911 [section "sub=section"]
912         val1 = foo=bar
913         val2 = foo\nbar
914         val3 = \n\n
915         val4 =
916         val5
917 EOF
918
919 cat > expect <<\EOF
920 alias.ci
921 commitQalias.co
922 checkoutQalias.rb
923 rebaseQalias.st
924 statusQsection.sub=section.val1
925 foo=barQsection.sub=section.val2
926 foo
927 barQsection.sub=section.val3
928
929
930 Qsection.sub=section.val4
931 Qsection.sub=section.val5Q
932 EOF
933 test_expect_success '--null --list' '
934         git config --null --list | nul_to_q >result &&
935         echo >>result &&
936         test_cmp expect result
937 '
938
939 cat > expect <<\EOF
940 section.sub=section.val1
941 foo=barQsection.sub=section.val2
942 foo
943 barQsection.sub=section.val3
944
945
946 Qsection.sub=section.val4
947 Qsection.sub=section.val5Q
948 EOF
949 test_expect_success '--null --get-regexp' '
950         git config --null --get-regexp "val[0-9]" | nul_to_q >result &&
951         echo >>result &&
952         test_cmp expect result
953 '
954
955 test_expect_success 'inner whitespace kept verbatim' '
956         git config section.val "foo       bar" &&
957         echo "foo         bar" >expect &&
958         git config section.val >actual &&
959         test_cmp expect actual
960 '
961
962 test_expect_success SYMLINKS 'symlinked configuration' '
963         ln -s notyet myconfig &&
964         GIT_CONFIG=myconfig git config test.frotz nitfol &&
965         test -h myconfig &&
966         test -f notyet &&
967         test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
968         GIT_CONFIG=myconfig git config test.xyzzy rezrov &&
969         test -h myconfig &&
970         test -f notyet &&
971         cat >expect <<-\EOF &&
972         nitfol
973         rezrov
974         EOF
975         {
976                 GIT_CONFIG=notyet git config test.frotz &&
977                 GIT_CONFIG=notyet git config test.xyzzy
978         } >actual &&
979         test_cmp expect actual
980 '
981
982 test_expect_success 'nonexistent configuration' '
983         (
984                 GIT_CONFIG=doesnotexist &&
985                 export GIT_CONFIG &&
986                 test_must_fail git config --list &&
987                 test_must_fail git config test.xyzzy
988         )
989 '
990
991 test_expect_success SYMLINKS 'symlink to nonexistent configuration' '
992         ln -s doesnotexist linktonada &&
993         ln -s linktonada linktolinktonada &&
994         (
995                 GIT_CONFIG=linktonada &&
996                 export GIT_CONFIG &&
997                 test_must_fail git config --list &&
998                 GIT_CONFIG=linktolinktonada &&
999                 test_must_fail git config --list
1000         )
1001 '
1002
1003 test_expect_success 'check split_cmdline return' "
1004         git config alias.split-cmdline-fix 'echo \"' &&
1005         test_must_fail git split-cmdline-fix &&
1006         echo foo > foo &&
1007         git add foo &&
1008         git commit -m 'initial commit' &&
1009         git config branch.master.mergeoptions 'echo \"' &&
1010         test_must_fail git merge master
1011 "
1012
1013 test_expect_success 'git -c "key=value" support' '
1014         cat >expect <<-\EOF &&
1015         value
1016         value
1017         true
1018         EOF
1019         {
1020                 git -c core.name=value config core.name &&
1021                 git -c foo.CamelCase=value config foo.camelcase &&
1022                 git -c foo.flag config --bool foo.flag
1023         } >actual &&
1024         test_cmp expect actual &&
1025         test_must_fail git -c name=value config core.name
1026 '
1027
1028 test_expect_success 'key sanity-checking' '
1029         test_must_fail git config foo=bar &&
1030         test_must_fail git config foo=.bar &&
1031         test_must_fail git config foo.ba=r &&
1032         test_must_fail git config foo.1bar &&
1033         test_must_fail git config foo."ba
1034                                 z".bar &&
1035         test_must_fail git config . false &&
1036         test_must_fail git config .foo false &&
1037         test_must_fail git config foo. false &&
1038         test_must_fail git config .foo. false &&
1039         git config foo.bar true &&
1040         git config foo."ba =z".bar false
1041 '
1042
1043 test_expect_success 'git -c works with aliases of builtins' '
1044         git config alias.checkconfig "-c foo.check=bar config foo.check" &&
1045         echo bar >expect &&
1046         git checkconfig >actual &&
1047         test_cmp expect actual
1048 '
1049
1050 test_expect_success 'git -c does not split values on equals' '
1051         echo "value with = in it" >expect &&
1052         git -c core.foo="value with = in it" config core.foo >actual &&
1053         test_cmp expect actual
1054 '
1055
1056 test_expect_success 'git -c dies on bogus config' '
1057         test_must_fail git -c core.bare=foo rev-parse
1058 '
1059
1060 test_expect_success 'git -c complains about empty key' '
1061         test_must_fail git -c "=foo" rev-parse
1062 '
1063
1064 test_expect_success 'git -c complains about empty key and value' '
1065         test_must_fail git -c "" rev-parse
1066 '
1067
1068 test_expect_success 'git config --edit works' '
1069         git config -f tmp test.value no &&
1070         echo test.value=yes >expect &&
1071         GIT_EDITOR="echo [test]value=yes >" git config -f tmp --edit &&
1072         git config -f tmp --list >actual &&
1073         test_cmp expect actual
1074 '
1075
1076 test_expect_success 'git config --edit respects core.editor' '
1077         git config -f tmp test.value no &&
1078         echo test.value=yes >expect &&
1079         test_config core.editor "echo [test]value=yes >" &&
1080         git config -f tmp --edit &&
1081         git config -f tmp --list >actual &&
1082         test_cmp expect actual
1083 '
1084
1085 # malformed configuration files
1086 test_expect_success 'barf on syntax error' '
1087         cat >.git/config <<-\EOF &&
1088         # broken section line
1089         [section]
1090         key garbage
1091         EOF
1092         test_must_fail git config --get section.key >actual 2>error &&
1093         grep " line 3 " error
1094 '
1095
1096 test_expect_success 'barf on incomplete section header' '
1097         cat >.git/config <<-\EOF &&
1098         # broken section line
1099         [section
1100         key = value
1101         EOF
1102         test_must_fail git config --get section.key >actual 2>error &&
1103         grep " line 2 " error
1104 '
1105
1106 test_expect_success 'barf on incomplete string' '
1107         cat >.git/config <<-\EOF &&
1108         # broken section line
1109         [section]
1110         key = "value string
1111         EOF
1112         test_must_fail git config --get section.key >actual 2>error &&
1113         grep " line 3 " error
1114 '
1115
1116 # good section hygiene
1117 test_expect_failure 'unsetting the last key in a section removes header' '
1118         cat >.git/config <<-\EOF &&
1119         # some generic comment on the configuration file itself
1120         # a comment specific to this "section" section.
1121         [section]
1122         # some intervening lines
1123         # that should also be dropped
1124
1125         key = value
1126         # please be careful when you update the above variable
1127         EOF
1128
1129         cat >expect <<-\EOF &&
1130         # some generic comment on the configuration file itself
1131         EOF
1132
1133         git config --unset section.key &&
1134         test_cmp expect .git/config
1135 '
1136
1137 test_expect_failure 'adding a key into an empty section reuses header' '
1138         cat >.git/config <<-\EOF &&
1139         [section]
1140         EOF
1141
1142         q_to_tab >expect <<-\EOF &&
1143         [section]
1144         Qkey = value
1145         EOF
1146
1147         git config section.key value
1148         test_cmp expect .git/config
1149 '
1150
1151 test_done