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'
61 test_expect_success
'replace with non-match (actually matching)' \
62 'git config core.penguin "very blue" !kingpin'
74 test_expect_success
'non-match result' 'test_cmp expect .git/config'
76 test_expect_success
'find mixed-case key by canonical name' '
77 echo Second >expect &&
78 git config cores.whatever >actual &&
79 test_cmp expect actual
82 test_expect_success
'find mixed-case key by non-canonical name' '
83 echo Second >expect &&
84 git config CoReS.WhAtEvEr >actual &&
85 test_cmp expect actual
88 test_expect_success
'subsections are not canonicalized by git-config' '
89 cat >>.git/config <<-\EOF &&
92 [section "SubSection"]
96 git config section.subsection.key >actual &&
97 test_cmp expect actual &&
99 git config section.SubSection.key >actual &&
100 test_cmp expect actual
103 cat > .git
/config
<<\EOF
111 test_expect_success
'unset with cont. lines' \
112 'git config --unset beta.baz'
120 test_expect_success
'unset with cont. lines is correct' 'test_cmp expect .git/config'
122 cat > .git
/config
<< EOF
123 [beta] ; silly comment # another comment
124 noIndent= sillyValue ; 'nother silly comment
128 haha ="beta" # last silly comment
131 [nextSection] noNewline = ouch
134 cp .git
/config .git
/config2
136 test_expect_success
'multiple unset' \
137 'git config --unset-all beta.haha'
140 [beta] ; silly comment # another comment
141 noIndent= sillyValue ; 'nother silly comment
145 [nextSection] noNewline = ouch
148 test_expect_success
'multiple unset is correct' 'test_cmp expect .git/config'
150 cp .git
/config2 .git
/config
152 test_expect_success
'--replace-all missing value' '
153 test_must_fail git config --replace-all beta.haha &&
154 test_cmp .git/config2 .git/config
159 test_expect_success
'--replace-all' \
160 'git config --replace-all beta.haha gamma'
163 [beta] ; silly comment # another comment
164 noIndent= sillyValue ; 'nother silly comment
169 [nextSection] noNewline = ouch
172 test_expect_success
'all replaced' 'test_cmp expect .git/config'
175 [beta] ; silly comment # another comment
176 noIndent= sillyValue ; 'nother silly comment
181 [nextSection] noNewline = ouch
183 test_expect_success
'really mean test' '
184 git config beta.haha alpha &&
185 test_cmp expect .git/config
189 [beta] ; silly comment # another comment
190 noIndent= sillyValue ; 'nother silly comment
198 test_expect_success
'really really mean test' '
199 git config nextsection.nonewline wow &&
200 test_cmp expect .git/config
203 test_expect_success
'get value' 'test alpha = $(git config beta.haha)'
206 [beta] ; silly comment # another comment
207 noIndent= sillyValue ; 'nother silly comment
214 test_expect_success
'unset' '
215 git config --unset beta.haha &&
216 test_cmp expect .git/config
220 [beta] ; silly comment # another comment
221 noIndent= sillyValue ; 'nother silly comment
227 NoNewLine = wow2 for me
229 test_expect_success
'multivar' '
230 git config nextsection.NoNewLine "wow2 for me" "for me$" &&
231 test_cmp expect .git/config
234 test_expect_success
'non-match' \
235 'git config --get nextsection.nonewline !for'
237 test_expect_success
'non-match value' \
238 'test wow = $(git config --get nextsection.nonewline !for)'
240 test_expect_success
'ambiguous get' '
241 test_must_fail git config --get nextsection.nonewline
244 test_expect_success
'get multivar' \
245 'git config --get-all nextsection.nonewline'
248 [beta] ; silly comment # another comment
249 noIndent= sillyValue ; 'nother silly comment
255 NoNewLine = wow2 for me
257 test_expect_success
'multivar replace' '
258 git config nextsection.nonewline "wow3" "wow$" &&
259 test_cmp expect .git/config
262 test_expect_success
'ambiguous value' '
263 test_must_fail git config nextsection.nonewline
266 test_expect_success
'ambiguous unset' '
267 test_must_fail git config --unset nextsection.nonewline
270 test_expect_success
'invalid unset' '
271 test_must_fail git config --unset somesection.nonewline
275 [beta] ; silly comment # another comment
276 noIndent= sillyValue ; 'nother silly comment
281 NoNewLine = wow2 for me
284 test_expect_success
'multivar unset' '
285 git config --unset nextsection.nonewline "wow3$" &&
286 test_cmp expect .git/config
289 test_expect_success
'invalid key' 'test_must_fail git config inval.2key blabla'
291 test_expect_success
'correct key' 'git config 123456.a123 987'
293 test_expect_success
'hierarchical section' \
294 'git config Version.1.2.3eX.Alpha beta'
297 [beta] ; silly comment # another comment
298 noIndent= sillyValue ; 'nother silly comment
303 NoNewLine = wow2 for me
310 test_expect_success
'hierarchical section value' 'test_cmp expect .git/config'
313 beta.noindent=sillyValue
314 nextsection.nonewline=wow2 for me
316 version.1.2.3eX.alpha=beta
319 test_expect_success
'working --list' \
320 'git config --list > output && cmp output expect'
325 test_expect_success
'--list without repo produces empty output' '
326 git --git-dir=nonexistent config --list >output &&
327 test_cmp expect output
331 beta.noindent sillyValue
332 nextsection.nonewline wow2 for me
335 test_expect_success
'--get-regexp' \
336 'git config --get-regexp in > output && cmp output expect'
343 test_expect_success
'--add' '
344 git config --add nextsection.nonewline "wow4 for you" &&
345 git config --get-all nextsection.nonewline > output &&
346 test_cmp expect output
349 cat > .git
/config
<< EOF
356 test_expect_success
'get variable with no value' \
357 'git config --get novalue.variable ^$'
359 test_expect_success
'get variable with empty value' \
360 'git config --get emptyvalue.variable ^$'
362 echo novalue.variable
> expect
364 test_expect_success
'get-regexp variable with no value' \
365 'git config --get-regexp novalue > output &&
368 echo 'novalue.variable true' > expect
370 test_expect_success
'get-regexp --bool variable with no value' \
371 'git config --bool --get-regexp novalue > output &&
374 echo 'emptyvalue.variable ' > expect
376 test_expect_success
'get-regexp variable with empty value' \
377 'git config --get-regexp emptyvalue > output &&
382 test_expect_success
'get bool variable with no value' \
383 'git config --bool novalue.variable > output &&
388 test_expect_success
'get bool variable with empty value' \
389 'git config --bool emptyvalue.variable > output &&
392 test_expect_success
'no arguments, but no crash' '
393 test_must_fail git config >output 2>&1 &&
397 cat > .git
/config
<< EOF
409 test_expect_success
'new section is partial match of another' '
411 test_cmp expect .git/config
424 test_expect_success
'new variable inserts into proper section' '
427 test_cmp expect .git/config
430 test_expect_success
'alternative GIT_CONFIG (non-existing file should fail)' \
431 'test_must_fail git config --file non-existing-config -l'
433 cat > other-config
<< EOF
442 test_expect_success
'alternative GIT_CONFIG' '
443 GIT_CONFIG=other-config git config -l >output &&
444 test_cmp expect output
447 test_expect_success
'alternative GIT_CONFIG (--file)' \
448 'git config --file other-config -l > output && cmp output expect'
450 test_expect_success
'refer config from subdirectory' '
454 echo strasse >expect &&
455 git config --get --file ../other-config ein.bahn >actual &&
456 test_cmp expect actual
461 test_expect_success
'refer config from subdirectory via GIT_CONFIG' '
464 GIT_CONFIG=../other-config git config --get ein.bahn >actual &&
465 test_cmp expect actual
476 test_expect_success
'--set in alternative GIT_CONFIG' '
477 GIT_CONFIG=other-config git config anwohner.park ausweis &&
478 test_cmp expect other-config
481 cat > .git
/config
<< EOF
488 [branch "1 234 blabl/a"]
492 test_expect_success
"rename section" \
493 "git config --rename-section branch.eins branch.zwei"
502 [branch "1 234 blabl/a"]
506 test_expect_success
"rename succeeded" "test_cmp expect .git/config"
508 test_expect_success
"rename non-existing section" '
509 test_must_fail git config --rename-section \
510 branch."world domination" branch.drei
513 test_expect_success
"rename succeeded" "test_cmp expect .git/config"
515 test_expect_success
"rename another section" \
516 'git config --rename-section branch."1 234 blabl/a" branch.drei'
529 test_expect_success
"rename succeeded" "test_cmp expect .git/config"
531 cat >> .git
/config
<< EOF
532 [branch "vier"] z = 1
535 test_expect_success
"rename a section with a var on the same line" \
536 'git config --rename-section branch.vier branch.zwei'
551 test_expect_success
"rename succeeded" "test_cmp expect .git/config"
553 cat >> .git
/config
<< EOF
554 [branch "zwei"] a = 1 [branch "vier"]
557 test_expect_success
"remove section" "git config --remove-section branch.zwei"
566 test_expect_success
"section was removed properly" \
567 "test_cmp expect .git/config"
572 dbname = %Ggitcvs2.%a.%m.sqlite
574 dbname = %Ggitcvs1.%a.%m.sqlite
577 test_expect_success
'section ending' '
580 git config gitcvs.enabled true &&
581 git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
582 git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
583 test_cmp expect .git/config
587 test_expect_success numbers
'
589 git config kilo.gram 1k &&
590 git config mega.ton 1m &&
591 k=$(git config --int --get kilo.gram) &&
592 test z1024 = "z$k" &&
593 m=$(git config --int --get mega.ton) &&
594 test z1048576 = "z$m"
598 fatal: bad config value for 'aninvalid.unit' in .git/config
601 test_expect_success
'invalid unit' '
603 git config aninvalid.unit "1auto" &&
604 s=$(git config aninvalid.unit) &&
605 test "z1auto" = "z$s" &&
606 if git config --int --get aninvalid.unit 2>actual
608 echo config should have failed
625 test_expect_success bool
'
627 git config bool.true1 01 &&
628 git config bool.true2 -1 &&
629 git config bool.true3 YeS &&
630 git config bool.true4 true &&
631 git config bool.false1 000 &&
632 git config bool.false2 "" &&
633 git config bool.false3 nO &&
634 git config bool.false4 FALSE &&
638 git config --bool --get bool.true$i >>result
639 git config --bool --get bool.false$i >>result
643 test_expect_success
'invalid bool (--get)' '
645 git config bool.nobool foobar &&
646 test_must_fail git config --bool --get bool.nobool'
648 test_expect_success
'invalid bool (set)' '
650 test_must_fail git config --bool bool.nobool foobar'
664 test_expect_success
'set --bool' '
667 git config --bool bool.true1 01 &&
668 git config --bool bool.true2 -1 &&
669 git config --bool bool.true3 YeS &&
670 git config --bool bool.true4 true &&
671 git config --bool bool.false1 000 &&
672 git config --bool bool.false2 "" &&
673 git config --bool bool.false3 nO &&
674 git config --bool bool.false4 FALSE &&
675 cmp expect .git/config'
684 test_expect_success
'set --int' '
687 git config --int int.val1 01 &&
688 git config --int int.val2 -1 &&
689 git config --int int.val3 5m &&
690 cmp expect .git/config'
704 test_expect_success
'get --bool-or-int' '
716 test $(git config --bool-or-int bool.true1) = true &&
717 test $(git config --bool-or-int bool.true2) = true &&
718 test $(git config --bool-or-int bool.false) = false &&
719 test $(git config --bool-or-int int.int1) = 0 &&
720 test $(git config --bool-or-int int.int2) = 1 &&
721 test $(git config --bool-or-int int.int3) = -1
737 test_expect_success
'set --bool-or-int' '
739 git config --bool-or-int bool.true1 true &&
740 git config --bool-or-int bool.false1 false &&
741 git config --bool-or-int bool.true2 yes &&
742 git config --bool-or-int bool.false2 no &&
743 git config --bool-or-int int.int1 0 &&
744 git config --bool-or-int int.int2 1 &&
745 git config --bool-or-int int.int3 -1 &&
746 test_cmp expect .git/config
756 test_expect_success NOT_MINGW
'set --path' '
758 git config --path path.home "~/" &&
759 git config --path path.normal "/dev/null" &&
760 git config --path path.trailingtilde "foo~" &&
761 test_cmp expect .git/config'
763 if test_have_prereq NOT_MINGW
&& test "${HOME+set}"
765 test_set_prereq HOMEVAR
774 test_expect_success HOMEVAR
'get --path' '
775 git config --get --path path.home > result &&
776 git config --get --path path.normal >> result &&
777 git config --get --path path.trailingtilde >> result &&
778 test_cmp expect result
786 test_expect_success NOT_MINGW
'get --path copes with unset $HOME' '
789 test_must_fail git config --get --path path.home \
791 git config --get --path path.normal >>result &&
792 git config --get --path path.trailingtilde >>result
794 grep "[Ff]ailed to expand.*~/" msg &&
795 test_cmp expect result
802 semicolon = "test;test"
805 test_expect_success
'quoting' '
807 git config quote.leading " test" &&
808 git config quote.ending "test " &&
809 git config quote.semicolon "test;test" &&
810 git config quote.hash "test#test" &&
811 test_cmp expect .git/config
814 test_expect_success
'key with newline' '
815 test_must_fail git config "key.with
818 test_expect_success
'value with newline' 'git config key.sub value.with\\\
821 cat > .git
/config
<<\EOF
826 noncont
= not continued
; \
832 section.continued
=continued
833 section.noncont
=not continued
834 section.quotecont
=cont
;inued
837 test_expect_success
'value continued on next line' '
838 git config --list > result &&
842 cat > .git
/config
<<\EOF
843 [section
"sub=section"]
852 section.sub
=section.val1
853 foo
=barQsection.sub
=section.val2
855 barQsection.sub
=section.val3
858 Qsection.sub
=section.val4
859 Qsection.sub
=section.val5Q
861 test_expect_success
'--null --list' '
862 git config --null --list | nul_to_q >result &&
864 test_cmp expect result
867 test_expect_success
'--null --get-regexp' '
868 git config --null --get-regexp "val[0-9]" | nul_to_q >result &&
870 test_cmp expect result
873 test_expect_success
'inner whitespace kept verbatim' '
874 git config section.val "foo bar" &&
875 test "z$(git config section.val)" = "zfoo bar"
878 test_expect_success SYMLINKS
'symlinked configuration' '
880 ln -s notyet myconfig &&
881 GIT_CONFIG=myconfig git config test.frotz nitfol &&
884 test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
885 GIT_CONFIG=myconfig git config test.xyzzy rezrov &&
888 test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
889 test "z$(GIT_CONFIG=notyet git config test.xyzzy)" = zrezrov
893 test_expect_success
'nonexistent configuration' '
895 GIT_CONFIG=doesnotexist &&
897 test_must_fail git config --list &&
898 test_must_fail git config test.xyzzy
902 test_expect_success SYMLINKS
'symlink to nonexistent configuration' '
903 ln -s doesnotexist linktonada &&
904 ln -s linktonada linktolinktonada &&
906 GIT_CONFIG=linktonada &&
908 test_must_fail git config --list &&
909 GIT_CONFIG=linktolinktonada &&
910 test_must_fail git config --list
914 test_expect_success
'check split_cmdline return' "
915 git config alias.split-cmdline-fix 'echo \"' &&
916 test_must_fail git split-cmdline-fix &&
919 git commit -m 'initial commit' &&
920 git config branch.master.mergeoptions 'echo \"' &&
921 test_must_fail git merge master
924 test_expect_success
'git -c "key=value" support' '
925 test "z$(git -c core.name=value config core.name)" = zvalue &&
926 test "z$(git -c foo.CamelCase=value config foo.camelcase)" = zvalue &&
927 test "z$(git -c foo.flag config --bool foo.flag)" = ztrue &&
928 test_must_fail git -c name=value config core.name
931 test_expect_success
'key sanity-checking' '
932 test_must_fail git config foo=bar &&
933 test_must_fail git config foo=.bar &&
934 test_must_fail git config foo.ba=r &&
935 test_must_fail git config foo.1bar &&
936 test_must_fail git config foo."ba
938 test_must_fail git config . false &&
939 test_must_fail git config .foo false &&
940 test_must_fail git config foo. false &&
941 test_must_fail git config .foo. false &&
942 git config foo.bar true &&
943 git config foo."ba =z".bar false
946 test_expect_success
'git -c works with aliases of builtins' '
947 git config alias.checkconfig "-c foo.check=bar config foo.check" &&
949 git checkconfig >actual &&
950 test_cmp expect actual
953 test_expect_success
'git -c does not split values on equals' '
954 echo "value with = in it" >expect &&
955 git -c core.foo="value with = in it" config core.foo >actual &&
956 test_cmp expect actual
959 test_expect_success
'git -c dies on bogus config' '
960 test_must_fail git -c core.bare=foo rev-parse
963 test_expect_success
'git -c complains about empty key' '
964 test_must_fail git -c "=foo" rev-parse
967 test_expect_success
'git -c complains about empty key and value' '
968 test_must_fail git -c "" rev-parse
971 test_expect_success
'git config --edit works' '
972 git config -f tmp test.value no &&
973 echo test.value=yes >expect &&
974 GIT_EDITOR="echo [test]value=yes >" git config -f tmp --edit &&
975 git config -f tmp --list >actual &&
976 test_cmp expect actual
979 test_expect_success
'git config --edit respects core.editor' '
980 git config -f tmp test.value no &&
981 echo test.value=yes >expect &&
982 test_config core.editor "echo [test]value=yes >" &&
983 git config -f tmp --edit &&
984 git config -f tmp --list >actual &&
985 test_cmp expect actual
988 # malformed configuration files
989 test_expect_success
'barf on syntax error' '
990 cat >.git/config <<-\EOF &&
991 # broken section line
995 test_must_fail git config --get section.key >actual 2>error &&
996 grep " line 3 " error
999 test_expect_success
'barf on incomplete section header' '
1000 cat >.git/config <<-\EOF &&
1001 # broken section line
1005 test_must_fail git config --get section.key >actual 2>error &&
1006 grep " line 2 " error
1009 test_expect_success
'barf on incomplete string' '
1010 cat >.git/config <<-\EOF &&
1011 # broken section line
1015 test_must_fail git config --get section.key >actual 2>error &&
1016 grep " line 3 " error