Merge branch 'cn/config-missing-path'
[git.git] / t / t1300-repo-config.sh
blob7c4c372e374b66844b83ac9343c6c71b362380e2
1 #!/bin/sh
3 # Copyright (c) 2005 Johannes Schindelin
6 test_description='Test git config in different settings'
8 . ./test-lib.sh
10 test_expect_success 'clear default config' '
11 rm -f .git/config
14 cat > expect << EOF
15 [core]
16 penguin = little blue
17 EOF
18 test_expect_success 'initial' '
19 git config core.penguin "little blue" &&
20 test_cmp expect .git/config
23 cat > expect << EOF
24 [core]
25 penguin = little blue
26 Movie = BadPhysics
27 EOF
28 test_expect_success 'mixed case' '
29 git config Core.Movie BadPhysics &&
30 test_cmp expect .git/config
33 cat > expect << EOF
34 [core]
35 penguin = little blue
36 Movie = BadPhysics
37 [Cores]
38 WhatEver = Second
39 EOF
40 test_expect_success 'similar section' '
41 git config Cores.WhatEver Second &&
42 test_cmp expect .git/config
45 cat > expect << EOF
46 [core]
47 penguin = little blue
48 Movie = BadPhysics
49 UPPERCASE = true
50 [Cores]
51 WhatEver = Second
52 EOF
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'
64 cat > expect << EOF
65 [core]
66 penguin = very blue
67 Movie = BadPhysics
68 UPPERCASE = true
69 penguin = kingpin
70 [Cores]
71 WhatEver = Second
72 EOF
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 &&
90 [section.SubSection]
91 key = one
92 [section "SubSection"]
93 key = two
94 EOF
95 echo one >expect &&
96 git config section.subsection.key >actual &&
97 test_cmp expect actual &&
98 echo two >expect &&
99 git config section.SubSection.key >actual &&
100 test_cmp expect actual
103 cat > .git/config <<\EOF
104 [alpha]
105 bar = foo
106 [beta]
107 baz = multiple \
108 lines
111 test_expect_success 'unset with cont. lines' \
112 'git config --unset beta.baz'
114 cat > expect <<\EOF
115 [alpha]
116 bar = foo
117 [beta]
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
126 # empty line
127 ; comment
128 haha ="beta" # last silly comment
129 haha = hello
130 haha = bello
131 [nextSection] noNewline = ouch
134 cp .git/config .git/config2
136 test_expect_success 'multiple unset' \
137 'git config --unset-all beta.haha'
139 cat > expect << EOF
140 [beta] ; silly comment # another comment
141 noIndent= sillyValue ; 'nother silly comment
143 # empty line
144 ; 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
157 rm .git/config2
159 test_expect_success '--replace-all' \
160 'git config --replace-all beta.haha gamma'
162 cat > expect << EOF
163 [beta] ; silly comment # another comment
164 noIndent= sillyValue ; 'nother silly comment
166 # empty line
167 ; comment
168 haha = gamma
169 [nextSection] noNewline = ouch
172 test_expect_success 'all replaced' 'test_cmp expect .git/config'
174 cat > expect << EOF
175 [beta] ; silly comment # another comment
176 noIndent= sillyValue ; 'nother silly comment
178 # empty line
179 ; comment
180 haha = alpha
181 [nextSection] noNewline = ouch
183 test_expect_success 'really mean test' '
184 git config beta.haha alpha &&
185 test_cmp expect .git/config
188 cat > expect << EOF
189 [beta] ; silly comment # another comment
190 noIndent= sillyValue ; 'nother silly comment
192 # empty line
193 ; comment
194 haha = alpha
195 [nextSection]
196 nonewline = wow
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)'
205 cat > expect << EOF
206 [beta] ; silly comment # another comment
207 noIndent= sillyValue ; 'nother silly comment
209 # empty line
210 ; comment
211 [nextSection]
212 nonewline = wow
214 test_expect_success 'unset' '
215 git config --unset beta.haha &&
216 test_cmp expect .git/config
219 cat > expect << EOF
220 [beta] ; silly comment # another comment
221 noIndent= sillyValue ; 'nother silly comment
223 # empty line
224 ; comment
225 [nextSection]
226 nonewline = wow
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'
247 cat > expect << EOF
248 [beta] ; silly comment # another comment
249 noIndent= sillyValue ; 'nother silly comment
251 # empty line
252 ; comment
253 [nextSection]
254 nonewline = wow3
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
274 cat > expect << EOF
275 [beta] ; silly comment # another comment
276 noIndent= sillyValue ; 'nother silly comment
278 # empty line
279 ; comment
280 [nextSection]
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'
296 cat > expect << EOF
297 [beta] ; silly comment # another comment
298 noIndent= sillyValue ; 'nother silly comment
300 # empty line
301 ; comment
302 [nextSection]
303 NoNewLine = wow2 for me
304 [123456]
305 a123 = 987
306 [Version "1.2.3eX"]
307 Alpha = beta
310 test_expect_success 'hierarchical section value' 'test_cmp expect .git/config'
312 cat > expect << EOF
313 beta.noindent=sillyValue
314 nextsection.nonewline=wow2 for me
315 123456.a123=987
316 version.1.2.3eX.alpha=beta
319 test_expect_success 'working --list' \
320 'git config --list > output && cmp output expect'
322 cat > expect << EOF
325 test_expect_success '--list without repo produces empty output' '
326 git --git-dir=nonexistent config --list >output &&
327 test_cmp expect output
330 cat > expect << EOF
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'
338 cat > expect << EOF
339 wow2 for me
340 wow4 for you
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
350 [novalue]
351 variable
352 [emptyvalue]
353 variable =
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 &&
366 cmp output expect'
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 &&
372 cmp output expect'
374 echo 'emptyvalue.variable ' > expect
376 test_expect_success 'get-regexp variable with empty value' \
377 'git config --get-regexp emptyvalue > output &&
378 cmp output expect'
380 echo true > expect
382 test_expect_success 'get bool variable with no value' \
383 'git config --bool novalue.variable > output &&
384 cmp output expect'
386 echo false > expect
388 test_expect_success 'get bool variable with empty value' \
389 'git config --bool emptyvalue.variable > output &&
390 cmp output expect'
392 test_expect_success 'no arguments, but no crash' '
393 test_must_fail git config >output 2>&1 &&
394 test_i18ngrep usage output
397 cat > .git/config << EOF
398 [a.b]
399 c = d
402 cat > expect << EOF
403 [a.b]
404 c = d
406 x = y
409 test_expect_success 'new section is partial match of another' '
410 git config a.x y &&
411 test_cmp expect .git/config
414 cat > expect << EOF
415 [a.b]
416 c = d
418 x = y
419 b = c
421 x = y
424 test_expect_success 'new variable inserts into proper section' '
425 git config b.x y &&
426 git config a.b c &&
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
434 [ein]
435 bahn = strasse
438 cat > expect << EOF
439 ein.bahn=strasse
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' '
451 mkdir x &&
453 cd x &&
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' '
463 cd x &&
464 GIT_CONFIG=../other-config git config --get ein.bahn >actual &&
465 test_cmp expect actual
469 cat > expect << EOF
470 [ein]
471 bahn = strasse
472 [anwohner]
473 park = ausweis
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
482 # Hallo
483 #Bello
484 [branch "eins"]
485 x = 1
486 [branch.eins]
487 y = 1
488 [branch "1 234 blabl/a"]
489 weird
492 test_expect_success "rename section" \
493 "git config --rename-section branch.eins branch.zwei"
495 cat > expect << EOF
496 # Hallo
497 #Bello
498 [branch "zwei"]
499 x = 1
500 [branch "zwei"]
501 y = 1
502 [branch "1 234 blabl/a"]
503 weird
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'
518 cat > expect << EOF
519 # Hallo
520 #Bello
521 [branch "zwei"]
522 x = 1
523 [branch "zwei"]
524 y = 1
525 [branch "drei"]
526 weird
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'
538 cat > expect << EOF
539 # Hallo
540 #Bello
541 [branch "zwei"]
542 x = 1
543 [branch "zwei"]
544 y = 1
545 [branch "drei"]
546 weird
547 [branch "zwei"]
548 z = 1
551 test_expect_success "rename succeeded" "test_cmp expect .git/config"
553 test_expect_success 'renaming empty section name is rejected' '
554 test_must_fail git config --rename-section branch.zwei ""
557 test_expect_success 'renaming to bogus section is rejected' '
558 test_must_fail git config --rename-section branch.zwei "bogus name"
561 cat >> .git/config << EOF
562 [branch "zwei"] a = 1 [branch "vier"]
565 test_expect_success "remove section" "git config --remove-section branch.zwei"
567 cat > expect << EOF
568 # Hallo
569 #Bello
570 [branch "drei"]
571 weird
574 test_expect_success "section was removed properly" \
575 "test_cmp expect .git/config"
577 cat > expect << EOF
578 [gitcvs]
579 enabled = true
580 dbname = %Ggitcvs2.%a.%m.sqlite
581 [gitcvs "ext"]
582 dbname = %Ggitcvs1.%a.%m.sqlite
585 test_expect_success 'section ending' '
587 rm -f .git/config &&
588 git config gitcvs.enabled true &&
589 git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
590 git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
591 test_cmp expect .git/config
595 test_expect_success numbers '
597 git config kilo.gram 1k &&
598 git config mega.ton 1m &&
599 k=$(git config --int --get kilo.gram) &&
600 test z1024 = "z$k" &&
601 m=$(git config --int --get mega.ton) &&
602 test z1048576 = "z$m"
605 cat > expect <<EOF
606 fatal: bad config value for 'aninvalid.unit' in .git/config
609 test_expect_success 'invalid unit' '
611 git config aninvalid.unit "1auto" &&
612 s=$(git config aninvalid.unit) &&
613 test "z1auto" = "z$s" &&
614 if git config --int --get aninvalid.unit 2>actual
615 then
616 echo config should have failed
617 false
618 fi &&
619 cmp actual expect
622 cat > expect << EOF
623 true
624 false
625 true
626 false
627 true
628 false
629 true
630 false
633 test_expect_success bool '
635 git config bool.true1 01 &&
636 git config bool.true2 -1 &&
637 git config bool.true3 YeS &&
638 git config bool.true4 true &&
639 git config bool.false1 000 &&
640 git config bool.false2 "" &&
641 git config bool.false3 nO &&
642 git config bool.false4 FALSE &&
643 rm -f result &&
644 for i in 1 2 3 4
646 git config --bool --get bool.true$i >>result
647 git config --bool --get bool.false$i >>result
648 done &&
649 cmp expect result'
651 test_expect_success 'invalid bool (--get)' '
653 git config bool.nobool foobar &&
654 test_must_fail git config --bool --get bool.nobool'
656 test_expect_success 'invalid bool (set)' '
658 test_must_fail git config --bool bool.nobool foobar'
660 cat > expect <<\EOF
661 [bool]
662 true1 = true
663 true2 = true
664 true3 = true
665 true4 = true
666 false1 = false
667 false2 = false
668 false3 = false
669 false4 = false
672 test_expect_success 'set --bool' '
674 rm -f .git/config &&
675 git config --bool bool.true1 01 &&
676 git config --bool bool.true2 -1 &&
677 git config --bool bool.true3 YeS &&
678 git config --bool bool.true4 true &&
679 git config --bool bool.false1 000 &&
680 git config --bool bool.false2 "" &&
681 git config --bool bool.false3 nO &&
682 git config --bool bool.false4 FALSE &&
683 cmp expect .git/config'
685 cat > expect <<\EOF
686 [int]
687 val1 = 1
688 val2 = -1
689 val3 = 5242880
692 test_expect_success 'set --int' '
694 rm -f .git/config &&
695 git config --int int.val1 01 &&
696 git config --int int.val2 -1 &&
697 git config --int int.val3 5m &&
698 cmp expect .git/config'
700 cat >expect <<\EOF
701 [bool]
702 true1 = true
703 true2 = true
704 false1 = false
705 false2 = false
706 [int]
707 int1 = 0
708 int2 = 1
709 int3 = -1
712 test_expect_success 'get --bool-or-int' '
713 rm -f .git/config &&
715 echo "[bool]"
716 echo true1
717 echo true2 = true
718 echo false = false
719 echo "[int]"
720 echo int1 = 0
721 echo int2 = 1
722 echo int3 = -1
723 ) >>.git/config &&
724 test $(git config --bool-or-int bool.true1) = true &&
725 test $(git config --bool-or-int bool.true2) = true &&
726 test $(git config --bool-or-int bool.false) = false &&
727 test $(git config --bool-or-int int.int1) = 0 &&
728 test $(git config --bool-or-int int.int2) = 1 &&
729 test $(git config --bool-or-int int.int3) = -1
733 cat >expect <<\EOF
734 [bool]
735 true1 = true
736 false1 = false
737 true2 = true
738 false2 = false
739 [int]
740 int1 = 0
741 int2 = 1
742 int3 = -1
745 test_expect_success 'set --bool-or-int' '
746 rm -f .git/config &&
747 git config --bool-or-int bool.true1 true &&
748 git config --bool-or-int bool.false1 false &&
749 git config --bool-or-int bool.true2 yes &&
750 git config --bool-or-int bool.false2 no &&
751 git config --bool-or-int int.int1 0 &&
752 git config --bool-or-int int.int2 1 &&
753 git config --bool-or-int int.int3 -1 &&
754 test_cmp expect .git/config
757 cat >expect <<\EOF
758 [path]
759 home = ~/
760 normal = /dev/null
761 trailingtilde = foo~
764 test_expect_success NOT_MINGW 'set --path' '
765 rm -f .git/config &&
766 git config --path path.home "~/" &&
767 git config --path path.normal "/dev/null" &&
768 git config --path path.trailingtilde "foo~" &&
769 test_cmp expect .git/config'
771 if test_have_prereq NOT_MINGW && test "${HOME+set}"
772 then
773 test_set_prereq HOMEVAR
776 cat >expect <<EOF
777 $HOME/
778 /dev/null
779 foo~
782 test_expect_success HOMEVAR 'get --path' '
783 git config --get --path path.home > result &&
784 git config --get --path path.normal >> result &&
785 git config --get --path path.trailingtilde >> result &&
786 test_cmp expect result
789 cat >expect <<\EOF
790 /dev/null
791 foo~
794 test_expect_success NOT_MINGW 'get --path copes with unset $HOME' '
796 unset HOME;
797 test_must_fail git config --get --path path.home \
798 >result 2>msg &&
799 git config --get --path path.normal >>result &&
800 git config --get --path path.trailingtilde >>result
801 ) &&
802 grep "[Ff]ailed to expand.*~/" msg &&
803 test_cmp expect result
806 test_expect_success 'get --path barfs on boolean variable' '
807 echo "[path]bool" >.git/config &&
808 test_must_fail git config --get --path path.bool
811 cat > expect << EOF
812 [quote]
813 leading = " test"
814 ending = "test "
815 semicolon = "test;test"
816 hash = "test#test"
818 test_expect_success 'quoting' '
819 rm -f .git/config &&
820 git config quote.leading " test" &&
821 git config quote.ending "test " &&
822 git config quote.semicolon "test;test" &&
823 git config quote.hash "test#test" &&
824 test_cmp expect .git/config
827 test_expect_success 'key with newline' '
828 test_must_fail git config "key.with
829 newline" 123'
831 test_expect_success 'value with newline' 'git config key.sub value.with\\\
832 newline'
834 cat > .git/config <<\EOF
835 [section]
836 ; comment \
837 continued = cont\
838 inued
839 noncont = not continued ; \
840 quotecont = "cont;\
841 inued"
844 cat > expect <<\EOF
845 section.continued=continued
846 section.noncont=not continued
847 section.quotecont=cont;inued
850 test_expect_success 'value continued on next line' '
851 git config --list > result &&
852 cmp result expect
855 cat > .git/config <<\EOF
856 [section "sub=section"]
857 val1 = foo=bar
858 val2 = foo\nbar
859 val3 = \n\n
860 val4 =
861 val5
864 cat > expect <<\EOF
865 section.sub=section.val1
866 foo=barQsection.sub=section.val2
868 barQsection.sub=section.val3
871 Qsection.sub=section.val4
872 Qsection.sub=section.val5Q
874 test_expect_success '--null --list' '
875 git config --null --list | nul_to_q >result &&
876 echo >>result &&
877 test_cmp expect result
880 test_expect_success '--null --get-regexp' '
881 git config --null --get-regexp "val[0-9]" | nul_to_q >result &&
882 echo >>result &&
883 test_cmp expect result
886 test_expect_success 'inner whitespace kept verbatim' '
887 git config section.val "foo bar" &&
888 test "z$(git config section.val)" = "zfoo bar"
891 test_expect_success SYMLINKS 'symlinked configuration' '
893 ln -s notyet myconfig &&
894 GIT_CONFIG=myconfig git config test.frotz nitfol &&
895 test -h myconfig &&
896 test -f notyet &&
897 test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
898 GIT_CONFIG=myconfig git config test.xyzzy rezrov &&
899 test -h myconfig &&
900 test -f notyet &&
901 test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
902 test "z$(GIT_CONFIG=notyet git config test.xyzzy)" = zrezrov
906 test_expect_success 'nonexistent configuration' '
908 GIT_CONFIG=doesnotexist &&
909 export GIT_CONFIG &&
910 test_must_fail git config --list &&
911 test_must_fail git config test.xyzzy
915 test_expect_success SYMLINKS 'symlink to nonexistent configuration' '
916 ln -s doesnotexist linktonada &&
917 ln -s linktonada linktolinktonada &&
919 GIT_CONFIG=linktonada &&
920 export GIT_CONFIG &&
921 test_must_fail git config --list &&
922 GIT_CONFIG=linktolinktonada &&
923 test_must_fail git config --list
927 test_expect_success 'check split_cmdline return' "
928 git config alias.split-cmdline-fix 'echo \"' &&
929 test_must_fail git split-cmdline-fix &&
930 echo foo > foo &&
931 git add foo &&
932 git commit -m 'initial commit' &&
933 git config branch.master.mergeoptions 'echo \"' &&
934 test_must_fail git merge master
937 test_expect_success 'git -c "key=value" support' '
938 test "z$(git -c core.name=value config core.name)" = zvalue &&
939 test "z$(git -c foo.CamelCase=value config foo.camelcase)" = zvalue &&
940 test "z$(git -c foo.flag config --bool foo.flag)" = ztrue &&
941 test_must_fail git -c name=value config core.name
944 test_expect_success 'key sanity-checking' '
945 test_must_fail git config foo=bar &&
946 test_must_fail git config foo=.bar &&
947 test_must_fail git config foo.ba=r &&
948 test_must_fail git config foo.1bar &&
949 test_must_fail git config foo."ba
950 z".bar &&
951 test_must_fail git config . false &&
952 test_must_fail git config .foo false &&
953 test_must_fail git config foo. false &&
954 test_must_fail git config .foo. false &&
955 git config foo.bar true &&
956 git config foo."ba =z".bar false
959 test_expect_success 'git -c works with aliases of builtins' '
960 git config alias.checkconfig "-c foo.check=bar config foo.check" &&
961 echo bar >expect &&
962 git checkconfig >actual &&
963 test_cmp expect actual
966 test_expect_success 'git -c does not split values on equals' '
967 echo "value with = in it" >expect &&
968 git -c core.foo="value with = in it" config core.foo >actual &&
969 test_cmp expect actual
972 test_expect_success 'git -c dies on bogus config' '
973 test_must_fail git -c core.bare=foo rev-parse
976 test_expect_success 'git -c complains about empty key' '
977 test_must_fail git -c "=foo" rev-parse
980 test_expect_success 'git -c complains about empty key and value' '
981 test_must_fail git -c "" rev-parse
984 test_expect_success 'git config --edit works' '
985 git config -f tmp test.value no &&
986 echo test.value=yes >expect &&
987 GIT_EDITOR="echo [test]value=yes >" git config -f tmp --edit &&
988 git config -f tmp --list >actual &&
989 test_cmp expect actual
992 test_expect_success 'git config --edit respects core.editor' '
993 git config -f tmp test.value no &&
994 echo test.value=yes >expect &&
995 test_config core.editor "echo [test]value=yes >" &&
996 git config -f tmp --edit &&
997 git config -f tmp --list >actual &&
998 test_cmp expect actual
1001 # malformed configuration files
1002 test_expect_success 'barf on syntax error' '
1003 cat >.git/config <<-\EOF &&
1004 # broken section line
1005 [section]
1006 key garbage
1008 test_must_fail git config --get section.key >actual 2>error &&
1009 grep " line 3 " error
1012 test_expect_success 'barf on incomplete section header' '
1013 cat >.git/config <<-\EOF &&
1014 # broken section line
1015 [section
1016 key = value
1018 test_must_fail git config --get section.key >actual 2>error &&
1019 grep " line 2 " error
1022 test_expect_success 'barf on incomplete string' '
1023 cat >.git/config <<-\EOF &&
1024 # broken section line
1025 [section]
1026 key = "value string
1028 test_must_fail git config --get section.key >actual 2>error &&
1029 grep " line 3 " error
1032 test_done