Git 2.45
[git/gitster.git] / t / t2003-checkout-cache-mkdir.sh
blobf0fd441d810d52c909476a76107098d16ecc9f35
1 #!/bin/sh
3 # Copyright (c) 2005 Junio C Hamano
6 test_description='git checkout-index --prefix test.
8 This test makes sure that --prefix option works as advertised, and
9 also verifies that such leading path may contain symlinks, unlike
10 the GIT controlled paths.
13 TEST_PASSES_SANITIZE_LEAK=true
14 . ./test-lib.sh
16 test_expect_success 'setup' '
17 mkdir path1 &&
18 echo frotz >path0 &&
19 echo rezrov >path1/file1 &&
20 git update-index --add path0 path1/file1
23 test_expect_success SYMLINKS 'have symlink in place where dir is expected.' '
24 rm -fr path0 path1 &&
25 mkdir path2 &&
26 ln -s path2 path1 &&
27 git checkout-index -f -a &&
28 test ! -h path1 && test -d path1 &&
29 test -f path1/file1 && test ! -f path2/file1
32 test_expect_success 'use --prefix=path2/' '
33 rm -fr path0 path1 path2 &&
34 mkdir path2 &&
35 git checkout-index --prefix=path2/ -f -a &&
36 test -f path2/path0 &&
37 test -f path2/path1/file1 &&
38 test ! -f path0 &&
39 test ! -f path1/file1
42 test_expect_success 'use --prefix=tmp-' '
43 rm -fr path0 path1 path2 tmp* &&
44 git checkout-index --prefix=tmp- -f -a &&
45 test -f tmp-path0 &&
46 test -f tmp-path1/file1 &&
47 test ! -f path0 &&
48 test ! -f path1/file1
51 test_expect_success 'use --prefix=tmp- but with a conflicting file and dir' '
52 rm -fr path0 path1 path2 tmp* &&
53 echo nitfol >tmp-path1 &&
54 mkdir tmp-path0 &&
55 git checkout-index --prefix=tmp- -f -a &&
56 test -f tmp-path0 &&
57 test -f tmp-path1/file1 &&
58 test ! -f path0 &&
59 test ! -f path1/file1
62 test_expect_success SYMLINKS 'use --prefix=tmp/orary/ where tmp is a symlink' '
63 rm -fr path0 path1 path2 tmp* &&
64 mkdir tmp1 tmp1/orary &&
65 ln -s tmp1 tmp &&
66 git checkout-index --prefix=tmp/orary/ -f -a &&
67 test -d tmp1/orary &&
68 test -f tmp1/orary/path0 &&
69 test -f tmp1/orary/path1/file1 &&
70 test -h tmp
73 test_expect_success SYMLINKS 'use --prefix=tmp/orary- where tmp is a symlink' '
74 rm -fr path0 path1 path2 tmp* &&
75 mkdir tmp1 &&
76 ln -s tmp1 tmp &&
77 git checkout-index --prefix=tmp/orary- -f -a &&
78 test -f tmp1/orary-path0 &&
79 test -f tmp1/orary-path1/file1 &&
80 test -h tmp
83 test_expect_success SYMLINKS 'use --prefix=tmp- where tmp-path1 is a symlink' '
84 rm -fr path0 path1 path2 tmp* &&
85 mkdir tmp1 &&
86 ln -s tmp1 tmp-path1 &&
87 git checkout-index --prefix=tmp- -f -a &&
88 test -f tmp-path0 &&
89 test ! -h tmp-path1 &&
90 test -d tmp-path1 &&
91 test -f tmp-path1/file1
94 test_expect_success 'apply filter from working tree .gitattributes with --prefix' '
95 rm -fr path0 path1 path2 tmp* &&
96 mkdir path1 &&
97 mkdir tmp &&
98 git config filter.replace-all.smudge "sed -e s/./,/g" &&
99 git config filter.replace-all.clean cat &&
100 git config filter.replace-all.required true &&
101 echo "file1 filter=replace-all" >path1/.gitattributes &&
102 git checkout-index --prefix=tmp/ -f -a &&
103 echo frotz >expected &&
104 test_cmp expected tmp/path0 &&
105 echo ,,,,,, >expected &&
106 test_cmp expected tmp/path1/file1
109 test_expect_success 'apply CRLF filter from working tree .gitattributes with --prefix' '
110 rm -fr path0 path1 path2 tmp* &&
111 mkdir path1 &&
112 mkdir tmp &&
113 echo "file1 eol=crlf" >path1/.gitattributes &&
114 git checkout-index --prefix=tmp/ -f -a &&
115 echo rezrovQ >expected &&
116 tr \\015 Q <tmp/path1/file1 >actual &&
117 test_cmp expected actual
120 test_done