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