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
16 test_expect_success
'setup' '
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.' '
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 &&
35 git checkout-index --prefix=path2/ -f -a &&
36 test -f path2/path0 &&
37 test -f path2/path1/file1 &&
42 test_expect_success
'use --prefix=tmp-' '
43 rm -fr path0 path1 path2 tmp* &&
44 git checkout-index --prefix=tmp- -f -a &&
46 test -f tmp-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 &&
55 git checkout-index --prefix=tmp- -f -a &&
57 test -f tmp-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 &&
66 git checkout-index --prefix=tmp/orary/ -f -a &&
68 test -f tmp1/orary/path0 &&
69 test -f tmp1/orary/path1/file1 &&
73 test_expect_success SYMLINKS
'use --prefix=tmp/orary- where tmp is a symlink' '
74 rm -fr path0 path1 path2 tmp* &&
77 git checkout-index --prefix=tmp/orary- -f -a &&
78 test -f tmp1/orary-path0 &&
79 test -f tmp1/orary-path1/file1 &&
83 test_expect_success SYMLINKS
'use --prefix=tmp- where tmp-path1 is a symlink' '
84 rm -fr path0 path1 path2 tmp* &&
86 ln -s tmp1 tmp-path1 &&
87 git checkout-index --prefix=tmp- -f -a &&
89 test ! -h 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* &&
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* &&
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