]> git.ipfire.org Git - thirdparty/git.git/blob - t/t1091-sparse-checkout-builtin.sh
blame.c: replace instance of !oidcmp for oideq
[thirdparty/git.git] / t / t1091-sparse-checkout-builtin.sh
1 #!/bin/sh
2
3 test_description='sparse checkout builtin tests'
4
5 . ./test-lib.sh
6
7 list_files() {
8 # Do not replace this with 'ls "$1"', as "ls" with BSD-lineage
9 # enables "-A" by default for root and ends up including ".git" and
10 # such in its output. (Note, though, that running the test suite as
11 # root is generally not recommended.)
12 (cd "$1" && printf '%s\n' *)
13 }
14
15 check_files() {
16 list_files "$1" >actual &&
17 shift &&
18 printf "%s\n" $@ >expect &&
19 test_cmp expect actual
20 }
21
22 test_expect_success 'setup' '
23 git init repo &&
24 (
25 cd repo &&
26 echo "initial" >a &&
27 mkdir folder1 folder2 deep &&
28 mkdir deep/deeper1 deep/deeper2 &&
29 mkdir deep/deeper1/deepest &&
30 cp a folder1 &&
31 cp a folder2 &&
32 cp a deep &&
33 cp a deep/deeper1 &&
34 cp a deep/deeper2 &&
35 cp a deep/deeper1/deepest &&
36 git add . &&
37 git commit -m "initial commit"
38 )
39 '
40
41 test_expect_success 'git sparse-checkout list (empty)' '
42 git -C repo sparse-checkout list >list 2>err &&
43 test_must_be_empty list &&
44 test_i18ngrep "this worktree is not sparse (sparse-checkout file may not exist)" err
45 '
46
47 test_expect_success 'git sparse-checkout list (populated)' '
48 test_when_finished rm -f repo/.git/info/sparse-checkout &&
49 cat >repo/.git/info/sparse-checkout <<-\EOF &&
50 /folder1/*
51 /deep/
52 **/a
53 !*bin*
54 EOF
55 cp repo/.git/info/sparse-checkout expect &&
56 git -C repo sparse-checkout list >list &&
57 test_cmp expect list
58 '
59
60 test_expect_success 'git sparse-checkout init' '
61 git -C repo sparse-checkout init &&
62 cat >expect <<-\EOF &&
63 /*
64 !/*/
65 EOF
66 test_cmp expect repo/.git/info/sparse-checkout &&
67 test_cmp_config -C repo true core.sparsecheckout &&
68 check_files repo a
69 '
70
71 test_expect_success 'git sparse-checkout list after init' '
72 git -C repo sparse-checkout list >actual &&
73 cat >expect <<-\EOF &&
74 /*
75 !/*/
76 EOF
77 test_cmp expect actual
78 '
79
80 test_expect_success 'init with existing sparse-checkout' '
81 echo "*folder*" >> repo/.git/info/sparse-checkout &&
82 git -C repo sparse-checkout init &&
83 cat >expect <<-\EOF &&
84 /*
85 !/*/
86 *folder*
87 EOF
88 test_cmp expect repo/.git/info/sparse-checkout &&
89 check_files repo a folder1 folder2
90 '
91
92 test_expect_success 'clone --sparse' '
93 git clone --sparse "file://$(pwd)/repo" clone &&
94 git -C clone sparse-checkout list >actual &&
95 cat >expect <<-\EOF &&
96 /*
97 !/*/
98 EOF
99 test_cmp expect actual &&
100 check_files clone a
101 '
102
103 test_expect_success 'set enables config' '
104 git init empty-config &&
105 (
106 cd empty-config &&
107 test_commit test file &&
108 test_path_is_missing .git/config.worktree &&
109 test_must_fail git sparse-checkout set nothing &&
110 test_path_is_file .git/config.worktree &&
111 test_must_fail git config core.sparseCheckout &&
112 git sparse-checkout set "/*" &&
113 test_cmp_config true core.sparseCheckout
114 )
115 '
116
117 test_expect_success 'set sparse-checkout using builtin' '
118 git -C repo sparse-checkout set "/*" "!/*/" "*folder*" &&
119 cat >expect <<-\EOF &&
120 /*
121 !/*/
122 *folder*
123 EOF
124 git -C repo sparse-checkout list >actual &&
125 test_cmp expect actual &&
126 test_cmp expect repo/.git/info/sparse-checkout &&
127 check_files repo a folder1 folder2
128 '
129
130 test_expect_success 'set sparse-checkout using --stdin' '
131 cat >expect <<-\EOF &&
132 /*
133 !/*/
134 /folder1/
135 /folder2/
136 EOF
137 git -C repo sparse-checkout set --stdin <expect &&
138 git -C repo sparse-checkout list >actual &&
139 test_cmp expect actual &&
140 test_cmp expect repo/.git/info/sparse-checkout &&
141 check_files repo "a folder1 folder2"
142 '
143
144 test_expect_success 'add to sparse-checkout' '
145 cat repo/.git/info/sparse-checkout >expect &&
146 cat >add <<-\EOF &&
147 pattern1
148 /folder1/
149 pattern2
150 EOF
151 cat add >>expect &&
152 git -C repo sparse-checkout add --stdin <add &&
153 git -C repo sparse-checkout list >actual &&
154 test_cmp expect actual &&
155 test_cmp expect repo/.git/info/sparse-checkout &&
156 check_files repo "a folder1 folder2"
157 '
158
159 test_expect_success 'cone mode: match patterns' '
160 git -C repo config --worktree core.sparseCheckoutCone true &&
161 rm -rf repo/a repo/folder1 repo/folder2 &&
162 git -C repo read-tree -mu HEAD 2>err &&
163 test_i18ngrep ! "disabling cone patterns" err &&
164 git -C repo reset --hard &&
165 check_files repo a folder1 folder2
166 '
167
168 test_expect_success 'cone mode: warn on bad pattern' '
169 test_when_finished mv sparse-checkout repo/.git/info/ &&
170 cp repo/.git/info/sparse-checkout . &&
171 echo "!/deep/deeper/*" >>repo/.git/info/sparse-checkout &&
172 git -C repo read-tree -mu HEAD 2>err &&
173 test_i18ngrep "unrecognized negative pattern" err
174 '
175
176 test_expect_success 'sparse-checkout disable' '
177 test_when_finished rm -rf repo/.git/info/sparse-checkout &&
178 git -C repo sparse-checkout disable &&
179 test_path_is_file repo/.git/info/sparse-checkout &&
180 git -C repo config --list >config &&
181 test_must_fail git config core.sparseCheckout &&
182 check_files repo a deep folder1 folder2
183 '
184
185 test_expect_success 'cone mode: init and set' '
186 git -C repo sparse-checkout init --cone &&
187 git -C repo config --list >config &&
188 test_i18ngrep "core.sparsecheckoutcone=true" config &&
189 list_files repo >dir &&
190 echo a >expect &&
191 test_cmp expect dir &&
192 git -C repo sparse-checkout set deep/deeper1/deepest/ 2>err &&
193 test_must_be_empty err &&
194 check_files repo a deep &&
195 check_files repo/deep a deeper1 &&
196 check_files repo/deep/deeper1 a deepest &&
197 cat >expect <<-\EOF &&
198 /*
199 !/*/
200 /deep/
201 !/deep/*/
202 /deep/deeper1/
203 !/deep/deeper1/*/
204 /deep/deeper1/deepest/
205 EOF
206 test_cmp expect repo/.git/info/sparse-checkout &&
207 git -C repo sparse-checkout set --stdin 2>err <<-\EOF &&
208 folder1
209 folder2
210 EOF
211 test_must_be_empty err &&
212 check_files repo a folder1 folder2
213 '
214
215 test_expect_success 'cone mode: list' '
216 cat >expect <<-\EOF &&
217 folder1
218 folder2
219 EOF
220 git -C repo sparse-checkout set --stdin <expect &&
221 git -C repo sparse-checkout list >actual 2>err &&
222 test_must_be_empty err &&
223 test_cmp expect actual
224 '
225
226 test_expect_success 'cone mode: set with nested folders' '
227 git -C repo sparse-checkout set deep deep/deeper1/deepest 2>err &&
228 test_line_count = 0 err &&
229 cat >expect <<-\EOF &&
230 /*
231 !/*/
232 /deep/
233 EOF
234 test_cmp repo/.git/info/sparse-checkout expect
235 '
236
237 test_expect_success 'cone mode: add independent path' '
238 git -C repo sparse-checkout set deep/deeper1 &&
239 git -C repo sparse-checkout add folder1 &&
240 cat >expect <<-\EOF &&
241 /*
242 !/*/
243 /deep/
244 !/deep/*/
245 /deep/deeper1/
246 /folder1/
247 EOF
248 test_cmp expect repo/.git/info/sparse-checkout &&
249 check_files repo a deep folder1
250 '
251
252 test_expect_success 'cone mode: add sibling path' '
253 git -C repo sparse-checkout set deep/deeper1 &&
254 git -C repo sparse-checkout add deep/deeper2 &&
255 cat >expect <<-\EOF &&
256 /*
257 !/*/
258 /deep/
259 !/deep/*/
260 /deep/deeper1/
261 /deep/deeper2/
262 EOF
263 test_cmp expect repo/.git/info/sparse-checkout &&
264 check_files repo a deep
265 '
266
267 test_expect_success 'cone mode: add parent path' '
268 git -C repo sparse-checkout set deep/deeper1 folder1 &&
269 git -C repo sparse-checkout add deep &&
270 cat >expect <<-\EOF &&
271 /*
272 !/*/
273 /deep/
274 /folder1/
275 EOF
276 test_cmp expect repo/.git/info/sparse-checkout &&
277 check_files repo a deep folder1
278 '
279
280 test_expect_success 'not-up-to-date does not block rest of sparsification' '
281 test_when_finished git -C repo sparse-checkout disable &&
282 test_when_finished git -C repo reset --hard &&
283 git -C repo sparse-checkout set deep &&
284
285 echo update >repo/deep/deeper2/a &&
286 cp repo/.git/info/sparse-checkout expect &&
287 test_write_lines "!/deep/*/" "/deep/deeper1/" >>expect &&
288
289 git -C repo sparse-checkout set deep/deeper1 2>err &&
290
291 test_i18ngrep "The following paths are not up to date" err &&
292 test_cmp expect repo/.git/info/sparse-checkout &&
293 check_files repo/deep a deeper1 deeper2 &&
294 check_files repo/deep/deeper1 a deepest &&
295 check_files repo/deep/deeper1/deepest a &&
296 check_files repo/deep/deeper2 a
297 '
298
299 test_expect_success 'revert to old sparse-checkout on empty update' '
300 git init empty-test &&
301 (
302 echo >file &&
303 git add file &&
304 git commit -m "test" &&
305 test_must_fail git sparse-checkout set nothing 2>err &&
306 test_i18ngrep "Sparse checkout leaves no entry on working directory" err &&
307 test_i18ngrep ! ".git/index.lock" err &&
308 git sparse-checkout set file
309 )
310 '
311
312 test_expect_success 'fail when lock is taken' '
313 test_when_finished rm -rf repo/.git/info/sparse-checkout.lock &&
314 touch repo/.git/info/sparse-checkout.lock &&
315 test_must_fail git -C repo sparse-checkout set deep 2>err &&
316 test_i18ngrep "Unable to create .*\.lock" err
317 '
318
319 test_expect_success '.gitignore should not warn about cone mode' '
320 git -C repo config --worktree core.sparseCheckoutCone true &&
321 echo "**/bin/*" >repo/.gitignore &&
322 git -C repo reset --hard 2>err &&
323 test_i18ngrep ! "disabling cone patterns" err
324 '
325
326 test_expect_success 'sparse-checkout (init|set|disable) warns with dirty status' '
327 git clone repo dirty &&
328 echo dirty >dirty/folder1/a &&
329
330 git -C dirty sparse-checkout init 2>err &&
331 test_i18ngrep "warning.*The following paths are not up to date" err &&
332
333 git -C dirty sparse-checkout set /folder2/* /deep/deeper1/* 2>err &&
334 test_i18ngrep "warning.*The following paths are not up to date" err &&
335 test_path_is_file dirty/folder1/a &&
336
337 git -C dirty sparse-checkout disable 2>err &&
338 test_must_be_empty err &&
339
340 git -C dirty reset --hard &&
341 git -C dirty sparse-checkout init &&
342 git -C dirty sparse-checkout set /folder2/* /deep/deeper1/* &&
343 test_path_is_missing dirty/folder1/a &&
344 git -C dirty sparse-checkout disable &&
345 test_path_is_file dirty/folder1/a
346 '
347
348 test_expect_success 'sparse-checkout (init|set|disable) warns with unmerged status' '
349 git clone repo unmerged &&
350
351 cat >input <<-EOF &&
352 0 0000000000000000000000000000000000000000 folder1/a
353 100644 $(git -C unmerged rev-parse HEAD:folder1/a) 1 folder1/a
354 EOF
355 git -C unmerged update-index --index-info <input &&
356
357 git -C unmerged sparse-checkout init 2>err &&
358 test_i18ngrep "warning.*The following paths are unmerged" err &&
359
360 git -C unmerged sparse-checkout set /folder2/* /deep/deeper1/* 2>err &&
361 test_i18ngrep "warning.*The following paths are unmerged" err &&
362 test_path_is_file dirty/folder1/a &&
363
364 git -C unmerged sparse-checkout disable 2>err &&
365 test_i18ngrep "warning.*The following paths are unmerged" err &&
366
367 git -C unmerged reset --hard &&
368 git -C unmerged sparse-checkout init &&
369 git -C unmerged sparse-checkout set /folder2/* /deep/deeper1/* &&
370 git -C unmerged sparse-checkout disable
371 '
372
373 test_expect_success 'sparse-checkout reapply' '
374 git clone repo tweak &&
375
376 echo dirty >tweak/deep/deeper2/a &&
377
378 cat >input <<-EOF &&
379 0 0000000000000000000000000000000000000000 folder1/a
380 100644 $(git -C tweak rev-parse HEAD:folder1/a) 1 folder1/a
381 EOF
382 git -C tweak update-index --index-info <input &&
383
384 git -C tweak sparse-checkout init --cone 2>err &&
385 test_i18ngrep "warning.*The following paths are not up to date" err &&
386 test_i18ngrep "warning.*The following paths are unmerged" err &&
387
388 git -C tweak sparse-checkout set folder2 deep/deeper1 2>err &&
389 test_i18ngrep "warning.*The following paths are not up to date" err &&
390 test_i18ngrep "warning.*The following paths are unmerged" err &&
391
392 git -C tweak sparse-checkout reapply 2>err &&
393 test_i18ngrep "warning.*The following paths are not up to date" err &&
394 test_path_is_file tweak/deep/deeper2/a &&
395 test_i18ngrep "warning.*The following paths are unmerged" err &&
396 test_path_is_file tweak/folder1/a &&
397
398 git -C tweak checkout HEAD deep/deeper2/a &&
399 git -C tweak sparse-checkout reapply 2>err &&
400 test_i18ngrep ! "warning.*The following paths are not up to date" err &&
401 test_path_is_missing tweak/deep/deeper2/a &&
402 test_i18ngrep "warning.*The following paths are unmerged" err &&
403 test_path_is_file tweak/folder1/a &&
404
405 git -C tweak add folder1/a &&
406 git -C tweak sparse-checkout reapply 2>err &&
407 test_must_be_empty err &&
408 test_path_is_missing tweak/deep/deeper2/a &&
409 test_path_is_missing tweak/folder1/a &&
410
411 git -C tweak sparse-checkout disable
412 '
413
414 test_expect_success 'cone mode: set with core.ignoreCase=true' '
415 rm repo/.git/info/sparse-checkout &&
416 git -C repo sparse-checkout init --cone &&
417 git -C repo -c core.ignoreCase=true sparse-checkout set folder1 &&
418 cat >expect <<-\EOF &&
419 /*
420 !/*/
421 /folder1/
422 EOF
423 test_cmp expect repo/.git/info/sparse-checkout &&
424 check_files repo a folder1
425 '
426
427 test_expect_success 'interaction with submodules' '
428 git clone repo super &&
429 (
430 cd super &&
431 mkdir modules &&
432 git submodule add ../repo modules/child &&
433 git add . &&
434 git commit -m "add submodule" &&
435 git sparse-checkout init --cone &&
436 git sparse-checkout set folder1
437 ) &&
438 check_files super a folder1 modules &&
439 check_files super/modules/child a deep folder1 folder2
440 '
441
442 test_expect_success 'different sparse-checkouts with worktrees' '
443 git -C repo worktree add --detach ../worktree &&
444 check_files worktree "a deep folder1 folder2" &&
445 git -C worktree sparse-checkout init --cone &&
446 git -C repo sparse-checkout set folder1 &&
447 git -C worktree sparse-checkout set deep/deeper1 &&
448 check_files repo a folder1 &&
449 check_files worktree a deep
450 '
451
452 test_expect_success 'set using filename keeps file on-disk' '
453 git -C repo sparse-checkout set a deep &&
454 cat >expect <<-\EOF &&
455 /*
456 !/*/
457 /a/
458 /deep/
459 EOF
460 test_cmp expect repo/.git/info/sparse-checkout &&
461 check_files repo a deep
462 '
463
464 check_read_tree_errors () {
465 REPO=$1
466 FILES=$2
467 ERRORS=$3
468 git -C $REPO -c core.sparseCheckoutCone=false read-tree -mu HEAD 2>err &&
469 test_must_be_empty err &&
470 check_files $REPO "$FILES" &&
471 git -C $REPO read-tree -mu HEAD 2>err &&
472 if test -z "$ERRORS"
473 then
474 test_must_be_empty err
475 else
476 test_i18ngrep "$ERRORS" err
477 fi &&
478 check_files $REPO $FILES
479 }
480
481 test_expect_success 'pattern-checks: /A/**' '
482 cat >repo/.git/info/sparse-checkout <<-\EOF &&
483 /*
484 !/*/
485 /folder1/**
486 EOF
487 check_read_tree_errors repo "a folder1" "disabling cone pattern matching"
488 '
489
490 test_expect_success 'pattern-checks: /A/**/B/' '
491 cat >repo/.git/info/sparse-checkout <<-\EOF &&
492 /*
493 !/*/
494 /deep/**/deepest
495 EOF
496 check_read_tree_errors repo "a deep" "disabling cone pattern matching" &&
497 check_files repo/deep "deeper1" &&
498 check_files repo/deep/deeper1 "deepest"
499 '
500
501 test_expect_success 'pattern-checks: too short' '
502 cat >repo/.git/info/sparse-checkout <<-\EOF &&
503 /*
504 !/*/
505 /
506 EOF
507 check_read_tree_errors repo "a" "disabling cone pattern matching"
508 '
509 test_expect_success 'pattern-checks: not too short' '
510 cat >repo/.git/info/sparse-checkout <<-\EOF &&
511 /*
512 !/*/
513 /b/
514 EOF
515 git -C repo read-tree -mu HEAD 2>err &&
516 test_must_be_empty err &&
517 check_files repo a
518 '
519
520 test_expect_success 'pattern-checks: trailing "*"' '
521 cat >repo/.git/info/sparse-checkout <<-\EOF &&
522 /*
523 !/*/
524 /a*
525 EOF
526 check_read_tree_errors repo "a" "disabling cone pattern matching"
527 '
528
529 test_expect_success 'pattern-checks: starting "*"' '
530 cat >repo/.git/info/sparse-checkout <<-\EOF &&
531 /*
532 !/*/
533 *eep/
534 EOF
535 check_read_tree_errors repo "a deep" "disabling cone pattern matching"
536 '
537
538 test_expect_success 'pattern-checks: contained glob characters' '
539 for c in "[a]" "\\" "?" "*"
540 do
541 cat >repo/.git/info/sparse-checkout <<-EOF &&
542 /*
543 !/*/
544 something$c-else/
545 EOF
546 check_read_tree_errors repo "a" "disabling cone pattern matching"
547 done
548 '
549
550 test_expect_success BSLASHPSPEC 'pattern-checks: escaped characters' '
551 git clone repo escaped &&
552 TREEOID=$(git -C escaped rev-parse HEAD:folder1) &&
553 NEWTREE=$(git -C escaped mktree <<-EOF
554 $(git -C escaped ls-tree HEAD)
555 040000 tree $TREEOID zbad\\dir
556 040000 tree $TREEOID zdoes*exist
557 040000 tree $TREEOID zglob[!a]?
558 EOF
559 ) &&
560 COMMIT=$(git -C escaped commit-tree $NEWTREE -p HEAD) &&
561 git -C escaped reset --hard $COMMIT &&
562 check_files escaped "a deep folder1 folder2 zbad\\dir zdoes*exist" zglob[!a]? &&
563 git -C escaped sparse-checkout init --cone &&
564 git -C escaped sparse-checkout set zbad\\dir/bogus "zdoes*not*exist" "zdoes*exist" "zglob[!a]?" &&
565 cat >expect <<-\EOF &&
566 /*
567 !/*/
568 /zbad\\dir/
569 !/zbad\\dir/*/
570 /zbad\\dir/bogus/
571 /zdoes\*exist/
572 /zdoes\*not\*exist/
573 /zglob\[!a]\?/
574 EOF
575 test_cmp expect escaped/.git/info/sparse-checkout &&
576 check_read_tree_errors escaped "a zbad\\dir zdoes*exist zglob[!a]?" &&
577 git -C escaped ls-tree -d --name-only HEAD >list-expect &&
578 git -C escaped sparse-checkout set --stdin <list-expect &&
579 cat >expect <<-\EOF &&
580 /*
581 !/*/
582 /deep/
583 /folder1/
584 /folder2/
585 /zbad\\dir/
586 /zdoes\*exist/
587 /zglob\[!a]\?/
588 EOF
589 test_cmp expect escaped/.git/info/sparse-checkout &&
590 check_files escaped "a deep folder1 folder2 zbad\\dir zdoes*exist" zglob[!a]? &&
591 git -C escaped sparse-checkout list >list-actual &&
592 test_cmp list-expect list-actual
593 '
594
595 test_expect_success MINGW 'cone mode replaces backslashes with slashes' '
596 git -C repo sparse-checkout set deep\\deeper1 &&
597 cat >expect <<-\EOF &&
598 /*
599 !/*/
600 /deep/
601 !/deep/*/
602 /deep/deeper1/
603 EOF
604 test_cmp expect repo/.git/info/sparse-checkout &&
605 check_files repo a deep &&
606 check_files repo/deep a deeper1
607 '
608
609 test_done