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
356 beta.noindent sillyValue
357 nextsection.nonewline wow2 for me
360 test_expect_success
'--get-regexp' '
361 git config --get-regexp in >output &&
362 test_cmp expect output
370 test_expect_success
'--add' '
371 git config --add nextsection.nonewline "wow4 for you" &&
372 git config --get-all nextsection.nonewline > output &&
373 test_cmp expect output
376 cat > .git
/config
<< EOF
383 test_expect_success
'get variable with no value' '
384 git config --get novalue.variable ^$
387 test_expect_success
'get variable with empty value' '
388 git config --get emptyvalue.variable ^$
391 echo novalue.variable
> expect
393 test_expect_success
'get-regexp variable with no value' '
394 git config --get-regexp novalue > output &&
395 test_cmp expect output
398 echo 'novalue.variable true' > expect
400 test_expect_success
'get-regexp --bool variable with no value' '
401 git config --bool --get-regexp novalue > output &&
402 test_cmp expect output
405 echo 'emptyvalue.variable ' > expect
407 test_expect_success
'get-regexp variable with empty value' '
408 git config --get-regexp emptyvalue > output &&
409 test_cmp expect output
414 test_expect_success
'get bool variable with no value' '
415 git config --bool novalue.variable > output &&
416 test_cmp expect output
421 test_expect_success
'get bool variable with empty value' '
422 git config --bool emptyvalue.variable > output &&
423 test_cmp expect output
426 test_expect_success
'no arguments, but no crash' '
427 test_must_fail git config >output 2>&1 &&
428 test_i18ngrep usage output
431 cat > .git
/config
<< EOF
443 test_expect_success
'new section is partial match of another' '
445 test_cmp expect .git/config
458 test_expect_success
'new variable inserts into proper section' '
461 test_cmp expect .git/config
464 test_expect_success
'alternative GIT_CONFIG (non-existing file should fail)' '
465 test_must_fail git config --file non-existing-config -l
468 cat > other-config
<< EOF
477 test_expect_success
'alternative GIT_CONFIG' '
478 GIT_CONFIG=other-config git config -l >output &&
479 test_cmp expect output
482 test_expect_success
'alternative GIT_CONFIG (--file)' '
483 git config --file other-config -l > output &&
484 test_cmp expect output
487 test_expect_success
'refer config from subdirectory' '
491 echo strasse >expect &&
492 git config --get --file ../other-config ein.bahn >actual &&
493 test_cmp expect actual
498 test_expect_success
'refer config from subdirectory via GIT_CONFIG' '
501 GIT_CONFIG=../other-config git config --get ein.bahn >actual &&
502 test_cmp expect actual
513 test_expect_success
'--set in alternative GIT_CONFIG' '
514 GIT_CONFIG=other-config git config anwohner.park ausweis &&
515 test_cmp expect other-config
518 cat > .git
/config
<< EOF
525 [branch "1 234 blabl/a"]
529 test_expect_success
'rename section' '
530 git config --rename-section branch.eins branch.zwei
540 [branch "1 234 blabl/a"]
544 test_expect_success
'rename succeeded' '
545 test_cmp expect .git/config
548 test_expect_success
'rename non-existing section' '
549 test_must_fail git config --rename-section \
550 branch."world domination" branch.drei
553 test_expect_success
'rename succeeded' '
554 test_cmp expect .git/config
557 test_expect_success
'rename another section' '
558 git config --rename-section branch."1 234 blabl/a" branch.drei
572 test_expect_success
'rename succeeded' '
573 test_cmp expect .git/config
576 cat >> .git
/config
<< EOF
577 [branch "vier"] z = 1
580 test_expect_success
'rename a section with a var on the same line' '
581 git config --rename-section branch.vier branch.zwei
597 test_expect_success
'rename succeeded' '
598 test_cmp expect .git/config
601 test_expect_success
'renaming empty section name is rejected' '
602 test_must_fail git config --rename-section branch.zwei ""
605 test_expect_success
'renaming to bogus section is rejected' '
606 test_must_fail git config --rename-section branch.zwei "bogus name"
609 cat >> .git
/config
<< EOF
610 [branch "zwei"] a = 1 [branch "vier"]
613 test_expect_success
'remove section' '
614 git config --remove-section branch.zwei
624 test_expect_success
'section was removed properly' '
625 test_cmp expect .git/config
631 dbname = %Ggitcvs2.%a.%m.sqlite
633 dbname = %Ggitcvs1.%a.%m.sqlite
636 test_expect_success
'section ending' '
638 git config gitcvs.enabled true &&
639 git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
640 git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
641 test_cmp expect .git/config
645 test_expect_success numbers
'
646 git config kilo.gram 1k &&
647 git config mega.ton 1m &&
649 echo 1048576 >>expect &&
650 git config --int --get kilo.gram >actual &&
651 git config --int --get mega.ton >>actual &&
652 test_cmp expect actual
655 test_expect_success
'invalid unit' '
656 git config aninvalid.unit "1auto" &&
657 echo 1auto >expect &&
658 git config aninvalid.unit >actual &&
659 test_cmp expect actual &&
661 fatal: bad config value for '\''aninvalid.unit'\'' in .git/config
663 test_must_fail git config --int --get aninvalid.unit 2>actual &&
664 test_cmp actual expect
678 test_expect_success bool
'
680 git config bool.true1 01 &&
681 git config bool.true2 -1 &&
682 git config bool.true3 YeS &&
683 git config bool.true4 true &&
684 git config bool.false1 000 &&
685 git config bool.false2 "" &&
686 git config bool.false3 nO &&
687 git config bool.false4 FALSE &&
691 git config --bool --get bool.true$i >>result
692 git config --bool --get bool.false$i >>result
694 test_cmp expect result'
696 test_expect_success
'invalid bool (--get)' '
698 git config bool.nobool foobar &&
699 test_must_fail git config --bool --get bool.nobool'
701 test_expect_success
'invalid bool (set)' '
703 test_must_fail git config --bool bool.nobool foobar'
717 test_expect_success
'set --bool' '
720 git config --bool bool.true1 01 &&
721 git config --bool bool.true2 -1 &&
722 git config --bool bool.true3 YeS &&
723 git config --bool bool.true4 true &&
724 git config --bool bool.false1 000 &&
725 git config --bool bool.false2 "" &&
726 git config --bool bool.false3 nO &&
727 git config --bool bool.false4 FALSE &&
728 test_cmp expect .git/config'
737 test_expect_success
'set --int' '
740 git config --int int.val1 01 &&
741 git config --int int.val2 -1 &&
742 git config --int int.val3 5m &&
743 test_cmp expect .git/config
746 test_expect_success
'get --bool-or-int' '
747 cat >.git/config <<-\EOF &&
757 cat >expect <<-\EOF &&
766 git config --bool-or-int bool.true1 &&
767 git config --bool-or-int bool.true2 &&
768 git config --bool-or-int bool.false &&
769 git config --bool-or-int int.int1 &&
770 git config --bool-or-int int.int2 &&
771 git config --bool-or-int int.int3
773 test_cmp expect actual
788 test_expect_success
'set --bool-or-int' '
790 git config --bool-or-int bool.true1 true &&
791 git config --bool-or-int bool.false1 false &&
792 git config --bool-or-int bool.true2 yes &&
793 git config --bool-or-int bool.false2 no &&
794 git config --bool-or-int int.int1 0 &&
795 git config --bool-or-int int.int2 1 &&
796 git config --bool-or-int int.int3 -1 &&
797 test_cmp expect .git/config
807 test_expect_success NOT_MINGW
'set --path' '
809 git config --path path.home "~/" &&
810 git config --path path.normal "/dev/null" &&
811 git config --path path.trailingtilde "foo~" &&
812 test_cmp expect .git/config'
814 if test_have_prereq NOT_MINGW
&& test "${HOME+set}"
816 test_set_prereq HOMEVAR
825 test_expect_success HOMEVAR
'get --path' '
826 git config --get --path path.home > result &&
827 git config --get --path path.normal >> result &&
828 git config --get --path path.trailingtilde >> result &&
829 test_cmp expect result
837 test_expect_success NOT_MINGW
'get --path copes with unset $HOME' '
840 test_must_fail git config --get --path path.home \
842 git config --get --path path.normal >>result &&
843 git config --get --path path.trailingtilde >>result
845 grep "[Ff]ailed to expand.*~/" msg &&
846 test_cmp expect result
849 test_expect_success
'get --path barfs on boolean variable' '
850 echo "[path]bool" >.git/config &&
851 test_must_fail git config --get --path path.bool
858 semicolon = "test;test"
861 test_expect_success
'quoting' '
863 git config quote.leading " test" &&
864 git config quote.ending "test " &&
865 git config quote.semicolon "test;test" &&
866 git config quote.hash "test#test" &&
867 test_cmp expect .git/config
870 test_expect_success
'key with newline' '
871 test_must_fail git config "key.with
874 test_expect_success
'value with newline' 'git config key.sub value.with\\\
877 cat > .git
/config
<<\EOF
882 noncont
= not continued
; \
888 section.continued
=continued
889 section.noncont
=not continued
890 section.quotecont
=cont
;inued
893 test_expect_success
'value continued on next line' '
894 git config --list > result &&
895 test_cmp result expect
898 cat > .git
/config
<<\EOF
899 [section
"sub=section"]
908 section.sub
=section.val1
909 foo
=barQsection.sub
=section.val2
911 barQsection.sub
=section.val3
914 Qsection.sub
=section.val4
915 Qsection.sub
=section.val5Q
917 test_expect_success
'--null --list' '
918 git config --null --list | nul_to_q >result &&
920 test_cmp expect result
923 test_expect_success
'--null --get-regexp' '
924 git config --null --get-regexp "val[0-9]" | nul_to_q >result &&
926 test_cmp expect result
929 test_expect_success
'inner whitespace kept verbatim' '
930 git config section.val "foo bar" &&
931 echo "foo bar" >expect &&
932 git config section.val >actual &&
933 test_cmp expect actual
936 test_expect_success SYMLINKS
'symlinked configuration' '
937 ln -s notyet myconfig &&
938 GIT_CONFIG=myconfig git config test.frotz nitfol &&
941 test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
942 GIT_CONFIG=myconfig git config test.xyzzy rezrov &&
945 cat >expect <<-\EOF &&
950 GIT_CONFIG=notyet git config test.frotz &&
951 GIT_CONFIG=notyet git config test.xyzzy
953 test_cmp expect actual
956 test_expect_success
'nonexistent configuration' '
958 GIT_CONFIG=doesnotexist &&
960 test_must_fail git config --list &&
961 test_must_fail git config test.xyzzy
965 test_expect_success SYMLINKS
'symlink to nonexistent configuration' '
966 ln -s doesnotexist linktonada &&
967 ln -s linktonada linktolinktonada &&
969 GIT_CONFIG=linktonada &&
971 test_must_fail git config --list &&
972 GIT_CONFIG=linktolinktonada &&
973 test_must_fail git config --list
977 test_expect_success
'check split_cmdline return' "
978 git config alias.split-cmdline-fix 'echo \"' &&
979 test_must_fail git split-cmdline-fix &&
982 git commit -m 'initial commit' &&
983 git config branch.master.mergeoptions 'echo \"' &&
984 test_must_fail git merge master
987 test_expect_success
'git -c "key=value" support' '
988 cat >expect <<-\EOF &&
994 git -c core.name=value config core.name &&
995 git -c foo.CamelCase=value config foo.camelcase &&
996 git -c foo.flag config --bool foo.flag
998 test_cmp expect actual &&
999 test_must_fail git -c name=value config core.name
1002 test_expect_success
'key sanity-checking' '
1003 test_must_fail git config foo=bar &&
1004 test_must_fail git config foo=.bar &&
1005 test_must_fail git config foo.ba=r &&
1006 test_must_fail git config foo.1bar &&
1007 test_must_fail git config foo."ba
1009 test_must_fail git config . false &&
1010 test_must_fail git config .foo false &&
1011 test_must_fail git config foo. false &&
1012 test_must_fail git config .foo. false &&
1013 git config foo.bar true &&
1014 git config foo."ba =z".bar false
1017 test_expect_success
'git -c works with aliases of builtins' '
1018 git config alias.checkconfig "-c foo.check=bar config foo.check" &&
1020 git checkconfig >actual &&
1021 test_cmp expect actual
1024 test_expect_success
'git -c does not split values on equals' '
1025 echo "value with = in it" >expect &&
1026 git -c core.foo="value with = in it" config core.foo >actual &&
1027 test_cmp expect actual
1030 test_expect_success
'git -c dies on bogus config' '
1031 test_must_fail git -c core.bare=foo rev-parse
1034 test_expect_success
'git -c complains about empty key' '
1035 test_must_fail git -c "=foo" rev-parse
1038 test_expect_success
'git -c complains about empty key and value' '
1039 test_must_fail git -c "" rev-parse
1042 test_expect_success
'git config --edit works' '
1043 git config -f tmp test.value no &&
1044 echo test.value=yes >expect &&
1045 GIT_EDITOR="echo [test]value=yes >" git config -f tmp --edit &&
1046 git config -f tmp --list >actual &&
1047 test_cmp expect actual
1050 test_expect_success
'git config --edit respects core.editor' '
1051 git config -f tmp test.value no &&
1052 echo test.value=yes >expect &&
1053 test_config core.editor "echo [test]value=yes >" &&
1054 git config -f tmp --edit &&
1055 git config -f tmp --list >actual &&
1056 test_cmp expect actual
1059 # malformed configuration files
1060 test_expect_success
'barf on syntax error' '
1061 cat >.git/config <<-\EOF &&
1062 # broken section line
1066 test_must_fail git config --get section.key >actual 2>error &&
1067 grep " line 3 " error
1070 test_expect_success
'barf on incomplete section header' '
1071 cat >.git/config <<-\EOF &&
1072 # broken section line
1076 test_must_fail git config --get section.key >actual 2>error &&
1077 grep " line 2 " error
1080 test_expect_success
'barf on incomplete string' '
1081 cat >.git/config <<-\EOF &&
1082 # broken section line
1086 test_must_fail git config --get section.key >actual 2>error &&
1087 grep " line 3 " error
1090 # good section hygiene
1091 test_expect_failure
'unsetting the last key in a section removes header' '
1092 cat >.git/config <<-\EOF &&
1093 # some generic comment on the configuration file itself
1094 # a comment specific to this "section" section.
1096 # some intervening lines
1097 # that should also be dropped
1100 # please be careful when you update the above variable
1103 cat >expect <<-\EOF &&
1104 # some generic comment on the configuration file itself
1107 git config --unset section.key &&
1108 test_cmp expect .git/config
1111 test_expect_failure
'adding a key into an empty section reuses header' '
1112 cat >.git/config <<-\EOF &&
1116 q_to_tab >expect <<-\EOF &&
1121 git config section.key value
1122 test_cmp expect .git/config