]> git.ipfire.org Git - thirdparty/git.git/blame - t/t3101-ls-tree-dirname.sh
The third batch
[thirdparty/git.git] / t / t3101-ls-tree-dirname.sh
CommitLineData
ab1630a3
RF
1#!/bin/sh
2#
3# Copyright (c) 2005 Junio C Hamano
4# Copyright (c) 2005 Robert Fitzsimons
5#
6
5be60078 7test_description='git ls-tree directory and filenames handling.
ab1630a3 8
5be60078 9This test runs git ls-tree with the following in a tree.
ab1630a3
RF
10
11 1.txt - a file
12 2.txt - a file
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
18
2e3a16b2 19Test the handling of multiple directories which have matching file
ab1630a3
RF
20entries. Also test odd filename and missing entries handling.
21'
809aeedb
ÆAB
22
23TEST_PASSES_SANITIZE_LEAK=true
ab1630a3
RF
24. ./test-lib.sh
25
e22148f4
JH
26test_expect_success 'setup' '
27 echo 111 >1.txt &&
28 echo 222 >2.txt &&
29 mkdir path0 path0/a path0/a/b path0/a/b/c &&
30 echo 111 >path0/a/b/c/1.txt &&
31 mkdir path1 path1/b path1/b/c &&
32 echo 111 >path1/b/c/1.txt &&
33 mkdir path2 &&
34 echo 111 >path2/1.txt &&
35 mkdir path3 &&
36 echo 111 >path3/1.txt &&
37 echo 222 >path3/2.txt &&
38 find *.txt path* \( -type f -o -type l \) -print |
39 xargs git update-index --add &&
8db32941 40 tree=$(git write-tree) &&
e22148f4
JH
41 echo $tree
42'
ab1630a3 43
ab1630a3 44test_output () {
2ece6ad2 45 sed -e "s/ $OID_REGEX / X /" <current >check &&
e22148f4 46 test_cmp expected check
ab1630a3
RF
47}
48
e22148f4
JH
49test_expect_success 'ls-tree plain' '
50 git ls-tree $tree >current &&
51 cat >expected <<\EOF &&
ab1630a3
RF
52100644 blob X 1.txt
53100644 blob X 2.txt
54040000 tree X path0
55040000 tree X path1
56040000 tree X path2
57040000 tree X path3
58EOF
e22148f4
JH
59 test_output
60'
ab1630a3 61
246cc52f 62# Recursive does not show tree nodes anymore...
e22148f4
JH
63test_expect_success 'ls-tree recursive' '
64 git ls-tree -r $tree >current &&
65 cat >expected <<\EOF &&
ab1630a3
RF
66100644 blob X 1.txt
67100644 blob X 2.txt
ab1630a3 68100644 blob X path0/a/b/c/1.txt
ab1630a3 69100644 blob X path1/b/c/1.txt
ab1630a3 70100644 blob X path2/1.txt
ab1630a3
RF
71100644 blob X path3/1.txt
72100644 blob X path3/2.txt
73EOF
e22148f4
JH
74 test_output
75'
ab1630a3 76
e22148f4
JH
77test_expect_success 'ls-tree filter 1.txt' '
78 git ls-tree $tree 1.txt >current &&
79 cat >expected <<\EOF &&
ab1630a3
RF
80100644 blob X 1.txt
81EOF
e22148f4
JH
82 test_output
83'
ab1630a3 84
e22148f4
JH
85test_expect_success 'ls-tree filter path1/b/c/1.txt' '
86 git ls-tree $tree path1/b/c/1.txt >current &&
87 cat >expected <<\EOF &&
ab1630a3
RF
88100644 blob X path1/b/c/1.txt
89EOF
e22148f4
JH
90 test_output
91'
ab1630a3 92
e22148f4
JH
93test_expect_success 'ls-tree filter all 1.txt files' '
94 git ls-tree $tree 1.txt path0/a/b/c/1.txt \
95 path1/b/c/1.txt path2/1.txt path3/1.txt >current &&
96 cat >expected <<\EOF &&
ab1630a3
RF
97100644 blob X 1.txt
98100644 blob X path0/a/b/c/1.txt
99100644 blob X path1/b/c/1.txt
100100644 blob X path2/1.txt
101100644 blob X path3/1.txt
102EOF
e22148f4
JH
103 test_output
104'
ab1630a3 105
246cc52f
JH
106# I am not so sure about this one after ls-tree doing pathspec match.
107# Having both path0/a and path0/a/b/c makes path0/a redundant, and
108# it behaves as if path0/a/b/c, path1/b/c, path2 and path3 are specified.
e22148f4
JH
109test_expect_success 'ls-tree filter directories' '
110 git ls-tree $tree path3 path2 path0/a/b/c path1/b/c path0/a >current &&
111 cat >expected <<\EOF &&
ab1630a3 112040000 tree X path0/a/b/c
ab1630a3 113040000 tree X path1/b/c
246cc52f
JH
114040000 tree X path2
115040000 tree X path3
ab1630a3 116EOF
e22148f4
JH
117 test_output
118'
ab1630a3 119
246cc52f
JH
120# Again, duplicates are filtered away so this is equivalent to
121# having 1.txt and path3
e22148f4
JH
122test_expect_success 'ls-tree filter odd names' '
123 git ls-tree $tree 1.txt ./1.txt .//1.txt \
124 path3/1.txt path3/./1.txt path3 path3// >current &&
125 cat >expected <<\EOF &&
ab1630a3 126100644 blob X 1.txt
ab1630a3
RF
127100644 blob X path3/1.txt
128100644 blob X path3/2.txt
129EOF
e22148f4
JH
130 test_output
131'
ab1630a3 132
e22148f4
JH
133test_expect_success 'ls-tree filter missing files and extra slashes' '
134 git ls-tree $tree 1.txt/ abc.txt \
135 path3//23.txt path3/2.txt/// >current &&
136 >expected &&
137 test_output
138'
ab1630a3 139
8092bfb6
JH
140test_expect_success 'ls-tree filter is leading path match' '
141 git ls-tree $tree pa path3/a >current &&
142 >expected &&
143 test_output
144'
145
3ea6025e
SB
146test_expect_success 'ls-tree --full-name' '
147 (
148 cd path0 &&
149 git ls-tree --full-name $tree a
150 ) >current &&
151 cat >expected <<\EOF &&
152040000 tree X path0/a
153EOF
154 test_output
155'
156
991c5529
RS
157test_expect_success 'ls-tree --no-full-name' '
158 git -C path0 ls-tree --no-full-name $tree a >current &&
159 cat >expected <<-EOF &&
160 040000 tree X a
161 EOF
162 test_output
163'
164
3ea6025e
SB
165test_expect_success 'ls-tree --full-tree' '
166 (
167 cd path1/b/c &&
168 git ls-tree --full-tree $tree
169 ) >current &&
170 cat >expected <<\EOF &&
171100644 blob X 1.txt
172100644 blob X 2.txt
173040000 tree X path0
174040000 tree X path1
175040000 tree X path2
176040000 tree X path3
177EOF
178 test_output
179'
180
181test_expect_success 'ls-tree --full-tree -r' '
182 (
183 cd path3/ &&
184 git ls-tree --full-tree -r $tree
185 ) >current &&
186 cat >expected <<\EOF &&
187100644 blob X 1.txt
188100644 blob X 2.txt
189100644 blob X path0/a/b/c/1.txt
190100644 blob X path1/b/c/1.txt
191100644 blob X path2/1.txt
192100644 blob X path3/1.txt
193100644 blob X path3/2.txt
194EOF
195 test_output
196'
197
198test_expect_success 'ls-tree --abbrev=5' '
199 git ls-tree --abbrev=5 $tree >current &&
200 sed -e "s/ $_x05[0-9a-f]* / X /" <current >check &&
201 cat >expected <<\EOF &&
202100644 blob X 1.txt
203100644 blob X 2.txt
204040000 tree X path0
205040000 tree X path1
206040000 tree X path2
207040000 tree X path3
208EOF
209 test_cmp expected check
210'
211
a53343e0
ÆAB
212for opt in --name-only --name-status
213do
214 test_expect_success "ls-tree $opt" '
215 git ls-tree $opt $tree >current &&
216 cat >expected <<-\EOF &&
217 1.txt
218 2.txt
219 path0
220 path1
221 path2
222 path3
223 EOF
224 test_output
225 '
226
227 test_expect_success "ls-tree $opt -r" '
228 git ls-tree $opt -r $tree >current &&
229 cat >expected <<-\EOF &&
230 1.txt
231 2.txt
232 path0/a/b/c/1.txt
233 path1/b/c/1.txt
234 path2/1.txt
235 path3/1.txt
236 path3/2.txt
237 EOF
238 test_output
239 '
240done
3ea6025e 241
ab1630a3 242test_done