Makefile: do not set NEEDS_LIBICONV for Solaris 8
[git/dscho.git] / t / t1300-repo-config.sh
blob11b82f43dd0220c736dd269b2f6531a1381edf3a
1 #!/bin/sh
3 # Copyright (c) 2005 Johannes Schindelin
6 test_description='Test git config in different settings'
8 . ./test-lib.sh
10 test -f .git/config && rm .git/config
12 git config core.penguin "little blue"
14 cat > expect << EOF
15 [core]
16 penguin = little blue
17 EOF
19 test_expect_success 'initial' 'cmp .git/config expect'
21 git config Core.Movie BadPhysics
23 cat > expect << EOF
24 [core]
25 penguin = little blue
26 Movie = BadPhysics
27 EOF
29 test_expect_success 'mixed case' 'cmp .git/config expect'
31 git config Cores.WhatEver Second
33 cat > expect << EOF
34 [core]
35 penguin = little blue
36 Movie = BadPhysics
37 [Cores]
38 WhatEver = Second
39 EOF
41 test_expect_success 'similar section' 'cmp .git/config expect'
43 git config CORE.UPPERCASE true
45 cat > expect << EOF
46 [core]
47 penguin = little blue
48 Movie = BadPhysics
49 UPPERCASE = true
50 [Cores]
51 WhatEver = Second
52 EOF
54 test_expect_success 'similar section' 'cmp .git/config expect'
56 test_expect_success 'replace with non-match' \
57 'git config core.penguin kingpin !blue'
59 test_expect_success 'replace with non-match (actually matching)' \
60 'git config core.penguin "very blue" !kingpin'
62 cat > expect << EOF
63 [core]
64 penguin = very blue
65 Movie = BadPhysics
66 UPPERCASE = true
67 penguin = kingpin
68 [Cores]
69 WhatEver = Second
70 EOF
72 test_expect_success 'non-match result' 'cmp .git/config expect'
74 cat > .git/config <<\EOF
75 [alpha]
76 bar = foo
77 [beta]
78 baz = multiple \
79 lines
80 EOF
82 test_expect_success 'unset with cont. lines' \
83 'git config --unset beta.baz'
85 cat > expect <<\EOF
86 [alpha]
87 bar = foo
88 [beta]
89 EOF
91 test_expect_success 'unset with cont. lines is correct' 'cmp .git/config expect'
93 cat > .git/config << EOF
94 [beta] ; silly comment # another comment
95 noIndent= sillyValue ; 'nother silly comment
97 # empty line
98 ; comment
99 haha ="beta" # last silly comment
100 haha = hello
101 haha = bello
102 [nextSection] noNewline = ouch
105 cp .git/config .git/config2
107 test_expect_success 'multiple unset' \
108 'git config --unset-all beta.haha'
110 cat > expect << EOF
111 [beta] ; silly comment # another comment
112 noIndent= sillyValue ; 'nother silly comment
114 # empty line
115 ; comment
116 [nextSection] noNewline = ouch
119 test_expect_success 'multiple unset is correct' 'cmp .git/config expect'
121 mv .git/config2 .git/config
123 test_expect_success '--replace-all' \
124 'git config --replace-all beta.haha gamma'
126 cat > expect << EOF
127 [beta] ; silly comment # another comment
128 noIndent= sillyValue ; 'nother silly comment
130 # empty line
131 ; comment
132 haha = gamma
133 [nextSection] noNewline = ouch
136 test_expect_success 'all replaced' 'cmp .git/config expect'
138 git config beta.haha alpha
140 cat > expect << EOF
141 [beta] ; silly comment # another comment
142 noIndent= sillyValue ; 'nother silly comment
144 # empty line
145 ; comment
146 haha = alpha
147 [nextSection] noNewline = ouch
150 test_expect_success 'really mean test' 'cmp .git/config expect'
152 git config nextsection.nonewline wow
154 cat > expect << EOF
155 [beta] ; silly comment # another comment
156 noIndent= sillyValue ; 'nother silly comment
158 # empty line
159 ; comment
160 haha = alpha
161 [nextSection]
162 nonewline = wow
165 test_expect_success 'really really mean test' 'cmp .git/config expect'
167 test_expect_success 'get value' 'test alpha = $(git config beta.haha)'
168 git config --unset beta.haha
170 cat > expect << EOF
171 [beta] ; silly comment # another comment
172 noIndent= sillyValue ; 'nother silly comment
174 # empty line
175 ; comment
176 [nextSection]
177 nonewline = wow
180 test_expect_success 'unset' 'cmp .git/config expect'
182 git config nextsection.NoNewLine "wow2 for me" "for me$"
184 cat > expect << EOF
185 [beta] ; silly comment # another comment
186 noIndent= sillyValue ; 'nother silly comment
188 # empty line
189 ; comment
190 [nextSection]
191 nonewline = wow
192 NoNewLine = wow2 for me
195 test_expect_success 'multivar' 'cmp .git/config expect'
197 test_expect_success 'non-match' \
198 'git config --get nextsection.nonewline !for'
200 test_expect_success 'non-match value' \
201 'test wow = $(git config --get nextsection.nonewline !for)'
203 test_expect_success 'ambiguous get' '
204 test_must_fail git config --get nextsection.nonewline
207 test_expect_success 'get multivar' \
208 'git config --get-all nextsection.nonewline'
210 git config nextsection.nonewline "wow3" "wow$"
212 cat > expect << EOF
213 [beta] ; silly comment # another comment
214 noIndent= sillyValue ; 'nother silly comment
216 # empty line
217 ; comment
218 [nextSection]
219 nonewline = wow3
220 NoNewLine = wow2 for me
223 test_expect_success 'multivar replace' 'cmp .git/config expect'
225 test_expect_success 'ambiguous value' '
226 test_must_fail git config nextsection.nonewline
229 test_expect_success 'ambiguous unset' '
230 test_must_fail git config --unset nextsection.nonewline
233 test_expect_success 'invalid unset' '
234 test_must_fail git config --unset somesection.nonewline
237 git config --unset nextsection.nonewline "wow3$"
239 cat > expect << EOF
240 [beta] ; silly comment # another comment
241 noIndent= sillyValue ; 'nother silly comment
243 # empty line
244 ; comment
245 [nextSection]
246 NoNewLine = wow2 for me
249 test_expect_success 'multivar unset' 'cmp .git/config expect'
251 test_expect_success 'invalid key' 'test_must_fail git config inval.2key blabla'
253 test_expect_success 'correct key' 'git config 123456.a123 987'
255 test_expect_success 'hierarchical section' \
256 'git config Version.1.2.3eX.Alpha beta'
258 cat > expect << EOF
259 [beta] ; silly comment # another comment
260 noIndent= sillyValue ; 'nother silly comment
262 # empty line
263 ; comment
264 [nextSection]
265 NoNewLine = wow2 for me
266 [123456]
267 a123 = 987
268 [Version "1.2.3eX"]
269 Alpha = beta
272 test_expect_success 'hierarchical section value' 'cmp .git/config expect'
274 cat > expect << EOF
275 beta.noindent=sillyValue
276 nextsection.nonewline=wow2 for me
277 123456.a123=987
278 version.1.2.3eX.alpha=beta
281 test_expect_success 'working --list' \
282 'git config --list > output && cmp output expect'
284 cat > expect << EOF
285 beta.noindent sillyValue
286 nextsection.nonewline wow2 for me
289 test_expect_success '--get-regexp' \
290 'git config --get-regexp in > output && cmp output expect'
292 git config --add nextsection.nonewline "wow4 for you"
294 cat > expect << EOF
295 wow2 for me
296 wow4 for you
299 test_expect_success '--add' \
300 'git config --get-all nextsection.nonewline > output && cmp output expect'
302 cat > .git/config << EOF
303 [novalue]
304 variable
305 [emptyvalue]
306 variable =
309 test_expect_success 'get variable with no value' \
310 'git config --get novalue.variable ^$'
312 test_expect_success 'get variable with empty value' \
313 'git config --get emptyvalue.variable ^$'
315 echo novalue.variable > expect
317 test_expect_success 'get-regexp variable with no value' \
318 'git config --get-regexp novalue > output &&
319 cmp output expect'
321 echo 'emptyvalue.variable ' > expect
323 test_expect_success 'get-regexp variable with empty value' \
324 'git config --get-regexp emptyvalue > output &&
325 cmp output expect'
327 echo true > expect
329 test_expect_success 'get bool variable with no value' \
330 'git config --bool novalue.variable > output &&
331 cmp output expect'
333 echo false > expect
335 test_expect_success 'get bool variable with empty value' \
336 'git config --bool emptyvalue.variable > output &&
337 cmp output expect'
339 git config > output 2>&1
341 test_expect_success 'no arguments, but no crash' \
342 "test $? = 129 && grep usage output"
344 cat > .git/config << EOF
345 [a.b]
346 c = d
349 git config a.x y
351 cat > expect << EOF
352 [a.b]
353 c = d
355 x = y
358 test_expect_success 'new section is partial match of another' 'cmp .git/config expect'
360 git config b.x y
361 git config a.b c
363 cat > expect << EOF
364 [a.b]
365 c = d
367 x = y
368 b = c
370 x = y
373 test_expect_success 'new variable inserts into proper section' 'cmp .git/config expect'
375 test_expect_success 'alternative GIT_CONFIG (non-existing file should fail)' \
376 'git config --file non-existing-config -l; test $? != 0'
378 cat > other-config << EOF
379 [ein]
380 bahn = strasse
383 cat > expect << EOF
384 ein.bahn=strasse
387 GIT_CONFIG=other-config git config -l > output
389 test_expect_success 'alternative GIT_CONFIG' 'cmp output expect'
391 test_expect_success 'alternative GIT_CONFIG (--file)' \
392 'git config --file other-config -l > output && cmp output expect'
394 GIT_CONFIG=other-config git config anwohner.park ausweis
396 cat > expect << EOF
397 [ein]
398 bahn = strasse
399 [anwohner]
400 park = ausweis
403 test_expect_success '--set in alternative GIT_CONFIG' 'cmp other-config expect'
405 cat > .git/config << EOF
406 # Hallo
407 #Bello
408 [branch "eins"]
409 x = 1
410 [branch.eins]
411 y = 1
412 [branch "1 234 blabl/a"]
413 weird
416 test_expect_success "rename section" \
417 "git config --rename-section branch.eins branch.zwei"
419 cat > expect << EOF
420 # Hallo
421 #Bello
422 [branch "zwei"]
423 x = 1
424 [branch "zwei"]
425 y = 1
426 [branch "1 234 blabl/a"]
427 weird
430 test_expect_success "rename succeeded" "test_cmp expect .git/config"
432 test_expect_success "rename non-existing section" '
433 test_must_fail git config --rename-section \
434 branch."world domination" branch.drei
437 test_expect_success "rename succeeded" "test_cmp expect .git/config"
439 test_expect_success "rename another section" \
440 'git config --rename-section branch."1 234 blabl/a" branch.drei'
442 cat > expect << EOF
443 # Hallo
444 #Bello
445 [branch "zwei"]
446 x = 1
447 [branch "zwei"]
448 y = 1
449 [branch "drei"]
450 weird
453 test_expect_success "rename succeeded" "test_cmp expect .git/config"
455 cat >> .git/config << EOF
456 [branch "zwei"] a = 1 [branch "vier"]
459 test_expect_success "remove section" "git config --remove-section branch.zwei"
461 cat > expect << EOF
462 # Hallo
463 #Bello
464 [branch "drei"]
465 weird
468 test_expect_success "section was removed properly" \
469 "test_cmp expect .git/config"
471 rm .git/config
473 cat > expect << EOF
474 [gitcvs]
475 enabled = true
476 dbname = %Ggitcvs2.%a.%m.sqlite
477 [gitcvs "ext"]
478 dbname = %Ggitcvs1.%a.%m.sqlite
481 test_expect_success 'section ending' '
483 git config gitcvs.enabled true &&
484 git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
485 git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
486 cmp .git/config expect
490 test_expect_success numbers '
492 git config kilo.gram 1k &&
493 git config mega.ton 1m &&
494 k=$(git config --int --get kilo.gram) &&
495 test z1024 = "z$k" &&
496 m=$(git config --int --get mega.ton) &&
497 test z1048576 = "z$m"
500 cat > expect <<EOF
501 fatal: bad config value for 'aninvalid.unit' in .git/config
504 test_expect_success 'invalid unit' '
506 git config aninvalid.unit "1auto" &&
507 s=$(git config aninvalid.unit) &&
508 test "z1auto" = "z$s" &&
509 if git config --int --get aninvalid.unit 2>actual
510 then
511 echo config should have failed
512 false
513 fi &&
514 cmp actual expect
517 cat > expect << EOF
518 true
519 false
520 true
521 false
522 true
523 false
524 true
525 false
528 test_expect_success bool '
530 git config bool.true1 01 &&
531 git config bool.true2 -1 &&
532 git config bool.true3 YeS &&
533 git config bool.true4 true &&
534 git config bool.false1 000 &&
535 git config bool.false2 "" &&
536 git config bool.false3 nO &&
537 git config bool.false4 FALSE &&
538 rm -f result &&
539 for i in 1 2 3 4
541 git config --bool --get bool.true$i >>result
542 git config --bool --get bool.false$i >>result
543 done &&
544 cmp expect result'
546 test_expect_success 'invalid bool (--get)' '
548 git config bool.nobool foobar &&
549 test_must_fail git config --bool --get bool.nobool'
551 test_expect_success 'invalid bool (set)' '
553 test_must_fail git config --bool bool.nobool foobar'
555 rm .git/config
557 cat > expect <<\EOF
558 [bool]
559 true1 = true
560 true2 = true
561 true3 = true
562 true4 = true
563 false1 = false
564 false2 = false
565 false3 = false
566 false4 = false
569 test_expect_success 'set --bool' '
571 git config --bool bool.true1 01 &&
572 git config --bool bool.true2 -1 &&
573 git config --bool bool.true3 YeS &&
574 git config --bool bool.true4 true &&
575 git config --bool bool.false1 000 &&
576 git config --bool bool.false2 "" &&
577 git config --bool bool.false3 nO &&
578 git config --bool bool.false4 FALSE &&
579 cmp expect .git/config'
581 rm .git/config
583 cat > expect <<\EOF
584 [int]
585 val1 = 1
586 val2 = -1
587 val3 = 5242880
590 test_expect_success 'set --int' '
592 git config --int int.val1 01 &&
593 git config --int int.val2 -1 &&
594 git config --int int.val3 5m &&
595 cmp expect .git/config'
597 rm .git/config
599 cat >expect <<\EOF
600 [bool]
601 true1 = true
602 true2 = true
603 false1 = false
604 false2 = false
605 [int]
606 int1 = 0
607 int2 = 1
608 int3 = -1
611 test_expect_success 'get --bool-or-int' '
613 echo "[bool]"
614 echo true1
615 echo true2 = true
616 echo false = false
617 echo "[int]"
618 echo int1 = 0
619 echo int2 = 1
620 echo int3 = -1
621 ) >>.git/config &&
622 test $(git config --bool-or-int bool.true1) = true &&
623 test $(git config --bool-or-int bool.true2) = true &&
624 test $(git config --bool-or-int bool.false) = false &&
625 test $(git config --bool-or-int int.int1) = 0 &&
626 test $(git config --bool-or-int int.int2) = 1 &&
627 test $(git config --bool-or-int int.int3) = -1
631 rm .git/config
632 cat >expect <<\EOF
633 [bool]
634 true1 = true
635 false1 = false
636 true2 = true
637 false2 = false
638 [int]
639 int1 = 0
640 int2 = 1
641 int3 = -1
644 test_expect_success 'set --bool-or-int' '
645 git config --bool-or-int bool.true1 true &&
646 git config --bool-or-int bool.false1 false &&
647 git config --bool-or-int bool.true2 yes &&
648 git config --bool-or-int bool.false2 no &&
649 git config --bool-or-int int.int1 0 &&
650 git config --bool-or-int int.int2 1 &&
651 git config --bool-or-int int.int3 -1 &&
652 test_cmp expect .git/config
655 rm .git/config
657 git config quote.leading " test"
658 git config quote.ending "test "
659 git config quote.semicolon "test;test"
660 git config quote.hash "test#test"
662 cat > expect << EOF
663 [quote]
664 leading = " test"
665 ending = "test "
666 semicolon = "test;test"
667 hash = "test#test"
670 test_expect_success 'quoting' 'cmp .git/config expect'
672 test_expect_success 'key with newline' '
673 test_must_fail git config "key.with
674 newline" 123'
676 test_expect_success 'value with newline' 'git config key.sub value.with\\\
677 newline'
679 cat > .git/config <<\EOF
680 [section]
681 ; comment \
682 continued = cont\
683 inued
684 noncont = not continued ; \
685 quotecont = "cont;\
686 inued"
689 cat > expect <<\EOF
690 section.continued=continued
691 section.noncont=not continued
692 section.quotecont=cont;inued
695 git config --list > result
697 test_expect_success 'value continued on next line' 'cmp result expect'
699 cat > .git/config <<\EOF
700 [section "sub=section"]
701 val1 = foo=bar
702 val2 = foo\nbar
703 val3 = \n\n
704 val4 =
705 val5
708 cat > expect <<\EOF
709 section.sub=section.val1
710 foo=barQsection.sub=section.val2
712 barQsection.sub=section.val3
715 Qsection.sub=section.val4
716 Qsection.sub=section.val5Q
719 git config --null --list | perl -pe 'y/\000/Q/' > result
720 echo >>result
722 test_expect_success '--null --list' 'cmp result expect'
724 git config --null --get-regexp 'val[0-9]' | perl -pe 'y/\000/Q/' > result
725 echo >>result
727 test_expect_success '--null --get-regexp' 'cmp result expect'
729 test_expect_success 'symlinked configuration' '
731 ln -s notyet myconfig &&
732 GIT_CONFIG=myconfig git config test.frotz nitfol &&
733 test -h myconfig &&
734 test -f notyet &&
735 test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
736 GIT_CONFIG=myconfig git config test.xyzzy rezrov &&
737 test -h myconfig &&
738 test -f notyet &&
739 test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
740 test "z$(GIT_CONFIG=notyet git config test.xyzzy)" = zrezrov
744 test_expect_success 'check split_cmdline return' "
745 git config alias.split-cmdline-fix 'echo \"' &&
746 test_must_fail git split-cmdline-fix &&
747 echo foo > foo &&
748 git add foo &&
749 git commit -m 'initial commit' &&
750 git config branch.master.mergeoptions 'echo \"' &&
751 test_must_fail git merge master
754 test_done