builtin/config: introduce `color` type specifier
[git.git] / t / t1300-repo-config.sh
blob84b79fcfe13adb29ff9dbce54098457eac6e1b71
1 #!/bin/sh
3 # Copyright (c) 2005 Johannes Schindelin
6 test_description='Test git config in different settings'
8 . ./test-lib.sh
10 test_expect_success 'clear default config' '
11 rm -f .git/config
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
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
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
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
58 test_expect_success 'replace with non-match' '
59 git config core.penguin kingpin !blue
62 test_expect_success 'replace with non-match (actually matching)' '
63 git config core.penguin "very blue" !kingpin
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
76 test_expect_success 'non-match result' 'test_cmp expect .git/config'
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
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
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
105 cat > .git/config <<\EOF
106 [alpha]
107 bar = foo
108 [beta]
109 baz = multiple \
110 lines
113 test_expect_success 'unset with cont. lines' '
114 git config --unset beta.baz
117 cat > expect <<\EOF
118 [alpha]
119 bar = foo
120 [beta]
123 test_expect_success 'unset with cont. lines is correct' 'test_cmp expect .git/config'
125 cat > .git/config << EOF
126 [beta] ; silly comment # another comment
127 noIndent= sillyValue ; 'nother silly comment
129 # empty line
130 ; comment
131 haha ="beta" # last silly comment
132 haha = hello
133 haha = bello
134 [nextSection] noNewline = ouch
137 cp .git/config .git/config2
139 test_expect_success 'multiple unset' '
140 git config --unset-all beta.haha
143 cat > expect << EOF
144 [beta] ; silly comment # another comment
145 noIndent= sillyValue ; 'nother silly comment
147 # empty line
148 ; comment
149 [nextSection] noNewline = ouch
152 test_expect_success 'multiple unset is correct' '
153 test_cmp expect .git/config
156 cp .git/config2 .git/config
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
163 rm .git/config2
165 test_expect_success '--replace-all' '
166 git config --replace-all beta.haha gamma
169 cat > expect << EOF
170 [beta] ; silly comment # another comment
171 noIndent= sillyValue ; 'nother silly comment
173 # empty line
174 ; comment
175 haha = gamma
176 [nextSection] noNewline = ouch
179 test_expect_success 'all replaced' '
180 test_cmp expect .git/config
183 cat > expect << EOF
184 [beta] ; silly comment # another comment
185 noIndent= sillyValue ; 'nother silly comment
187 # empty line
188 ; comment
189 haha = alpha
190 [nextSection] noNewline = ouch
192 test_expect_success 'really mean test' '
193 git config beta.haha alpha &&
194 test_cmp expect .git/config
197 cat > expect << EOF
198 [beta] ; silly comment # another comment
199 noIndent= sillyValue ; 'nother silly comment
201 # empty line
202 ; comment
203 haha = alpha
204 [nextSection]
205 nonewline = wow
207 test_expect_success 'really really mean test' '
208 git config nextsection.nonewline wow &&
209 test_cmp expect .git/config
212 test_expect_success 'get value' '
213 echo alpha >expect &&
214 git config beta.haha >actual &&
215 test_cmp expect actual
218 cat > expect << EOF
219 [beta] ; silly comment # another comment
220 noIndent= sillyValue ; 'nother silly comment
222 # empty line
223 ; comment
224 [nextSection]
225 nonewline = wow
227 test_expect_success 'unset' '
228 git config --unset beta.haha &&
229 test_cmp expect .git/config
232 cat > expect << EOF
233 [beta] ; silly comment # another comment
234 noIndent= sillyValue ; 'nother silly comment
236 # empty line
237 ; comment
238 [nextSection]
239 nonewline = wow
240 NoNewLine = wow2 for me
242 test_expect_success 'multivar' '
243 git config nextsection.NoNewLine "wow2 for me" "for me$" &&
244 test_cmp expect .git/config
247 test_expect_success 'non-match' '
248 git config --get nextsection.nonewline !for
251 test_expect_success 'non-match value' '
252 echo wow >expect &&
253 git config --get nextsection.nonewline !for >actual &&
254 test_cmp expect actual
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
263 test_expect_success 'multi-valued get-all returns all' '
264 cat >expect <<-\EOF &&
266 wow2 for me
268 git config --get-all nextsection.nonewline >actual &&
269 test_cmp expect actual
272 cat > expect << EOF
273 [beta] ; silly comment # another comment
274 noIndent= sillyValue ; 'nother silly comment
276 # empty line
277 ; comment
278 [nextSection]
279 nonewline = wow3
280 NoNewLine = wow2 for me
282 test_expect_success 'multivar replace' '
283 git config nextsection.nonewline "wow3" "wow$" &&
284 test_cmp expect .git/config
287 test_expect_success 'ambiguous unset' '
288 test_must_fail git config --unset nextsection.nonewline
291 test_expect_success 'invalid unset' '
292 test_must_fail git config --unset somesection.nonewline
295 cat > expect << EOF
296 [beta] ; silly comment # another comment
297 noIndent= sillyValue ; 'nother silly comment
299 # empty line
300 ; comment
301 [nextSection]
302 NoNewLine = wow2 for me
305 test_expect_success 'multivar unset' '
306 git config --unset nextsection.nonewline "wow3$" &&
307 test_cmp expect .git/config
310 test_expect_success 'invalid key' 'test_must_fail git config inval.2key blabla'
312 test_expect_success 'correct key' 'git config 123456.a123 987'
314 test_expect_success 'hierarchical section' '
315 git config Version.1.2.3eX.Alpha beta
318 cat > expect << EOF
319 [beta] ; silly comment # another comment
320 noIndent= sillyValue ; 'nother silly comment
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
332 test_expect_success 'hierarchical section value' '
333 test_cmp expect .git/config
336 cat > expect << EOF
337 beta.noindent=sillyValue
338 nextsection.nonewline=wow2 for me
339 123456.a123=987
340 version.1.2.3eX.alpha=beta
343 test_expect_success 'working --list' '
344 git config --list > output &&
345 test_cmp expect output
347 cat > expect << EOF
350 test_expect_success '--list without repo produces empty output' '
351 git --git-dir=nonexistent config --list >output &&
352 test_cmp expect output
355 cat > expect << EOF
356 beta.noindent
357 nextsection.nonewline
358 123456.a123
359 version.1.2.3eX.alpha
362 test_expect_success '--name-only --list' '
363 git config --name-only --list >output &&
364 test_cmp expect output
367 cat > expect << EOF
368 beta.noindent sillyValue
369 nextsection.nonewline wow2 for me
372 test_expect_success '--get-regexp' '
373 git config --get-regexp in >output &&
374 test_cmp expect output
377 cat > expect << EOF
378 beta.noindent
379 nextsection.nonewline
382 test_expect_success '--name-only --get-regexp' '
383 git config --name-only --get-regexp in >output &&
384 test_cmp expect output
387 cat > expect << EOF
388 wow2 for me
389 wow4 for you
392 test_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
398 cat > .git/config << EOF
399 [novalue]
400 variable
401 [emptyvalue]
402 variable =
405 test_expect_success 'get variable with no value' '
406 git config --get novalue.variable ^$
409 test_expect_success 'get variable with empty value' '
410 git config --get emptyvalue.variable ^$
413 echo novalue.variable > expect
415 test_expect_success 'get-regexp variable with no value' '
416 git config --get-regexp novalue > output &&
417 test_cmp expect output
420 echo 'novalue.variable true' > expect
422 test_expect_success 'get-regexp --bool variable with no value' '
423 git config --bool --get-regexp novalue > output &&
424 test_cmp expect output
427 echo 'emptyvalue.variable ' > expect
429 test_expect_success 'get-regexp variable with empty value' '
430 git config --get-regexp emptyvalue > output &&
431 test_cmp expect output
434 echo true > expect
436 test_expect_success 'get bool variable with no value' '
437 git config --bool novalue.variable > output &&
438 test_cmp expect output
441 echo false > expect
443 test_expect_success 'get bool variable with empty value' '
444 git config --bool emptyvalue.variable > output &&
445 test_cmp expect output
448 test_expect_success 'no arguments, but no crash' '
449 test_must_fail git config >output 2>&1 &&
450 test_i18ngrep usage output
453 cat > .git/config << EOF
454 [a.b]
455 c = d
458 cat > expect << EOF
459 [a.b]
460 c = d
462 x = y
465 test_expect_success 'new section is partial match of another' '
466 git config a.x y &&
467 test_cmp expect .git/config
470 cat > expect << EOF
471 [a.b]
472 c = d
474 x = y
475 b = c
477 x = y
480 test_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
486 test_expect_success 'alternative --file (non-existing file should fail)' '
487 test_must_fail git config --file non-existing-config -l
490 cat > other-config << EOF
491 [ein]
492 bahn = strasse
495 cat > expect << EOF
496 ein.bahn=strasse
499 test_expect_success 'alternative GIT_CONFIG' '
500 GIT_CONFIG=other-config git config --list >output &&
501 test_cmp expect output
504 test_expect_success 'alternative GIT_CONFIG (--file)' '
505 git config --file other-config --list >output &&
506 test_cmp expect output
509 test_expect_success 'alternative GIT_CONFIG (--file=-)' '
510 git config --file - --list <other-config >output &&
511 test_cmp expect output
514 test_expect_success 'setting a value in stdin is an error' '
515 test_must_fail git config --file - some.value foo
518 test_expect_success 'editing stdin is an error' '
519 test_must_fail git config --file - --edit
522 test_expect_success 'refer config from subdirectory' '
523 mkdir x &&
525 cd x &&
526 echo strasse >expect &&
527 git config --get --file ../other-config ein.bahn >actual &&
528 test_cmp expect actual
533 test_expect_success 'refer config from subdirectory via --file' '
535 cd x &&
536 git config --file=../other-config --get ein.bahn >actual &&
537 test_cmp expect actual
541 cat > expect << EOF
542 [ein]
543 bahn = strasse
544 [anwohner]
545 park = ausweis
548 test_expect_success '--set in alternative file' '
549 git config --file=other-config anwohner.park ausweis &&
550 test_cmp expect other-config
553 cat > .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"]
561 weird
564 test_expect_success 'rename section' '
565 git config --rename-section branch.eins branch.zwei
568 cat > expect << EOF
569 # Hallo
570 #Bello
571 [branch "zwei"]
572 x = 1
573 [branch "zwei"]
574 y = 1
575 [branch "1 234 blabl/a"]
576 weird
579 test_expect_success 'rename succeeded' '
580 test_cmp expect .git/config
583 test_expect_success 'rename non-existing section' '
584 test_must_fail git config --rename-section \
585 branch."world domination" branch.drei
588 test_expect_success 'rename succeeded' '
589 test_cmp expect .git/config
592 test_expect_success 'rename another section' '
593 git config --rename-section branch."1 234 blabl/a" branch.drei
596 cat > expect << EOF
597 # Hallo
598 #Bello
599 [branch "zwei"]
600 x = 1
601 [branch "zwei"]
602 y = 1
603 [branch "drei"]
604 weird
607 test_expect_success 'rename succeeded' '
608 test_cmp expect .git/config
611 cat >> .git/config << EOF
612 [branch "vier"] z = 1
615 test_expect_success 'rename a section with a var on the same line' '
616 git config --rename-section branch.vier branch.zwei
619 cat > expect << EOF
620 # Hallo
621 #Bello
622 [branch "zwei"]
623 x = 1
624 [branch "zwei"]
625 y = 1
626 [branch "drei"]
627 weird
628 [branch "zwei"]
629 z = 1
632 test_expect_success 'rename succeeded' '
633 test_cmp expect .git/config
636 test_expect_success 'renaming empty section name is rejected' '
637 test_must_fail git config --rename-section branch.zwei ""
640 test_expect_success 'renaming to bogus section is rejected' '
641 test_must_fail git config --rename-section branch.zwei "bogus name"
644 cat >> .git/config << EOF
645 [branch "zwei"] a = 1 [branch "vier"]
648 test_expect_success 'remove section' '
649 git config --remove-section branch.zwei
652 cat > expect << EOF
653 # Hallo
654 #Bello
655 [branch "drei"]
656 weird
659 test_expect_success 'section was removed properly' '
660 test_cmp expect .git/config
663 cat > expect << EOF
664 [gitcvs]
665 enabled = true
666 dbname = %Ggitcvs2.%a.%m.sqlite
667 [gitcvs "ext"]
668 dbname = %Ggitcvs1.%a.%m.sqlite
671 test_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
680 test_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
690 test_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
697 test_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
706 test_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
712 test_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
717 cat > expect << EOF
718 true
719 false
720 true
721 false
722 true
723 false
724 true
725 false
728 test_expect_success bool '
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
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'
746 test_expect_success 'invalid bool (--get)' '
748 git config bool.nobool foobar &&
749 test_must_fail git config --bool --get bool.nobool'
751 test_expect_success 'invalid bool (set)' '
753 test_must_fail git config --bool bool.nobool foobar'
755 cat > 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
767 test_expect_success 'set --bool' '
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'
780 cat > expect <<\EOF
781 [int]
782 val1 = 1
783 val2 = -1
784 val3 = 5242880
787 test_expect_success 'set --int' '
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
796 test_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
807 cat >expect <<-\EOF &&
808 true
809 true
810 false
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
826 cat >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
838 test_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
850 cat >expect <<\EOF
851 [path]
852 home = ~/
853 normal = /dev/null
854 trailingtilde = foo~
857 test_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'
864 if test_have_prereq !MINGW && test "${HOME+set}"
865 then
866 test_set_prereq HOMEVAR
869 cat >expect <<EOF
870 $HOME/
871 /dev/null
872 foo~
875 test_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
882 cat >expect <<\EOF
883 /dev/null
884 foo~
887 test_expect_success !MINGW 'get --path copes with unset $HOME' '
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
899 test_expect_success 'get --path barfs on boolean variable' '
900 echo "[path]bool" >.git/config &&
901 test_must_fail git config --get --path path.bool
904 test_expect_success 'get --expiry-date' '
905 rel="3.weeks.5.days.00:00" &&
906 rel_out="$rel ->" &&
907 cat >.git/config <<-\EOF &&
908 [date]
909 valid1 = "3.weeks.5.days 00:00"
910 valid2 = "Fri Jun 4 15:46:55 2010"
911 valid3 = "2017/11/11 11:11:11PM"
912 valid4 = "2017/11/10 09:08:07 PM"
913 valid5 = "never"
914 invalid1 = "abc"
916 cat >expect <<-EOF &&
917 $(test-date timestamp $rel)
918 1275666415
919 1510441871
920 1510348087
924 echo "$rel_out $(git config --expiry-date date.valid1)"
925 git config --expiry-date date.valid2 &&
926 git config --expiry-date date.valid3 &&
927 git config --expiry-date date.valid4 &&
928 git config --expiry-date date.valid5
929 } >actual &&
930 test_cmp expect actual &&
931 test_must_fail git config --expiry-date date.invalid1
934 test_expect_success 'get --type=color' '
935 rm .git/config &&
936 git config foo.color "red" &&
937 git config --get --type=color foo.color >actual.raw &&
938 test_decode_color <actual.raw >actual &&
939 echo "<RED>" >expect &&
940 test_cmp expect actual
943 cat >expect << EOF
944 [foo]
945 color = red
948 test_expect_success 'set --type=color' '
949 rm .git/config &&
950 git config --type=color foo.color "red" &&
951 test_cmp expect .git/config
954 test_expect_success 'get --type=color barfs on non-color' '
955 echo "[foo]bar=not-a-color" >.git/config &&
956 test_must_fail git config --get --type=color foo.bar
959 test_expect_success 'set --type=color barfs on non-color' '
960 test_must_fail git config --type=color foo.color "not-a-color" 2>error &&
961 test_i18ngrep "cannot parse color" error
964 cat > expect << EOF
965 [quote]
966 leading = " test"
967 ending = "test "
968 semicolon = "test;test"
969 hash = "test#test"
971 test_expect_success 'quoting' '
972 rm -f .git/config &&
973 git config quote.leading " test" &&
974 git config quote.ending "test " &&
975 git config quote.semicolon "test;test" &&
976 git config quote.hash "test#test" &&
977 test_cmp expect .git/config
980 test_expect_success 'key with newline' '
981 test_must_fail git config "key.with
982 newline" 123'
984 test_expect_success 'value with newline' 'git config key.sub value.with\\\
985 newline'
987 cat > .git/config <<\EOF
988 [section]
989 ; comment \
990 continued = cont\
991 inued
992 noncont = not continued ; \
993 quotecont = "cont;\
994 inued"
997 cat > expect <<\EOF
998 section.continued=continued
999 section.noncont=not continued
1000 section.quotecont=cont;inued
1003 test_expect_success 'value continued on next line' '
1004 git config --list > result &&
1005 test_cmp result expect
1008 cat > .git/config <<\EOF
1009 [section "sub=section"]
1010 val1 = foo=bar
1011 val2 = foo\nbar
1012 val3 = \n\n
1013 val4 =
1014 val5
1017 cat > expect <<\EOF
1018 section.sub=section.val1
1019 foo=barQsection.sub=section.val2
1021 barQsection.sub=section.val3
1024 Qsection.sub=section.val4
1025 Qsection.sub=section.val5Q
1027 test_expect_success '--null --list' '
1028 git config --null --list >result.raw &&
1029 nul_to_q <result.raw >result &&
1030 echo >>result &&
1031 test_cmp expect result
1034 test_expect_success '--null --get-regexp' '
1035 git config --null --get-regexp "val[0-9]" >result.raw &&
1036 nul_to_q <result.raw >result &&
1037 echo >>result &&
1038 test_cmp expect result
1041 test_expect_success 'inner whitespace kept verbatim' '
1042 git config section.val "foo bar" &&
1043 echo "foo bar" >expect &&
1044 git config section.val >actual &&
1045 test_cmp expect actual
1048 test_expect_success SYMLINKS 'symlinked configuration' '
1049 ln -s notyet myconfig &&
1050 git config --file=myconfig test.frotz nitfol &&
1051 test -h myconfig &&
1052 test -f notyet &&
1053 test "z$(git config --file=notyet test.frotz)" = znitfol &&
1054 git config --file=myconfig test.xyzzy rezrov &&
1055 test -h myconfig &&
1056 test -f notyet &&
1057 cat >expect <<-\EOF &&
1058 nitfol
1059 rezrov
1062 git config --file=notyet test.frotz &&
1063 git config --file=notyet test.xyzzy
1064 } >actual &&
1065 test_cmp expect actual
1068 test_expect_success 'nonexistent configuration' '
1069 test_must_fail git config --file=doesnotexist --list &&
1070 test_must_fail git config --file=doesnotexist test.xyzzy
1073 test_expect_success SYMLINKS 'symlink to nonexistent configuration' '
1074 ln -s doesnotexist linktonada &&
1075 ln -s linktonada linktolinktonada &&
1076 test_must_fail git config --file=linktonada --list &&
1077 test_must_fail git config --file=linktolinktonada --list
1080 test_expect_success 'check split_cmdline return' "
1081 git config alias.split-cmdline-fix 'echo \"' &&
1082 test_must_fail git split-cmdline-fix &&
1083 echo foo > foo &&
1084 git add foo &&
1085 git commit -m 'initial commit' &&
1086 git config branch.master.mergeoptions 'echo \"' &&
1087 test_must_fail git merge master
1090 test_expect_success 'git -c "key=value" support' '
1091 cat >expect <<-\EOF &&
1092 value
1093 value
1094 true
1097 git -c core.name=value config core.name &&
1098 git -c foo.CamelCase=value config foo.camelcase &&
1099 git -c foo.flag config --bool foo.flag
1100 } >actual &&
1101 test_cmp expect actual &&
1102 test_must_fail git -c name=value config core.name
1105 # We just need a type-specifier here that cares about the
1106 # distinction internally between a NULL boolean and a real
1107 # string (because most of git's internal parsers do care).
1108 # Using "--path" works, but we do not otherwise care about
1109 # its semantics.
1110 test_expect_success 'git -c can represent empty string' '
1111 echo >expect &&
1112 git -c foo.empty= config --path foo.empty >actual &&
1113 test_cmp expect actual
1116 test_expect_success 'key sanity-checking' '
1117 test_must_fail git config foo=bar &&
1118 test_must_fail git config foo=.bar &&
1119 test_must_fail git config foo.ba=r &&
1120 test_must_fail git config foo.1bar &&
1121 test_must_fail git config foo."ba
1122 z".bar &&
1123 test_must_fail git config . false &&
1124 test_must_fail git config .foo false &&
1125 test_must_fail git config foo. false &&
1126 test_must_fail git config .foo. false &&
1127 git config foo.bar true &&
1128 git config foo."ba =z".bar false
1131 test_expect_success 'git -c works with aliases of builtins' '
1132 git config alias.checkconfig "-c foo.check=bar config foo.check" &&
1133 echo bar >expect &&
1134 git checkconfig >actual &&
1135 test_cmp expect actual
1138 test_expect_success 'aliases can be CamelCased' '
1139 test_config alias.CamelCased "rev-parse HEAD" &&
1140 git CamelCased >out &&
1141 git rev-parse HEAD >expect &&
1142 test_cmp expect out
1145 test_expect_success 'git -c does not split values on equals' '
1146 echo "value with = in it" >expect &&
1147 git -c core.foo="value with = in it" config core.foo >actual &&
1148 test_cmp expect actual
1151 test_expect_success 'git -c dies on bogus config' '
1152 test_must_fail git -c core.bare=foo rev-parse
1155 test_expect_success 'git -c complains about empty key' '
1156 test_must_fail git -c "=foo" rev-parse
1159 test_expect_success 'git -c complains about empty key and value' '
1160 test_must_fail git -c "" rev-parse
1163 test_expect_success 'multiple git -c appends config' '
1164 test_config alias.x "!git -c x.two=2 config --get-regexp ^x\.*" &&
1165 cat >expect <<-\EOF &&
1166 x.one 1
1167 x.two 2
1169 git -c x.one=1 x >actual &&
1170 test_cmp expect actual
1173 test_expect_success 'last one wins: two level vars' '
1175 # sec.var and sec.VAR are the same variable, as the first
1176 # and the last level of a configuration variable name is
1177 # case insensitive.
1179 echo VAL >expect &&
1181 git -c sec.var=val -c sec.VAR=VAL config --get sec.var >actual &&
1182 test_cmp expect actual &&
1183 git -c SEC.var=val -c sec.var=VAL config --get sec.var >actual &&
1184 test_cmp expect actual &&
1186 git -c sec.var=val -c sec.VAR=VAL config --get SEC.var >actual &&
1187 test_cmp expect actual &&
1188 git -c SEC.var=val -c sec.var=VAL config --get sec.VAR >actual &&
1189 test_cmp expect actual
1192 test_expect_success 'last one wins: three level vars' '
1194 # v.a.r and v.A.r are not the same variable, as the middle
1195 # level of a three-level configuration variable name is
1196 # case sensitive.
1198 echo val >expect &&
1199 git -c v.a.r=val -c v.A.r=VAL config --get v.a.r >actual &&
1200 test_cmp expect actual &&
1201 git -c v.a.r=val -c v.A.r=VAL config --get V.a.R >actual &&
1202 test_cmp expect actual &&
1204 # v.a.r and V.a.R are the same variable, as the first
1205 # and the last level of a configuration variable name is
1206 # case insensitive.
1208 echo VAL >expect &&
1209 git -c v.a.r=val -c v.a.R=VAL config --get v.a.r >actual &&
1210 test_cmp expect actual &&
1211 git -c v.a.r=val -c V.a.r=VAL config --get v.a.r >actual &&
1212 test_cmp expect actual &&
1213 git -c v.a.r=val -c v.a.R=VAL config --get V.a.R >actual &&
1214 test_cmp expect actual &&
1215 git -c v.a.r=val -c V.a.r=VAL config --get V.a.R >actual &&
1216 test_cmp expect actual
1219 for VAR in a .a a. a.0b a."b c". a."b c".0d
1221 test_expect_success "git -c $VAR=VAL rejects invalid '$VAR'" '
1222 test_must_fail git -c "$VAR=VAL" config -l
1224 done
1226 for VAR in a.b a."b c".d
1228 test_expect_success "git -c $VAR=VAL works with valid '$VAR'" '
1229 echo VAL >expect &&
1230 git -c "$VAR=VAL" config --get "$VAR" >actual &&
1231 test_cmp expect actual
1233 done
1235 test_expect_success 'git -c is not confused by empty environment' '
1236 GIT_CONFIG_PARAMETERS="" git -c x.one=1 config --list
1239 sq="'"
1240 test_expect_success 'detect bogus GIT_CONFIG_PARAMETERS' '
1241 cat >expect <<-\EOF &&
1242 env.one one
1243 env.two two
1245 GIT_CONFIG_PARAMETERS="${sq}env.one=one${sq} ${sq}env.two=two${sq}" \
1246 git config --get-regexp "env.*" >actual &&
1247 test_cmp expect actual &&
1249 cat >expect <<-EOF &&
1250 env.one one${sq}
1251 env.two two
1253 GIT_CONFIG_PARAMETERS="${sq}env.one=one${sq}\\$sq$sq$sq ${sq}env.two=two${sq}" \
1254 git config --get-regexp "env.*" >actual &&
1255 test_cmp expect actual &&
1257 test_must_fail env \
1258 GIT_CONFIG_PARAMETERS="${sq}env.one=one${sq}\\$sq ${sq}env.two=two${sq}" \
1259 git config --get-regexp "env.*"
1262 test_expect_success 'git config --edit works' '
1263 git config -f tmp test.value no &&
1264 echo test.value=yes >expect &&
1265 GIT_EDITOR="echo [test]value=yes >" git config -f tmp --edit &&
1266 git config -f tmp --list >actual &&
1267 test_cmp expect actual
1270 test_expect_success 'git config --edit respects core.editor' '
1271 git config -f tmp test.value no &&
1272 echo test.value=yes >expect &&
1273 test_config core.editor "echo [test]value=yes >" &&
1274 git config -f tmp --edit &&
1275 git config -f tmp --list >actual &&
1276 test_cmp expect actual
1279 # malformed configuration files
1280 test_expect_success 'barf on syntax error' '
1281 cat >.git/config <<-\EOF &&
1282 # broken section line
1283 [section]
1284 key garbage
1286 test_must_fail git config --get section.key >actual 2>error &&
1287 test_i18ngrep " line 3 " error
1290 test_expect_success 'barf on incomplete section header' '
1291 cat >.git/config <<-\EOF &&
1292 # broken section line
1293 [section
1294 key = value
1296 test_must_fail git config --get section.key >actual 2>error &&
1297 test_i18ngrep " line 2 " error
1300 test_expect_success 'barf on incomplete string' '
1301 cat >.git/config <<-\EOF &&
1302 # broken section line
1303 [section]
1304 key = "value string
1306 test_must_fail git config --get section.key >actual 2>error &&
1307 test_i18ngrep " line 3 " error
1310 test_expect_success 'urlmatch' '
1311 cat >.git/config <<-\EOF &&
1312 [http]
1313 sslVerify
1314 [http "https://weak.example.com"]
1315 sslVerify = false
1316 cookieFile = /tmp/cookie.txt
1319 test_expect_code 1 git config --bool --get-urlmatch doesnt.exist https://good.example.com >actual &&
1320 test_must_be_empty actual &&
1322 echo true >expect &&
1323 git config --bool --get-urlmatch http.SSLverify https://good.example.com >actual &&
1324 test_cmp expect actual &&
1326 echo false >expect &&
1327 git config --bool --get-urlmatch http.sslverify https://weak.example.com >actual &&
1328 test_cmp expect actual &&
1331 echo http.cookiefile /tmp/cookie.txt &&
1332 echo http.sslverify false
1333 } >expect &&
1334 git config --get-urlmatch HTTP https://weak.example.com >actual &&
1335 test_cmp expect actual
1338 test_expect_success 'urlmatch favors more specific URLs' '
1339 cat >.git/config <<-\EOF &&
1340 [http "https://example.com/"]
1341 cookieFile = /tmp/root.txt
1342 [http "https://example.com/subdirectory"]
1343 cookieFile = /tmp/subdirectory.txt
1344 [http "https://user@example.com/"]
1345 cookieFile = /tmp/user.txt
1346 [http "https://averylonguser@example.com/"]
1347 cookieFile = /tmp/averylonguser.txt
1348 [http "https://preceding.example.com"]
1349 cookieFile = /tmp/preceding.txt
1350 [http "https://*.example.com"]
1351 cookieFile = /tmp/wildcard.txt
1352 [http "https://*.example.com/wildcardwithsubdomain"]
1353 cookieFile = /tmp/wildcardwithsubdomain.txt
1354 [http "https://trailing.example.com"]
1355 cookieFile = /tmp/trailing.txt
1356 [http "https://user@*.example.com/"]
1357 cookieFile = /tmp/wildcardwithuser.txt
1358 [http "https://sub.example.com/"]
1359 cookieFile = /tmp/sub.txt
1362 echo http.cookiefile /tmp/root.txt >expect &&
1363 git config --get-urlmatch HTTP https://example.com >actual &&
1364 test_cmp expect actual &&
1366 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1367 git config --get-urlmatch HTTP https://example.com/subdirectory >actual &&
1368 test_cmp expect actual &&
1370 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1371 git config --get-urlmatch HTTP https://example.com/subdirectory/nested >actual &&
1372 test_cmp expect actual &&
1374 echo http.cookiefile /tmp/user.txt >expect &&
1375 git config --get-urlmatch HTTP https://user@example.com/ >actual &&
1376 test_cmp expect actual &&
1378 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1379 git config --get-urlmatch HTTP https://averylonguser@example.com/subdirectory >actual &&
1380 test_cmp expect actual &&
1382 echo http.cookiefile /tmp/preceding.txt >expect &&
1383 git config --get-urlmatch HTTP https://preceding.example.com >actual &&
1384 test_cmp expect actual &&
1386 echo http.cookiefile /tmp/wildcard.txt >expect &&
1387 git config --get-urlmatch HTTP https://wildcard.example.com >actual &&
1388 test_cmp expect actual &&
1390 echo http.cookiefile /tmp/sub.txt >expect &&
1391 git config --get-urlmatch HTTP https://sub.example.com/wildcardwithsubdomain >actual &&
1392 test_cmp expect actual &&
1394 echo http.cookiefile /tmp/trailing.txt >expect &&
1395 git config --get-urlmatch HTTP https://trailing.example.com >actual &&
1396 test_cmp expect actual &&
1398 echo http.cookiefile /tmp/sub.txt >expect &&
1399 git config --get-urlmatch HTTP https://user@sub.example.com >actual &&
1400 test_cmp expect actual
1403 test_expect_success 'urlmatch with wildcard' '
1404 cat >.git/config <<-\EOF &&
1405 [http]
1406 sslVerify
1407 [http "https://*.example.com"]
1408 sslVerify = false
1409 cookieFile = /tmp/cookie.txt
1412 test_expect_code 1 git config --bool --get-urlmatch doesnt.exist https://good.example.com >actual &&
1413 test_must_be_empty actual &&
1415 echo true >expect &&
1416 git config --bool --get-urlmatch http.SSLverify https://example.com >actual &&
1417 test_cmp expect actual &&
1419 echo true >expect &&
1420 git config --bool --get-urlmatch http.SSLverify https://good-example.com >actual &&
1421 test_cmp expect actual &&
1423 echo true >expect &&
1424 git config --bool --get-urlmatch http.sslverify https://deep.nested.example.com >actual &&
1425 test_cmp expect actual &&
1427 echo false >expect &&
1428 git config --bool --get-urlmatch http.sslverify https://good.example.com >actual &&
1429 test_cmp expect actual &&
1432 echo http.cookiefile /tmp/cookie.txt &&
1433 echo http.sslverify false
1434 } >expect &&
1435 git config --get-urlmatch HTTP https://good.example.com >actual &&
1436 test_cmp expect actual &&
1438 echo http.sslverify >expect &&
1439 git config --get-urlmatch HTTP https://more.example.com.au >actual &&
1440 test_cmp expect actual
1443 # good section hygiene
1444 test_expect_failure 'unsetting the last key in a section removes header' '
1445 cat >.git/config <<-\EOF &&
1446 # some generic comment on the configuration file itself
1447 # a comment specific to this "section" section.
1448 [section]
1449 # some intervening lines
1450 # that should also be dropped
1452 key = value
1453 # please be careful when you update the above variable
1456 cat >expect <<-\EOF &&
1457 # some generic comment on the configuration file itself
1460 git config --unset section.key &&
1461 test_cmp expect .git/config
1464 test_expect_failure 'adding a key into an empty section reuses header' '
1465 cat >.git/config <<-\EOF &&
1466 [section]
1469 q_to_tab >expect <<-\EOF &&
1470 [section]
1471 Qkey = value
1474 git config section.key value &&
1475 test_cmp expect .git/config
1478 test_expect_success POSIXPERM,PERL 'preserves existing permissions' '
1479 chmod 0600 .git/config &&
1480 git config imap.pass Hunter2 &&
1481 perl -e \
1482 "die q(badset) if ((stat(q(.git/config)))[2] & 07777) != 0600" &&
1483 git config --rename-section imap pop &&
1484 perl -e \
1485 "die q(badrename) if ((stat(q(.git/config)))[2] & 07777) != 0600"
1488 ! test_have_prereq MINGW ||
1489 HOME="$(pwd)" # convert to Windows path
1491 test_expect_success 'set up --show-origin tests' '
1492 INCLUDE_DIR="$HOME/include" &&
1493 mkdir -p "$INCLUDE_DIR" &&
1494 cat >"$INCLUDE_DIR"/absolute.include <<-\EOF &&
1495 [user]
1496 absolute = include
1498 cat >"$INCLUDE_DIR"/relative.include <<-\EOF &&
1499 [user]
1500 relative = include
1502 cat >"$HOME"/.gitconfig <<-EOF &&
1503 [user]
1504 global = true
1505 override = global
1506 [include]
1507 path = "$INCLUDE_DIR/absolute.include"
1509 cat >.git/config <<-\EOF
1510 [user]
1511 local = true
1512 override = local
1513 [include]
1514 path = ../include/relative.include
1518 test_expect_success '--show-origin with --list' '
1519 cat >expect <<-EOF &&
1520 file:$HOME/.gitconfig user.global=true
1521 file:$HOME/.gitconfig user.override=global
1522 file:$HOME/.gitconfig include.path=$INCLUDE_DIR/absolute.include
1523 file:$INCLUDE_DIR/absolute.include user.absolute=include
1524 file:.git/config user.local=true
1525 file:.git/config user.override=local
1526 file:.git/config include.path=../include/relative.include
1527 file:.git/../include/relative.include user.relative=include
1528 command line: user.cmdline=true
1530 git -c user.cmdline=true config --list --show-origin >output &&
1531 test_cmp expect output
1534 test_expect_success '--show-origin with --list --null' '
1535 cat >expect <<-EOF &&
1536 file:$HOME/.gitconfigQuser.global
1537 trueQfile:$HOME/.gitconfigQuser.override
1538 globalQfile:$HOME/.gitconfigQinclude.path
1539 $INCLUDE_DIR/absolute.includeQfile:$INCLUDE_DIR/absolute.includeQuser.absolute
1540 includeQfile:.git/configQuser.local
1541 trueQfile:.git/configQuser.override
1542 localQfile:.git/configQinclude.path
1543 ../include/relative.includeQfile:.git/../include/relative.includeQuser.relative
1544 includeQcommand line:Quser.cmdline
1545 trueQ
1547 git -c user.cmdline=true config --null --list --show-origin >output.raw &&
1548 nul_to_q <output.raw >output &&
1549 # The here-doc above adds a newline that the --null output would not
1550 # include. Add it here to make the two comparable.
1551 echo >>output &&
1552 test_cmp expect output
1555 test_expect_success '--show-origin with single file' '
1556 cat >expect <<-\EOF &&
1557 file:.git/config user.local=true
1558 file:.git/config user.override=local
1559 file:.git/config include.path=../include/relative.include
1561 git config --local --list --show-origin >output &&
1562 test_cmp expect output
1565 test_expect_success '--show-origin with --get-regexp' '
1566 cat >expect <<-EOF &&
1567 file:$HOME/.gitconfig user.global true
1568 file:.git/config user.local true
1570 git config --show-origin --get-regexp "user\.[g|l].*" >output &&
1571 test_cmp expect output
1574 test_expect_success '--show-origin getting a single key' '
1575 cat >expect <<-\EOF &&
1576 file:.git/config local
1578 git config --show-origin user.override >output &&
1579 test_cmp expect output
1582 test_expect_success 'set up custom config file' '
1583 CUSTOM_CONFIG_FILE="file\" (dq) and spaces.conf" &&
1584 cat >"$CUSTOM_CONFIG_FILE" <<-\EOF
1585 [user]
1586 custom = true
1590 test_expect_success !MINGW '--show-origin escape special file name characters' '
1591 cat >expect <<-\EOF &&
1592 file:"file\" (dq) and spaces.conf" user.custom=true
1594 git config --file "$CUSTOM_CONFIG_FILE" --show-origin --list >output &&
1595 test_cmp expect output
1598 test_expect_success '--show-origin stdin' '
1599 cat >expect <<-\EOF &&
1600 standard input: user.custom=true
1602 git config --file - --show-origin --list <"$CUSTOM_CONFIG_FILE" >output &&
1603 test_cmp expect output
1606 test_expect_success '--show-origin stdin with file include' '
1607 cat >"$INCLUDE_DIR"/stdin.include <<-EOF &&
1608 [user]
1609 stdin = include
1611 cat >expect <<-EOF &&
1612 file:$INCLUDE_DIR/stdin.include include
1614 echo "[include]path=\"$INCLUDE_DIR\"/stdin.include" \
1615 | git config --show-origin --includes --file - user.stdin >output &&
1616 test_cmp expect output
1619 test_expect_success !MINGW '--show-origin blob' '
1620 cat >expect <<-\EOF &&
1621 blob:a9d9f9e555b5c6f07cbe09d3f06fe3df11e09c08 user.custom=true
1623 blob=$(git hash-object -w "$CUSTOM_CONFIG_FILE") &&
1624 git config --blob=$blob --show-origin --list >output &&
1625 test_cmp expect output
1628 test_expect_success !MINGW '--show-origin blob ref' '
1629 cat >expect <<-\EOF &&
1630 blob:"master:file\" (dq) and spaces.conf" user.custom=true
1632 git add "$CUSTOM_CONFIG_FILE" &&
1633 git commit -m "new config file" &&
1634 git config --blob=master:"$CUSTOM_CONFIG_FILE" --show-origin --list >output &&
1635 test_cmp expect output
1638 test_expect_success '--local requires a repo' '
1639 # we expect 128 to ensure that we do not simply
1640 # fail to find anything and return code "1"
1641 test_expect_code 128 nongit git config --local foo.bar
1644 cat >.git/config <<-\EOF &&
1645 [core]
1646 foo = true
1647 number = 10
1648 big = 1M
1651 test_expect_success 'identical modern --type specifiers are allowed' '
1652 git config --type=int --type=int core.big >actual &&
1653 echo 1048576 >expect &&
1654 test_cmp expect actual
1657 test_expect_success 'identical legacy --type specifiers are allowed' '
1658 git config --int --int core.big >actual &&
1659 echo 1048576 >expect &&
1660 test_cmp expect actual
1663 test_expect_success 'identical mixed --type specifiers are allowed' '
1664 git config --int --type=int core.big >actual &&
1665 echo 1048576 >expect &&
1666 test_cmp expect actual
1669 test_expect_success 'non-identical modern --type specifiers are not allowed' '
1670 test_must_fail git config --type=int --type=bool core.big 2>error &&
1671 test_i18ngrep "only one type at a time" error
1674 test_expect_success 'non-identical legacy --type specifiers are not allowed' '
1675 test_must_fail git config --int --bool core.big 2>error &&
1676 test_i18ngrep "only one type at a time" error
1679 test_expect_success 'non-identical mixed --type specifiers are not allowed' '
1680 test_must_fail git config --type=int --bool core.big 2>error &&
1681 test_i18ngrep "only one type at a time" error
1684 test_expect_success '--type allows valid type specifiers' '
1685 echo "true" >expect &&
1686 git config --type=bool core.foo >actual &&
1687 test_cmp expect actual
1690 test_expect_success '--no-type unsets type specifiers' '
1691 echo "10" >expect &&
1692 git config --type=bool --no-type core.number >actual &&
1693 test_cmp expect actual
1696 test_expect_success 'unset type specifiers may be reset to conflicting ones' '
1697 echo 1048576 >expect &&
1698 git config --type=bool --no-type --type=int core.big >actual &&
1699 test_cmp expect actual
1702 test_expect_success '--type rejects unknown specifiers' '
1703 test_must_fail git config --type=nonsense core.foo 2>error &&
1704 test_i18ngrep "unrecognized --type argument" error
1707 test_done