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
341 beta.noindent=sillyValue
342 nextsection.nonewline=wow2 for me
344 version.1.2.3eX.alpha=beta
347 test_expect_success 'working --list' '
348 git config --list > output &&
349 test_cmp expect output
358 test_expect_success '--list without repo produces empty output' '
359 git --git-dir=nonexistent config --list >output &&
360 test_cmp expect output
364 beta.noindent sillyValue
365 nextsection.nonewline wow2 for me
368 test_expect_success '--get-regexp' '
369 git config --get-regexp in >output &&
370 test_cmp expect output
378 test_expect_success '--add' '
379 git config --add nextsection.nonewline "wow4 for you" &&
380 git config --get-all nextsection.nonewline > output &&
381 test_cmp expect output
384 cat > .git/config << EOF
391 test_expect_success 'get variable with no value' '
392 git config --get novalue.variable ^$
395 test_expect_success 'get variable with empty value' '
396 git config --get emptyvalue.variable ^$
399 echo novalue.variable > expect
401 test_expect_success 'get-regexp variable with no value' '
402 git config --get-regexp novalue > output &&
403 test_cmp expect output
406 echo 'novalue.variable true' > expect
408 test_expect_success 'get-regexp --bool variable with no value' '
409 git config --bool --get-regexp novalue > output &&
410 test_cmp expect output
413 echo 'emptyvalue.variable ' > expect
415 test_expect_success 'get-regexp variable with empty value' '
416 git config --get-regexp emptyvalue > output &&
417 test_cmp expect output
422 test_expect_success 'get bool variable with no value' '
423 git config --bool novalue.variable > output &&
424 test_cmp expect output
429 test_expect_success 'get bool variable with empty value' '
430 git config --bool emptyvalue.variable > output &&
431 test_cmp expect output
434 test_expect_success 'no arguments, but no crash' '
435 test_must_fail git config >output 2>&1 &&
436 test_i18ngrep usage output
439 cat > .git/config << EOF
451 test_expect_success 'new section is partial match of another' '
453 test_cmp expect .git/config
466 test_expect_success 'new variable inserts into proper section' '
469 test_cmp expect .git/config
472 test_expect_success 'alternative GIT_CONFIG (non-existing file should fail)' '
473 test_must_fail git config --file non-existing-config -l
476 cat > other-config << EOF
485 test_expect_success 'alternative GIT_CONFIG' '
486 GIT_CONFIG=other-config git config -l >output &&
487 test_cmp expect output
490 test_expect_success 'alternative GIT_CONFIG (--file)' '
491 git config --file other-config -l > output &&
492 test_cmp expect output
495 test_expect_success 'refer config from subdirectory' '
499 echo strasse >expect &&
500 git config --get --file ../other-config ein.bahn >actual &&
501 test_cmp expect actual
506 test_expect_success 'refer config from subdirectory via GIT_CONFIG' '
509 GIT_CONFIG=../other-config git config --get ein.bahn >actual &&
510 test_cmp expect actual
521 test_expect_success '--set in alternative GIT_CONFIG' '
522 GIT_CONFIG=other-config git config anwohner.park ausweis &&
523 test_cmp expect other-config
526 cat > .git/config << EOF
533 [branch "1 234 blabl/a"]
537 test_expect_success 'rename section' '
538 git config --rename-section branch.eins branch.zwei
548 [branch "1 234 blabl/a"]
552 test_expect_success 'rename succeeded' '
553 test_cmp expect .git/config
556 test_expect_success 'rename non-existing section' '
557 test_must_fail git config --rename-section \
558 branch."world domination" branch.drei
561 test_expect_success 'rename succeeded' '
562 test_cmp expect .git/config
565 test_expect_success 'rename another section' '
566 git config --rename-section branch."1 234 blabl/a" branch.drei
580 test_expect_success 'rename succeeded' '
581 test_cmp expect .git/config
584 cat >> .git/config << EOF
585 [branch "vier"] z = 1
588 test_expect_success 'rename a section with a var on the same line' '
589 git config --rename-section branch.vier branch.zwei
605 test_expect_success 'rename succeeded' '
606 test_cmp expect .git/config
609 test_expect_success 'renaming empty section name is rejected' '
610 test_must_fail git config --rename-section branch.zwei ""
613 test_expect_success 'renaming to bogus section is rejected' '
614 test_must_fail git config --rename-section branch.zwei "bogus name"
617 cat >> .git/config << EOF
618 [branch "zwei"] a = 1 [branch "vier"]
621 test_expect_success 'remove section' '
622 git config --remove-section branch.zwei
632 test_expect_success 'section was removed properly' '
633 test_cmp expect .git/config
639 dbname = %Ggitcvs2.%a.%m.sqlite
641 dbname = %Ggitcvs1.%a.%m.sqlite
644 test_expect_success 'section ending' '
646 git config gitcvs.enabled true &&
647 git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
648 git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
649 test_cmp expect .git/config
653 test_expect_success numbers '
654 git config kilo.gram 1k &&
655 git config mega.ton 1m &&
657 echo 1048576 >>expect &&
658 git config --int --get kilo.gram >actual &&
659 git config --int --get mega.ton >>actual &&
660 test_cmp expect actual
663 test_expect_success '--int is at least 64 bits' '
664 git config giga.watts 121g &&
665 echo 129922760704 >expect &&
666 git config --int --get giga.watts >actual &&
667 test_cmp expect actual
670 test_expect_success 'invalid unit' '
671 git config aninvalid.unit "1auto" &&
672 echo 1auto >expect &&
673 git config aninvalid.unit >actual &&
674 test_cmp expect actual &&
676 fatal: bad numeric config value '\''1auto'\'' for '\''aninvalid.unit'\'' in .git/config: invalid unit
678 test_must_fail git config --int --get aninvalid.unit 2>actual &&
679 test_i18ncmp expect actual
693 test_expect_success bool '
695 git config bool.true1 01 &&
696 git config bool.true2 -1 &&
697 git config bool.true3 YeS &&
698 git config bool.true4 true &&
699 git config bool.false1 000 &&
700 git config bool.false2 "" &&
701 git config bool.false3 nO &&
702 git config bool.false4 FALSE &&
706 git config --bool --get bool.true$i >>result
707 git config --bool --get bool.false$i >>result
709 test_cmp expect result'
711 test_expect_success 'invalid bool (--get)' '
713 git config bool.nobool foobar &&
714 test_must_fail git config --bool --get bool.nobool'
716 test_expect_success 'invalid bool (set)' '
718 test_must_fail git config --bool bool.nobool foobar'
732 test_expect_success 'set --bool' '
735 git config --bool bool.true1 01 &&
736 git config --bool bool.true2 -1 &&
737 git config --bool bool.true3 YeS &&
738 git config --bool bool.true4 true &&
739 git config --bool bool.false1 000 &&
740 git config --bool bool.false2 "" &&
741 git config --bool bool.false3 nO &&
742 git config --bool bool.false4 FALSE &&
743 test_cmp expect .git/config'
752 test_expect_success 'set --int' '
755 git config --int int.val1 01 &&
756 git config --int int.val2 -1 &&
757 git config --int int.val3 5m &&
758 test_cmp expect .git/config
761 test_expect_success 'get --bool-or-int' '
762 cat >.git/config <<-\EOF &&
772 cat >expect <<-\EOF &&
781 git config --bool-or-int bool.true1 &&
782 git config --bool-or-int bool.true2 &&
783 git config --bool-or-int bool.false &&
784 git config --bool-or-int int.int1 &&
785 git config --bool-or-int int.int2 &&
786 git config --bool-or-int int.int3
788 test_cmp expect actual
803 test_expect_success 'set --bool-or-int' '
805 git config --bool-or-int bool.true1 true &&
806 git config --bool-or-int bool.false1 false &&
807 git config --bool-or-int bool.true2 yes &&
808 git config --bool-or-int bool.false2 no &&
809 git config --bool-or-int int.int1 0 &&
810 git config --bool-or-int int.int2 1 &&
811 git config --bool-or-int int.int3 -1 &&
812 test_cmp expect .git/config
822 test_expect_success NOT_MINGW 'set --path' '
824 git config --path path.home "~/" &&
825 git config --path path.normal "/dev/null" &&
826 git config --path path.trailingtilde "foo~" &&
827 test_cmp expect .git/config'
829 if test_have_prereq NOT_MINGW && test "${HOME+set}"
831 test_set_prereq HOMEVAR
840 test_expect_success HOMEVAR 'get --path' '
841 git config --get --path path.home > result &&
842 git config --get --path path.normal >> result &&
843 git config --get --path path.trailingtilde >> result &&
844 test_cmp expect result
852 test_expect_success NOT_MINGW 'get --path copes with unset $HOME' '
855 test_must_fail git config --get --path path.home \
857 git config --get --path path.normal >>result &&
858 git config --get --path path.trailingtilde >>result
860 grep "[Ff]ailed to expand.*~/" msg &&
861 test_cmp expect result
864 test_expect_success 'get --path barfs on boolean variable' '
865 echo "[path]bool" >.git/config &&
866 test_must_fail git config --get --path path.bool
873 semicolon = "test;test"
876 test_expect_success 'quoting' '
878 git config quote.leading " test" &&
879 git config quote.ending "test " &&
880 git config quote.semicolon "test;test" &&
881 git config quote.hash "test#test" &&
882 test_cmp expect .git/config
885 test_expect_success 'key with newline' '
886 test_must_fail git config "key.with
889 test_expect_success 'value with newline' 'git config key.sub value.with\\\
892 cat > .git/config <<\EOF
897 noncont = not continued ; \
907 section.continued=continued
908 section.noncont=not continued
909 section.quotecont=cont;inued
912 test_expect_success 'value continued on next line' '
913 git config --list > result &&
914 test_cmp result expect
917 cat > .git/config <<\EOF
918 [section "sub=section"]
931 statusQsection.sub=section.val1
932 foo=barQsection.sub=section.val2
934 barQsection.sub=section.val3
937 Qsection.sub=section.val4
938 Qsection.sub=section.val5Q
940 test_expect_success '--null --list' '
941 git config --null --list | nul_to_q >result &&
943 test_cmp expect result
947 section.sub=section.val1
948 foo=barQsection.sub=section.val2
950 barQsection.sub=section.val3
953 Qsection.sub=section.val4
954 Qsection.sub=section.val5Q
956 test_expect_success '--null --get-regexp' '
957 git config --null --get-regexp "val[0-9]" | nul_to_q >result &&
959 test_cmp expect result
962 test_expect_success 'inner whitespace kept verbatim' '
963 git config section.val "foo bar" &&
964 echo "foo bar" >expect &&
965 git config section.val >actual &&
966 test_cmp expect actual
969 test_expect_success SYMLINKS 'symlinked configuration' '
970 ln -s notyet myconfig &&
971 GIT_CONFIG=myconfig git config test.frotz nitfol &&
974 test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
975 GIT_CONFIG=myconfig git config test.xyzzy rezrov &&
978 cat >expect <<-\EOF &&
983 GIT_CONFIG=notyet git config test.frotz &&
984 GIT_CONFIG=notyet git config test.xyzzy
986 test_cmp expect actual
989 test_expect_success 'nonexistent configuration' '
991 GIT_CONFIG=doesnotexist &&
993 test_must_fail git config --list &&
994 test_must_fail git config test.xyzzy
998 test_expect_success SYMLINKS 'symlink to nonexistent configuration' '
999 ln -s doesnotexist linktonada &&
1000 ln -s linktonada linktolinktonada &&
1002 GIT_CONFIG=linktonada &&
1003 export GIT_CONFIG &&
1004 test_must_fail git config --list &&
1005 GIT_CONFIG=linktolinktonada &&
1006 test_must_fail git config --list
1010 test_expect_success 'check split_cmdline return' "
1011 git config alias.split-cmdline-fix 'echo \"' &&
1012 test_must_fail git split-cmdline-fix &&
1015 git commit -m 'initial commit' &&
1016 git config branch.master.mergeoptions 'echo \"' &&
1017 test_must_fail git merge master
1020 test_expect_success 'git -c "key=value" support' '
1021 cat >expect <<-\EOF &&
1027 git -c core.name=value config core.name &&
1028 git -c foo.CamelCase=value config foo.camelcase &&
1029 git -c foo.flag config --bool foo.flag
1031 test_cmp expect actual &&
1032 test_must_fail git -c name=value config core.name
1035 test_expect_success 'key sanity-checking' '
1036 test_must_fail git config foo=bar &&
1037 test_must_fail git config foo=.bar &&
1038 test_must_fail git config foo.ba=r &&
1039 test_must_fail git config foo.1bar &&
1040 test_must_fail git config foo."ba
1042 test_must_fail git config . false &&
1043 test_must_fail git config .foo false &&
1044 test_must_fail git config foo. false &&
1045 test_must_fail git config .foo. false &&
1046 git config foo.bar true &&
1047 git config foo."ba =z".bar false
1050 test_expect_success 'git -c works with aliases of builtins' '
1051 git config alias.checkconfig "-c foo.check=bar config foo.check" &&
1053 git checkconfig >actual &&
1054 test_cmp expect actual
1057 test_expect_success 'git -c does not split values on equals' '
1058 echo "value with = in it" >expect &&
1059 git -c core.foo="value with = in it" config core.foo >actual &&
1060 test_cmp expect actual
1063 test_expect_success 'git -c dies on bogus config' '
1064 test_must_fail git -c core.bare=foo rev-parse
1067 test_expect_success 'git -c complains about empty key' '
1068 test_must_fail git -c "=foo" rev-parse
1071 test_expect_success 'git -c complains about empty key and value' '
1072 test_must_fail git -c "" rev-parse
1075 test_expect_success 'git config --edit works' '
1076 git config -f tmp test.value no &&
1077 echo test.value=yes >expect &&
1078 GIT_EDITOR="echo [test]value=yes >" git config -f tmp --edit &&
1079 git config -f tmp --list >actual &&
1080 test_cmp expect actual
1083 test_expect_success 'git config --edit respects core.editor' '
1084 git config -f tmp test.value no &&
1085 echo test.value=yes >expect &&
1086 test_config core.editor "echo [test]value=yes >" &&
1087 git config -f tmp --edit &&
1088 git config -f tmp --list >actual &&
1089 test_cmp expect actual
1092 # malformed configuration files
1093 test_expect_success 'barf on syntax error' '
1094 cat >.git/config <<-\EOF &&
1095 # broken section line
1099 test_must_fail git config --get section.key >actual 2>error &&
1100 grep " line 3 " error
1103 test_expect_success 'barf on incomplete section header' '
1104 cat >.git/config <<-\EOF &&
1105 # broken section line
1109 test_must_fail git config --get section.key >actual 2>error &&
1110 grep " line 2 " error
1113 test_expect_success 'barf on incomplete string' '
1114 cat >.git/config <<-\EOF &&
1115 # broken section line
1119 test_must_fail git config --get section.key >actual 2>error &&
1120 grep " line 3 " error
1123 test_expect_success 'urlmatch' '
1124 cat >.git/config <<-\EOF &&
1127 [http "https://weak.example.com"]
1129 cookieFile = /tmp/cookie.txt
1132 echo true >expect &&
1133 git config --bool --get-urlmatch http.SSLverify https://good.example.com >actual &&
1134 test_cmp expect actual &&
1136 echo false >expect &&
1137 git config --bool --get-urlmatch http.sslverify https://weak.example.com >actual &&
1138 test_cmp expect actual &&
1141 echo http.cookiefile /tmp/cookie.txt &&
1142 echo http.sslverify false
1144 git config --get-urlmatch HTTP https://weak.example.com >actual &&
1145 test_cmp expect actual
1148 # good section hygiene
1149 test_expect_failure 'unsetting the last key in a section removes header' '
1150 cat >.git/config <<-\EOF &&
1151 # some generic comment on the configuration file itself
1152 # a comment specific to this "section" section.
1154 # some intervening lines
1155 # that should also be dropped
1158 # please be careful when you update the above variable
1161 cat >expect <<-\EOF &&
1162 # some generic comment on the configuration file itself
1165 git config --unset section.key &&
1166 test_cmp expect .git/config
1169 test_expect_failure 'adding a key into an empty section reuses header' '
1170 cat >.git/config <<-\EOF &&
1174 q_to_tab >expect <<-\EOF &&
1179 git config section.key value
1180 test_cmp expect .git/config