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.
15 test_expect_success
'setup' '
18 echo rezrov >path1/file1 &&
19 git update-index --add path0 path1/file1
22 test_expect_success SYMLINKS
'have symlink in place where dir is expected.' '
26 git checkout-index -f -a &&
27 test ! -h path1 && test -d path1 &&
28 test -f path1/file1 && test ! -f path2/file1
31 test_expect_success
'use --prefix=path2/' '
32 rm -fr path0 path1 path2 &&
34 git checkout-index --prefix=path2/ -f -a &&
35 test -f path2/path0 &&
36 test -f path2/path1/file1 &&
41 test_expect_success
'use --prefix=tmp-' '
42 rm -fr path0 path1 path2 tmp* &&
43 git checkout-index --prefix=tmp- -f -a &&
45 test -f tmp-path1/file1 &&
50 test_expect_success
'use --prefix=tmp- but with a conflicting file and dir' '
51 rm -fr path0 path1 path2 tmp* &&
52 echo nitfol >tmp-path1 &&
54 git checkout-index --prefix=tmp- -f -a &&
56 test -f tmp-path1/file1 &&
61 test_expect_success SYMLINKS
'use --prefix=tmp/orary/ where tmp is a symlink' '
62 rm -fr path0 path1 path2 tmp* &&
63 mkdir tmp1 tmp1/orary &&
65 git checkout-index --prefix=tmp/orary/ -f -a &&
67 test -f tmp1/orary/path0 &&
68 test -f tmp1/orary/path1/file1 &&
72 test_expect_success SYMLINKS
'use --prefix=tmp/orary- where tmp is a symlink' '
73 rm -fr path0 path1 path2 tmp* &&
76 git checkout-index --prefix=tmp/orary- -f -a &&
77 test -f tmp1/orary-path0 &&
78 test -f tmp1/orary-path1/file1 &&
82 test_expect_success SYMLINKS
'use --prefix=tmp- where tmp-path1 is a symlink' '
83 rm -fr path0 path1 path2 tmp* &&
85 ln -s tmp1 tmp-path1 &&
86 git checkout-index --prefix=tmp- -f -a &&
88 test ! -h tmp-path1 &&
90 test -f tmp-path1/file1
93 test_expect_success
'apply filter from working tree .gitattributes with --prefix' '
94 rm -fr path0 path1 path2 tmp* &&
97 git config filter.replace-all.smudge "sed -e s/./,/g" &&
98 git config filter.replace-all.clean cat &&
99 git config filter.replace-all.required true &&
100 echo "file1 filter=replace-all" >path1/.gitattributes &&
101 git checkout-index --prefix=tmp/ -f -a &&
102 echo frotz >expected &&
103 test_cmp expected tmp/path0 &&
104 echo ,,,,,, >expected &&
105 test_cmp expected tmp/path1/file1
108 test_expect_success
'apply CRLF filter from working tree .gitattributes with --prefix' '
109 rm -fr path0 path1 path2 tmp* &&
112 echo "file1 eol=crlf" >path1/.gitattributes &&
113 git checkout-index --prefix=tmp/ -f -a &&
114 echo rezrovQ >expected &&
115 tr \\015 Q <tmp/path1/file1 >actual &&
116 test_cmp expected actual