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
114 test_expect_success 'unset with cont. lines' '
115 git config --unset beta.baz
125 test_expect_success 'unset with cont. lines is correct' 'test_cmp expect .git/config'
127 cat > .git/config << EOF
128 [beta] ; silly comment # another comment
129 noIndent= sillyValue ; 'nother silly comment
133 haha ="beta" # last silly comment
136 [nextSection] noNewline = ouch
139 cp .git/config .git/config2
141 test_expect_success 'multiple unset' '
142 git config --unset-all beta.haha
146 [beta] ; silly comment # another comment
147 noIndent= sillyValue ; 'nother silly comment
151 [nextSection] noNewline = ouch
154 test_expect_success 'multiple unset is correct' '
155 test_cmp expect .git/config
158 cp .git/config2 .git/config
160 test_expect_success '--replace-all missing value' '
161 test_must_fail git config --replace-all beta.haha &&
162 test_cmp .git/config2 .git/config
167 test_expect_success '--replace-all' '
168 git config --replace-all beta.haha gamma
172 [beta] ; silly comment # another comment
173 noIndent= sillyValue ; 'nother silly comment
178 [nextSection] noNewline = ouch
181 test_expect_success 'all replaced' '
182 test_cmp expect .git/config
186 [beta] ; silly comment # another comment
187 noIndent= sillyValue ; 'nother silly comment
192 [nextSection] noNewline = ouch
194 test_expect_success 'really mean test' '
195 git config beta.haha alpha &&
196 test_cmp expect .git/config
200 [beta] ; silly comment # another comment
201 noIndent= sillyValue ; 'nother silly comment
209 test_expect_success 'really really mean test' '
210 git config nextsection.nonewline wow &&
211 test_cmp expect .git/config
214 test_expect_success 'get value' '
215 echo alpha >expect &&
216 git config beta.haha >actual &&
217 test_cmp expect actual
221 [beta] ; silly comment # another comment
222 noIndent= sillyValue ; 'nother silly comment
229 test_expect_success 'unset' '
230 git config --unset beta.haha &&
231 test_cmp expect .git/config
235 [beta] ; silly comment # another comment
236 noIndent= sillyValue ; 'nother silly comment
242 NoNewLine = wow2 for me
244 test_expect_success 'multivar' '
245 git config nextsection.NoNewLine "wow2 for me" "for me$" &&
246 test_cmp expect .git/config
249 test_expect_success 'non-match' '
250 git config --get nextsection.nonewline !for
253 test_expect_success 'non-match value' '
255 git config --get nextsection.nonewline !for >actual &&
256 test_cmp expect actual
259 test_expect_success 'multi-valued get returns final one' '
260 echo "wow2 for me" >expect &&
261 git config --get nextsection.nonewline >actual &&
262 test_cmp expect actual
265 test_expect_success 'multi-valued get-all returns all' '
266 cat >expect <<-\EOF &&
270 git config --get-all nextsection.nonewline >actual &&
271 test_cmp expect actual
275 [beta] ; silly comment # another comment
276 noIndent= sillyValue ; 'nother silly comment
282 NoNewLine = wow2 for me
284 test_expect_success 'multivar replace' '
285 git config nextsection.nonewline "wow3" "wow$" &&
286 test_cmp expect .git/config
289 test_expect_success 'ambiguous unset' '
290 test_must_fail git config --unset nextsection.nonewline
293 test_expect_success 'invalid unset' '
294 test_must_fail git config --unset somesection.nonewline
298 [beta] ; silly comment # another comment
299 noIndent= sillyValue ; 'nother silly comment
304 NoNewLine = wow2 for me
307 test_expect_success 'multivar unset' '
308 git config --unset nextsection.nonewline "wow3$" &&
309 test_cmp expect .git/config
312 test_expect_success 'invalid key' 'test_must_fail git config inval.2key blabla'
314 test_expect_success 'correct key' 'git config 123456.a123 987'
316 test_expect_success 'hierarchical section' '
317 git config Version.1.2.3eX.Alpha beta
321 [beta] ; silly comment # another comment
322 noIndent= sillyValue ; 'nother silly comment
327 NoNewLine = wow2 for me
334 test_expect_success 'hierarchical section value' '
335 test_cmp expect .git/config
339 beta.noindent=sillyValue
340 nextsection.nonewline=wow2 for me
342 version.1.2.3eX.alpha=beta
345 test_expect_success 'working --list' '
346 git config --list > output &&
347 test_cmp expect output
352 test_expect_success '--list without repo produces empty output' '
353 git --git-dir=nonexistent config --list >output &&
354 test_cmp expect output
359 nextsection.nonewline
361 version.1.2.3eX.alpha
364 test_expect_success '--name-only --list' '
365 git config --name-only --list >output &&
366 test_cmp expect output
370 beta.noindent sillyValue
371 nextsection.nonewline wow2 for me
374 test_expect_success '--get-regexp' '
375 git config --get-regexp in >output &&
376 test_cmp expect output
381 nextsection.nonewline
384 test_expect_success '--name-only --get-regexp' '
385 git config --name-only --get-regexp in >output &&
386 test_cmp expect output
394 test_expect_success '--add' '
395 git config --add nextsection.nonewline "wow4 for you" &&
396 git config --get-all nextsection.nonewline > output &&
397 test_cmp expect output
400 cat > .git/config << EOF
407 test_expect_success 'get variable with no value' '
408 git config --get novalue.variable ^$
411 test_expect_success 'get variable with empty value' '
412 git config --get emptyvalue.variable ^$
415 echo novalue.variable > expect
417 test_expect_success 'get-regexp variable with no value' '
418 git config --get-regexp novalue > output &&
419 test_cmp expect output
422 echo 'novalue.variable true' > expect
424 test_expect_success 'get-regexp --bool variable with no value' '
425 git config --bool --get-regexp novalue > output &&
426 test_cmp expect output
429 echo 'emptyvalue.variable ' > expect
431 test_expect_success 'get-regexp variable with empty value' '
432 git config --get-regexp emptyvalue > output &&
433 test_cmp expect output
438 test_expect_success 'get bool variable with no value' '
439 git config --bool novalue.variable > output &&
440 test_cmp expect output
445 test_expect_success 'get bool variable with empty value' '
446 git config --bool emptyvalue.variable > output &&
447 test_cmp expect output
450 test_expect_success 'no arguments, but no crash' '
451 test_must_fail git config >output 2>&1 &&
452 test_i18ngrep usage output
455 cat > .git/config << EOF
467 test_expect_success 'new section is partial match of another' '
469 test_cmp expect .git/config
482 test_expect_success 'new variable inserts into proper section' '
485 test_cmp expect .git/config
488 test_expect_success 'alternative --file (non-existing file should fail)' '
489 test_must_fail git config --file non-existing-config -l
492 cat > other-config << EOF
501 test_expect_success 'alternative GIT_CONFIG' '
502 GIT_CONFIG=other-config git config --list >output &&
503 test_cmp expect output
506 test_expect_success 'alternative GIT_CONFIG (--file)' '
507 git config --file other-config --list >output &&
508 test_cmp expect output
511 test_expect_success 'alternative GIT_CONFIG (--file=-)' '
512 git config --file - --list <other-config >output &&
513 test_cmp expect output
516 test_expect_success 'setting a value in stdin is an error' '
517 test_must_fail git config --file - some.value foo
520 test_expect_success 'editing stdin is an error' '
521 test_must_fail git config --file - --edit
524 test_expect_success 'refer config from subdirectory' '
528 echo strasse >expect &&
529 git config --get --file ../other-config ein.bahn >actual &&
530 test_cmp expect actual
535 test_expect_success 'refer config from subdirectory via --file' '
538 git config --file=../other-config --get ein.bahn >actual &&
539 test_cmp expect actual
550 test_expect_success '--set in alternative file' '
551 git config --file=other-config anwohner.park ausweis &&
552 test_cmp expect other-config
555 cat > .git/config << EOF
562 [branch "1 234 blabl/a"]
566 test_expect_success 'rename section' '
567 git config --rename-section branch.eins branch.zwei
577 [branch "1 234 blabl/a"]
581 test_expect_success 'rename succeeded' '
582 test_cmp expect .git/config
585 test_expect_success 'rename non-existing section' '
586 test_must_fail git config --rename-section \
587 branch."world domination" branch.drei
590 test_expect_success 'rename succeeded' '
591 test_cmp expect .git/config
594 test_expect_success 'rename another section' '
595 git config --rename-section branch."1 234 blabl/a" branch.drei
609 test_expect_success 'rename succeeded' '
610 test_cmp expect .git/config
613 cat >> .git/config << EOF
614 [branch "vier"] z = 1
617 test_expect_success 'rename a section with a var on the same line' '
618 git config --rename-section branch.vier branch.zwei
634 test_expect_success 'rename succeeded' '
635 test_cmp expect .git/config
638 test_expect_success 'renaming empty section name is rejected' '
639 test_must_fail git config --rename-section branch.zwei ""
642 test_expect_success 'renaming to bogus section is rejected' '
643 test_must_fail git config --rename-section branch.zwei "bogus name"
646 cat >> .git/config << EOF
647 [branch "zwei"] a = 1 [branch "vier"]
650 test_expect_success 'remove section' '
651 git config --remove-section branch.zwei
661 test_expect_success 'section was removed properly' '
662 test_cmp expect .git/config
668 dbname = %Ggitcvs2.%a.%m.sqlite
670 dbname = %Ggitcvs1.%a.%m.sqlite
673 test_expect_success 'section ending' '
675 git config gitcvs.enabled true &&
676 git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
677 git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
678 test_cmp expect .git/config
682 test_expect_success numbers '
683 git config kilo.gram 1k &&
684 git config mega.ton 1m &&
686 echo 1048576 >>expect &&
687 git config --int --get kilo.gram >actual &&
688 git config --int --get mega.ton >>actual &&
689 test_cmp expect actual
692 test_expect_success '--int is at least 64 bits' '
693 git config giga.watts 121g &&
694 echo 129922760704 >expect &&
695 git config --int --get giga.watts >actual &&
696 test_cmp expect actual
699 test_expect_success 'invalid unit' '
700 git config aninvalid.unit "1auto" &&
701 echo 1auto >expect &&
702 git config aninvalid.unit >actual &&
703 test_cmp expect actual &&
704 test_must_fail git config --int --get aninvalid.unit 2>actual &&
705 test_i18ngrep "bad numeric config value .1auto. for .aninvalid.unit. in file .git/config: invalid unit" actual
708 test_expect_success 'line number is reported correctly' '
709 printf "[bool]\n\tvar\n" >invalid &&
710 test_must_fail git config -f invalid --path bool.var 2>actual &&
711 test_i18ngrep "line 2" actual
714 test_expect_success 'invalid stdin config' '
715 echo "[broken" | test_must_fail git config --list --file - >output 2>&1 &&
716 test_i18ngrep "bad config line 1 in standard input" output
730 test_expect_success bool '
732 git config bool.true1 01 &&
733 git config bool.true2 -1 &&
734 git config bool.true3 YeS &&
735 git config bool.true4 true &&
736 git config bool.false1 000 &&
737 git config bool.false2 "" &&
738 git config bool.false3 nO &&
739 git config bool.false4 FALSE &&
743 git config --bool --get bool.true$i >>result
744 git config --bool --get bool.false$i >>result
746 test_cmp expect result'
748 test_expect_success 'invalid bool (--get)' '
750 git config bool.nobool foobar &&
751 test_must_fail git config --bool --get bool.nobool'
753 test_expect_success 'invalid bool (set)' '
755 test_must_fail git config --bool bool.nobool foobar'
769 test_expect_success 'set --bool' '
772 git config --bool bool.true1 01 &&
773 git config --bool bool.true2 -1 &&
774 git config --bool bool.true3 YeS &&
775 git config --bool bool.true4 true &&
776 git config --bool bool.false1 000 &&
777 git config --bool bool.false2 "" &&
778 git config --bool bool.false3 nO &&
779 git config --bool bool.false4 FALSE &&
780 test_cmp expect .git/config'
789 test_expect_success 'set --int' '
792 git config --int int.val1 01 &&
793 git config --int int.val2 -1 &&
794 git config --int int.val3 5m &&
795 test_cmp expect .git/config
798 test_expect_success 'get --bool-or-int' '
799 cat >.git/config <<-\EOF &&
809 cat >expect <<-\EOF &&
818 git config --bool-or-int bool.true1 &&
819 git config --bool-or-int bool.true2 &&
820 git config --bool-or-int bool.false &&
821 git config --bool-or-int int.int1 &&
822 git config --bool-or-int int.int2 &&
823 git config --bool-or-int int.int3
825 test_cmp expect actual
840 test_expect_success 'set --bool-or-int' '
842 git config --bool-or-int bool.true1 true &&
843 git config --bool-or-int bool.false1 false &&
844 git config --bool-or-int bool.true2 yes &&
845 git config --bool-or-int bool.false2 no &&
846 git config --bool-or-int int.int1 0 &&
847 git config --bool-or-int int.int2 1 &&
848 git config --bool-or-int int.int3 -1 &&
849 test_cmp expect .git/config
859 test_expect_success !MINGW 'set --path' '
861 git config --path path.home "~/" &&
862 git config --path path.normal "/dev/null" &&
863 git config --path path.trailingtilde "foo~" &&
864 test_cmp expect .git/config'
866 if test_have_prereq !MINGW && test "${HOME+set}"
868 test_set_prereq HOMEVAR
877 test_expect_success HOMEVAR 'get --path' '
878 git config --get --path path.home > result &&
879 git config --get --path path.normal >> result &&
880 git config --get --path path.trailingtilde >> result &&
881 test_cmp expect result
889 test_expect_success !MINGW 'get --path copes with unset $HOME' '
892 test_must_fail git config --get --path path.home \
894 git config --get --path path.normal >>result &&
895 git config --get --path path.trailingtilde >>result
897 test_i18ngrep "[Ff]ailed to expand.*~/" msg &&
898 test_cmp expect result
901 test_expect_success 'get --path barfs on boolean variable' '
902 echo "[path]bool" >.git/config &&
903 test_must_fail git config --get --path path.bool
906 test_expect_success 'get --expiry-date' '
907 rel="3.weeks.5.days.00:00" &&
909 cat >.git/config <<-\EOF &&
911 valid1 = "3.weeks.5.days 00:00"
912 valid2 = "Fri Jun 4 15:46:55 2010"
913 valid3 = "2017/11/11 11:11:11PM"
914 valid4 = "2017/11/10 09:08:07 PM"
918 cat >expect <<-EOF &&
919 $(test-tool date timestamp $rel)
926 echo "$rel_out $(git config --expiry-date date.valid1)"
927 git config --expiry-date date.valid2 &&
928 git config --expiry-date date.valid3 &&
929 git config --expiry-date date.valid4 &&
930 git config --expiry-date date.valid5
932 test_cmp expect actual &&
933 test_must_fail git config --expiry-date date.invalid1
936 test_expect_success 'get --type=color' '
938 git config foo.color "red" &&
939 git config --get --type=color foo.color >actual.raw &&
940 test_decode_color <actual.raw >actual &&
941 echo "<RED>" >expect &&
942 test_cmp expect actual
950 test_expect_success 'set --type=color' '
952 git config --type=color foo.color "red" &&
953 test_cmp expect .git/config
956 test_expect_success 'get --type=color barfs on non-color' '
957 echo "[foo]bar=not-a-color" >.git/config &&
958 test_must_fail git config --get --type=color foo.bar
961 test_expect_success 'set --type=color barfs on non-color' '
962 test_must_fail git config --type=color foo.color "not-a-color" 2>error &&
963 test_i18ngrep "cannot parse color" error
970 semicolon = "test;test"
973 test_expect_success 'quoting' '
975 git config quote.leading " test" &&
976 git config quote.ending "test " &&
977 git config quote.semicolon "test;test" &&
978 git config quote.hash "test#test" &&
979 test_cmp expect .git/config
982 test_expect_success 'key with newline' '
983 test_must_fail git config "key.with
986 test_expect_success 'value with newline' 'git config key.sub value.with\\\
989 cat > .git/config <<\EOF
994 noncont = not continued ; \
1000 section.continued=continued
1001 section.noncont=not continued
1002 section.quotecont=cont;inued
1005 test_expect_success 'value continued on next line' '
1006 git config --list > result &&
1007 test_cmp result expect
1010 cat > .git/config <<\EOF
1011 [section "sub=section"]
1020 section.sub=section.val1
1021 foo=barQsection.sub=section.val2
1023 barQsection.sub=section.val3
1026 Qsection.sub=section.val4
1027 Qsection.sub=section.val5Q
1029 test_expect_success '--null --list' '
1030 git config --null --list >result.raw &&
1031 nul_to_q <result.raw >result &&
1033 test_cmp expect result
1036 test_expect_success '--null --get-regexp' '
1037 git config --null --get-regexp "val[0-9]" >result.raw &&
1038 nul_to_q <result.raw >result &&
1040 test_cmp expect result
1043 test_expect_success 'inner whitespace kept verbatim' '
1044 git config section.val "foo bar" &&
1045 echo "foo bar" >expect &&
1046 git config section.val >actual &&
1047 test_cmp expect actual
1050 test_expect_success SYMLINKS 'symlinked configuration' '
1051 ln -s notyet myconfig &&
1052 git config --file=myconfig test.frotz nitfol &&
1055 test "z$(git config --file=notyet test.frotz)" = znitfol &&
1056 git config --file=myconfig test.xyzzy rezrov &&
1059 cat >expect <<-\EOF &&
1064 git config --file=notyet test.frotz &&
1065 git config --file=notyet test.xyzzy
1067 test_cmp expect actual
1070 test_expect_success 'nonexistent configuration' '
1071 test_must_fail git config --file=doesnotexist --list &&
1072 test_must_fail git config --file=doesnotexist test.xyzzy
1075 test_expect_success SYMLINKS 'symlink to nonexistent configuration' '
1076 ln -s doesnotexist linktonada &&
1077 ln -s linktonada linktolinktonada &&
1078 test_must_fail git config --file=linktonada --list &&
1079 test_must_fail git config --file=linktolinktonada --list
1082 test_expect_success 'check split_cmdline return' "
1083 git config alias.split-cmdline-fix 'echo \"' &&
1084 test_must_fail git split-cmdline-fix &&
1087 git commit -m 'initial commit' &&
1088 git config branch.master.mergeoptions 'echo \"' &&
1089 test_must_fail git merge master
1092 test_expect_success 'git -c "key=value" support' '
1093 cat >expect <<-\EOF &&
1099 git -c core.name=value config core.name &&
1100 git -c foo.CamelCase=value config foo.camelcase &&
1101 git -c foo.flag config --bool foo.flag
1103 test_cmp expect actual &&
1104 test_must_fail git -c name=value config core.name
1107 # We just need a type-specifier here that cares about the
1108 # distinction internally between a NULL boolean and a real
1109 # string (because most of git's internal parsers do care).
1110 # Using "--path" works, but we do not otherwise care about
1112 test_expect_success 'git -c can represent empty string' '
1114 git -c foo.empty= config --path foo.empty >actual &&
1115 test_cmp expect actual
1118 test_expect_success 'key sanity-checking' '
1119 test_must_fail git config foo=bar &&
1120 test_must_fail git config foo=.bar &&
1121 test_must_fail git config foo.ba=r &&
1122 test_must_fail git config foo.1bar &&
1123 test_must_fail git config foo."ba
1125 test_must_fail git config . false &&
1126 test_must_fail git config .foo false &&
1127 test_must_fail git config foo. false &&
1128 test_must_fail git config .foo. false &&
1129 git config foo.bar true &&
1130 git config foo."ba =z".bar false
1133 test_expect_success 'git -c works with aliases of builtins' '
1134 git config alias.checkconfig "-c foo.check=bar config foo.check" &&
1136 git checkconfig >actual &&
1137 test_cmp expect actual
1140 test_expect_success 'aliases can be CamelCased' '
1141 test_config alias.CamelCased "rev-parse HEAD" &&
1142 git CamelCased >out &&
1143 git rev-parse HEAD >expect &&
1147 test_expect_success 'git -c does not split values on equals' '
1148 echo "value with = in it" >expect &&
1149 git -c core.foo="value with = in it" config core.foo >actual &&
1150 test_cmp expect actual
1153 test_expect_success 'git -c dies on bogus config' '
1154 test_must_fail git -c core.bare=foo rev-parse
1157 test_expect_success 'git -c complains about empty key' '
1158 test_must_fail git -c "=foo" rev-parse
1161 test_expect_success 'git -c complains about empty key and value' '
1162 test_must_fail git -c "" rev-parse
1165 test_expect_success 'multiple git -c appends config' '
1166 test_config alias.x "!git -c x.two=2 config --get-regexp ^x\.*" &&
1167 cat >expect <<-\EOF &&
1171 git -c x.one=1 x >actual &&
1172 test_cmp expect actual
1175 test_expect_success 'last one wins: two level vars' '
1177 # sec.var and sec.VAR are the same variable, as the first
1178 # and the last level of a configuration variable name is
1183 git -c sec.var=val -c sec.VAR=VAL config --get sec.var >actual &&
1184 test_cmp expect actual &&
1185 git -c SEC.var=val -c sec.var=VAL config --get sec.var >actual &&
1186 test_cmp expect actual &&
1188 git -c sec.var=val -c sec.VAR=VAL config --get SEC.var >actual &&
1189 test_cmp expect actual &&
1190 git -c SEC.var=val -c sec.var=VAL config --get sec.VAR >actual &&
1191 test_cmp expect actual
1194 test_expect_success 'last one wins: three level vars' '
1196 # v.a.r and v.A.r are not the same variable, as the middle
1197 # level of a three-level configuration variable name is
1201 git -c v.a.r=val -c v.A.r=VAL config --get v.a.r >actual &&
1202 test_cmp expect actual &&
1203 git -c v.a.r=val -c v.A.r=VAL config --get V.a.R >actual &&
1204 test_cmp expect actual &&
1206 # v.a.r and V.a.R are the same variable, as the first
1207 # and the last level of a configuration variable name is
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 &&
1217 git -c v.a.r=val -c V.a.r=VAL config --get V.a.R >actual &&
1218 test_cmp expect actual
1221 for VAR in a .a a. a.0b a."b c". a."b c".0d
1223 test_expect_success "git -c $VAR=VAL rejects invalid '$VAR'" '
1224 test_must_fail git -c "$VAR=VAL" config -l
1228 for VAR in a.b a."b c".d
1230 test_expect_success "git -c $VAR=VAL works with valid '$VAR'" '
1232 git -c "$VAR=VAL" config --get "$VAR" >actual &&
1233 test_cmp expect actual
1237 test_expect_success 'git -c is not confused by empty environment' '
1238 GIT_CONFIG_PARAMETERS="" git -c x.one=1 config --list
1242 test_expect_success 'detect bogus GIT_CONFIG_PARAMETERS' '
1243 cat >expect <<-\EOF &&
1247 GIT_CONFIG_PARAMETERS="${sq}env.one=one${sq} ${sq}env.two=two${sq}" \
1248 git config --get-regexp "env.*" >actual &&
1249 test_cmp expect actual &&
1251 cat >expect <<-EOF &&
1255 GIT_CONFIG_PARAMETERS="${sq}env.one=one${sq}\\$sq$sq$sq ${sq}env.two=two${sq}" \
1256 git config --get-regexp "env.*" >actual &&
1257 test_cmp expect actual &&
1259 test_must_fail env \
1260 GIT_CONFIG_PARAMETERS="${sq}env.one=one${sq}\\$sq ${sq}env.two=two${sq}" \
1261 git config --get-regexp "env.*"
1264 test_expect_success 'git config --edit works' '
1265 git config -f tmp test.value no &&
1266 echo test.value=yes >expect &&
1267 GIT_EDITOR="echo [test]value=yes >" git config -f tmp --edit &&
1268 git config -f tmp --list >actual &&
1269 test_cmp expect actual
1272 test_expect_success 'git config --edit respects core.editor' '
1273 git config -f tmp test.value no &&
1274 echo test.value=yes >expect &&
1275 test_config core.editor "echo [test]value=yes >" &&
1276 git config -f tmp --edit &&
1277 git config -f tmp --list >actual &&
1278 test_cmp expect actual
1281 # malformed configuration files
1282 test_expect_success 'barf on syntax error' '
1283 cat >.git/config <<-\EOF &&
1284 # broken section line
1288 test_must_fail git config --get section.key >actual 2>error &&
1289 test_i18ngrep " line 3 " error
1292 test_expect_success 'barf on incomplete section header' '
1293 cat >.git/config <<-\EOF &&
1294 # broken section line
1298 test_must_fail git config --get section.key >actual 2>error &&
1299 test_i18ngrep " line 2 " error
1302 test_expect_success 'barf on incomplete string' '
1303 cat >.git/config <<-\EOF &&
1304 # broken section line
1308 test_must_fail git config --get section.key >actual 2>error &&
1309 test_i18ngrep " line 3 " error
1312 test_expect_success 'urlmatch' '
1313 cat >.git/config <<-\EOF &&
1316 [http "https://weak.example.com"]
1318 cookieFile = /tmp/cookie.txt
1321 test_expect_code 1 git config --bool --get-urlmatch doesnt.exist https://good.example.com >actual &&
1322 test_must_be_empty actual &&
1324 echo true >expect &&
1325 git config --bool --get-urlmatch http.SSLverify https://good.example.com >actual &&
1326 test_cmp expect actual &&
1328 echo false >expect &&
1329 git config --bool --get-urlmatch http.sslverify https://weak.example.com >actual &&
1330 test_cmp expect actual &&
1333 echo http.cookiefile /tmp/cookie.txt &&
1334 echo http.sslverify false
1336 git config --get-urlmatch HTTP https://weak.example.com >actual &&
1337 test_cmp expect actual
1340 test_expect_success 'urlmatch favors more specific URLs' '
1341 cat >.git/config <<-\EOF &&
1342 [http "https://example.com/"]
1343 cookieFile = /tmp/root.txt
1344 [http "https://example.com/subdirectory"]
1345 cookieFile = /tmp/subdirectory.txt
1346 [http "https://user@example.com/"]
1347 cookieFile = /tmp/user.txt
1348 [http "https://averylonguser@example.com/"]
1349 cookieFile = /tmp/averylonguser.txt
1350 [http "https://preceding.example.com"]
1351 cookieFile = /tmp/preceding.txt
1352 [http "https://*.example.com"]
1353 cookieFile = /tmp/wildcard.txt
1354 [http "https://*.example.com/wildcardwithsubdomain"]
1355 cookieFile = /tmp/wildcardwithsubdomain.txt
1356 [http "https://trailing.example.com"]
1357 cookieFile = /tmp/trailing.txt
1358 [http "https://user@*.example.com/"]
1359 cookieFile = /tmp/wildcardwithuser.txt
1360 [http "https://sub.example.com/"]
1361 cookieFile = /tmp/sub.txt
1364 echo http.cookiefile /tmp/root.txt >expect &&
1365 git config --get-urlmatch HTTP https://example.com >actual &&
1366 test_cmp expect actual &&
1368 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1369 git config --get-urlmatch HTTP https://example.com/subdirectory >actual &&
1370 test_cmp expect actual &&
1372 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1373 git config --get-urlmatch HTTP https://example.com/subdirectory/nested >actual &&
1374 test_cmp expect actual &&
1376 echo http.cookiefile /tmp/user.txt >expect &&
1377 git config --get-urlmatch HTTP https://user@example.com/ >actual &&
1378 test_cmp expect actual &&
1380 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1381 git config --get-urlmatch HTTP https://averylonguser@example.com/subdirectory >actual &&
1382 test_cmp expect actual &&
1384 echo http.cookiefile /tmp/preceding.txt >expect &&
1385 git config --get-urlmatch HTTP https://preceding.example.com >actual &&
1386 test_cmp expect actual &&
1388 echo http.cookiefile /tmp/wildcard.txt >expect &&
1389 git config --get-urlmatch HTTP https://wildcard.example.com >actual &&
1390 test_cmp expect actual &&
1392 echo http.cookiefile /tmp/sub.txt >expect &&
1393 git config --get-urlmatch HTTP https://sub.example.com/wildcardwithsubdomain >actual &&
1394 test_cmp expect actual &&
1396 echo http.cookiefile /tmp/trailing.txt >expect &&
1397 git config --get-urlmatch HTTP https://trailing.example.com >actual &&
1398 test_cmp expect actual &&
1400 echo http.cookiefile /tmp/sub.txt >expect &&
1401 git config --get-urlmatch HTTP https://user@sub.example.com >actual &&
1402 test_cmp expect actual
1405 test_expect_success 'urlmatch with wildcard' '
1406 cat >.git/config <<-\EOF &&
1409 [http "https://*.example.com"]
1411 cookieFile = /tmp/cookie.txt
1414 test_expect_code 1 git config --bool --get-urlmatch doesnt.exist https://good.example.com >actual &&
1415 test_must_be_empty actual &&
1417 echo true >expect &&
1418 git config --bool --get-urlmatch http.SSLverify https://example.com >actual &&
1419 test_cmp expect actual &&
1421 echo true >expect &&
1422 git config --bool --get-urlmatch http.SSLverify https://good-example.com >actual &&
1423 test_cmp expect actual &&
1425 echo true >expect &&
1426 git config --bool --get-urlmatch http.sslverify https://deep.nested.example.com >actual &&
1427 test_cmp expect actual &&
1429 echo false >expect &&
1430 git config --bool --get-urlmatch http.sslverify https://good.example.com >actual &&
1431 test_cmp expect actual &&
1434 echo http.cookiefile /tmp/cookie.txt &&
1435 echo http.sslverify false
1437 git config --get-urlmatch HTTP https://good.example.com >actual &&
1438 test_cmp expect actual &&
1440 echo http.sslverify >expect &&
1441 git config --get-urlmatch HTTP https://more.example.com.au >actual &&
1442 test_cmp expect actual
1445 # good section hygiene
1446 test_expect_success '--unset last key removes section (except if commented)' '
1447 cat >.git/config <<-\EOF &&
1448 # some generic comment on the configuration file itself
1449 # a comment specific to this "section" section.
1451 # some intervening lines
1452 # that should also be dropped
1455 # please be careful when you update the above variable
1458 cat >expect <<-\EOF &&
1459 # some generic comment on the configuration file itself
1460 # a comment specific to this "section" section.
1462 # some intervening lines
1463 # that should also be dropped
1465 # please be careful when you update the above variable
1468 git config --unset section.key &&
1469 test_cmp expect .git/config &&
1471 cat >.git/config <<-\EOF &&
1477 cat >expect <<-\EOF &&
1481 git config --unset section.key &&
1482 test_cmp expect .git/config &&
1484 q_to_tab >.git/config <<-\EOF &&
1491 git config --unset two.key &&
1492 ! grep two .git/config &&
1494 q_to_tab >.git/config <<-\EOF &&
1501 git config --unset-all one.key &&
1502 test_line_count = 0 .git/config &&
1504 q_to_tab >.git/config <<-\EOF &&
1507 Q# a comment not at the start
1511 git config --unset two.key &&
1512 grep two .git/config &&
1514 q_to_tab >.git/config <<-\EOF &&
1516 Qkey = not [two "subsection"]
1523 git config --unset two.subsection.key &&
1524 test "not [two subsection]" = "$(git config one.key)" &&
1525 test_line_count = 3 .git/config
1528 test_expect_success '--unset-all removes section if empty & uncommented' '
1529 cat >.git/config <<-\EOF &&
1535 git config --unset-all section.key &&
1536 test_line_count = 0 .git/config
1539 test_expect_success 'adding a key into an empty section reuses header' '
1540 cat >.git/config <<-\EOF &&
1544 q_to_tab >expect <<-\EOF &&
1549 git config section.key value &&
1550 test_cmp expect .git/config
1553 test_expect_success POSIXPERM,PERL 'preserves existing permissions' '
1554 chmod 0600 .git/config &&
1555 git config imap.pass Hunter2 &&
1557 "die q(badset) if ((stat(q(.git/config)))[2] & 07777) != 0600" &&
1558 git config --rename-section imap pop &&
1560 "die q(badrename) if ((stat(q(.git/config)))[2] & 07777) != 0600"
1563 ! test_have_prereq MINGW ||
1564 HOME="$(pwd)" # convert to Windows path
1566 test_expect_success 'set up --show-origin tests' '
1567 INCLUDE_DIR="$HOME/include" &&
1568 mkdir -p "$INCLUDE_DIR" &&
1569 cat >"$INCLUDE_DIR"/absolute.include <<-\EOF &&
1573 cat >"$INCLUDE_DIR"/relative.include <<-\EOF &&
1577 cat >"$HOME"/.gitconfig <<-EOF &&
1582 path = "$INCLUDE_DIR/absolute.include"
1584 cat >.git/config <<-\EOF
1589 path = ../include/relative.include
1593 test_expect_success '--show-origin with --list' '
1594 cat >expect <<-EOF &&
1595 file:$HOME/.gitconfig user.global=true
1596 file:$HOME/.gitconfig user.override=global
1597 file:$HOME/.gitconfig include.path=$INCLUDE_DIR/absolute.include
1598 file:$INCLUDE_DIR/absolute.include user.absolute=include
1599 file:.git/config user.local=true
1600 file:.git/config user.override=local
1601 file:.git/config include.path=../include/relative.include
1602 file:.git/../include/relative.include user.relative=include
1603 command line: user.cmdline=true
1605 git -c user.cmdline=true config --list --show-origin >output &&
1606 test_cmp expect output
1609 test_expect_success '--show-origin with --list --null' '
1610 cat >expect <<-EOF &&
1611 file:$HOME/.gitconfigQuser.global
1612 trueQfile:$HOME/.gitconfigQuser.override
1613 globalQfile:$HOME/.gitconfigQinclude.path
1614 $INCLUDE_DIR/absolute.includeQfile:$INCLUDE_DIR/absolute.includeQuser.absolute
1615 includeQfile:.git/configQuser.local
1616 trueQfile:.git/configQuser.override
1617 localQfile:.git/configQinclude.path
1618 ../include/relative.includeQfile:.git/../include/relative.includeQuser.relative
1619 includeQcommand line:Quser.cmdline
1622 git -c user.cmdline=true config --null --list --show-origin >output.raw &&
1623 nul_to_q <output.raw >output &&
1624 # The here-doc above adds a newline that the --null output would not
1625 # include. Add it here to make the two comparable.
1627 test_cmp expect output
1630 test_expect_success '--show-origin with single file' '
1631 cat >expect <<-\EOF &&
1632 file:.git/config user.local=true
1633 file:.git/config user.override=local
1634 file:.git/config include.path=../include/relative.include
1636 git config --local --list --show-origin >output &&
1637 test_cmp expect output
1640 test_expect_success '--show-origin with --get-regexp' '
1641 cat >expect <<-EOF &&
1642 file:$HOME/.gitconfig user.global true
1643 file:.git/config user.local true
1645 git config --show-origin --get-regexp "user\.[g|l].*" >output &&
1646 test_cmp expect output
1649 test_expect_success '--show-origin getting a single key' '
1650 cat >expect <<-\EOF &&
1651 file:.git/config local
1653 git config --show-origin user.override >output &&
1654 test_cmp expect output
1657 test_expect_success 'set up custom config file' '
1658 CUSTOM_CONFIG_FILE="file\" (dq) and spaces.conf" &&
1659 cat >"$CUSTOM_CONFIG_FILE" <<-\EOF
1665 test_expect_success !MINGW '--show-origin escape special file name characters' '
1666 cat >expect <<-\EOF &&
1667 file:"file\" (dq) and spaces.conf" user.custom=true
1669 git config --file "$CUSTOM_CONFIG_FILE" --show-origin --list >output &&
1670 test_cmp expect output
1673 test_expect_success '--show-origin stdin' '
1674 cat >expect <<-\EOF &&
1675 standard input: user.custom=true
1677 git config --file - --show-origin --list <"$CUSTOM_CONFIG_FILE" >output &&
1678 test_cmp expect output
1681 test_expect_success '--show-origin stdin with file include' '
1682 cat >"$INCLUDE_DIR"/stdin.include <<-EOF &&
1686 cat >expect <<-EOF &&
1687 file:$INCLUDE_DIR/stdin.include include
1689 echo "[include]path=\"$INCLUDE_DIR\"/stdin.include" \
1690 | git config --show-origin --includes --file - user.stdin >output &&
1691 test_cmp expect output
1694 test_expect_success !MINGW '--show-origin blob' '
1695 blob=$(git hash-object -w "$CUSTOM_CONFIG_FILE") &&
1696 cat >expect <<-EOF &&
1697 blob:$blob user.custom=true
1699 git config --blob=$blob --show-origin --list >output &&
1700 test_cmp expect output
1703 test_expect_success !MINGW '--show-origin blob ref' '
1704 cat >expect <<-\EOF &&
1705 blob:"master:file\" (dq) and spaces.conf" user.custom=true
1707 git add "$CUSTOM_CONFIG_FILE" &&
1708 git commit -m "new config file" &&
1709 git config --blob=master:"$CUSTOM_CONFIG_FILE" --show-origin --list >output &&
1710 test_cmp expect output
1713 test_expect_success '--local requires a repo' '
1714 # we expect 128 to ensure that we do not simply
1715 # fail to find anything and return code "1"
1716 test_expect_code 128 nongit git config --local foo.bar
1719 cat >.git/config <<-\EOF &&
1726 test_expect_success 'identical modern --type specifiers are allowed' '
1727 git config --type=int --type=int core.big >actual &&
1728 echo 1048576 >expect &&
1729 test_cmp expect actual
1732 test_expect_success 'identical legacy --type specifiers are allowed' '
1733 git config --int --int core.big >actual &&
1734 echo 1048576 >expect &&
1735 test_cmp expect actual
1738 test_expect_success 'identical mixed --type specifiers are allowed' '
1739 git config --int --type=int core.big >actual &&
1740 echo 1048576 >expect &&
1741 test_cmp expect actual
1744 test_expect_success 'non-identical modern --type specifiers are not allowed' '
1745 test_must_fail git config --type=int --type=bool core.big 2>error &&
1746 test_i18ngrep "only one type at a time" error
1749 test_expect_success 'non-identical legacy --type specifiers are not allowed' '
1750 test_must_fail git config --int --bool core.big 2>error &&
1751 test_i18ngrep "only one type at a time" error
1754 test_expect_success 'non-identical mixed --type specifiers are not allowed' '
1755 test_must_fail git config --type=int --bool core.big 2>error &&
1756 test_i18ngrep "only one type at a time" error
1759 test_expect_success '--type allows valid type specifiers' '
1760 echo "true" >expect &&
1761 git config --type=bool core.foo >actual &&
1762 test_cmp expect actual
1765 test_expect_success '--no-type unsets type specifiers' '
1766 echo "10" >expect &&
1767 git config --type=bool --no-type core.number >actual &&
1768 test_cmp expect actual
1771 test_expect_success 'unset type specifiers may be reset to conflicting ones' '
1772 echo 1048576 >expect &&
1773 git config --type=bool --no-type --type=int core.big >actual &&
1774 test_cmp expect actual
1777 test_expect_success '--type rejects unknown specifiers' '
1778 test_must_fail git config --type=nonsense core.foo 2>error &&
1779 test_i18ngrep "unrecognized --type argument" error
1782 test_expect_success '--replace-all does not invent newlines' '
1783 q_to_tab >.git/config <<-\EOF &&
1791 q_to_tab >expect <<-\EOF &&
1799 git config --replace-all abc.key b &&
1800 test_cmp .git/config expect