]> git.ipfire.org Git - thirdparty/git.git/blob - t/t1300-repo-config.sh
Merge branch 'maint'
[thirdparty/git.git] / t / t1300-repo-config.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2005 Johannes Schindelin
4 #
5
6 test_description='Test git config in different settings'
7
8 . ./test-lib.sh
9
10 test -f .git/config && rm .git/config
11
12 git config core.penguin "little blue"
13
14 cat > expect << EOF
15 [core]
16 penguin = little blue
17 EOF
18
19 test_expect_success 'initial' 'cmp .git/config expect'
20
21 git config Core.Movie BadPhysics
22
23 cat > expect << EOF
24 [core]
25 penguin = little blue
26 Movie = BadPhysics
27 EOF
28
29 test_expect_success 'mixed case' 'cmp .git/config expect'
30
31 git config Cores.WhatEver Second
32
33 cat > expect << EOF
34 [core]
35 penguin = little blue
36 Movie = BadPhysics
37 [Cores]
38 WhatEver = Second
39 EOF
40
41 test_expect_success 'similar section' 'cmp .git/config expect'
42
43 git config CORE.UPPERCASE true
44
45 cat > expect << EOF
46 [core]
47 penguin = little blue
48 Movie = BadPhysics
49 UPPERCASE = true
50 [Cores]
51 WhatEver = Second
52 EOF
53
54 test_expect_success 'similar section' 'cmp .git/config expect'
55
56 test_expect_success 'replace with non-match' \
57 'git config core.penguin kingpin !blue'
58
59 test_expect_success 'replace with non-match (actually matching)' \
60 'git config core.penguin "very blue" !kingpin'
61
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
71
72 test_expect_success 'non-match result' 'cmp .git/config expect'
73
74 cat > .git/config << EOF
75 [beta] ; silly comment # another comment
76 noIndent= sillyValue ; 'nother silly comment
77
78 # empty line
79 ; comment
80 haha ="beta" # last silly comment
81 haha = hello
82 haha = bello
83 [nextSection] noNewline = ouch
84 EOF
85
86 cp .git/config .git/config2
87
88 test_expect_success 'multiple unset' \
89 'git config --unset-all beta.haha'
90
91 cat > expect << EOF
92 [beta] ; silly comment # another comment
93 noIndent= sillyValue ; 'nother silly comment
94
95 # empty line
96 ; comment
97 [nextSection] noNewline = ouch
98 EOF
99
100 test_expect_success 'multiple unset is correct' 'cmp .git/config expect'
101
102 mv .git/config2 .git/config
103
104 test_expect_success '--replace-all' \
105 'git config --replace-all beta.haha gamma'
106
107 cat > expect << EOF
108 [beta] ; silly comment # another comment
109 noIndent= sillyValue ; 'nother silly comment
110
111 # empty line
112 ; comment
113 haha = gamma
114 [nextSection] noNewline = ouch
115 EOF
116
117 test_expect_success 'all replaced' 'cmp .git/config expect'
118
119 git config beta.haha alpha
120
121 cat > expect << EOF
122 [beta] ; silly comment # another comment
123 noIndent= sillyValue ; 'nother silly comment
124
125 # empty line
126 ; comment
127 haha = alpha
128 [nextSection] noNewline = ouch
129 EOF
130
131 test_expect_success 'really mean test' 'cmp .git/config expect'
132
133 git config nextsection.nonewline wow
134
135 cat > expect << EOF
136 [beta] ; silly comment # another comment
137 noIndent= sillyValue ; 'nother silly comment
138
139 # empty line
140 ; comment
141 haha = alpha
142 [nextSection]
143 nonewline = wow
144 EOF
145
146 test_expect_success 'really really mean test' 'cmp .git/config expect'
147
148 test_expect_success 'get value' 'test alpha = $(git config beta.haha)'
149 git config --unset beta.haha
150
151 cat > expect << EOF
152 [beta] ; silly comment # another comment
153 noIndent= sillyValue ; 'nother silly comment
154
155 # empty line
156 ; comment
157 [nextSection]
158 nonewline = wow
159 EOF
160
161 test_expect_success 'unset' 'cmp .git/config expect'
162
163 git config nextsection.NoNewLine "wow2 for me" "for me$"
164
165 cat > expect << EOF
166 [beta] ; silly comment # another comment
167 noIndent= sillyValue ; 'nother silly comment
168
169 # empty line
170 ; comment
171 [nextSection]
172 nonewline = wow
173 NoNewLine = wow2 for me
174 EOF
175
176 test_expect_success 'multivar' 'cmp .git/config expect'
177
178 test_expect_success 'non-match' \
179 'git config --get nextsection.nonewline !for'
180
181 test_expect_success 'non-match value' \
182 'test wow = $(git config --get nextsection.nonewline !for)'
183
184 test_expect_failure 'ambiguous get' \
185 'git config --get nextsection.nonewline'
186
187 test_expect_success 'get multivar' \
188 'git config --get-all nextsection.nonewline'
189
190 git config nextsection.nonewline "wow3" "wow$"
191
192 cat > expect << EOF
193 [beta] ; silly comment # another comment
194 noIndent= sillyValue ; 'nother silly comment
195
196 # empty line
197 ; comment
198 [nextSection]
199 nonewline = wow3
200 NoNewLine = wow2 for me
201 EOF
202
203 test_expect_success 'multivar replace' 'cmp .git/config expect'
204
205 test_expect_failure 'ambiguous value' 'git config nextsection.nonewline'
206
207 test_expect_failure 'ambiguous unset' \
208 'git config --unset nextsection.nonewline'
209
210 test_expect_failure 'invalid unset' \
211 'git config --unset somesection.nonewline'
212
213 git config --unset nextsection.nonewline "wow3$"
214
215 cat > expect << EOF
216 [beta] ; silly comment # another comment
217 noIndent= sillyValue ; 'nother silly comment
218
219 # empty line
220 ; comment
221 [nextSection]
222 NoNewLine = wow2 for me
223 EOF
224
225 test_expect_success 'multivar unset' 'cmp .git/config expect'
226
227 test_expect_failure 'invalid key' 'git config inval.2key blabla'
228
229 test_expect_success 'correct key' 'git config 123456.a123 987'
230
231 test_expect_success 'hierarchical section' \
232 'git config Version.1.2.3eX.Alpha beta'
233
234 cat > expect << EOF
235 [beta] ; silly comment # another comment
236 noIndent= sillyValue ; 'nother silly comment
237
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
247
248 test_expect_success 'hierarchical section value' 'cmp .git/config expect'
249
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
256
257 test_expect_success 'working --list' \
258 'git config --list > output && cmp output expect'
259
260 cat > expect << EOF
261 beta.noindent sillyValue
262 nextsection.nonewline wow2 for me
263 EOF
264
265 test_expect_success '--get-regexp' \
266 'git config --get-regexp in > output && cmp output expect'
267
268 git config --add nextsection.nonewline "wow4 for you"
269
270 cat > expect << EOF
271 wow2 for me
272 wow4 for you
273 EOF
274
275 test_expect_success '--add' \
276 'git config --get-all nextsection.nonewline > output && cmp output expect'
277
278 cat > .git/config << EOF
279 [novalue]
280 variable
281 EOF
282
283 test_expect_success 'get variable with no value' \
284 'git config --get novalue.variable ^$'
285
286 echo novalue.variable > expect
287
288 test_expect_success 'get-regexp variable with no value' \
289 'git config --get-regexp novalue > output &&
290 cmp output expect'
291
292 git config > output 2>&1
293
294 test_expect_success 'no arguments, but no crash' \
295 "test $? = 129 && grep usage output"
296
297 cat > .git/config << EOF
298 [a.b]
299 c = d
300 EOF
301
302 git config a.x y
303
304 cat > expect << EOF
305 [a.b]
306 c = d
307 [a]
308 x = y
309 EOF
310
311 test_expect_success 'new section is partial match of another' 'cmp .git/config expect'
312
313 git config b.x y
314 git config a.b c
315
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
325
326 test_expect_success 'new variable inserts into proper section' 'cmp .git/config expect'
327
328 cat > other-config << EOF
329 [ein]
330 bahn = strasse
331 EOF
332
333 cat > expect << EOF
334 ein.bahn=strasse
335 EOF
336
337 GIT_CONFIG=other-config git config -l > output
338
339 test_expect_success 'alternative GIT_CONFIG' 'cmp output expect'
340
341 GIT_CONFIG=other-config git config anwohner.park ausweis
342
343 cat > expect << EOF
344 [ein]
345 bahn = strasse
346 [anwohner]
347 park = ausweis
348 EOF
349
350 test_expect_success '--set in alternative GIT_CONFIG' 'cmp other-config expect'
351
352 cat > .git/config << EOF
353 # Hallo
354 #Bello
355 [branch "eins"]
356 x = 1
357 [branch.eins]
358 y = 1
359 [branch "1 234 blabl/a"]
360 weird
361 EOF
362
363 test_expect_success "rename section" \
364 "git config --rename-section branch.eins branch.zwei"
365
366 cat > expect << EOF
367 # Hallo
368 #Bello
369 [branch "zwei"]
370 x = 1
371 [branch "zwei"]
372 y = 1
373 [branch "1 234 blabl/a"]
374 weird
375 EOF
376
377 test_expect_success "rename succeeded" "git diff expect .git/config"
378
379 test_expect_failure "rename non-existing section" \
380 'git config --rename-section branch."world domination" branch.drei'
381
382 test_expect_success "rename succeeded" "git diff expect .git/config"
383
384 test_expect_success "rename another section" \
385 'git config --rename-section branch."1 234 blabl/a" branch.drei'
386
387 cat > expect << EOF
388 # Hallo
389 #Bello
390 [branch "zwei"]
391 x = 1
392 [branch "zwei"]
393 y = 1
394 [branch "drei"]
395 weird
396 EOF
397
398 test_expect_success "rename succeeded" "git diff expect .git/config"
399
400 cat >> .git/config << EOF
401 [branch "zwei"] a = 1 [branch "vier"]
402 EOF
403
404 test_expect_success "remove section" "git config --remove-section branch.zwei"
405
406 cat > expect << EOF
407 # Hallo
408 #Bello
409 [branch "drei"]
410 weird
411 EOF
412
413 test_expect_success "section was removed properly" \
414 "git diff -u expect .git/config"
415
416 rm .git/config
417
418 cat > expect << EOF
419 [gitcvs]
420 enabled = true
421 dbname = %Ggitcvs2.%a.%m.sqlite
422 [gitcvs "ext"]
423 dbname = %Ggitcvs1.%a.%m.sqlite
424 EOF
425
426 test_expect_success 'section ending' '
427
428 git config gitcvs.enabled true &&
429 git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
430 git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
431 cmp .git/config expect
432
433 '
434
435 test_expect_success numbers '
436
437 git config kilo.gram 1k &&
438 git config mega.ton 1m &&
439 k=$(git config --int --get kilo.gram) &&
440 test z1024 = "z$k" &&
441 m=$(git config --int --get mega.ton) &&
442 test z1048576 = "z$m"
443 '
444
445 cat > expect << EOF
446 true
447 false
448 true
449 false
450 true
451 false
452 true
453 false
454 EOF
455
456 test_expect_success bool '
457
458 git config bool.true1 01 &&
459 git config bool.true2 -1 &&
460 git config bool.true3 YeS &&
461 git config bool.true4 true &&
462 git config bool.false1 000 &&
463 git config bool.false2 "" &&
464 git config bool.false3 nO &&
465 git config bool.false4 FALSE &&
466 rm -f result &&
467 for i in 1 2 3 4
468 do
469 git config --bool --get bool.true$i >>result
470 git config --bool --get bool.false$i >>result
471 done &&
472 cmp expect result'
473
474 test_expect_failure 'invalid bool (--get)' '
475
476 git config bool.nobool foobar &&
477 git config --bool --get bool.nobool'
478
479 test_expect_failure 'invalid bool (set)' '
480
481 git config --bool bool.nobool foobar'
482
483 rm .git/config
484
485 cat > expect <<\EOF
486 [bool]
487 true1 = true
488 true2 = true
489 true3 = true
490 true4 = true
491 false1 = false
492 false2 = false
493 false3 = false
494 false4 = false
495 EOF
496
497 test_expect_success 'set --bool' '
498
499 git config --bool bool.true1 01 &&
500 git config --bool bool.true2 -1 &&
501 git config --bool bool.true3 YeS &&
502 git config --bool bool.true4 true &&
503 git config --bool bool.false1 000 &&
504 git config --bool bool.false2 "" &&
505 git config --bool bool.false3 nO &&
506 git config --bool bool.false4 FALSE &&
507 cmp expect .git/config'
508
509 rm .git/config
510
511 cat > expect <<\EOF
512 [int]
513 val1 = 1
514 val2 = -1
515 val3 = 5242880
516 EOF
517
518 test_expect_success 'set --int' '
519
520 git config --int int.val1 01 &&
521 git config --int int.val2 -1 &&
522 git config --int int.val3 5m &&
523 cmp expect .git/config'
524
525 rm .git/config
526
527 git config quote.leading " test"
528 git config quote.ending "test "
529 git config quote.semicolon "test;test"
530 git config quote.hash "test#test"
531
532 cat > expect << EOF
533 [quote]
534 leading = " test"
535 ending = "test "
536 semicolon = "test;test"
537 hash = "test#test"
538 EOF
539
540 test_expect_success 'quoting' 'cmp .git/config expect'
541
542 test_expect_failure 'key with newline' 'git config key.with\\\
543 newline 123'
544
545 test_expect_success 'value with newline' 'git config key.sub value.with\\\
546 newline'
547
548 cat > .git/config <<\EOF
549 [section]
550 ; comment \
551 continued = cont\
552 inued
553 noncont = not continued ; \
554 quotecont = "cont;\
555 inued"
556 EOF
557
558 cat > expect <<\EOF
559 section.continued=continued
560 section.noncont=not continued
561 section.quotecont=cont;inued
562 EOF
563
564 git config --list > result
565
566 test_expect_success 'value continued on next line' 'cmp result expect'
567
568 cat > .git/config <<\EOF
569 [section "sub=section"]
570 val1 = foo=bar
571 val2 = foo\nbar
572 val3 = \n\n
573 val4 =
574 val5
575 EOF
576
577 cat > expect <<\EOF
578 section.sub=section.val1
579 foo=barQsection.sub=section.val2
580 foo
581 barQsection.sub=section.val3
582
583
584 Qsection.sub=section.val4
585 Qsection.sub=section.val5Q
586 EOF
587
588 git config --null --list | tr '[\000]' 'Q' > result
589 echo >>result
590
591 test_expect_success '--null --list' 'cmp result expect'
592
593 git config --null --get-regexp 'val[0-9]' | tr '[\000]' 'Q' > result
594 echo >>result
595
596 test_expect_success '--null --get-regexp' 'cmp result expect'
597
598 test_done