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
'ambiguous get' '
258 test_must_fail git config --get nextsection.nonewline
261 test_expect_success
'get multivar' '
262 git config --get-all nextsection.nonewline
266 [beta] ; silly comment # another comment
267 noIndent= sillyValue ; 'nother silly comment
273 NoNewLine = wow2 for me
275 test_expect_success
'multivar replace' '
276 git config nextsection.nonewline "wow3" "wow$" &&
277 test_cmp expect .git/config
280 test_expect_success
'ambiguous unset' '
281 test_must_fail git config --unset nextsection.nonewline
284 test_expect_success
'invalid unset' '
285 test_must_fail git config --unset somesection.nonewline
289 [beta] ; silly comment # another comment
290 noIndent= sillyValue ; 'nother silly comment
295 NoNewLine = wow2 for me
298 test_expect_success
'multivar unset' '
299 git config --unset nextsection.nonewline "wow3$" &&
300 test_cmp expect .git/config
303 test_expect_success
'invalid key' 'test_must_fail git config inval.2key blabla'
305 test_expect_success
'correct key' 'git config 123456.a123 987'
307 test_expect_success
'hierarchical section' '
308 git config Version.1.2.3eX.Alpha beta
312 [beta] ; silly comment # another comment
313 noIndent= sillyValue ; 'nother silly comment
318 NoNewLine = wow2 for me
325 test_expect_success
'hierarchical section value' '
326 test_cmp expect .git/config
330 beta.noindent=sillyValue
331 nextsection.nonewline=wow2 for me
333 version.1.2.3eX.alpha=beta
336 test_expect_success
'working --list' '
337 git config --list > output &&
338 test_cmp expect output
343 test_expect_success
'--list without repo produces empty output' '
344 git --git-dir=nonexistent config --list >output &&
345 test_cmp expect output
349 beta.noindent sillyValue
350 nextsection.nonewline wow2 for me
353 test_expect_success
'--get-regexp' '
354 git config --get-regexp in >output &&
355 test_cmp expect output
363 test_expect_success
'--add' '
364 git config --add nextsection.nonewline "wow4 for you" &&
365 git config --get-all nextsection.nonewline > output &&
366 test_cmp expect output
369 cat > .git
/config
<< EOF
376 test_expect_success
'get variable with no value' '
377 git config --get novalue.variable ^$
380 test_expect_success
'get variable with empty value' '
381 git config --get emptyvalue.variable ^$
384 echo novalue.variable
> expect
386 test_expect_success
'get-regexp variable with no value' '
387 git config --get-regexp novalue > output &&
388 test_cmp expect output
391 echo 'novalue.variable true' > expect
393 test_expect_success
'get-regexp --bool variable with no value' '
394 git config --bool --get-regexp novalue > output &&
395 test_cmp expect output
398 echo 'emptyvalue.variable ' > expect
400 test_expect_success
'get-regexp variable with empty value' '
401 git config --get-regexp emptyvalue > output &&
402 test_cmp expect output
407 test_expect_success
'get bool variable with no value' '
408 git config --bool novalue.variable > output &&
409 test_cmp expect output
414 test_expect_success
'get bool variable with empty value' '
415 git config --bool emptyvalue.variable > output &&
416 test_cmp expect output
419 test_expect_success
'no arguments, but no crash' '
420 test_must_fail git config >output 2>&1 &&
421 test_i18ngrep usage output
424 cat > .git
/config
<< EOF
436 test_expect_success
'new section is partial match of another' '
438 test_cmp expect .git/config
451 test_expect_success
'new variable inserts into proper section' '
454 test_cmp expect .git/config
457 test_expect_success
'alternative GIT_CONFIG (non-existing file should fail)' '
458 test_must_fail git config --file non-existing-config -l
461 cat > other-config
<< EOF
470 test_expect_success
'alternative GIT_CONFIG' '
471 GIT_CONFIG=other-config git config -l >output &&
472 test_cmp expect output
475 test_expect_success
'alternative GIT_CONFIG (--file)' '
476 git config --file other-config -l > output &&
477 test_cmp expect output
480 test_expect_success
'refer config from subdirectory' '
484 echo strasse >expect &&
485 git config --get --file ../other-config ein.bahn >actual &&
486 test_cmp expect actual
491 test_expect_success
'refer config from subdirectory via GIT_CONFIG' '
494 GIT_CONFIG=../other-config git config --get ein.bahn >actual &&
495 test_cmp expect actual
506 test_expect_success
'--set in alternative GIT_CONFIG' '
507 GIT_CONFIG=other-config git config anwohner.park ausweis &&
508 test_cmp expect other-config
511 cat > .git
/config
<< EOF
518 [branch "1 234 blabl/a"]
522 test_expect_success
'rename section' '
523 git config --rename-section branch.eins branch.zwei
533 [branch "1 234 blabl/a"]
537 test_expect_success
'rename succeeded' '
538 test_cmp expect .git/config
541 test_expect_success
'rename non-existing section' '
542 test_must_fail git config --rename-section \
543 branch."world domination" branch.drei
546 test_expect_success
'rename succeeded' '
547 test_cmp expect .git/config
550 test_expect_success
'rename another section' '
551 git config --rename-section branch."1 234 blabl/a" branch.drei
565 test_expect_success
'rename succeeded' '
566 test_cmp expect .git/config
569 cat >> .git
/config
<< EOF
570 [branch "vier"] z = 1
573 test_expect_success
'rename a section with a var on the same line' '
574 git config --rename-section branch.vier branch.zwei
590 test_expect_success
'rename succeeded' '
591 test_cmp expect .git/config
594 test_expect_success
'renaming empty section name is rejected' '
595 test_must_fail git config --rename-section branch.zwei ""
598 test_expect_success
'renaming to bogus section is rejected' '
599 test_must_fail git config --rename-section branch.zwei "bogus name"
602 cat >> .git
/config
<< EOF
603 [branch "zwei"] a = 1 [branch "vier"]
606 test_expect_success
'remove section' '
607 git config --remove-section branch.zwei
617 test_expect_success
'section was removed properly' '
618 test_cmp expect .git/config
624 dbname = %Ggitcvs2.%a.%m.sqlite
626 dbname = %Ggitcvs1.%a.%m.sqlite
629 test_expect_success
'section ending' '
631 git config gitcvs.enabled true &&
632 git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
633 git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
634 test_cmp expect .git/config
638 test_expect_success numbers
'
639 git config kilo.gram 1k &&
640 git config mega.ton 1m &&
642 echo 1048576 >>expect &&
643 git config --int --get kilo.gram >actual &&
644 git config --int --get mega.ton >>actual &&
645 test_cmp expect actual
648 test_expect_success
'invalid unit' '
649 git config aninvalid.unit "1auto" &&
650 echo 1auto >expect &&
651 git config aninvalid.unit >actual &&
652 test_cmp expect actual &&
654 fatal: bad config value for '\''aninvalid.unit'\'' in .git/config
656 test_must_fail git config --int --get aninvalid.unit 2>actual &&
657 test_cmp actual expect
671 test_expect_success bool
'
673 git config bool.true1 01 &&
674 git config bool.true2 -1 &&
675 git config bool.true3 YeS &&
676 git config bool.true4 true &&
677 git config bool.false1 000 &&
678 git config bool.false2 "" &&
679 git config bool.false3 nO &&
680 git config bool.false4 FALSE &&
684 git config --bool --get bool.true$i >>result
685 git config --bool --get bool.false$i >>result
687 test_cmp expect result'
689 test_expect_success
'invalid bool (--get)' '
691 git config bool.nobool foobar &&
692 test_must_fail git config --bool --get bool.nobool'
694 test_expect_success
'invalid bool (set)' '
696 test_must_fail git config --bool bool.nobool foobar'
710 test_expect_success
'set --bool' '
713 git config --bool bool.true1 01 &&
714 git config --bool bool.true2 -1 &&
715 git config --bool bool.true3 YeS &&
716 git config --bool bool.true4 true &&
717 git config --bool bool.false1 000 &&
718 git config --bool bool.false2 "" &&
719 git config --bool bool.false3 nO &&
720 git config --bool bool.false4 FALSE &&
721 test_cmp expect .git/config'
730 test_expect_success
'set --int' '
733 git config --int int.val1 01 &&
734 git config --int int.val2 -1 &&
735 git config --int int.val3 5m &&
736 test_cmp expect .git/config
739 test_expect_success
'get --bool-or-int' '
740 cat >.git/config <<-\EOF &&
750 cat >expect <<-\EOF &&
759 git config --bool-or-int bool.true1 &&
760 git config --bool-or-int bool.true2 &&
761 git config --bool-or-int bool.false &&
762 git config --bool-or-int int.int1 &&
763 git config --bool-or-int int.int2 &&
764 git config --bool-or-int int.int3
766 test_cmp expect actual
781 test_expect_success
'set --bool-or-int' '
783 git config --bool-or-int bool.true1 true &&
784 git config --bool-or-int bool.false1 false &&
785 git config --bool-or-int bool.true2 yes &&
786 git config --bool-or-int bool.false2 no &&
787 git config --bool-or-int int.int1 0 &&
788 git config --bool-or-int int.int2 1 &&
789 git config --bool-or-int int.int3 -1 &&
790 test_cmp expect .git/config
800 test_expect_success NOT_MINGW
'set --path' '
802 git config --path path.home "~/" &&
803 git config --path path.normal "/dev/null" &&
804 git config --path path.trailingtilde "foo~" &&
805 test_cmp expect .git/config'
807 if test_have_prereq NOT_MINGW
&& test "${HOME+set}"
809 test_set_prereq HOMEVAR
818 test_expect_success HOMEVAR
'get --path' '
819 git config --get --path path.home > result &&
820 git config --get --path path.normal >> result &&
821 git config --get --path path.trailingtilde >> result &&
822 test_cmp expect result
830 test_expect_success NOT_MINGW
'get --path copes with unset $HOME' '
833 test_must_fail git config --get --path path.home \
835 git config --get --path path.normal >>result &&
836 git config --get --path path.trailingtilde >>result
838 grep "[Ff]ailed to expand.*~/" msg &&
839 test_cmp expect result
846 semicolon = "test;test"
849 test_expect_success
'quoting' '
851 git config quote.leading " test" &&
852 git config quote.ending "test " &&
853 git config quote.semicolon "test;test" &&
854 git config quote.hash "test#test" &&
855 test_cmp expect .git/config
858 test_expect_success
'key with newline' '
859 test_must_fail git config "key.with
862 test_expect_success
'value with newline' 'git config key.sub value.with\\\
865 cat > .git
/config
<<\EOF
870 noncont
= not continued
; \
876 section.continued
=continued
877 section.noncont
=not continued
878 section.quotecont
=cont
;inued
881 test_expect_success
'value continued on next line' '
882 git config --list > result &&
883 test_cmp result expect
886 cat > .git
/config
<<\EOF
887 [section
"sub=section"]
896 section.sub
=section.val1
897 foo
=barQsection.sub
=section.val2
899 barQsection.sub
=section.val3
902 Qsection.sub
=section.val4
903 Qsection.sub
=section.val5Q
905 test_expect_success
'--null --list' '
906 git config --null --list | nul_to_q >result &&
908 test_cmp expect result
911 test_expect_success
'--null --get-regexp' '
912 git config --null --get-regexp "val[0-9]" | nul_to_q >result &&
914 test_cmp expect result
917 test_expect_success
'inner whitespace kept verbatim' '
918 git config section.val "foo bar" &&
919 echo "foo bar" >expect &&
920 git config section.val >actual &&
921 test_cmp expect actual
924 test_expect_success SYMLINKS
'symlinked configuration' '
925 ln -s notyet myconfig &&
926 GIT_CONFIG=myconfig git config test.frotz nitfol &&
929 test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
930 GIT_CONFIG=myconfig git config test.xyzzy rezrov &&
933 cat >expect <<-\EOF &&
938 GIT_CONFIG=notyet git config test.frotz &&
939 GIT_CONFIG=notyet git config test.xyzzy
941 test_cmp expect actual
944 test_expect_success
'nonexistent configuration' '
946 GIT_CONFIG=doesnotexist &&
948 test_must_fail git config --list &&
949 test_must_fail git config test.xyzzy
953 test_expect_success SYMLINKS
'symlink to nonexistent configuration' '
954 ln -s doesnotexist linktonada &&
955 ln -s linktonada linktolinktonada &&
957 GIT_CONFIG=linktonada &&
959 test_must_fail git config --list &&
960 GIT_CONFIG=linktolinktonada &&
961 test_must_fail git config --list
965 test_expect_success
'check split_cmdline return' "
966 git config alias.split-cmdline-fix 'echo \"' &&
967 test_must_fail git split-cmdline-fix &&
970 git commit -m 'initial commit' &&
971 git config branch.master.mergeoptions 'echo \"' &&
972 test_must_fail git merge master
975 test_expect_success
'git -c "key=value" support' '
976 cat >expect <<-\EOF &&
982 git -c core.name=value config core.name &&
983 git -c foo.CamelCase=value config foo.camelcase &&
984 git -c foo.flag config --bool foo.flag
986 test_cmp expect actual &&
987 test_must_fail git -c name=value config core.name
990 test_expect_success
'key sanity-checking' '
991 test_must_fail git config foo=bar &&
992 test_must_fail git config foo=.bar &&
993 test_must_fail git config foo.ba=r &&
994 test_must_fail git config foo.1bar &&
995 test_must_fail git config foo."ba
997 test_must_fail git config . false &&
998 test_must_fail git config .foo false &&
999 test_must_fail git config foo. false &&
1000 test_must_fail git config .foo. false &&
1001 git config foo.bar true &&
1002 git config foo."ba =z".bar false
1005 test_expect_success
'git -c works with aliases of builtins' '
1006 git config alias.checkconfig "-c foo.check=bar config foo.check" &&
1008 git checkconfig >actual &&
1009 test_cmp expect actual
1012 test_expect_success
'git -c does not split values on equals' '
1013 echo "value with = in it" >expect &&
1014 git -c core.foo="value with = in it" config core.foo >actual &&
1015 test_cmp expect actual
1018 test_expect_success
'git -c dies on bogus config' '
1019 test_must_fail git -c core.bare=foo rev-parse
1022 test_expect_success
'git -c complains about empty key' '
1023 test_must_fail git -c "=foo" rev-parse
1026 test_expect_success
'git -c complains about empty key and value' '
1027 test_must_fail git -c "" rev-parse
1030 test_expect_success
'git config --edit works' '
1031 git config -f tmp test.value no &&
1032 echo test.value=yes >expect &&
1033 GIT_EDITOR="echo [test]value=yes >" git config -f tmp --edit &&
1034 git config -f tmp --list >actual &&
1035 test_cmp expect actual
1038 test_expect_success
'git config --edit respects core.editor' '
1039 git config -f tmp test.value no &&
1040 echo test.value=yes >expect &&
1041 test_config core.editor "echo [test]value=yes >" &&
1042 git config -f tmp --edit &&
1043 git config -f tmp --list >actual &&
1044 test_cmp expect actual
1047 # malformed configuration files
1048 test_expect_success
'barf on syntax error' '
1049 cat >.git/config <<-\EOF &&
1050 # broken section line
1054 test_must_fail git config --get section.key >actual 2>error &&
1055 grep " line 3 " error
1058 test_expect_success
'barf on incomplete section header' '
1059 cat >.git/config <<-\EOF &&
1060 # broken section line
1064 test_must_fail git config --get section.key >actual 2>error &&
1065 grep " line 2 " error
1068 test_expect_success
'barf on incomplete string' '
1069 cat >.git/config <<-\EOF &&
1070 # broken section line
1074 test_must_fail git config --get section.key >actual 2>error &&
1075 grep " line 3 " error