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