]> git.ipfire.org Git - thirdparty/git.git/blame - t/t0003-attributes.sh
Sync with 2.31.5
[thirdparty/git.git] / t / t0003-attributes.sh
CommitLineData
cf94ccda
JH
1#!/bin/sh
2
3test_description=gitattributes
4
5. ./test-lib.sh
6
2ef579e2 7attr_check_basic () {
3738439c 8 path="$1" expect="$2" git_opts="$3" &&
cf94ccda 9
3738439c
DL
10 git $git_opts check-attr test -- "$path" >actual 2>err &&
11 echo "$path: test: $expect" >expect &&
2ef579e2
JK
12 test_cmp expect actual
13}
14
15attr_check () {
16 attr_check_basic "$@" &&
99c049bc 17 test_must_be_empty err
cf94ccda
JH
18}
19
860a74d9 20attr_check_quote () {
3738439c 21 path="$1" quoted_path="$2" expect="$3" &&
860a74d9
NTND
22
23 git check-attr test -- "$path" >actual &&
24 echo "\"$quoted_path\": test: $expect" >expect &&
25 test_cmp expect actual
26
27}
28
29test_expect_success 'open-quoted pathname' '
30 echo "\"a test=a" >.gitattributes &&
f46c243e 31 attr_check a unspecified
860a74d9
NTND
32'
33
34
cf94ccda 35test_expect_success 'setup' '
0216af83 36 mkdir -p a/b/d a/c b &&
cf94ccda 37 (
75651fd7
ES
38 echo "[attr]notest !test" &&
39 echo "\" d \" test=d" &&
40 echo " e test=e" &&
41 echo " e\" test=e" &&
42 echo "f test=f" &&
43 echo "a/i test=a/i" &&
44 echo "onoff test -test" &&
45 echo "offon -test test" &&
46 echo "no notest" &&
6eba6210 47 echo "A/e/F test=A/e/F"
cf94ccda
JH
48 ) >.gitattributes &&
49 (
50 echo "g test=a/g" &&
51 echo "b/g test=a/b/g"
52 ) >a/.gitattributes &&
53 (
54 echo "h test=a/b/h" &&
75651fd7 55 echo "d/* test=a/b/d/*" &&
ec775c41 56 echo "d/yes notest"
dcc04366 57 ) >a/b/.gitattributes &&
6df42ab9
PO
58 (
59 echo "global test=global"
c9d8f0ac 60 ) >"$HOME"/global-gitattributes &&
78cec757
JH
61 cat <<-EOF >expect-all
62 f: test: f
63 a/f: test: f
64 a/c/f: test: f
65 a/g: test: a/g
66 a/b/g: test: a/b/g
67 b/g: test: unspecified
68 a/b/h: test: a/b/h
69 a/b/d/g: test: a/b/d/*
70 onoff: test: unset
71 offon: test: set
72 no: notest: set
73 no: test: unspecified
74 a/b/d/no: notest: set
75 a/b/d/no: test: a/b/d/*
76 a/b/d/yes: notest: set
77 a/b/d/yes: test: unspecified
78 EOF
cf94ccda
JH
79'
80
c0b13b21 81test_expect_success 'command line checks' '
09d7dd7a
MH
82 test_must_fail git check-attr &&
83 test_must_fail git check-attr -- &&
fdf6be82
MH
84 test_must_fail git check-attr test &&
85 test_must_fail git check-attr test -- &&
09d7dd7a
MH
86 test_must_fail git check-attr -- f &&
87 echo "f" | test_must_fail git check-attr --stdin &&
88 echo "f" | test_must_fail git check-attr --stdin -- f &&
89 echo "f" | test_must_fail git check-attr --stdin test -- f &&
c0b13b21 90 test_must_fail git check-attr "" -- f
c0b13b21
MH
91'
92
cf94ccda 93test_expect_success 'attribute test' '
860a74d9
NTND
94
95 attr_check " d " d &&
96 attr_check e e &&
97 attr_check_quote e\" e\\\" e &&
98
cf94ccda
JH
99 attr_check f f &&
100 attr_check a/f f &&
101 attr_check a/c/f f &&
102 attr_check a/g a/g &&
103 attr_check a/b/g a/b/g &&
104 attr_check b/g unspecified &&
105 attr_check a/b/h a/b/h &&
520ea857
MM
106 attr_check a/b/d/g "a/b/d/*" &&
107 attr_check onoff unset &&
108 attr_check offon set &&
109 attr_check no unspecified &&
110 attr_check a/b/d/no "a/b/d/*" &&
ec775c41 111 attr_check a/b/d/yes unspecified
cf94ccda
JH
112'
113
6eba6210
BC
114test_expect_success 'attribute matching is case sensitive when core.ignorecase=0' '
115
f46c243e
DL
116 attr_check F unspecified "-c core.ignorecase=0" &&
117 attr_check a/F unspecified "-c core.ignorecase=0" &&
118 attr_check a/c/F unspecified "-c core.ignorecase=0" &&
119 attr_check a/G unspecified "-c core.ignorecase=0" &&
120 attr_check a/B/g a/g "-c core.ignorecase=0" &&
121 attr_check a/b/G unspecified "-c core.ignorecase=0" &&
122 attr_check a/b/H unspecified "-c core.ignorecase=0" &&
123 attr_check a/b/D/g a/g "-c core.ignorecase=0" &&
124 attr_check oNoFf unspecified "-c core.ignorecase=0" &&
125 attr_check oFfOn unspecified "-c core.ignorecase=0" &&
6eba6210 126 attr_check NO unspecified "-c core.ignorecase=0" &&
f46c243e 127 attr_check a/b/D/NO unspecified "-c core.ignorecase=0" &&
6eba6210 128 attr_check a/b/d/YES a/b/d/* "-c core.ignorecase=0" &&
f46c243e 129 attr_check a/E/f f "-c core.ignorecase=0"
6eba6210
BC
130
131'
132
133test_expect_success 'attribute matching is case insensitive when core.ignorecase=1' '
134
135 attr_check F f "-c core.ignorecase=1" &&
136 attr_check a/F f "-c core.ignorecase=1" &&
137 attr_check a/c/F f "-c core.ignorecase=1" &&
138 attr_check a/G a/g "-c core.ignorecase=1" &&
139 attr_check a/B/g a/b/g "-c core.ignorecase=1" &&
140 attr_check a/b/G a/b/g "-c core.ignorecase=1" &&
141 attr_check a/b/H a/b/h "-c core.ignorecase=1" &&
142 attr_check a/b/D/g "a/b/d/*" "-c core.ignorecase=1" &&
143 attr_check oNoFf unset "-c core.ignorecase=1" &&
144 attr_check oFfOn set "-c core.ignorecase=1" &&
145 attr_check NO unspecified "-c core.ignorecase=1" &&
146 attr_check a/b/D/NO "a/b/d/*" "-c core.ignorecase=1" &&
147 attr_check a/b/d/YES unspecified "-c core.ignorecase=1" &&
148 attr_check a/E/f "A/e/F" "-c core.ignorecase=1"
149
150'
151
6eba6210 152test_expect_success CASE_INSENSITIVE_FS 'additional case insensitivity tests' '
f46c243e
DL
153 attr_check a/B/D/g a/g "-c core.ignorecase=0" &&
154 attr_check A/B/D/NO unspecified "-c core.ignorecase=0" &&
6eba6210
BC
155 attr_check A/b/h a/b/h "-c core.ignorecase=1" &&
156 attr_check a/B/D/g "a/b/d/*" "-c core.ignorecase=1" &&
157 attr_check A/B/D/NO "a/b/d/*" "-c core.ignorecase=1"
158'
159
f5114a40 160test_expect_success 'unnormalized paths' '
d4d4f8df
MH
161 attr_check ./f f &&
162 attr_check ./a/g a/g &&
163 attr_check a/./g a/g &&
164 attr_check a/c/../b/g a/b/g
d4d4f8df
MH
165'
166
f5114a40 167test_expect_success 'relative paths' '
0216af83
MH
168 (cd a && attr_check ../f f) &&
169 (cd a && attr_check f f) &&
170 (cd a && attr_check i a/i) &&
171 (cd a && attr_check g a/g) &&
172 (cd a && attr_check b/g a/b/g) &&
173 (cd b && attr_check ../a/f f) &&
174 (cd b && attr_check ../a/g a/g) &&
175 (cd b && attr_check ../a/b/g a/b/g)
0216af83
MH
176'
177
1afca444
JK
178test_expect_success 'prefixes are not confused with leading directories' '
179 attr_check a_plus/g unspecified &&
180 cat >expect <<-\EOF &&
181 a/g: test: a/g
182 a_plus/g: test: unspecified
183 EOF
184 git check-attr test a/g a_plus/g >actual &&
185 test_cmp expect actual
186'
187
6df42ab9
PO
188test_expect_success 'core.attributesfile' '
189 attr_check global unspecified &&
190 git config core.attributesfile "$HOME/global-gitattributes" &&
191 attr_check global global &&
192 git config core.attributesfile "~/global-gitattributes" &&
193 attr_check global global &&
78cec757 194 echo "global test=precedence" >>.gitattributes &&
6df42ab9
PO
195 attr_check global precedence
196'
197
b4666852 198test_expect_success 'attribute test: read paths from stdin' '
78cec757
JH
199 grep -v notest <expect-all >expect &&
200 sed -e "s/:.*//" <expect | git check-attr --stdin test >actual &&
b4666852
DP
201 test_cmp expect actual
202'
203
4ca0f188 204test_expect_success 'attribute test: --all option' '
b2b3e9c2
JS
205 grep -v unspecified <expect-all | sort >specified-all &&
206 sed -e "s/:.*//" <expect-all | uniq >stdin-all &&
207 git check-attr --stdin --all <stdin-all | sort >actual &&
208 test_cmp specified-all actual
209'
210
211test_expect_success 'attribute test: --cached option' '
b2b3e9c2 212 git check-attr --cached --stdin --all <stdin-all | sort >actual &&
1c5e94f4 213 test_must_be_empty actual &&
b2b3e9c2
JS
214 git add .gitattributes a/.gitattributes a/b/.gitattributes &&
215 git check-attr --cached --stdin --all <stdin-all | sort >actual &&
216 test_cmp specified-all actual
4ca0f188
MH
217'
218
82881b38 219test_expect_success 'root subdir attribute test' '
82881b38
MO
220 attr_check a/i a/i &&
221 attr_check subdir/a/i unspecified
82881b38
MO
222'
223
82dce998
NTND
224test_expect_success 'negative patterns' '
225 echo "!f test=bar" >.gitattributes &&
8b1bd024
TR
226 git check-attr test -- '"'"'!f'"'"' 2>errors &&
227 test_i18ngrep "Negative patterns are ignored" errors
82dce998
NTND
228'
229
230test_expect_success 'patterns starting with exclamation' '
231 echo "\!f test=foo" >.gitattributes &&
232 attr_check "!f" foo
233'
234
237ec6e4
NTND
235test_expect_success '"**" test' '
236 echo "**/f foo=bar" >.gitattributes &&
237 cat <<\EOF >expect &&
238f: foo: bar
239a/f: foo: bar
240a/b/f: foo: bar
241a/b/c/f: foo: bar
242EOF
243 git check-attr foo -- "f" >actual 2>err &&
244 git check-attr foo -- "a/f" >>actual 2>>err &&
245 git check-attr foo -- "a/b/f" >>actual 2>>err &&
246 git check-attr foo -- "a/b/c/f" >>actual 2>>err &&
247 test_cmp expect actual &&
99c049bc 248 test_must_be_empty err
237ec6e4
NTND
249'
250
251test_expect_success '"**" with no slashes test' '
252 echo "a**f foo=bar" >.gitattributes &&
253 git check-attr foo -- "f" >actual &&
254 cat <<\EOF >expect &&
255f: foo: unspecified
256af: foo: bar
257axf: foo: bar
258a/f: foo: unspecified
259a/b/f: foo: unspecified
260a/b/c/f: foo: unspecified
261EOF
262 git check-attr foo -- "f" >actual 2>err &&
263 git check-attr foo -- "af" >>actual 2>err &&
264 git check-attr foo -- "axf" >>actual 2>err &&
265 git check-attr foo -- "a/f" >>actual 2>>err &&
266 git check-attr foo -- "a/b/f" >>actual 2>>err &&
267 git check-attr foo -- "a/b/c/f" >>actual 2>>err &&
268 test_cmp expect actual &&
99c049bc 269 test_must_be_empty err
237ec6e4
NTND
270'
271
cdbf6232
JH
272test_expect_success 'using --git-dir and --work-tree' '
273 mkdir unreal real &&
274 git init real &&
275 echo "file test=in-real" >real/.gitattributes &&
276 (
277 cd unreal &&
278 attr_check file in-real "--git-dir ../real/.git --work-tree ../real"
279 )
280'
281
2d35d556 282test_expect_success 'setup bare' '
c4a7bce1 283 git clone --bare . bare.git
2d35d556
RS
284'
285
286test_expect_success 'bare repository: check that .gitattribute is ignored' '
2d35d556 287 (
c4a7bce1
JH
288 cd bare.git &&
289 (
75651fd7 290 echo "f test=f" &&
c4a7bce1
JH
291 echo "a/i test=a/i"
292 ) >.gitattributes &&
293 attr_check f unspecified &&
294 attr_check a/f unspecified &&
295 attr_check a/c/f unspecified &&
296 attr_check a/i unspecified &&
297 attr_check subdir/a/i unspecified
298 )
2d35d556
RS
299'
300
b2b3e9c2 301test_expect_success 'bare repository: check that --cached honors index' '
c4a7bce1
JH
302 (
303 cd bare.git &&
304 GIT_INDEX_FILE=../.git/index \
305 git check-attr --cached --stdin --all <../stdin-all |
306 sort >actual &&
307 test_cmp ../specified-all actual
308 )
b2b3e9c2
JS
309'
310
2d35d556 311test_expect_success 'bare repository: test info/attributes' '
2d35d556 312 (
c4a7bce1
JH
313 cd bare.git &&
314 (
75651fd7 315 echo "f test=f" &&
c4a7bce1
JH
316 echo "a/i test=a/i"
317 ) >info/attributes &&
318 attr_check f f &&
319 attr_check a/f f &&
320 attr_check a/c/f f &&
321 attr_check a/i a/i &&
322 attr_check subdir/a/i unspecified
323 )
2d35d556
RS
324'
325
7b95849b
JK
326test_expect_success 'binary macro expanded by -a' '
327 echo "file binary" >.gitattributes &&
328 cat >expect <<-\EOF &&
329 file: binary: set
330 file: diff: unset
331 file: merge: unset
332 file: text: unset
333 EOF
334 git check-attr -a file >actual &&
335 test_cmp expect actual
336'
337
7b95849b
JK
338test_expect_success 'query binary macro directly' '
339 echo "file binary" >.gitattributes &&
340 echo file: binary: set >expect &&
341 git check-attr binary file >actual &&
342 test_cmp expect actual
343'
344
2ef579e2
JK
345test_expect_success SYMLINKS 'set up symlink tests' '
346 echo "* test" >attr &&
347 rm -f .gitattributes
348'
349
350test_expect_success SYMLINKS 'symlinks respected in core.attributesFile' '
351 test_when_finished "rm symlink" &&
352 ln -s attr symlink &&
353 test_config core.attributesFile "$(pwd)/symlink" &&
354 attr_check file set
355'
356
357test_expect_success SYMLINKS 'symlinks respected in info/attributes' '
358 test_when_finished "rm .git/info/attributes" &&
359 ln -s ../../attr .git/info/attributes &&
360 attr_check file set
361'
362
363test_expect_success SYMLINKS 'symlinks not respected in-tree' '
364 test_when_finished "rm -rf .gitattributes subdir" &&
365 ln -s attr .gitattributes &&
366 mkdir subdir &&
367 ln -s ../attr subdir/.gitattributes &&
368 attr_check_basic subdir/file unspecified &&
369 test_i18ngrep "unable to access.*gitattributes" err
370'
371
cf94ccda 372test_done