]> git.ipfire.org Git - thirdparty/git.git/blame - t/t1300-repo-config.sh
Teach bash the new features of 'git show'.
[thirdparty/git.git] / t / t1300-repo-config.sh
CommitLineData
942c1f53
JS
1#!/bin/sh
2#
3# Copyright (c) 2005 Johannes Schindelin
4#
5
ee72aeaf 6test_description='Test git-repo-config in different settings'
942c1f53
JS
7
8. ./test-lib.sh
9
10test -f .git/config && rm .git/config
11
ee72aeaf 12git-repo-config core.penguin "little blue"
942c1f53
JS
13
14cat > expect << EOF
942c1f53
JS
15[core]
16 penguin = little blue
17EOF
18
19test_expect_success 'initial' 'cmp .git/config expect'
20
ee72aeaf 21git-repo-config Core.Movie BadPhysics
942c1f53
JS
22
23cat > expect << EOF
942c1f53
JS
24[core]
25 penguin = little blue
26 Movie = BadPhysics
27EOF
28
29test_expect_success 'mixed case' 'cmp .git/config expect'
30
ee72aeaf 31git-repo-config Cores.WhatEver Second
942c1f53
JS
32
33cat > expect << EOF
942c1f53
JS
34[core]
35 penguin = little blue
36 Movie = BadPhysics
37[Cores]
38 WhatEver = Second
39EOF
40
41test_expect_success 'similar section' 'cmp .git/config expect'
42
ee72aeaf 43git-repo-config CORE.UPPERCASE true
942c1f53
JS
44
45cat > expect << EOF
942c1f53
JS
46[core]
47 penguin = little blue
48 Movie = BadPhysics
49 UPPERCASE = true
50[Cores]
51 WhatEver = Second
52EOF
53
54test_expect_success 'similar section' 'cmp .git/config expect'
55
f98d863d 56test_expect_success 'replace with non-match' \
ee72aeaf 57 'git-repo-config core.penguin kingpin !blue'
f98d863d
JS
58
59test_expect_success 'replace with non-match (actually matching)' \
ee72aeaf 60 'git-repo-config core.penguin "very blue" !kingpin'
f98d863d
JS
61
62cat > expect << EOF
f98d863d
JS
63[core]
64 penguin = very blue
65 Movie = BadPhysics
66 UPPERCASE = true
67 penguin = kingpin
68[Cores]
69 WhatEver = Second
70EOF
71
72test_expect_success 'non-match result' 'cmp .git/config expect'
73
942c1f53
JS
74cat > .git/config << EOF
75[beta] ; silly comment # another comment
76noIndent= sillyValue ; 'nother silly comment
77
78# empty line
79 ; comment
80 haha ="beta" # last silly comment
4ddba79d
JS
81haha = hello
82 haha = bello
942c1f53
JS
83[nextSection] noNewline = ouch
84EOF
85
4ddba79d
JS
86cp .git/config .git/config2
87
88test_expect_success 'multiple unset' \
ee72aeaf 89 'git-repo-config --unset-all beta.haha'
4ddba79d
JS
90
91cat > expect << EOF
92[beta] ; silly comment # another comment
93noIndent= sillyValue ; 'nother silly comment
94
95# empty line
96 ; comment
97[nextSection] noNewline = ouch
98EOF
99
100test_expect_success 'multiple unset is correct' 'cmp .git/config expect'
101
102mv .git/config2 .git/config
103
104test_expect_success '--replace-all' \
ee72aeaf 105 'git-repo-config --replace-all beta.haha gamma'
4ddba79d
JS
106
107cat > expect << EOF
108[beta] ; silly comment # another comment
109noIndent= sillyValue ; 'nother silly comment
110
111# empty line
112 ; comment
113 haha = gamma
114[nextSection] noNewline = ouch
115EOF
116
117test_expect_success 'all replaced' 'cmp .git/config expect'
118
ee72aeaf 119git-repo-config beta.haha alpha
942c1f53
JS
120
121cat > expect << EOF
122[beta] ; silly comment # another comment
123noIndent= sillyValue ; 'nother silly comment
124
125# empty line
126 ; comment
127 haha = alpha
128[nextSection] noNewline = ouch
129EOF
130
131test_expect_success 'really mean test' 'cmp .git/config expect'
132
ee72aeaf 133git-repo-config nextsection.nonewline wow
942c1f53
JS
134
135cat > expect << EOF
136[beta] ; silly comment # another comment
137noIndent= sillyValue ; 'nother silly comment
138
139# empty line
140 ; comment
141 haha = alpha
142[nextSection]
143 nonewline = wow
144EOF
145
146test_expect_success 'really really mean test' 'cmp .git/config expect'
147
ee72aeaf
JS
148test_expect_success 'get value' 'test alpha = $(git-repo-config beta.haha)'
149git-repo-config --unset beta.haha
942c1f53
JS
150
151cat > expect << EOF
152[beta] ; silly comment # another comment
153noIndent= sillyValue ; 'nother silly comment
154
155# empty line
156 ; comment
157[nextSection]
158 nonewline = wow
159EOF
160
161test_expect_success 'unset' 'cmp .git/config expect'
162
ee72aeaf 163git-repo-config nextsection.NoNewLine "wow2 for me" "for me$"
942c1f53
JS
164
165cat > expect << EOF
166[beta] ; silly comment # another comment
167noIndent= sillyValue ; 'nother silly comment
168
169# empty line
170 ; comment
171[nextSection]
172 nonewline = wow
173 NoNewLine = wow2 for me
174EOF
175
176test_expect_success 'multivar' 'cmp .git/config expect'
177
f98d863d 178test_expect_success 'non-match' \
ee72aeaf 179 'git-repo-config --get nextsection.nonewline !for'
f98d863d
JS
180
181test_expect_success 'non-match value' \
ee72aeaf 182 'test wow = $(git-repo-config --get nextsection.nonewline !for)'
f98d863d 183
4ddba79d 184test_expect_failure 'ambiguous get' \
ee72aeaf 185 'git-repo-config --get nextsection.nonewline'
4ddba79d
JS
186
187test_expect_success 'get multivar' \
ee72aeaf 188 'git-repo-config --get-all nextsection.nonewline'
4ddba79d 189
ee72aeaf 190git-repo-config nextsection.nonewline "wow3" "wow$"
942c1f53
JS
191
192cat > expect << EOF
193[beta] ; silly comment # another comment
194noIndent= sillyValue ; 'nother silly comment
195
196# empty line
197 ; comment
198[nextSection]
199 nonewline = wow3
200 NoNewLine = wow2 for me
201EOF
202
203test_expect_success 'multivar replace' 'cmp .git/config expect'
204
ee72aeaf 205test_expect_failure 'ambiguous value' 'git-repo-config nextsection.nonewline'
4ddba79d 206
942c1f53 207test_expect_failure 'ambiguous unset' \
ee72aeaf 208 'git-repo-config --unset nextsection.nonewline'
942c1f53
JS
209
210test_expect_failure 'invalid unset' \
ee72aeaf 211 'git-repo-config --unset somesection.nonewline'
942c1f53 212
ee72aeaf 213git-repo-config --unset nextsection.nonewline "wow3$"
942c1f53
JS
214
215cat > expect << EOF
216[beta] ; silly comment # another comment
217noIndent= sillyValue ; 'nother silly comment
218
219# empty line
220 ; comment
221[nextSection]
222 NoNewLine = wow2 for me
223EOF
224
225test_expect_success 'multivar unset' 'cmp .git/config expect'
226
ee72aeaf 227test_expect_failure 'invalid key' 'git-repo-config inval.2key blabla'
942c1f53 228
ee72aeaf 229test_expect_success 'correct key' 'git-repo-config 123456.a123 987'
942c1f53 230
b17e659d 231test_expect_success 'hierarchical section' \
d14f7764 232 'git-repo-config Version.1.2.3eX.Alpha beta'
b17e659d
JS
233
234cat > expect << EOF
235[beta] ; silly comment # another comment
236noIndent= sillyValue ; 'nother silly comment
237
238# empty line
239 ; comment
240[nextSection]
241 NoNewLine = wow2 for me
242[123456]
243 a123 = 987
d14f7764
LT
244[Version "1.2.3eX"]
245 Alpha = beta
b17e659d
JS
246EOF
247
248test_expect_success 'hierarchical section value' 'cmp .git/config expect'
249
2fa9a0fb
JS
250cat > expect << EOF
251beta.noindent=sillyValue
252nextsection.nonewline=wow2 for me
253123456.a123=987
d55aaefa 254version.1.2.3eX.alpha=beta
2fa9a0fb
JS
255EOF
256
257test_expect_success 'working --list' \
258 'git-repo-config --list > output && cmp output expect'
259
260cat > expect << EOF
261beta.noindent sillyValue
262nextsection.nonewline wow2 for me
263EOF
264
265test_expect_success '--get-regexp' \
266 'git-repo-config --get-regexp in > output && cmp output expect'
267
f067a137
JF
268cat > .git/config << EOF
269[novalue]
270 variable
271EOF
272
273test_expect_success 'get variable with no value' \
274 'git-repo-config --get novalue.variable ^$'
275
2fa9a0fb
JS
276git-repo-config > output 2>&1
277
278test_expect_success 'no arguments, but no crash' \
279 "test $? = 129 && grep usage output"
280
bd886fd3
SE
281cat > .git/config << EOF
282[a.b]
283 c = d
284EOF
285
286git-repo-config a.x y
287
288cat > expect << EOF
289[a.b]
290 c = d
291[a]
292 x = y
293EOF
294
295test_expect_success 'new section is partial match of another' 'cmp .git/config expect'
296
297git-repo-config b.x y
298git-repo-config a.b c
299
300cat > expect << EOF
301[a.b]
302 c = d
303[a]
304 x = y
305 b = c
306[b]
307 x = y
308EOF
309
310test_expect_success 'new variable inserts into proper section' 'cmp .git/config expect'
311
9c3796fc
JS
312cat > other-config << EOF
313[ein]
314 bahn = strasse
315EOF
316
317cat > expect << EOF
318ein.bahn=strasse
319EOF
320
321GIT_CONFIG=other-config git-repo-config -l > output
322
323test_expect_success 'alternative GIT_CONFIG' 'cmp output expect'
324
325GIT_CONFIG=other-config git-repo-config anwohner.park ausweis
326
327cat > expect << EOF
328[ein]
329 bahn = strasse
330[anwohner]
331 park = ausweis
332EOF
333
334test_expect_success '--set in alternative GIT_CONFIG' 'cmp other-config expect'
335
942c1f53
JS
336test_done
337