3 # Copyright (c) 2005 Junio C Hamano
4 # Copyright (c) 2005 Robert Fitzsimons
7 test_description
='git-ls-tree directory and filenames handling.
9 This test runs git-ls-tree with the following in a tree.
13 path0/a/b/c/1.txt - a file in a directory
14 path1/b/c/1.txt - a file in a directory
15 path2/1.txt - a file in a directory
16 path3/1.txt - a file in a directory
17 path3/2.txt - a file in a directory
19 Test the handling of mulitple directories which have matching file
20 entries. Also test odd filename and missing entries handling.
28 mkdir path0 path0/a path0/a/b path0/a/b/c &&
29 echo 111 >path0/a/b/c/1.txt &&
30 mkdir path1 path1/b path1/b/c &&
31 echo 111 >path1/b/c/1.txt &&
33 echo 111 >path2/1.txt &&
35 echo 111 >path3/1.txt &&
36 echo 222 >path3/2.txt &&
37 find *.txt path* \( -type f -o -type l \) -print |
38 xargs git-update-index --add &&
39 tree=`git-write-tree` &&
42 _x40
='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
43 _x40
="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40"
45 sed -e "s/ $_x40 / X /" <current
>check
46 diff -u expected check
51 'git-ls-tree $tree >current &&
52 cat >expected <<\EOF &&
64 'git-ls-tree -r $tree >current &&
65 cat >expected <<\EOF &&
70 040000 tree X path0/a/b
71 040000 tree X path0/a/b/c
72 100644 blob X path0/a/b/c/1.txt
75 040000 tree X path1/b/c
76 100644 blob X path1/b/c/1.txt
78 100644 blob X path2/1.txt
80 100644 blob X path3/1.txt
81 100644 blob X path3/2.txt
86 'ls-tree filter 1.txt' \
87 'git-ls-tree $tree 1.txt >current &&
88 cat >expected <<\EOF &&
94 'ls-tree filter path1/b/c/1.txt' \
95 'git-ls-tree $tree path1/b/c/1.txt >current &&
96 cat >expected <<\EOF &&
97 100644 blob X path1/b/c/1.txt
101 test_expect_success \
102 'ls-tree filter all 1.txt files' \
103 'git-ls-tree $tree 1.txt path0/a/b/c/1.txt path1/b/c/1.txt path2/1.txt path3/1.txt >current &&
104 cat >expected <<\EOF &&
106 100644 blob X path0/a/b/c/1.txt
107 100644 blob X path1/b/c/1.txt
108 100644 blob X path2/1.txt
109 100644 blob X path3/1.txt
113 test_expect_success \
114 'ls-tree filter directories' \
115 'git-ls-tree $tree path3 path2 path0/a/b/c path1/b/c path0/a >current &&
116 cat >expected <<\EOF &&
118 100644 blob X path3/1.txt
119 100644 blob X path3/2.txt
121 100644 blob X path2/1.txt
122 040000 tree X path0/a/b/c
123 100644 blob X path0/a/b/c/1.txt
124 040000 tree X path1/b/c
125 100644 blob X path1/b/c/1.txt
126 040000 tree X path0/a
127 040000 tree X path0/a/b
131 test_expect_success \
132 'ls-tree filter odd names' \
133 'git-ls-tree $tree 1.txt /1.txt //1.txt path3/1.txt /path3/1.txt //path3//1.txt path3 /path3/ path3// >current &&
134 cat >expected <<\EOF &&
138 100644 blob X path3/1.txt
139 100644 blob X path3/1.txt
140 100644 blob X path3/1.txt
142 100644 blob X path3/1.txt
143 100644 blob X path3/2.txt
145 100644 blob X path3/1.txt
146 100644 blob X path3/2.txt
148 100644 blob X path3/1.txt
149 100644 blob X path3/2.txt
153 test_expect_success \
154 'ls-tree filter missing files and extra slashes' \
155 'git-ls-tree $tree 1.txt/ abc.txt path3//23.txt path3/2.txt/// >current &&
156 cat >expected <<\EOF &&