Code

strbuf_add_wrapped_text(): factor out strbuf_add_indented_text()
[git.git] / t / t3100-ls-tree-restrict.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2005 Junio C Hamano
4 #
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.
18 '
19 . ./test-lib.sh
21 test_expect_success \
22     'setup' \
23     'mkdir path2 path2/baz &&
24      echo Hi >path0 &&
25      if test_have_prereq SYMLINKS
26      then
27         ln -s path0 path1 &&
28         ln -s ../path1 path2/bazbo
29         make_expected () {
30                 cat >expected
31         }
32      else
33         printf path0 > path1 &&
34         printf ../path1 > path2/bazbo
35         make_expected () {
36                 sed -e "s/120000 /100644 /" >expected
37         }
38      fi &&
39      echo Lo >path2/foo &&
40      echo Mi >path2/baz/b &&
41      find path? \( -type f -o -type l \) -print |
42      xargs git update-index --add &&
43      tree=`git write-tree` &&
44      echo $tree'
46 _x40='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
47 _x40="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40"
48 test_output () {
49     sed -e "s/ $_x40    / X     /" <current >check
50     test_cmp expected check
51 }
53 test_expect_success \
54     'ls-tree plain' \
55     'git ls-tree $tree >current &&
56      make_expected <<\EOF &&
57 100644 blob X   path0
58 120000 blob X   path1
59 040000 tree X   path2
60 EOF
61      test_output'
63 test_expect_success \
64     'ls-tree recursive' \
65     'git ls-tree -r $tree >current &&
66      make_expected <<\EOF &&
67 100644 blob X   path0
68 120000 blob X   path1
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 -t' \
77     'git ls-tree -r -t $tree >current &&
78      make_expected <<\EOF &&
79 100644 blob X   path0
80 120000 blob X   path1
81 040000 tree X   path2
82 040000 tree X   path2/baz
83 100644 blob X   path2/baz/b
84 120000 blob X   path2/bazbo
85 100644 blob X   path2/foo
86 EOF
87      test_output'
89 test_expect_success \
90     'ls-tree recursive with -d' \
91     'git ls-tree -r -d $tree >current &&
92      make_expected <<\EOF &&
93 040000 tree X   path2
94 040000 tree X   path2/baz
95 EOF
96      test_output'
98 test_expect_success \
99     'ls-tree filtered with path' \
100     'git ls-tree $tree path >current &&
101      make_expected <<\EOF &&
102 EOF
103      test_output'
106 # it used to be path1 and then path0, but with pathspec semantics
107 # they are shown in canonical order.
108 test_expect_success \
109     'ls-tree filtered with path1 path0' \
110     'git ls-tree $tree path1 path0 >current &&
111      make_expected <<\EOF &&
112 100644 blob X   path0
113 120000 blob X   path1
114 EOF
115      test_output'
117 test_expect_success \
118     'ls-tree filtered with path0/' \
119     'git ls-tree $tree path0/ >current &&
120      make_expected <<\EOF &&
121 EOF
122      test_output'
124 # It used to show path2 and its immediate children but
125 # with pathspec semantics it shows only path2
126 test_expect_success \
127     'ls-tree filtered with path2' \
128     'git ls-tree $tree path2 >current &&
129      make_expected <<\EOF &&
130 040000 tree X   path2
131 EOF
132      test_output'
134 # ... and path2/ shows the children.
135 test_expect_success \
136     'ls-tree filtered with path2/' \
137     'git ls-tree $tree path2/ >current &&
138      make_expected <<\EOF &&
139 040000 tree X   path2/baz
140 120000 blob X   path2/bazbo
141 100644 blob X   path2/foo
142 EOF
143      test_output'
145 # The same change -- exact match does not show children of
146 # path2/baz
147 test_expect_success \
148     'ls-tree filtered with path2/baz' \
149     'git ls-tree $tree path2/baz >current &&
150      make_expected <<\EOF &&
151 040000 tree X   path2/baz
152 EOF
153      test_output'
155 test_expect_success \
156     'ls-tree filtered with path2/bak' \
157     'git ls-tree $tree path2/bak >current &&
158      make_expected <<\EOF &&
159 EOF
160      test_output'
162 test_expect_success \
163     'ls-tree -t filtered with path2/bak' \
164     'git ls-tree -t $tree path2/bak >current &&
165      make_expected <<\EOF &&
166 040000 tree X   path2
167 EOF
168      test_output'
170 test_done