summaryrefslogtreecommitdiff
path: root/t/t1300-repo-config.sh
blob: ab4dd5c4ce14c496e1239a0013952c4c422a6a50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
#!/bin/sh
#
# Copyright (c) 2005 Johannes Schindelin
#
 
test_description='Test git-repo-config in different settings'
 
. ./test-lib.sh
 
test -f .git/config && rm .git/config
 
git-repo-config core.penguin "little blue"
 
cat > expect << EOF
[core]
	penguin = little blue
EOF
 
test_expect_success 'initial' 'cmp .git/config expect'
 
git-repo-config Core.Movie BadPhysics
 
cat > expect << EOF
[core]
	penguin = little blue
	Movie = BadPhysics
EOF
 
test_expect_success 'mixed case' 'cmp .git/config expect'
 
git-repo-config Cores.WhatEver Second
 
cat > expect << EOF
[core]
	penguin = little blue
	Movie = BadPhysics
[Cores]
	WhatEver = Second
EOF
 
test_expect_success 'similar section' 'cmp .git/config expect'
 
git-repo-config CORE.UPPERCASE true
 
cat > expect << EOF
[core]
	penguin = little blue
	Movie = BadPhysics
	UPPERCASE = true
[Cores]
	WhatEver = Second
EOF
 
test_expect_success 'similar section' 'cmp .git/config expect'
 
test_expect_success 'replace with non-match' \
	'git-repo-config core.penguin kingpin !blue'
 
test_expect_success 'replace with non-match (actually matching)' \
	'git-repo-config core.penguin "very blue" !kingpin'
 
cat > expect << EOF
[core]
	penguin = very blue
	Movie = BadPhysics
	UPPERCASE = true
	penguin = kingpin
[Cores]
	WhatEver = Second
EOF
 
test_expect_success 'non-match result' 'cmp .git/config expect'
 
cat > .git/config << EOF
[beta] ; silly comment # another comment
noIndent= sillyValue ; 'nother silly comment
 
# empty line
		; comment
		haha   ="beta" # last silly comment
haha = hello
	haha = bello
[nextSection] noNewline = ouch
EOF
 
cp .git/config .git/config2
 
test_expect_success 'multiple unset' \
	'git-repo-config --unset-all beta.haha'
 
cat > expect << EOF
[beta] ; silly comment # another comment
noIndent= sillyValue ; 'nother silly comment
 
# empty line
		; comment
[nextSection] noNewline = ouch
EOF
 
test_expect_success 'multiple unset is correct' 'cmp .git/config expect'
 
mv .git/config2 .git/config
 
test_expect_success '--replace-all' \
	'git-repo-config --replace-all beta.haha gamma'
 
cat > expect << EOF
[beta] ; silly comment # another comment
noIndent= sillyValue ; 'nother silly comment
 
# empty line
		; comment
	haha = gamma
[nextSection] noNewline = ouch
EOF
 
test_expect_success 'all replaced' 'cmp .git/config expect'
 
git-repo-config beta.haha alpha
 
cat > expect << EOF
[beta] ; silly comment # another comment
noIndent= sillyValue ; 'nother silly comment
 
# empty line
		; comment
	haha = alpha
[nextSection] noNewline = ouch
EOF
 
test_expect_success 'really mean test' 'cmp .git/config expect'
 
git-repo-config nextsection.nonewline wow
 
cat > expect << EOF
[beta] ; silly comment # another comment
noIndent= sillyValue ; 'nother silly comment
 
# empty line
		; comment
	haha = alpha
[nextSection]
	nonewline = wow
EOF
 
test_expect_success 'really really mean test' 'cmp .git/config expect'
 
test_expect_success 'get value' 'test alpha = $(git-repo-config beta.haha)'
git-repo-config --unset beta.haha
 
cat > expect << EOF
[beta] ; silly comment # another comment
noIndent= sillyValue ; 'nother silly comment
 
# empty line
		; comment
[nextSection]
	nonewline = wow
EOF
 
test_expect_success 'unset' 'cmp .git/config expect'
 
git-repo-config nextsection.NoNewLine "wow2 for me" "for me$"
 
cat > expect << EOF
[beta] ; silly comment # another comment
noIndent= sillyValue ; 'nother silly comment
 
# empty line
		; comment
[nextSection]
	nonewline = wow
	NoNewLine = wow2 for me
EOF
 
test_expect_success 'multivar' 'cmp .git/config expect'
 
test_expect_success 'non-match' \
	'git-repo-config --get nextsection.nonewline !for'
 
test_expect_success 'non-match value' \
	'test wow = $(git-repo-config --get nextsection.nonewline !for)'
 
test_expect_failure 'ambiguous get' \
	'git-repo-config --get nextsection.nonewline'
 
test_expect_success 'get multivar' \
	'git-repo-config --get-all nextsection.nonewline'
 
git-repo-config nextsection.nonewline "wow3" "wow$"
 
cat > expect << EOF
[beta] ; silly comment # another comment
noIndent= sillyValue ; 'nother silly comment
 
# empty line
		; comment
[nextSection]
	nonewline = wow3
	NoNewLine = wow2 for me
EOF
 
test_expect_success 'multivar replace' 'cmp .git/config expect'
 
test_expect_failure 'ambiguous value' 'git-repo-config nextsection.nonewline'
 
test_expect_failure 'ambiguous unset' \
	'git-repo-config --unset nextsection.nonewline'
 
test_expect_failure 'invalid unset' \
	'git-repo-config --unset somesection.nonewline'
 
git-repo-config --unset nextsection.nonewline "wow3$"
 
cat > expect << EOF
[beta] ; silly comment # another comment
noIndent= sillyValue ; 'nother silly comment
 
# empty line
		; comment
[nextSection]
	NoNewLine = wow2 for me
EOF
 
test_expect_success 'multivar unset' 'cmp .git/config expect'
 
test_expect_failure 'invalid key' 'git-repo-config inval.2key blabla'
 
test_expect_success 'correct key' 'git-repo-config 123456.a123 987'
 
test_expect_success 'hierarchical section' \
	'git-repo-config 1.2.3.alpha beta'
 
cat > expect << EOF
[beta] ; silly comment # another comment
noIndent= sillyValue ; 'nother silly comment
 
# empty line
		; comment
[nextSection]
	NoNewLine = wow2 for me
[123456]
	a123 = 987
[1.2.3]
	alpha = beta
EOF
 
test_expect_success 'hierarchical section value' 'cmp .git/config expect'
 
cat > .git/config << EOF
[novalue]
	variable
EOF
 
test_expect_success 'get variable with no value' \
	'git-repo-config --get novalue.variable ^$'
 
test_done