3 # Copyright (c) 2005 Johannes Schindelin
6 test_description
='Test git config in different settings'
10 test_expect_success
'clear default config' '
18 test_expect_success
'initial' '
19 git config core.penguin "little blue" &&
20 test_cmp expect .git/config
28 test_expect_success
'mixed case' '
29 git config Core.Movie BadPhysics &&
30 test_cmp expect .git/config
40 test_expect_success
'similar section' '
41 git config Cores.WhatEver Second &&
42 test_cmp expect .git/config
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
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 &&
94 [section "SubSection"]
98 git config section.subsection.key >actual &&
99 test_cmp expect actual &&
101 git config section.SubSection.key >actual &&
102 test_cmp expect actual
105 cat > .git
/config
<<\EOF
113 test_expect_success
'unset with cont. lines' '
114 git config --unset beta.baz
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
131 haha ="beta" # last silly comment
134 [nextSection] noNewline = ouch
137 cp .git
/config .git
/config2
139 test_expect_success
'multiple unset' '
140 git config --unset-all beta.haha
144 [beta] ; silly comment # another comment
145 noIndent= sillyValue ; 'nother silly 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
165 test_expect_success
'--replace-all' '
166 git config --replace-all beta.haha gamma
170 [beta] ; silly comment # another comment
171 noIndent= sillyValue ; 'nother silly comment
176 [nextSection] noNewline = ouch
179 test_expect_success
'all replaced' '
180 test_cmp expect .git/config
184 [beta] ; silly comment # another comment
185 noIndent= sillyValue ; 'nother silly comment
190 [nextSection] noNewline = ouch
192 test_expect_success
'really mean test' '
193 git config beta.haha alpha &&
194 test_cmp expect .git/config
198 [beta] ; silly comment # another comment
199 noIndent= sillyValue ; 'nother silly comment
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
219 [beta] ; silly comment # another comment
220 noIndent= sillyValue ; 'nother silly comment
227 test_expect_success
'unset' '
228 git config --unset beta.haha &&
229 test_cmp expect .git/config
233 [beta] ; silly comment # another comment
234 noIndent= sillyValue ; 'nother silly comment
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' '
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 &&
268 git config --get-all nextsection.nonewline >actual &&
269 test_cmp expect actual
273 [beta] ; silly comment # another comment
274 noIndent= sillyValue ; 'nother silly comment
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
296 [beta] ; silly comment # another comment
297 noIndent= sillyValue ; 'nother silly comment
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
319 [beta] ; silly comment # another comment
320 noIndent= sillyValue ; 'nother silly comment
325 NoNewLine = wow2 for me
332 test_expect_success
'hierarchical section value' '
333 test_cmp expect .git/config
337 beta.noindent=sillyValue
338 nextsection.nonewline=wow2 for me
340 version.1.2.3eX.alpha=beta
343 test_expect_success
'working --list' '
344 git config --list > output &&
345 test_cmp expect output
350 test_expect_success
'--list without repo produces empty output' '
351 git --git-dir=nonexistent config --list >output &&
352 test_cmp expect output
357 nextsection.nonewline
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
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
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
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
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
436 test_expect_success
'get bool variable with no value' '
437 git config --bool novalue.variable > output &&
438 test_cmp expect output
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
465 test_expect_success
'new section is partial match of another' '
467 test_cmp expect .git/config
480 test_expect_success
'new variable inserts into proper section' '
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
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' '
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' '
536 git config --file=../other-config --get ein.bahn >actual &&
537 test_cmp expect actual
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
560 [branch "1 234 blabl/a"]
564 test_expect_success
'rename section' '
565 git config --rename-section branch.eins branch.zwei
575 [branch "1 234 blabl/a"]
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
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
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
659 test_expect_success
'section was removed properly' '
660 test_cmp expect .git/config
666 dbname = %Ggitcvs2.%a.%m.sqlite
668 dbname = %Ggitcvs1.%a.%m.sqlite
671 test_expect_success
'section ending' '
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 &&
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
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 &&
741 git config --bool --get bool.true$i >>result
742 git config --bool --get bool.false$i >>result
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'
767 test_expect_success
'set --bool' '
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'
787 test_expect_success
'set --int' '
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 &&
807 cat >expect <<-\EOF &&
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
823 test_cmp expect actual
838 test_expect_success
'set --bool-or-int' '
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
857 test_expect_success
!MINGW
'set --path' '
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}"
866 test_set_prereq HOMEVAR
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
887 test_expect_success
!MINGW
'get --path copes with unset $HOME' '
890 test_must_fail git config --get --path path.home \
892 git config --get --path path.normal >>result &&
893 git config --get --path path.trailingtilde >>result
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" &&
907 cat >.git/config <<-\EOF &&
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"
916 cat >expect <<-EOF &&
917 $(test-date timestamp $rel)
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
930 test_cmp expect actual &&
931 test_must_fail git config --expiry-date date.invalid1
938 semicolon = "test;test"
941 test_expect_success
'quoting' '
943 git config quote.leading " test" &&
944 git config quote.ending "test " &&
945 git config quote.semicolon "test;test" &&
946 git config quote.hash "test#test" &&
947 test_cmp expect .git/config
950 test_expect_success
'key with newline' '
951 test_must_fail git config "key.with
954 test_expect_success
'value with newline' 'git config key.sub value.with\\\
957 cat > .git
/config
<<\EOF
962 noncont
= not continued
; \
968 section.continued
=continued
969 section.noncont
=not continued
970 section.quotecont
=cont
;inued
973 test_expect_success
'value continued on next line' '
974 git config --list > result &&
975 test_cmp result expect
978 cat > .git
/config
<<\EOF
979 [section
"sub=section"]
988 section.sub
=section.val1
989 foo
=barQsection.sub
=section.val2
991 barQsection.sub
=section.val3
994 Qsection.sub
=section.val4
995 Qsection.sub
=section.val5Q
997 test_expect_success
'--null --list' '
998 git config --null --list >result.raw &&
999 nul_to_q <result.raw >result &&
1001 test_cmp expect result
1004 test_expect_success
'--null --get-regexp' '
1005 git config --null --get-regexp "val[0-9]" >result.raw &&
1006 nul_to_q <result.raw >result &&
1008 test_cmp expect result
1011 test_expect_success
'inner whitespace kept verbatim' '
1012 git config section.val "foo bar" &&
1013 echo "foo bar" >expect &&
1014 git config section.val >actual &&
1015 test_cmp expect actual
1018 test_expect_success SYMLINKS
'symlinked configuration' '
1019 ln -s notyet myconfig &&
1020 git config --file=myconfig test.frotz nitfol &&
1023 test "z$(git config --file=notyet test.frotz)" = znitfol &&
1024 git config --file=myconfig test.xyzzy rezrov &&
1027 cat >expect <<-\EOF &&
1032 git config --file=notyet test.frotz &&
1033 git config --file=notyet test.xyzzy
1035 test_cmp expect actual
1038 test_expect_success
'nonexistent configuration' '
1039 test_must_fail git config --file=doesnotexist --list &&
1040 test_must_fail git config --file=doesnotexist test.xyzzy
1043 test_expect_success SYMLINKS
'symlink to nonexistent configuration' '
1044 ln -s doesnotexist linktonada &&
1045 ln -s linktonada linktolinktonada &&
1046 test_must_fail git config --file=linktonada --list &&
1047 test_must_fail git config --file=linktolinktonada --list
1050 test_expect_success
'check split_cmdline return' "
1051 git config alias.split-cmdline-fix 'echo \"' &&
1052 test_must_fail git split-cmdline-fix &&
1055 git commit -m 'initial commit' &&
1056 git config branch.master.mergeoptions 'echo \"' &&
1057 test_must_fail git merge master
1060 test_expect_success
'git -c "key=value" support' '
1061 cat >expect <<-\EOF &&
1067 git -c core.name=value config core.name &&
1068 git -c foo.CamelCase=value config foo.camelcase &&
1069 git -c foo.flag config --bool foo.flag
1071 test_cmp expect actual &&
1072 test_must_fail git -c name=value config core.name
1075 # We just need a type-specifier here that cares about the
1076 # distinction internally between a NULL boolean and a real
1077 # string (because most of git's internal parsers do care).
1078 # Using "--path" works, but we do not otherwise care about
1080 test_expect_success
'git -c can represent empty string' '
1082 git -c foo.empty= config --path foo.empty >actual &&
1083 test_cmp expect actual
1086 test_expect_success
'key sanity-checking' '
1087 test_must_fail git config foo=bar &&
1088 test_must_fail git config foo=.bar &&
1089 test_must_fail git config foo.ba=r &&
1090 test_must_fail git config foo.1bar &&
1091 test_must_fail git config foo."ba
1093 test_must_fail git config . false &&
1094 test_must_fail git config .foo false &&
1095 test_must_fail git config foo. false &&
1096 test_must_fail git config .foo. false &&
1097 git config foo.bar true &&
1098 git config foo."ba =z".bar false
1101 test_expect_success
'git -c works with aliases of builtins' '
1102 git config alias.checkconfig "-c foo.check=bar config foo.check" &&
1104 git checkconfig >actual &&
1105 test_cmp expect actual
1108 test_expect_success
'aliases can be CamelCased' '
1109 test_config alias.CamelCased "rev-parse HEAD" &&
1110 git CamelCased >out &&
1111 git rev-parse HEAD >expect &&
1115 test_expect_success
'git -c does not split values on equals' '
1116 echo "value with = in it" >expect &&
1117 git -c core.foo="value with = in it" config core.foo >actual &&
1118 test_cmp expect actual
1121 test_expect_success
'git -c dies on bogus config' '
1122 test_must_fail git -c core.bare=foo rev-parse
1125 test_expect_success
'git -c complains about empty key' '
1126 test_must_fail git -c "=foo" rev-parse
1129 test_expect_success
'git -c complains about empty key and value' '
1130 test_must_fail git -c "" rev-parse
1133 test_expect_success
'multiple git -c appends config' '
1134 test_config alias.x "!git -c x.two=2 config --get-regexp ^x\.*" &&
1135 cat >expect <<-\EOF &&
1139 git -c x.one=1 x >actual &&
1140 test_cmp expect actual
1143 test_expect_success
'last one wins: two level vars' '
1145 # sec.var and sec.VAR are the same variable, as the first
1146 # and the last level of a configuration variable name is
1151 git -c sec.var=val -c sec.VAR=VAL config --get sec.var >actual &&
1152 test_cmp expect actual &&
1153 git -c SEC.var=val -c sec.var=VAL config --get sec.var >actual &&
1154 test_cmp expect actual &&
1156 git -c sec.var=val -c sec.VAR=VAL config --get SEC.var >actual &&
1157 test_cmp expect actual &&
1158 git -c SEC.var=val -c sec.var=VAL config --get sec.VAR >actual &&
1159 test_cmp expect actual
1162 test_expect_success
'last one wins: three level vars' '
1164 # v.a.r and v.A.r are not the same variable, as the middle
1165 # level of a three-level configuration variable name is
1169 git -c v.a.r=val -c v.A.r=VAL config --get v.a.r >actual &&
1170 test_cmp expect actual &&
1171 git -c v.a.r=val -c v.A.r=VAL config --get V.a.R >actual &&
1172 test_cmp expect actual &&
1174 # v.a.r and V.a.R are the same variable, as the first
1175 # and the last level of a configuration variable name is
1179 git -c v.a.r=val -c v.a.R=VAL config --get v.a.r >actual &&
1180 test_cmp expect actual &&
1181 git -c v.a.r=val -c V.a.r=VAL config --get v.a.r >actual &&
1182 test_cmp expect actual &&
1183 git -c v.a.r=val -c v.a.R=VAL config --get V.a.R >actual &&
1184 test_cmp expect actual &&
1185 git -c v.a.r=val -c V.a.r=VAL config --get V.a.R >actual &&
1186 test_cmp expect actual
1189 for VAR
in a .a a. a
.0b a.
"b c". a.
"b c".0d
1191 test_expect_success
"git -c $VAR=VAL rejects invalid '$VAR'" '
1192 test_must_fail git -c "$VAR=VAL" config -l
1196 for VAR
in a.b a.
"b c".d
1198 test_expect_success
"git -c $VAR=VAL works with valid '$VAR'" '
1200 git -c "$VAR=VAL" config --get "$VAR" >actual &&
1201 test_cmp expect actual
1205 test_expect_success
'git -c is not confused by empty environment' '
1206 GIT_CONFIG_PARAMETERS="" git -c x.one=1 config --list
1209 test_expect_success
'git config --edit works' '
1210 git config -f tmp test.value no &&
1211 echo test.value=yes >expect &&
1212 GIT_EDITOR="echo [test]value=yes >" git config -f tmp --edit &&
1213 git config -f tmp --list >actual &&
1214 test_cmp expect actual
1217 test_expect_success
'git config --edit respects core.editor' '
1218 git config -f tmp test.value no &&
1219 echo test.value=yes >expect &&
1220 test_config core.editor "echo [test]value=yes >" &&
1221 git config -f tmp --edit &&
1222 git config -f tmp --list >actual &&
1223 test_cmp expect actual
1226 # malformed configuration files
1227 test_expect_success
'barf on syntax error' '
1228 cat >.git/config <<-\EOF &&
1229 # broken section line
1233 test_must_fail git config --get section.key >actual 2>error &&
1234 test_i18ngrep " line 3 " error
1237 test_expect_success
'barf on incomplete section header' '
1238 cat >.git/config <<-\EOF &&
1239 # broken section line
1243 test_must_fail git config --get section.key >actual 2>error &&
1244 test_i18ngrep " line 2 " error
1247 test_expect_success
'barf on incomplete string' '
1248 cat >.git/config <<-\EOF &&
1249 # broken section line
1253 test_must_fail git config --get section.key >actual 2>error &&
1254 test_i18ngrep " line 3 " error
1257 test_expect_success
'urlmatch' '
1258 cat >.git/config <<-\EOF &&
1261 [http "https://weak.example.com"]
1263 cookieFile = /tmp/cookie.txt
1266 test_expect_code 1 git config --bool --get-urlmatch doesnt.exist https://good.example.com >actual &&
1267 test_must_be_empty actual &&
1269 echo true >expect &&
1270 git config --bool --get-urlmatch http.SSLverify https://good.example.com >actual &&
1271 test_cmp expect actual &&
1273 echo false >expect &&
1274 git config --bool --get-urlmatch http.sslverify https://weak.example.com >actual &&
1275 test_cmp expect actual &&
1278 echo http.cookiefile /tmp/cookie.txt &&
1279 echo http.sslverify false
1281 git config --get-urlmatch HTTP https://weak.example.com >actual &&
1282 test_cmp expect actual
1285 test_expect_success
'urlmatch favors more specific URLs' '
1286 cat >.git/config <<-\EOF &&
1287 [http "https://example.com/"]
1288 cookieFile = /tmp/root.txt
1289 [http "https://example.com/subdirectory"]
1290 cookieFile = /tmp/subdirectory.txt
1291 [http "https://user@example.com/"]
1292 cookieFile = /tmp/user.txt
1293 [http "https://averylonguser@example.com/"]
1294 cookieFile = /tmp/averylonguser.txt
1295 [http "https://preceding.example.com"]
1296 cookieFile = /tmp/preceding.txt
1297 [http "https://*.example.com"]
1298 cookieFile = /tmp/wildcard.txt
1299 [http "https://*.example.com/wildcardwithsubdomain"]
1300 cookieFile = /tmp/wildcardwithsubdomain.txt
1301 [http "https://trailing.example.com"]
1302 cookieFile = /tmp/trailing.txt
1303 [http "https://user@*.example.com/"]
1304 cookieFile = /tmp/wildcardwithuser.txt
1305 [http "https://sub.example.com/"]
1306 cookieFile = /tmp/sub.txt
1309 echo http.cookiefile /tmp/root.txt >expect &&
1310 git config --get-urlmatch HTTP https://example.com >actual &&
1311 test_cmp expect actual &&
1313 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1314 git config --get-urlmatch HTTP https://example.com/subdirectory >actual &&
1315 test_cmp expect actual &&
1317 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1318 git config --get-urlmatch HTTP https://example.com/subdirectory/nested >actual &&
1319 test_cmp expect actual &&
1321 echo http.cookiefile /tmp/user.txt >expect &&
1322 git config --get-urlmatch HTTP https://user@example.com/ >actual &&
1323 test_cmp expect actual &&
1325 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1326 git config --get-urlmatch HTTP https://averylonguser@example.com/subdirectory >actual &&
1327 test_cmp expect actual &&
1329 echo http.cookiefile /tmp/preceding.txt >expect &&
1330 git config --get-urlmatch HTTP https://preceding.example.com >actual &&
1331 test_cmp expect actual &&
1333 echo http.cookiefile /tmp/wildcard.txt >expect &&
1334 git config --get-urlmatch HTTP https://wildcard.example.com >actual &&
1335 test_cmp expect actual &&
1337 echo http.cookiefile /tmp/sub.txt >expect &&
1338 git config --get-urlmatch HTTP https://sub.example.com/wildcardwithsubdomain >actual &&
1339 test_cmp expect actual &&
1341 echo http.cookiefile /tmp/trailing.txt >expect &&
1342 git config --get-urlmatch HTTP https://trailing.example.com >actual &&
1343 test_cmp expect actual &&
1345 echo http.cookiefile /tmp/sub.txt >expect &&
1346 git config --get-urlmatch HTTP https://user@sub.example.com >actual &&
1347 test_cmp expect actual
1350 test_expect_success
'urlmatch with wildcard' '
1351 cat >.git/config <<-\EOF &&
1354 [http "https://*.example.com"]
1356 cookieFile = /tmp/cookie.txt
1359 test_expect_code 1 git config --bool --get-urlmatch doesnt.exist https://good.example.com >actual &&
1360 test_must_be_empty actual &&
1362 echo true >expect &&
1363 git config --bool --get-urlmatch http.SSLverify https://example.com >actual &&
1364 test_cmp expect actual &&
1366 echo true >expect &&
1367 git config --bool --get-urlmatch http.SSLverify https://good-example.com >actual &&
1368 test_cmp expect actual &&
1370 echo true >expect &&
1371 git config --bool --get-urlmatch http.sslverify https://deep.nested.example.com >actual &&
1372 test_cmp expect actual &&
1374 echo false >expect &&
1375 git config --bool --get-urlmatch http.sslverify https://good.example.com >actual &&
1376 test_cmp expect actual &&
1379 echo http.cookiefile /tmp/cookie.txt &&
1380 echo http.sslverify false
1382 git config --get-urlmatch HTTP https://good.example.com >actual &&
1383 test_cmp expect actual &&
1385 echo http.sslverify >expect &&
1386 git config --get-urlmatch HTTP https://more.example.com.au >actual &&
1387 test_cmp expect actual
1390 # good section hygiene
1391 test_expect_failure
'unsetting the last key in a section removes header' '
1392 cat >.git/config <<-\EOF &&
1393 # some generic comment on the configuration file itself
1394 # a comment specific to this "section" section.
1396 # some intervening lines
1397 # that should also be dropped
1400 # please be careful when you update the above variable
1403 cat >expect <<-\EOF &&
1404 # some generic comment on the configuration file itself
1407 git config --unset section.key &&
1408 test_cmp expect .git/config
1411 test_expect_failure
'adding a key into an empty section reuses header' '
1412 cat >.git/config <<-\EOF &&
1416 q_to_tab >expect <<-\EOF &&
1421 git config section.key value &&
1422 test_cmp expect .git/config
1425 test_expect_success POSIXPERM
,PERL
'preserves existing permissions' '
1426 chmod 0600 .git/config &&
1427 git config imap.pass Hunter2 &&
1429 "die q(badset) if ((stat(q(.git/config)))[2] & 07777) != 0600" &&
1430 git config --rename-section imap pop &&
1432 "die q(badrename) if ((stat(q(.git/config)))[2] & 07777) != 0600"
1435 ! test_have_prereq MINGW ||
1436 HOME
="$(pwd)" # convert to Windows path
1438 test_expect_success
'set up --show-origin tests' '
1439 INCLUDE_DIR="$HOME/include" &&
1440 mkdir -p "$INCLUDE_DIR" &&
1441 cat >"$INCLUDE_DIR"/absolute.include <<-\EOF &&
1445 cat >"$INCLUDE_DIR"/relative.include <<-\EOF &&
1449 cat >"$HOME"/.gitconfig <<-EOF &&
1454 path = "$INCLUDE_DIR/absolute.include"
1456 cat >.git/config <<-\EOF
1461 path = ../include/relative.include
1465 test_expect_success
'--show-origin with --list' '
1466 cat >expect <<-EOF &&
1467 file:$HOME/.gitconfig user.global=true
1468 file:$HOME/.gitconfig user.override=global
1469 file:$HOME/.gitconfig include.path=$INCLUDE_DIR/absolute.include
1470 file:$INCLUDE_DIR/absolute.include user.absolute=include
1471 file:.git/config user.local=true
1472 file:.git/config user.override=local
1473 file:.git/config include.path=../include/relative.include
1474 file:.git/../include/relative.include user.relative=include
1475 command line: user.cmdline=true
1477 git -c user.cmdline=true config --list --show-origin >output &&
1478 test_cmp expect output
1481 test_expect_success
'--show-origin with --list --null' '
1482 cat >expect <<-EOF &&
1483 file:$HOME/.gitconfigQuser.global
1484 trueQfile:$HOME/.gitconfigQuser.override
1485 globalQfile:$HOME/.gitconfigQinclude.path
1486 $INCLUDE_DIR/absolute.includeQfile:$INCLUDE_DIR/absolute.includeQuser.absolute
1487 includeQfile:.git/configQuser.local
1488 trueQfile:.git/configQuser.override
1489 localQfile:.git/configQinclude.path
1490 ../include/relative.includeQfile:.git/../include/relative.includeQuser.relative
1491 includeQcommand line:Quser.cmdline
1494 git -c user.cmdline=true config --null --list --show-origin >output.raw &&
1495 nul_to_q <output.raw >output &&
1496 # The here-doc above adds a newline that the --null output would not
1497 # include. Add it here to make the two comparable.
1499 test_cmp expect output
1502 test_expect_success
'--show-origin with single file' '
1503 cat >expect <<-\EOF &&
1504 file:.git/config user.local=true
1505 file:.git/config user.override=local
1506 file:.git/config include.path=../include/relative.include
1508 git config --local --list --show-origin >output &&
1509 test_cmp expect output
1512 test_expect_success
'--show-origin with --get-regexp' '
1513 cat >expect <<-EOF &&
1514 file:$HOME/.gitconfig user.global true
1515 file:.git/config user.local true
1517 git config --show-origin --get-regexp "user\.[g|l].*" >output &&
1518 test_cmp expect output
1521 test_expect_success
'--show-origin getting a single key' '
1522 cat >expect <<-\EOF &&
1523 file:.git/config local
1525 git config --show-origin user.override >output &&
1526 test_cmp expect output
1529 test_expect_success
'set up custom config file' '
1530 CUSTOM_CONFIG_FILE="file\" (dq) and spaces.conf" &&
1531 cat >"$CUSTOM_CONFIG_FILE" <<-\EOF
1537 test_expect_success
!MINGW
'--show-origin escape special file name characters' '
1538 cat >expect <<-\EOF &&
1539 file:"file\" (dq) and spaces.conf" user.custom=true
1541 git config --file "$CUSTOM_CONFIG_FILE" --show-origin --list >output &&
1542 test_cmp expect output
1545 test_expect_success
'--show-origin stdin' '
1546 cat >expect <<-\EOF &&
1547 standard input: user.custom=true
1549 git config --file - --show-origin --list <"$CUSTOM_CONFIG_FILE" >output &&
1550 test_cmp expect output
1553 test_expect_success
'--show-origin stdin with file include' '
1554 cat >"$INCLUDE_DIR"/stdin.include <<-EOF &&
1558 cat >expect <<-EOF &&
1559 file:$INCLUDE_DIR/stdin.include include
1561 echo "[include]path=\"$INCLUDE_DIR\"/stdin.include" \
1562 | git config --show-origin --includes --file - user.stdin >output &&
1563 test_cmp expect output
1566 test_expect_success
!MINGW
'--show-origin blob' '
1567 cat >expect <<-\EOF &&
1568 blob:a9d9f9e555b5c6f07cbe09d3f06fe3df11e09c08 user.custom=true
1570 blob=$(git hash-object -w "$CUSTOM_CONFIG_FILE") &&
1571 git config --blob=$blob --show-origin --list >output &&
1572 test_cmp expect output
1575 test_expect_success
!MINGW
'--show-origin blob ref' '
1576 cat >expect <<-\EOF &&
1577 blob:"master:file\" (dq) and spaces.conf" user.custom=true
1579 git add "$CUSTOM_CONFIG_FILE" &&
1580 git commit -m "new config file" &&
1581 git config --blob=master:"$CUSTOM_CONFIG_FILE" --show-origin --list >output &&
1582 test_cmp expect output
1585 test_expect_success
'--local requires a repo' '
1586 # we expect 128 to ensure that we do not simply
1587 # fail to find anything and return code "1"
1588 test_expect_code 128 nongit git config --local foo.bar