3 # Copyright (c) 2005 Johannes Schindelin
6 test_description
='Test git-repo-config in different settings'
10 test -f .git
/config
&& rm .git
/config
12 git-repo-config core.penguin
"little blue"
19 test_expect_success
'initial' 'cmp .git/config expect'
21 git-repo-config Core.Movie BadPhysics
29 test_expect_success
'mixed case' 'cmp .git/config expect'
31 git-repo-config Cores.WhatEver Second
41 test_expect_success
'similar section' 'cmp .git/config expect'
43 git-repo-config CORE.UPPERCASE true
54 test_expect_success
'similar section' 'cmp .git/config expect'
56 test_expect_success
'replace with non-match' \
57 'git-repo-config core.penguin kingpin !blue'
59 test_expect_success
'replace with non-match (actually matching)' \
60 'git-repo-config core.penguin "very blue" !kingpin'
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
80 haha ="beta" # last silly comment
83 [nextSection] noNewline = ouch
86 cp .git
/config .git
/config2
88 test_expect_success
'multiple unset' \
89 'git-repo-config --unset-all beta.haha'
92 [beta] ; silly comment # another comment
93 noIndent= sillyValue ; 'nother silly comment
97 [nextSection] noNewline = ouch
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-repo-config --replace-all beta.haha gamma'
108 [beta] ; silly comment # another comment
109 noIndent= sillyValue ; 'nother silly comment
114 [nextSection] noNewline = ouch
117 test_expect_success
'all replaced' 'cmp .git/config expect'
119 git-repo-config beta.haha alpha
122 [beta] ; silly comment # another comment
123 noIndent= sillyValue ; 'nother silly comment
128 [nextSection] noNewline = ouch
131 test_expect_success
'really mean test' 'cmp .git/config expect'
133 git-repo-config nextsection.nonewline wow
136 [beta] ; silly comment # another comment
137 noIndent= sillyValue ; 'nother silly comment
146 test_expect_success
'really really mean test' 'cmp .git/config expect'
148 test_expect_success
'get value' 'test alpha = $(git-repo-config beta.haha)'
149 git-repo-config
--unset beta.haha
152 [beta] ; silly comment # another comment
153 noIndent= sillyValue ; 'nother silly comment
161 test_expect_success
'unset' 'cmp .git/config expect'
163 git-repo-config nextsection.NoNewLine
"wow2 for me" "for me$"
166 [beta] ; silly comment # another comment
167 noIndent= sillyValue ; 'nother silly comment
173 NoNewLine = wow2 for me
176 test_expect_success
'multivar' 'cmp .git/config expect'
178 test_expect_success
'non-match' \
179 'git-repo-config --get nextsection.nonewline !for'
181 test_expect_success
'non-match value' \
182 'test wow = $(git-repo-config --get nextsection.nonewline !for)'
184 test_expect_failure
'ambiguous get' \
185 'git-repo-config --get nextsection.nonewline'
187 test_expect_success
'get multivar' \
188 'git-repo-config --get-all nextsection.nonewline'
190 git-repo-config nextsection.nonewline
"wow3" "wow$"
193 [beta] ; silly comment # another comment
194 noIndent= sillyValue ; 'nother silly comment
200 NoNewLine = wow2 for me
203 test_expect_success
'multivar replace' 'cmp .git/config expect'
205 test_expect_failure
'ambiguous value' 'git-repo-config nextsection.nonewline'
207 test_expect_failure
'ambiguous unset' \
208 'git-repo-config --unset nextsection.nonewline'
210 test_expect_failure
'invalid unset' \
211 'git-repo-config --unset somesection.nonewline'
213 git-repo-config
--unset nextsection.nonewline
"wow3$"
216 [beta] ; silly comment # another comment
217 noIndent= sillyValue ; 'nother silly comment
222 NoNewLine = wow2 for me
225 test_expect_success
'multivar unset' 'cmp .git/config expect'
227 test_expect_failure
'invalid key' 'git-repo-config inval.2key blabla'
229 test_expect_success
'correct key' 'git-repo-config 123456.a123 987'
231 test_expect_success
'hierarchical section' \
232 'git-repo-config Version.1.2.3eX.Alpha beta'
235 [beta] ; silly comment # another comment
236 noIndent= sillyValue ; 'nother silly comment
241 NoNewLine = wow2 for me
248 test_expect_success
'hierarchical section value' 'cmp .git/config expect'
251 beta.noindent=sillyValue
252 nextsection.nonewline=wow2 for me
254 version.1.2.3eX.alpha=beta
257 test_expect_success
'working --list' \
258 'git-repo-config --list > output && cmp output expect'
261 beta.noindent sillyValue
262 nextsection.nonewline wow2 for me
265 test_expect_success
'--get-regexp' \
266 'git-repo-config --get-regexp in > output && cmp output expect'
268 git-repo-config
--add nextsection.nonewline
"wow4 for you"
275 test_expect_success
'--add' \
276 'git-repo-config --get-all nextsection.nonewline > output && cmp output expect'
278 cat > .git
/config
<< EOF
283 test_expect_success
'get variable with no value' \
284 'git-repo-config --get novalue.variable ^$'
286 git-repo-config
> output
2>&1
288 test_expect_success
'no arguments, but no crash' \
289 "test $? = 129 && grep usage output"
291 cat > .git
/config
<< EOF
296 git-repo-config a.x y
305 test_expect_success
'new section is partial match of another' 'cmp .git/config expect'
307 git-repo-config b.x y
308 git-repo-config a.b c
320 test_expect_success
'new variable inserts into proper section' 'cmp .git/config expect'
322 cat > other-config
<< EOF
331 GIT_CONFIG
=other-config git-repo-config
-l > output
333 test_expect_success
'alternative GIT_CONFIG' 'cmp output expect'
335 GIT_CONFIG
=other-config git-repo-config anwohner.park ausweis
344 test_expect_success
'--set in alternative GIT_CONFIG' 'cmp other-config expect'
346 cat > .git
/config
<< EOF
353 [branch "1 234 blabl/a"]
357 test_expect_success
"rename section" \
358 "git-repo-config --rename-section branch.eins branch.zwei"
367 [branch "1 234 blabl/a"]
371 test_expect_success
"rename succeeded" "diff -u expect .git/config"
373 test_expect_failure
"rename non-existing section" \
374 'git-repo-config --rename-section branch."world domination" branch.drei'
376 test_expect_success
"rename succeeded" "diff -u expect .git/config"
378 test_expect_success
"rename another section" \
379 'git-repo-config --rename-section branch."1 234 blabl/a" branch.drei'
392 test_expect_success
"rename succeeded" "diff -u expect .git/config"
394 test_expect_success numbers
'
396 git-repo-config kilo.gram 1k &&
397 git-repo-config mega.ton 1m &&
398 k=$(git-repo-config --int --get kilo.gram) &&
399 test z1024 = "z$k" &&
400 m=$(git-repo-config --int --get mega.ton) &&
401 test z1048576 = "z$m"
406 git-repo-config quote.leading
" test"
407 git-repo-config quote.ending
"test "
408 git-repo-config quote.semicolon
"test;test"
409 git-repo-config quote.
hash "test#test"
415 semicolon = "test;test"
419 test_expect_success
'quoting' 'cmp .git/config expect'