]> git.ipfire.org Git - thirdparty/git.git/blob - t/t1300-repo-config.sh
git-config: test for 'do not forget "a.b.var" ends "a.var" section'.
[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 git-config > output 2>&1
287
288 test_expect_success 'no arguments, but no crash' \
289 "test $? = 129 && grep usage output"
290
291 cat > .git/config << EOF
292 [a.b]
293 c = d
294 EOF
295
296 git-config a.x y
297
298 cat > expect << EOF
299 [a.b]
300 c = d
301 [a]
302 x = y
303 EOF
304
305 test_expect_success 'new section is partial match of another' 'cmp .git/config expect'
306
307 git-config b.x y
308 git-config a.b c
309
310 cat > expect << EOF
311 [a.b]
312 c = d
313 [a]
314 x = y
315 b = c
316 [b]
317 x = y
318 EOF
319
320 test_expect_success 'new variable inserts into proper section' 'cmp .git/config expect'
321
322 cat > other-config << EOF
323 [ein]
324 bahn = strasse
325 EOF
326
327 cat > expect << EOF
328 ein.bahn=strasse
329 EOF
330
331 GIT_CONFIG=other-config git-config -l > output
332
333 test_expect_success 'alternative GIT_CONFIG' 'cmp output expect'
334
335 GIT_CONFIG=other-config git-config anwohner.park ausweis
336
337 cat > expect << EOF
338 [ein]
339 bahn = strasse
340 [anwohner]
341 park = ausweis
342 EOF
343
344 test_expect_success '--set in alternative GIT_CONFIG' 'cmp other-config expect'
345
346 cat > .git/config << EOF
347 # Hallo
348 #Bello
349 [branch "eins"]
350 x = 1
351 [branch.eins]
352 y = 1
353 [branch "1 234 blabl/a"]
354 weird
355 EOF
356
357 test_expect_success "rename section" \
358 "git-config --rename-section branch.eins branch.zwei"
359
360 cat > expect << EOF
361 # Hallo
362 #Bello
363 [branch "zwei"]
364 x = 1
365 [branch "zwei"]
366 y = 1
367 [branch "1 234 blabl/a"]
368 weird
369 EOF
370
371 test_expect_success "rename succeeded" "git diff expect .git/config"
372
373 test_expect_failure "rename non-existing section" \
374 'git-config --rename-section branch."world domination" branch.drei'
375
376 test_expect_success "rename succeeded" "git diff expect .git/config"
377
378 test_expect_success "rename another section" \
379 'git-config --rename-section branch."1 234 blabl/a" branch.drei'
380
381 cat > expect << EOF
382 # Hallo
383 #Bello
384 [branch "zwei"]
385 x = 1
386 [branch "zwei"]
387 y = 1
388 [branch "drei"]
389 weird
390 EOF
391
392 test_expect_success "rename succeeded" "git diff expect .git/config"
393
394 cat >> .git/config << EOF
395 [branch "zwei"] a = 1 [branch "vier"]
396 EOF
397
398 test_expect_success "remove section" "git config --remove-section branch.zwei"
399
400 cat > expect << EOF
401 # Hallo
402 #Bello
403 [branch "drei"]
404 weird
405 EOF
406
407 test_expect_success "section was removed properly" \
408 "git diff -u expect .git/config"
409
410 rm .git/config
411
412 cat > expect << EOF
413 [gitcvs]
414 enabled = true
415 dbname = %Ggitcvs2.%a.%m.sqlite
416 [gitcvs "ext"]
417 dbname = %Ggitcvs1.%a.%m.sqlite
418 EOF
419
420 test_expect_success 'section ending' '
421
422 git-config gitcvs.enabled true &&
423 git-config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
424 git-config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
425 cmp .git/config expect
426
427 '
428
429 test_expect_success numbers '
430
431 git-config kilo.gram 1k &&
432 git-config mega.ton 1m &&
433 k=$(git-config --int --get kilo.gram) &&
434 test z1024 = "z$k" &&
435 m=$(git-config --int --get mega.ton) &&
436 test z1048576 = "z$m"
437 '
438
439 rm .git/config
440
441 git-config quote.leading " test"
442 git-config quote.ending "test "
443 git-config quote.semicolon "test;test"
444 git-config quote.hash "test#test"
445
446 cat > expect << EOF
447 [quote]
448 leading = " test"
449 ending = "test "
450 semicolon = "test;test"
451 hash = "test#test"
452 EOF
453
454 test_expect_success 'quoting' 'cmp .git/config expect'
455
456 test_expect_failure 'key with newline' 'git config key.with\\\
457 newline 123'
458
459 test_expect_success 'value with newline' 'git config key.sub value.with\\\
460 newline'
461
462 cat > .git/config <<\EOF
463 [section]
464 ; comment \
465 continued = cont\
466 inued
467 noncont = not continued ; \
468 quotecont = "cont;\
469 inued"
470 EOF
471
472 cat > expect <<\EOF
473 section.continued=continued
474 section.noncont=not continued
475 section.quotecont=cont;inued
476 EOF
477
478 git config --list > result
479
480 test_expect_success 'value continued on next line' 'cmp result expect'
481
482 test_done
483