t1300: remove redundant test
[git/mjg.git] / t / t1300-repo-config.sh
blobed75c5caffaea7c84d937d6be4b038d846f28775
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
62 test_expect_success 'replace with non-match (actually matching)' '
63 git config core.penguin "very blue" !kingpin
66 cat > expect << EOF
67 [core]
68 penguin = very blue
69 Movie = BadPhysics
70 UPPERCASE = true
71 penguin = kingpin
72 [Cores]
73 WhatEver = Second
74 EOF
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 &&
92 [section.SubSection]
93 key = one
94 [section "SubSection"]
95 key = two
96 EOF
97 echo one >expect &&
98 git config section.subsection.key >actual &&
99 test_cmp expect actual &&
100 echo two >expect &&
101 git config section.SubSection.key >actual &&
102 test_cmp expect actual
105 cat > .git/config <<\EOF
106 [alpha]
107 bar = foo
108 [beta]
109 baz = multiple \
110 lines
113 test_expect_success 'unset with cont. lines' '
114 git config --unset beta.baz
117 cat > expect <<\EOF
118 [alpha]
119 bar = foo
120 [beta]
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
129 # empty line
130 ; comment
131 haha ="beta" # last silly comment
132 haha = hello
133 haha = bello
134 [nextSection] noNewline = ouch
137 cp .git/config .git/config2
139 test_expect_success 'multiple unset' '
140 git config --unset-all beta.haha
143 cat > expect << EOF
144 [beta] ; silly comment # another comment
145 noIndent= sillyValue ; 'nother silly comment
147 # empty line
148 ; 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
163 rm .git/config2
165 test_expect_success '--replace-all' '
166 git config --replace-all beta.haha gamma
169 cat > expect << EOF
170 [beta] ; silly comment # another comment
171 noIndent= sillyValue ; 'nother silly comment
173 # empty line
174 ; comment
175 haha = gamma
176 [nextSection] noNewline = ouch
179 test_expect_success 'all replaced' '
180 test_cmp expect .git/config
183 cat > expect << EOF
184 [beta] ; silly comment # another comment
185 noIndent= sillyValue ; 'nother silly comment
187 # empty line
188 ; comment
189 haha = alpha
190 [nextSection] noNewline = ouch
192 test_expect_success 'really mean test' '
193 git config beta.haha alpha &&
194 test_cmp expect .git/config
197 cat > expect << EOF
198 [beta] ; silly comment # another comment
199 noIndent= sillyValue ; 'nother silly comment
201 # empty line
202 ; comment
203 haha = alpha
204 [nextSection]
205 nonewline = wow
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
218 cat > expect << EOF
219 [beta] ; silly comment # another comment
220 noIndent= sillyValue ; 'nother silly comment
222 # empty line
223 ; comment
224 [nextSection]
225 nonewline = wow
227 test_expect_success 'unset' '
228 git config --unset beta.haha &&
229 test_cmp expect .git/config
232 cat > expect << EOF
233 [beta] ; silly comment # another comment
234 noIndent= sillyValue ; 'nother silly comment
236 # empty line
237 ; comment
238 [nextSection]
239 nonewline = wow
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' '
252 echo wow >expect &&
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
265 cat > expect << EOF
266 [beta] ; silly comment # another comment
267 noIndent= sillyValue ; 'nother silly comment
269 # empty line
270 ; comment
271 [nextSection]
272 nonewline = wow3
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
288 cat > expect << EOF
289 [beta] ; silly comment # another comment
290 noIndent= sillyValue ; 'nother silly comment
292 # empty line
293 ; comment
294 [nextSection]
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
311 cat > expect << EOF
312 [beta] ; silly comment # another comment
313 noIndent= sillyValue ; 'nother silly comment
315 # empty line
316 ; comment
317 [nextSection]
318 NoNewLine = wow2 for me
319 [123456]
320 a123 = 987
321 [Version "1.2.3eX"]
322 Alpha = beta
325 test_expect_success 'hierarchical section value' '
326 test_cmp expect .git/config
329 cat > expect << EOF
330 beta.noindent=sillyValue
331 nextsection.nonewline=wow2 for me
332 123456.a123=987
333 version.1.2.3eX.alpha=beta
336 test_expect_success 'working --list' '
337 git config --list > output &&
338 test_cmp expect output
340 cat > expect << EOF
343 test_expect_success '--list without repo produces empty output' '
344 git --git-dir=nonexistent config --list >output &&
345 test_cmp expect output
348 cat > expect << EOF
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
358 cat > expect << EOF
359 wow2 for me
360 wow4 for you
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
370 [novalue]
371 variable
372 [emptyvalue]
373 variable =
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
405 echo true > expect
407 test_expect_success 'get bool variable with no value' '
408 git config --bool novalue.variable > output &&
409 test_cmp expect output
412 echo false > expect
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
425 [a.b]
426 c = d
429 cat > expect << EOF
430 [a.b]
431 c = d
433 x = y
436 test_expect_success 'new section is partial match of another' '
437 git config a.x y &&
438 test_cmp expect .git/config
441 cat > expect << EOF
442 [a.b]
443 c = d
445 x = y
446 b = c
448 x = y
451 test_expect_success 'new variable inserts into proper section' '
452 git config b.x y &&
453 git config a.b c &&
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
462 [ein]
463 bahn = strasse
466 cat > expect << EOF
467 ein.bahn=strasse
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' '
481 mkdir x &&
483 cd x &&
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' '
493 cd x &&
494 GIT_CONFIG=../other-config git config --get ein.bahn >actual &&
495 test_cmp expect actual
499 cat > expect << EOF
500 [ein]
501 bahn = strasse
502 [anwohner]
503 park = ausweis
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
512 # Hallo
513 #Bello
514 [branch "eins"]
515 x = 1
516 [branch.eins]
517 y = 1
518 [branch "1 234 blabl/a"]
519 weird
522 test_expect_success 'rename section' '
523 git config --rename-section branch.eins branch.zwei
526 cat > expect << EOF
527 # Hallo
528 #Bello
529 [branch "zwei"]
530 x = 1
531 [branch "zwei"]
532 y = 1
533 [branch "1 234 blabl/a"]
534 weird
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
554 cat > expect << EOF
555 # Hallo
556 #Bello
557 [branch "zwei"]
558 x = 1
559 [branch "zwei"]
560 y = 1
561 [branch "drei"]
562 weird
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
577 cat > expect << EOF
578 # Hallo
579 #Bello
580 [branch "zwei"]
581 x = 1
582 [branch "zwei"]
583 y = 1
584 [branch "drei"]
585 weird
586 [branch "zwei"]
587 z = 1
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
610 cat > expect << EOF
611 # Hallo
612 #Bello
613 [branch "drei"]
614 weird
617 test_expect_success 'section was removed properly' '
618 test_cmp expect .git/config
621 cat > expect << EOF
622 [gitcvs]
623 enabled = true
624 dbname = %Ggitcvs2.%a.%m.sqlite
625 [gitcvs "ext"]
626 dbname = %Ggitcvs1.%a.%m.sqlite
629 test_expect_success 'section ending' '
630 rm -f .git/config &&
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 &&
641 echo 1024 >expect &&
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 &&
653 cat > expect <<-\EOF
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
660 cat > expect << EOF
661 true
662 false
663 true
664 false
665 true
666 false
667 true
668 false
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 &&
681 rm -f result &&
682 for i in 1 2 3 4
684 git config --bool --get bool.true$i >>result
685 git config --bool --get bool.false$i >>result
686 done &&
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'
698 cat > expect <<\EOF
699 [bool]
700 true1 = true
701 true2 = true
702 true3 = true
703 true4 = true
704 false1 = false
705 false2 = false
706 false3 = false
707 false4 = false
710 test_expect_success 'set --bool' '
712 rm -f .git/config &&
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'
723 cat > expect <<\EOF
724 [int]
725 val1 = 1
726 val2 = -1
727 val3 = 5242880
730 test_expect_success 'set --int' '
732 rm -f .git/config &&
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 &&
741 [bool]
742 true1
743 true2 = true
744 false = false
745 [int]
746 int1 = 0
747 int2 = 1
748 int3 = -1
750 cat >expect <<-\EOF &&
751 true
752 true
753 false
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
765 } >actual &&
766 test_cmp expect actual
769 cat >expect <<\EOF
770 [bool]
771 true1 = true
772 false1 = false
773 true2 = true
774 false2 = false
775 [int]
776 int1 = 0
777 int2 = 1
778 int3 = -1
781 test_expect_success 'set --bool-or-int' '
782 rm -f .git/config &&
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
793 cat >expect <<\EOF
794 [path]
795 home = ~/
796 normal = /dev/null
797 trailingtilde = foo~
800 test_expect_success NOT_MINGW 'set --path' '
801 rm -f .git/config &&
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}"
808 then
809 test_set_prereq HOMEVAR
812 cat >expect <<EOF
813 $HOME/
814 /dev/null
815 foo~
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
825 cat >expect <<\EOF
826 /dev/null
827 foo~
830 test_expect_success NOT_MINGW 'get --path copes with unset $HOME' '
832 unset HOME;
833 test_must_fail git config --get --path path.home \
834 >result 2>msg &&
835 git config --get --path path.normal >>result &&
836 git config --get --path path.trailingtilde >>result
837 ) &&
838 grep "[Ff]ailed to expand.*~/" msg &&
839 test_cmp expect result
842 cat > expect << EOF
843 [quote]
844 leading = " test"
845 ending = "test "
846 semicolon = "test;test"
847 hash = "test#test"
849 test_expect_success 'quoting' '
850 rm -f .git/config &&
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
860 newline" 123'
862 test_expect_success 'value with newline' 'git config key.sub value.with\\\
863 newline'
865 cat > .git/config <<\EOF
866 [section]
867 ; comment \
868 continued = cont\
869 inued
870 noncont = not continued ; \
871 quotecont = "cont;\
872 inued"
875 cat > expect <<\EOF
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"]
888 val1 = foo=bar
889 val2 = foo\nbar
890 val3 = \n\n
891 val4 =
892 val5
895 cat > expect <<\EOF
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 &&
907 echo >>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 &&
913 echo >>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 &&
927 test -h myconfig &&
928 test -f notyet &&
929 test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
930 GIT_CONFIG=myconfig git config test.xyzzy rezrov &&
931 test -h myconfig &&
932 test -f notyet &&
933 cat >expect <<-\EOF &&
934 nitfol
935 rezrov
938 GIT_CONFIG=notyet git config test.frotz &&
939 GIT_CONFIG=notyet git config test.xyzzy
940 } >actual &&
941 test_cmp expect actual
944 test_expect_success 'nonexistent configuration' '
946 GIT_CONFIG=doesnotexist &&
947 export GIT_CONFIG &&
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 &&
958 export GIT_CONFIG &&
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 &&
968 echo foo > foo &&
969 git add foo &&
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 &&
977 value
978 value
979 true
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
985 } >actual &&
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
996 z".bar &&
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" &&
1007 echo bar >expect &&
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
1051 [section]
1052 key garbage
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
1061 [section
1062 key = value
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
1071 [section]
1072 key = "value string
1074 test_must_fail git config --get section.key >actual 2>error &&
1075 grep " line 3 " error
1078 test_done