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
344 beta.noindent=sillyValue
345 nextsection.nonewline=wow2 for me
347 version.1.2.3eX.alpha=beta
350 test_expect_success 'working --list' '
351 git config --list > output &&
352 test_cmp expect output
364 test_expect_success '--list without repo produces empty output' '
365 git --git-dir=nonexistent config --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
384 test_expect_success '--add' '
385 git config --add nextsection.nonewline "wow4 for you" &&
386 git config --get-all nextsection.nonewline > output &&
387 test_cmp expect output
390 cat > .git/config << EOF
397 test_expect_success 'get variable with no value' '
398 git config --get novalue.variable ^$
401 test_expect_success 'get variable with empty value' '
402 git config --get emptyvalue.variable ^$
405 echo novalue.variable > expect
407 test_expect_success 'get-regexp variable with no value' '
408 git config --get-regexp novalue > output &&
409 test_cmp expect output
412 echo 'novalue.variable true' > expect
414 test_expect_success 'get-regexp --bool variable with no value' '
415 git config --bool --get-regexp novalue > output &&
416 test_cmp expect output
419 echo 'emptyvalue.variable ' > expect
421 test_expect_success 'get-regexp variable with empty value' '
422 git config --get-regexp emptyvalue > output &&
423 test_cmp expect output
428 test_expect_success 'get bool variable with no value' '
429 git config --bool novalue.variable > output &&
430 test_cmp expect output
435 test_expect_success 'get bool variable with empty value' '
436 git config --bool emptyvalue.variable > output &&
437 test_cmp expect output
440 test_expect_success 'no arguments, but no crash' '
441 test_must_fail git config >output 2>&1 &&
442 test_i18ngrep usage output
445 cat > .git/config << EOF
457 test_expect_success 'new section is partial match of another' '
459 test_cmp expect .git/config
472 test_expect_success 'new variable inserts into proper section' '
475 test_cmp expect .git/config
478 test_expect_success 'alternative GIT_CONFIG (non-existing file should fail)' '
479 test_must_fail git config --file non-existing-config -l
482 cat > other-config << EOF
491 test_expect_success 'alternative GIT_CONFIG' '
492 GIT_CONFIG=other-config git config -l >output &&
493 test_cmp expect output
496 test_expect_success 'alternative GIT_CONFIG (--file)' '
497 git config --file other-config -l > output &&
498 test_cmp expect output
501 test_expect_success 'refer config from subdirectory' '
505 echo strasse >expect &&
506 git config --get --file ../other-config ein.bahn >actual &&
507 test_cmp expect actual
512 test_expect_success 'refer config from subdirectory via GIT_CONFIG' '
515 GIT_CONFIG=../other-config git config --get ein.bahn >actual &&
516 test_cmp expect actual
527 test_expect_success '--set in alternative GIT_CONFIG' '
528 GIT_CONFIG=other-config git config anwohner.park ausweis &&
529 test_cmp expect other-config
532 cat > .git/config << EOF
539 [branch "1 234 blabl/a"]
543 test_expect_success 'rename section' '
544 git config --rename-section branch.eins branch.zwei
554 [branch "1 234 blabl/a"]
558 test_expect_success 'rename succeeded' '
559 test_cmp expect .git/config
562 test_expect_success 'rename non-existing section' '
563 test_must_fail git config --rename-section \
564 branch."world domination" branch.drei
567 test_expect_success 'rename succeeded' '
568 test_cmp expect .git/config
571 test_expect_success 'rename another section' '
572 git config --rename-section branch."1 234 blabl/a" branch.drei
586 test_expect_success 'rename succeeded' '
587 test_cmp expect .git/config
590 cat >> .git/config << EOF
591 [branch "vier"] z = 1
594 test_expect_success 'rename a section with a var on the same line' '
595 git config --rename-section branch.vier branch.zwei
611 test_expect_success 'rename succeeded' '
612 test_cmp expect .git/config
615 test_expect_success 'renaming empty section name is rejected' '
616 test_must_fail git config --rename-section branch.zwei ""
619 test_expect_success 'renaming to bogus section is rejected' '
620 test_must_fail git config --rename-section branch.zwei "bogus name"
623 cat >> .git/config << EOF
624 [branch "zwei"] a = 1 [branch "vier"]
627 test_expect_success 'remove section' '
628 git config --remove-section branch.zwei
638 test_expect_success 'section was removed properly' '
639 test_cmp expect .git/config
645 dbname = %Ggitcvs2.%a.%m.sqlite
647 dbname = %Ggitcvs1.%a.%m.sqlite
650 test_expect_success 'section ending' '
652 git config gitcvs.enabled true &&
653 git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
654 git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
655 test_cmp expect .git/config
659 test_expect_success numbers '
660 git config kilo.gram 1k &&
661 git config mega.ton 1m &&
663 echo 1048576 >>expect &&
664 git config --int --get kilo.gram >actual &&
665 git config --int --get mega.ton >>actual &&
666 test_cmp expect actual
669 test_expect_success '--int is at least 64 bits' '
670 git config giga.watts 121g &&
671 echo 129922760704 >expect &&
672 git config --int --get giga.watts >actual &&
673 test_cmp expect actual
676 test_expect_success 'invalid unit' '
677 git config aninvalid.unit "1auto" &&
678 echo 1auto >expect &&
679 git config aninvalid.unit >actual &&
680 test_cmp expect actual &&
682 fatal: bad numeric config value '\''1auto'\'' for '\''aninvalid.unit'\'' in .git/config: invalid unit
684 test_must_fail git config --int --get aninvalid.unit 2>actual &&
685 test_i18ncmp expect actual
699 test_expect_success bool '
701 git config bool.true1 01 &&
702 git config bool.true2 -1 &&
703 git config bool.true3 YeS &&
704 git config bool.true4 true &&
705 git config bool.false1 000 &&
706 git config bool.false2 "" &&
707 git config bool.false3 nO &&
708 git config bool.false4 FALSE &&
712 git config --bool --get bool.true$i >>result
713 git config --bool --get bool.false$i >>result
715 test_cmp expect result'
717 test_expect_success 'invalid bool (--get)' '
719 git config bool.nobool foobar &&
720 test_must_fail git config --bool --get bool.nobool'
722 test_expect_success 'invalid bool (set)' '
724 test_must_fail git config --bool bool.nobool foobar'
738 test_expect_success 'set --bool' '
741 git config --bool bool.true1 01 &&
742 git config --bool bool.true2 -1 &&
743 git config --bool bool.true3 YeS &&
744 git config --bool bool.true4 true &&
745 git config --bool bool.false1 000 &&
746 git config --bool bool.false2 "" &&
747 git config --bool bool.false3 nO &&
748 git config --bool bool.false4 FALSE &&
749 test_cmp expect .git/config'
758 test_expect_success 'set --int' '
761 git config --int int.val1 01 &&
762 git config --int int.val2 -1 &&
763 git config --int int.val3 5m &&
764 test_cmp expect .git/config
767 test_expect_success 'get --bool-or-int' '
768 cat >.git/config <<-\EOF &&
778 cat >expect <<-\EOF &&
787 git config --bool-or-int bool.true1 &&
788 git config --bool-or-int bool.true2 &&
789 git config --bool-or-int bool.false &&
790 git config --bool-or-int int.int1 &&
791 git config --bool-or-int int.int2 &&
792 git config --bool-or-int int.int3
794 test_cmp expect actual
809 test_expect_success 'set --bool-or-int' '
811 git config --bool-or-int bool.true1 true &&
812 git config --bool-or-int bool.false1 false &&
813 git config --bool-or-int bool.true2 yes &&
814 git config --bool-or-int bool.false2 no &&
815 git config --bool-or-int int.int1 0 &&
816 git config --bool-or-int int.int2 1 &&
817 git config --bool-or-int int.int3 -1 &&
818 test_cmp expect .git/config
828 test_expect_success NOT_MINGW 'set --path' '
830 git config --path path.home "~/" &&
831 git config --path path.normal "/dev/null" &&
832 git config --path path.trailingtilde "foo~" &&
833 test_cmp expect .git/config'
835 if test_have_prereq NOT_MINGW && test "${HOME+set}"
837 test_set_prereq HOMEVAR
846 test_expect_success HOMEVAR 'get --path' '
847 git config --get --path path.home > result &&
848 git config --get --path path.normal >> result &&
849 git config --get --path path.trailingtilde >> result &&
850 test_cmp expect result
858 test_expect_success NOT_MINGW 'get --path copes with unset $HOME' '
861 test_must_fail git config --get --path path.home \
863 git config --get --path path.normal >>result &&
864 git config --get --path path.trailingtilde >>result
866 grep "[Ff]ailed to expand.*~/" msg &&
867 test_cmp expect result
870 test_expect_success 'get --path barfs on boolean variable' '
871 echo "[path]bool" >.git/config &&
872 test_must_fail git config --get --path path.bool
879 semicolon = "test;test"
882 test_expect_success 'quoting' '
884 git config quote.leading " test" &&
885 git config quote.ending "test " &&
886 git config quote.semicolon "test;test" &&
887 git config quote.hash "test#test" &&
888 test_cmp expect .git/config
891 test_expect_success 'key with newline' '
892 test_must_fail git config "key.with
895 test_expect_success 'value with newline' 'git config key.sub value.with\\\
898 cat > .git/config <<\EOF
903 noncont = not continued ; \
916 section.continued=continued
917 section.noncont=not continued
918 section.quotecont=cont;inued
921 test_expect_success 'value continued on next line' '
922 git config --list > result &&
923 test_cmp result expect
926 cat > .git/config <<\EOF
927 [section "sub=section"]
943 mergetoolQsection.sub=section.val1
944 foo=barQsection.sub=section.val2
946 barQsection.sub=section.val3
949 Qsection.sub=section.val4
950 Qsection.sub=section.val5Q
952 test_expect_success '--null --list' '
953 git config --null --list | nul_to_q >result &&
955 test_cmp expect result
959 section.sub=section.val1
960 foo=barQsection.sub=section.val2
962 barQsection.sub=section.val3
965 Qsection.sub=section.val4
966 Qsection.sub=section.val5Q
968 test_expect_success '--null --get-regexp' '
969 git config --null --get-regexp "val[0-9]" | nul_to_q >result &&
971 test_cmp expect result
974 test_expect_success 'inner whitespace kept verbatim' '
975 git config section.val "foo bar" &&
976 echo "foo bar" >expect &&
977 git config section.val >actual &&
978 test_cmp expect actual
981 test_expect_success SYMLINKS 'symlinked configuration' '
982 ln -s notyet myconfig &&
983 GIT_CONFIG=myconfig git config test.frotz nitfol &&
986 test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
987 GIT_CONFIG=myconfig git config test.xyzzy rezrov &&
990 cat >expect <<-\EOF &&
995 GIT_CONFIG=notyet git config test.frotz &&
996 GIT_CONFIG=notyet git config test.xyzzy
998 test_cmp expect actual
1001 test_expect_success 'nonexistent configuration' '
1003 GIT_CONFIG=doesnotexist &&
1004 export GIT_CONFIG &&
1005 test_must_fail git config --list &&
1006 test_must_fail git config test.xyzzy
1010 test_expect_success SYMLINKS 'symlink to nonexistent configuration' '
1011 ln -s doesnotexist linktonada &&
1012 ln -s linktonada linktolinktonada &&
1014 GIT_CONFIG=linktonada &&
1015 export GIT_CONFIG &&
1016 test_must_fail git config --list &&
1017 GIT_CONFIG=linktolinktonada &&
1018 test_must_fail git config --list
1022 test_expect_success 'check split_cmdline return' "
1023 git config alias.split-cmdline-fix 'echo \"' &&
1024 test_must_fail git split-cmdline-fix &&
1027 git commit -m 'initial commit' &&
1028 git config branch.master.mergeoptions 'echo \"' &&
1029 test_must_fail git merge master
1032 test_expect_success 'git -c "key=value" support' '
1033 cat >expect <<-\EOF &&
1039 git -c core.name=value config core.name &&
1040 git -c foo.CamelCase=value config foo.camelcase &&
1041 git -c foo.flag config --bool foo.flag
1043 test_cmp expect actual &&
1044 test_must_fail git -c name=value config core.name
1047 test_expect_success 'key sanity-checking' '
1048 test_must_fail git config foo=bar &&
1049 test_must_fail git config foo=.bar &&
1050 test_must_fail git config foo.ba=r &&
1051 test_must_fail git config foo.1bar &&
1052 test_must_fail git config foo."ba
1054 test_must_fail git config . false &&
1055 test_must_fail git config .foo false &&
1056 test_must_fail git config foo. false &&
1057 test_must_fail git config .foo. false &&
1058 git config foo.bar true &&
1059 git config foo."ba =z".bar false
1062 test_expect_success 'git -c works with aliases of builtins' '
1063 git config alias.checkconfig "-c foo.check=bar config foo.check" &&
1065 git checkconfig >actual &&
1066 test_cmp expect actual
1069 test_expect_success 'git -c does not split values on equals' '
1070 echo "value with = in it" >expect &&
1071 git -c core.foo="value with = in it" config core.foo >actual &&
1072 test_cmp expect actual
1075 test_expect_success 'git -c dies on bogus config' '
1076 test_must_fail git -c core.bare=foo rev-parse
1079 test_expect_success 'git -c complains about empty key' '
1080 test_must_fail git -c "=foo" rev-parse
1083 test_expect_success 'git -c complains about empty key and value' '
1084 test_must_fail git -c "" rev-parse
1087 test_expect_success 'git config --edit works' '
1088 git config -f tmp test.value no &&
1089 echo test.value=yes >expect &&
1090 GIT_EDITOR="echo [test]value=yes >" git config -f tmp --edit &&
1091 git config -f tmp --list >actual &&
1092 test_cmp expect actual
1095 test_expect_success 'git config --edit respects core.editor' '
1096 git config -f tmp test.value no &&
1097 echo test.value=yes >expect &&
1098 test_config core.editor "echo [test]value=yes >" &&
1099 git config -f tmp --edit &&
1100 git config -f tmp --list >actual &&
1101 test_cmp expect actual
1104 # malformed configuration files
1105 test_expect_success 'barf on syntax error' '
1106 cat >.git/config <<-\EOF &&
1107 # broken section line
1111 test_must_fail git config --get section.key >actual 2>error &&
1112 grep " line 3 " error
1115 test_expect_success 'barf on incomplete section header' '
1116 cat >.git/config <<-\EOF &&
1117 # broken section line
1121 test_must_fail git config --get section.key >actual 2>error &&
1122 grep " line 2 " error
1125 test_expect_success 'barf on incomplete string' '
1126 cat >.git/config <<-\EOF &&
1127 # broken section line
1131 test_must_fail git config --get section.key >actual 2>error &&
1132 grep " line 3 " error
1135 test_expect_success 'urlmatch' '
1136 cat >.git/config <<-\EOF &&
1139 [http "https://weak.example.com"]
1141 cookieFile = /tmp/cookie.txt
1144 echo true >expect &&
1145 git config --bool --get-urlmatch http.SSLverify https://good.example.com >actual &&
1146 test_cmp expect actual &&
1148 echo false >expect &&
1149 git config --bool --get-urlmatch http.sslverify https://weak.example.com >actual &&
1150 test_cmp expect actual &&
1153 echo http.cookiefile /tmp/cookie.txt &&
1154 echo http.sslverify false
1156 git config --get-urlmatch HTTP https://weak.example.com >actual &&
1157 test_cmp expect actual
1160 # good section hygiene
1161 test_expect_failure 'unsetting the last key in a section removes header' '
1162 cat >.git/config <<-\EOF &&
1163 # some generic comment on the configuration file itself
1164 # a comment specific to this "section" section.
1166 # some intervening lines
1167 # that should also be dropped
1170 # please be careful when you update the above variable
1173 cat >expect <<-\EOF &&
1174 # some generic comment on the configuration file itself
1177 git config --unset section.key &&
1178 test_cmp expect .git/config
1181 test_expect_failure 'adding a key into an empty section reuses header' '
1182 cat >.git/config <<-\EOF &&
1186 q_to_tab >expect <<-\EOF &&
1191 git config section.key value
1192 test_cmp expect .git/config