commit doc: document that -c, -C, -F and --fixup with -m error
[git.git] / t / t3100-ls-tree-restrict.sh
blob325114f8fee810ac9cf1836f50e060f69b5fe46e
1 #!/bin/sh
3 # Copyright (c) 2005 Junio C Hamano
6 test_description='git ls-tree test.
8 This test runs git ls-tree with the following in a tree.
10 path0 - a file
11 path1 - a symlink
12 path2/foo - a file in a directory
13 path2/bazbo - a symlink in a directory
14 path2/baz/b - a file in a directory in a directory
16 The new path restriction code should do the right thing for path2 and
17 path2/baz. Also path0/ should snow nothing.
19 . ./test-lib.sh
21 test_expect_success \
22 'setup' \
23 'mkdir path2 path2/baz &&
24 echo Hi >path0 &&
25 test_ln_s_add path0 path1 &&
26 test_ln_s_add ../path1 path2/bazbo &&
27 echo Lo >path2/foo &&
28 echo Mi >path2/baz/b &&
29 find path? \( -type f -o -type l \) -print |
30 xargs git update-index --add &&
31 tree=$(git write-tree) &&
32 echo $tree'
34 test_output () {
35 sed -e "s/ $_x40 / X /" <current >check
36 test_cmp expected check
39 test_expect_success \
40 'ls-tree plain' \
41 'git ls-tree $tree >current &&
42 cat >expected <<\EOF &&
43 100644 blob X path0
44 120000 blob X path1
45 040000 tree X path2
46 EOF
47 test_output'
49 test_expect_success \
50 'ls-tree recursive' \
51 'git ls-tree -r $tree >current &&
52 cat >expected <<\EOF &&
53 100644 blob X path0
54 120000 blob X path1
55 100644 blob X path2/baz/b
56 120000 blob X path2/bazbo
57 100644 blob X path2/foo
58 EOF
59 test_output'
61 test_expect_success \
62 'ls-tree recursive with -t' \
63 'git ls-tree -r -t $tree >current &&
64 cat >expected <<\EOF &&
65 100644 blob X path0
66 120000 blob X path1
67 040000 tree X path2
68 040000 tree X path2/baz
69 100644 blob X path2/baz/b
70 120000 blob X path2/bazbo
71 100644 blob X path2/foo
72 EOF
73 test_output'
75 test_expect_success \
76 'ls-tree recursive with -d' \
77 'git ls-tree -r -d $tree >current &&
78 cat >expected <<\EOF &&
79 040000 tree X path2
80 040000 tree X path2/baz
81 EOF
82 test_output'
84 test_expect_success \
85 'ls-tree filtered with path' \
86 'git ls-tree $tree path >current &&
87 cat >expected <<\EOF &&
88 EOF
89 test_output'
92 # it used to be path1 and then path0, but with pathspec semantics
93 # they are shown in canonical order.
94 test_expect_success \
95 'ls-tree filtered with path1 path0' \
96 'git ls-tree $tree path1 path0 >current &&
97 cat >expected <<\EOF &&
98 100644 blob X path0
99 120000 blob X path1
101 test_output'
103 test_expect_success \
104 'ls-tree filtered with path0/' \
105 'git ls-tree $tree path0/ >current &&
106 cat >expected <<\EOF &&
108 test_output'
110 # It used to show path2 and its immediate children but
111 # with pathspec semantics it shows only path2
112 test_expect_success \
113 'ls-tree filtered with path2' \
114 'git ls-tree $tree path2 >current &&
115 cat >expected <<\EOF &&
116 040000 tree X path2
118 test_output'
120 # ... and path2/ shows the children.
121 test_expect_success \
122 'ls-tree filtered with path2/' \
123 'git ls-tree $tree path2/ >current &&
124 cat >expected <<\EOF &&
125 040000 tree X path2/baz
126 120000 blob X path2/bazbo
127 100644 blob X path2/foo
129 test_output'
131 # The same change -- exact match does not show children of
132 # path2/baz
133 test_expect_success \
134 'ls-tree filtered with path2/baz' \
135 'git ls-tree $tree path2/baz >current &&
136 cat >expected <<\EOF &&
137 040000 tree X path2/baz
139 test_output'
141 test_expect_success \
142 'ls-tree filtered with path2/bak' \
143 'git ls-tree $tree path2/bak >current &&
144 cat >expected <<\EOF &&
146 test_output'
148 test_expect_success \
149 'ls-tree -t filtered with path2/bak' \
150 'git ls-tree -t $tree path2/bak >current &&
151 cat >expected <<\EOF &&
152 040000 tree X path2
154 test_output'
156 test_expect_success \
157 'ls-tree with one path a prefix of the other' \
158 'git ls-tree $tree path2/baz path2/bazbo >current &&
159 cat >expected <<\EOF &&
160 040000 tree X path2/baz
161 120000 blob X path2/bazbo
163 test_output'
165 test_done