Code

Merge branch 'master' of git://git.kernel.org/pub/scm/gitk/gitk
[git.git] / t / t1300-repo-config.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2005 Johannes Schindelin
4 #
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 [beta] ; silly comment # another comment
76 noIndent= sillyValue ; 'nother silly comment
78 # empty line
79                 ; comment
80                 haha   ="beta" # last silly comment
81 haha = hello
82         haha = bello
83 [nextSection] noNewline = ouch
84 EOF
86 cp .git/config .git/config2
88 test_expect_success 'multiple unset' \
89         'git config --unset-all beta.haha'
91 cat > expect << EOF
92 [beta] ; silly comment # another comment
93 noIndent= sillyValue ; 'nother silly comment
95 # empty line
96                 ; comment
97 [nextSection] noNewline = ouch
98 EOF
100 test_expect_success 'multiple unset is correct' 'cmp .git/config expect'
102 mv .git/config2 .git/config
104 test_expect_success '--replace-all' \
105         'git config --replace-all beta.haha gamma'
107 cat > expect << EOF
108 [beta] ; silly comment # another comment
109 noIndent= sillyValue ; 'nother silly comment
111 # empty line
112                 ; comment
113         haha = gamma
114 [nextSection] noNewline = ouch
115 EOF
117 test_expect_success 'all replaced' 'cmp .git/config expect'
119 git config beta.haha alpha
121 cat > expect << EOF
122 [beta] ; silly comment # another comment
123 noIndent= sillyValue ; 'nother silly comment
125 # empty line
126                 ; comment
127         haha = alpha
128 [nextSection] noNewline = ouch
129 EOF
131 test_expect_success 'really mean test' 'cmp .git/config expect'
133 git config nextsection.nonewline wow
135 cat > expect << EOF
136 [beta] ; silly comment # another comment
137 noIndent= sillyValue ; 'nother silly comment
139 # empty line
140                 ; comment
141         haha = alpha
142 [nextSection]
143         nonewline = wow
144 EOF
146 test_expect_success 'really really mean test' 'cmp .git/config expect'
148 test_expect_success 'get value' 'test alpha = $(git config beta.haha)'
149 git config --unset beta.haha
151 cat > expect << EOF
152 [beta] ; silly comment # another comment
153 noIndent= sillyValue ; 'nother silly comment
155 # empty line
156                 ; comment
157 [nextSection]
158         nonewline = wow
159 EOF
161 test_expect_success 'unset' 'cmp .git/config expect'
163 git config nextsection.NoNewLine "wow2 for me" "for me$"
165 cat > expect << EOF
166 [beta] ; silly comment # another comment
167 noIndent= sillyValue ; 'nother silly comment
169 # empty line
170                 ; comment
171 [nextSection]
172         nonewline = wow
173         NoNewLine = wow2 for me
174 EOF
176 test_expect_success 'multivar' 'cmp .git/config expect'
178 test_expect_success 'non-match' \
179         'git config --get nextsection.nonewline !for'
181 test_expect_success 'non-match value' \
182         'test wow = $(git config --get nextsection.nonewline !for)'
184 test_expect_failure 'ambiguous get' \
185         'git config --get nextsection.nonewline'
187 test_expect_success 'get multivar' \
188         'git config --get-all nextsection.nonewline'
190 git config nextsection.nonewline "wow3" "wow$"
192 cat > expect << EOF
193 [beta] ; silly comment # another comment
194 noIndent= sillyValue ; 'nother silly comment
196 # empty line
197                 ; comment
198 [nextSection]
199         nonewline = wow3
200         NoNewLine = wow2 for me
201 EOF
203 test_expect_success 'multivar replace' 'cmp .git/config expect'
205 test_expect_failure 'ambiguous value' 'git config nextsection.nonewline'
207 test_expect_failure 'ambiguous unset' \
208         'git config --unset nextsection.nonewline'
210 test_expect_failure 'invalid unset' \
211         'git config --unset somesection.nonewline'
213 git config --unset nextsection.nonewline "wow3$"
215 cat > expect << EOF
216 [beta] ; silly comment # another comment
217 noIndent= sillyValue ; 'nother silly comment
219 # empty line
220                 ; comment
221 [nextSection]
222         NoNewLine = wow2 for me
223 EOF
225 test_expect_success 'multivar unset' 'cmp .git/config expect'
227 test_expect_failure 'invalid key' 'git config inval.2key blabla'
229 test_expect_success 'correct key' 'git config 123456.a123 987'
231 test_expect_success 'hierarchical section' \
232         'git config Version.1.2.3eX.Alpha beta'
234 cat > expect << EOF
235 [beta] ; silly comment # another comment
236 noIndent= sillyValue ; 'nother silly comment
238 # empty line
239                 ; comment
240 [nextSection]
241         NoNewLine = wow2 for me
242 [123456]
243         a123 = 987
244 [Version "1.2.3eX"]
245         Alpha = beta
246 EOF
248 test_expect_success 'hierarchical section value' 'cmp .git/config expect'
250 cat > expect << EOF
251 beta.noindent=sillyValue
252 nextsection.nonewline=wow2 for me
253 123456.a123=987
254 version.1.2.3eX.alpha=beta
255 EOF
257 test_expect_success 'working --list' \
258         'git config --list > output && cmp output expect'
260 cat > expect << EOF
261 beta.noindent sillyValue
262 nextsection.nonewline wow2 for me
263 EOF
265 test_expect_success '--get-regexp' \
266         'git config --get-regexp in > output && cmp output expect'
268 git config --add nextsection.nonewline "wow4 for you"
270 cat > expect << EOF
271 wow2 for me
272 wow4 for you
273 EOF
275 test_expect_success '--add' \
276         'git config --get-all nextsection.nonewline > output && cmp output expect'
278 cat > .git/config << EOF
279 [novalue]
280         variable
281 EOF
283 test_expect_success 'get variable with no value' \
284         'git config --get novalue.variable ^$'
286 echo novalue.variable > expect
288 test_expect_success 'get-regexp variable with no value' \
289         'git config --get-regexp novalue > output &&
290          cmp output expect'
292 git config > output 2>&1
294 test_expect_success 'no arguments, but no crash' \
295         "test $? = 129 && grep usage output"
297 cat > .git/config << EOF
298 [a.b]
299         c = d
300 EOF
302 git config a.x y
304 cat > expect << EOF
305 [a.b]
306         c = d
307 [a]
308         x = y
309 EOF
311 test_expect_success 'new section is partial match of another' 'cmp .git/config expect'
313 git config b.x y
314 git config a.b c
316 cat > expect << EOF
317 [a.b]
318         c = d
319 [a]
320         x = y
321         b = c
322 [b]
323         x = y
324 EOF
326 test_expect_success 'new variable inserts into proper section' 'cmp .git/config expect'
328 test_expect_success 'alternative GIT_CONFIG (non-existing file should fail)' \
329         'git config --file non-existing-config -l; test $? != 0'
331 cat > other-config << EOF
332 [ein]
333         bahn = strasse
334 EOF
336 cat > expect << EOF
337 ein.bahn=strasse
338 EOF
340 GIT_CONFIG=other-config git config -l > output
342 test_expect_success 'alternative GIT_CONFIG' 'cmp output expect'
344 test_expect_success 'alternative GIT_CONFIG (--file)' \
345         'git config --file other-config -l > output && cmp output expect'
347 GIT_CONFIG=other-config git config anwohner.park ausweis
349 cat > expect << EOF
350 [ein]
351         bahn = strasse
352 [anwohner]
353         park = ausweis
354 EOF
356 test_expect_success '--set in alternative GIT_CONFIG' 'cmp other-config expect'
358 cat > .git/config << EOF
359 # Hallo
360         #Bello
361 [branch "eins"]
362         x = 1
363 [branch.eins]
364         y = 1
365         [branch "1 234 blabl/a"]
366 weird
367 EOF
369 test_expect_success "rename section" \
370         "git config --rename-section branch.eins branch.zwei"
372 cat > expect << EOF
373 # Hallo
374         #Bello
375 [branch "zwei"]
376         x = 1
377 [branch "zwei"]
378         y = 1
379         [branch "1 234 blabl/a"]
380 weird
381 EOF
383 test_expect_success "rename succeeded" "git diff expect .git/config"
385 test_expect_failure "rename non-existing section" \
386         'git config --rename-section branch."world domination" branch.drei'
388 test_expect_success "rename succeeded" "git diff expect .git/config"
390 test_expect_success "rename another section" \
391         'git config --rename-section branch."1 234 blabl/a" branch.drei'
393 cat > expect << EOF
394 # Hallo
395         #Bello
396 [branch "zwei"]
397         x = 1
398 [branch "zwei"]
399         y = 1
400 [branch "drei"]
401 weird
402 EOF
404 test_expect_success "rename succeeded" "git diff expect .git/config"
406 cat >> .git/config << EOF
407   [branch "zwei"] a = 1 [branch "vier"]
408 EOF
410 test_expect_success "remove section" "git config --remove-section branch.zwei"
412 cat > expect << EOF
413 # Hallo
414         #Bello
415 [branch "drei"]
416 weird
417 EOF
419 test_expect_success "section was removed properly" \
420         "git diff -u expect .git/config"
422 rm .git/config
424 cat > expect << EOF
425 [gitcvs]
426         enabled = true
427         dbname = %Ggitcvs2.%a.%m.sqlite
428 [gitcvs "ext"]
429         dbname = %Ggitcvs1.%a.%m.sqlite
430 EOF
432 test_expect_success 'section ending' '
434         git config gitcvs.enabled true &&
435         git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
436         git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
437         cmp .git/config expect
441 test_expect_success numbers '
443         git config kilo.gram 1k &&
444         git config mega.ton 1m &&
445         k=$(git config --int --get kilo.gram) &&
446         test z1024 = "z$k" &&
447         m=$(git config --int --get mega.ton) &&
448         test z1048576 = "z$m"
451 cat > expect <<EOF
452 fatal: bad config value for 'aninvalid.unit' in .git/config
453 EOF
455 test_expect_success 'invalid unit' '
457         git config aninvalid.unit "1auto" &&
458         s=$(git config aninvalid.unit) &&
459         test "z1auto" = "z$s" &&
460         if git config --int --get aninvalid.unit 2>actual
461         then
462                 echo config should have failed
463                 false
464         fi &&
465         cmp actual expect
468 cat > expect << EOF
469 true
470 false
471 true
472 false
473 true
474 false
475 true
476 false
477 EOF
479 test_expect_success bool '
481         git config bool.true1 01 &&
482         git config bool.true2 -1 &&
483         git config bool.true3 YeS &&
484         git config bool.true4 true &&
485         git config bool.false1 000 &&
486         git config bool.false2 "" &&
487         git config bool.false3 nO &&
488         git config bool.false4 FALSE &&
489         rm -f result &&
490         for i in 1 2 3 4
491         do
492             git config --bool --get bool.true$i >>result
493             git config --bool --get bool.false$i >>result
494         done &&
495         cmp expect result'
497 test_expect_failure 'invalid bool (--get)' '
499         git config bool.nobool foobar &&
500         git config --bool --get bool.nobool'
502 test_expect_failure 'invalid bool (set)' '
504         git config --bool bool.nobool foobar'
506 rm .git/config
508 cat > expect <<\EOF
509 [bool]
510         true1 = true
511         true2 = true
512         true3 = true
513         true4 = true
514         false1 = false
515         false2 = false
516         false3 = false
517         false4 = false
518 EOF
520 test_expect_success 'set --bool' '
522         git config --bool bool.true1 01 &&
523         git config --bool bool.true2 -1 &&
524         git config --bool bool.true3 YeS &&
525         git config --bool bool.true4 true &&
526         git config --bool bool.false1 000 &&
527         git config --bool bool.false2 "" &&
528         git config --bool bool.false3 nO &&
529         git config --bool bool.false4 FALSE &&
530         cmp expect .git/config'
532 rm .git/config
534 cat > expect <<\EOF
535 [int]
536         val1 = 1
537         val2 = -1
538         val3 = 5242880
539 EOF
541 test_expect_success 'set --int' '
543         git config --int int.val1 01 &&
544         git config --int int.val2 -1 &&
545         git config --int int.val3 5m &&
546         cmp expect .git/config'
548 rm .git/config
550 git config quote.leading " test"
551 git config quote.ending "test "
552 git config quote.semicolon "test;test"
553 git config quote.hash "test#test"
555 cat > expect << EOF
556 [quote]
557         leading = " test"
558         ending = "test "
559         semicolon = "test;test"
560         hash = "test#test"
561 EOF
563 test_expect_success 'quoting' 'cmp .git/config expect'
565 test_expect_failure 'key with newline' 'git config key.with\\\
566 newline 123'
568 test_expect_success 'value with newline' 'git config key.sub value.with\\\
569 newline'
571 cat > .git/config <<\EOF
572 [section]
573         ; comment \
574         continued = cont\
575 inued
576         noncont   = not continued ; \
577         quotecont = "cont;\
578 inued"
579 EOF
581 cat > expect <<\EOF
582 section.continued=continued
583 section.noncont=not continued
584 section.quotecont=cont;inued
585 EOF
587 git config --list > result
589 test_expect_success 'value continued on next line' 'cmp result expect'
591 cat > .git/config <<\EOF
592 [section "sub=section"]
593         val1 = foo=bar
594         val2 = foo\nbar
595         val3 = \n\n
596         val4 =
597         val5
598 EOF
600 cat > expect <<\EOF
601 section.sub=section.val1
602 foo=barQsection.sub=section.val2
603 foo
604 barQsection.sub=section.val3
607 Qsection.sub=section.val4
608 Qsection.sub=section.val5Q
609 EOF
611 git config --null --list | tr '\000' 'Q' > result
612 echo >>result
614 test_expect_success '--null --list' 'cmp result expect'
616 git config --null --get-regexp 'val[0-9]' | tr '\000' 'Q' > result
617 echo >>result
619 test_expect_success '--null --get-regexp' 'cmp result expect'
621 test_expect_success 'symlinked configuration' '
623         ln -s notyet myconfig &&
624         GIT_CONFIG=myconfig git config test.frotz nitfol &&
625         test -h myconfig &&
626         test -f notyet &&
627         test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
628         GIT_CONFIG=myconfig git config test.xyzzy rezrov &&
629         test -h myconfig &&
630         test -f notyet &&
631         test "z$(GIT_CONFIG=notyet git config test.frotz)" = znitfol &&
632         test "z$(GIT_CONFIG=notyet git config test.xyzzy)" = zrezrov
636 test_done