Blame


1 01073a5d 2019-08-22 stsp #!/bin/sh
2 01073a5d 2019-08-22 stsp #
3 01073a5d 2019-08-22 stsp # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
4 01073a5d 2019-08-22 stsp #
5 01073a5d 2019-08-22 stsp # Permission to use, copy, modify, and distribute this software for any
6 01073a5d 2019-08-22 stsp # purpose with or without fee is hereby granted, provided that the above
7 01073a5d 2019-08-22 stsp # copyright notice and this permission notice appear in all copies.
8 01073a5d 2019-08-22 stsp #
9 01073a5d 2019-08-22 stsp # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 01073a5d 2019-08-22 stsp # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 01073a5d 2019-08-22 stsp # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 01073a5d 2019-08-22 stsp # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 01073a5d 2019-08-22 stsp # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 01073a5d 2019-08-22 stsp # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 01073a5d 2019-08-22 stsp # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 01073a5d 2019-08-22 stsp
17 01073a5d 2019-08-22 stsp . ./common.sh
18 01073a5d 2019-08-22 stsp
19 f6cae3ed 2020-09-13 naddy test_cat_basic() {
20 01073a5d 2019-08-22 stsp local testroot=`test_init cat_basic`
21 01073a5d 2019-08-22 stsp local commit_id=`git_show_head $testroot/repo`
22 01073a5d 2019-08-22 stsp local author_time=`git_show_author_time $testroot/repo`
23 01073a5d 2019-08-22 stsp local alpha_id=`got tree -r $testroot/repo -i | grep 'alpha$' | cut -d' ' -f 1`
24 01073a5d 2019-08-22 stsp local gamma_id=`got tree -r $testroot/repo -i | grep 'gamma/$' | cut -d' ' -f 1`
25 01073a5d 2019-08-22 stsp local delta_id=`got tree -r $testroot/repo -i gamma | grep 'delta$' | cut -d' ' -f 1`
26 01073a5d 2019-08-22 stsp
27 01073a5d 2019-08-22 stsp # cat blob
28 01073a5d 2019-08-22 stsp echo "alpha" > $testroot/stdout.expected
29 01073a5d 2019-08-22 stsp got cat -r $testroot/repo $alpha_id > $testroot/stdout
30 01073a5d 2019-08-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
31 01073a5d 2019-08-22 stsp ret="$?"
32 01073a5d 2019-08-22 stsp if [ "$ret" != "0" ]; then
33 01073a5d 2019-08-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
34 01073a5d 2019-08-22 stsp test_done "$testroot" "$ret"
35 01073a5d 2019-08-22 stsp return 1
36 01073a5d 2019-08-22 stsp fi
37 01073a5d 2019-08-22 stsp
38 01073a5d 2019-08-22 stsp # cat tree
39 01073a5d 2019-08-22 stsp echo "$delta_id 0100644 delta" > $testroot/stdout.expected
40 01073a5d 2019-08-22 stsp got cat -r $testroot/repo $gamma_id > $testroot/stdout
41 01073a5d 2019-08-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
42 01073a5d 2019-08-22 stsp ret="$?"
43 01073a5d 2019-08-22 stsp if [ "$ret" != "0" ]; then
44 01073a5d 2019-08-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
45 01073a5d 2019-08-22 stsp test_done "$testroot" "$ret"
46 01073a5d 2019-08-22 stsp return 1
47 01073a5d 2019-08-22 stsp fi
48 01073a5d 2019-08-22 stsp
49 01073a5d 2019-08-22 stsp # cat commit
50 8aa93786 2019-08-22 stsp echo -n "tree " > $testroot/stdout.expected
51 01073a5d 2019-08-22 stsp git_show_tree $testroot/repo >> $testroot/stdout.expected
52 01073a5d 2019-08-22 stsp echo >> $testroot/stdout.expected
53 8aa93786 2019-08-22 stsp echo "numparents 0" >> $testroot/stdout.expected
54 8aa93786 2019-08-22 stsp echo "author $GOT_AUTHOR $author_time +0000" >> $testroot/stdout.expected
55 896e9b6f 2019-08-26 stsp echo "committer $GOT_AUTHOR $author_time +0000" \
56 896e9b6f 2019-08-26 stsp >> $testroot/stdout.expected
57 8aa93786 2019-08-22 stsp echo "messagelen 22" >> $testroot/stdout.expected
58 01073a5d 2019-08-22 stsp printf "\nadding the test tree\n" >> $testroot/stdout.expected
59 01073a5d 2019-08-22 stsp
60 01073a5d 2019-08-22 stsp got cat -r $testroot/repo $commit_id > $testroot/stdout
61 01073a5d 2019-08-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
62 01073a5d 2019-08-22 stsp ret="$?"
63 01073a5d 2019-08-22 stsp if [ "$ret" != "0" ]; then
64 01073a5d 2019-08-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
65 01073a5d 2019-08-22 stsp test_done "$testroot" "$ret"
66 01073a5d 2019-08-22 stsp return 1
67 01073a5d 2019-08-22 stsp fi
68 01073a5d 2019-08-22 stsp
69 01073a5d 2019-08-22 stsp # TODO: test cat tag
70 01073a5d 2019-08-22 stsp
71 01073a5d 2019-08-22 stsp test_done "$testroot" "$ret"
72 01073a5d 2019-08-22 stsp
73 01073a5d 2019-08-22 stsp }
74 01073a5d 2019-08-22 stsp
75 f6cae3ed 2020-09-13 naddy test_cat_path() {
76 896e9b6f 2019-08-26 stsp local testroot=`test_init cat_path`
77 896e9b6f 2019-08-26 stsp local commit_id=`git_show_head $testroot/repo`
78 896e9b6f 2019-08-26 stsp local author_time=`git_show_author_time $testroot/repo`
79 896e9b6f 2019-08-26 stsp local alpha_id=`got tree -r $testroot/repo -i | grep 'alpha$' | cut -d' ' -f 1`
80 896e9b6f 2019-08-26 stsp local gamma_id=`got tree -r $testroot/repo -i | grep 'gamma/$' | cut -d' ' -f 1`
81 896e9b6f 2019-08-26 stsp local delta_id=`got tree -r $testroot/repo -i gamma | grep 'delta$' | cut -d' ' -f 1`
82 896e9b6f 2019-08-26 stsp
83 896e9b6f 2019-08-26 stsp # cat blob by path
84 896e9b6f 2019-08-26 stsp echo "alpha" > $testroot/stdout.expected
85 896e9b6f 2019-08-26 stsp got cat -r $testroot/repo alpha > $testroot/stdout
86 896e9b6f 2019-08-26 stsp cmp -s $testroot/stdout.expected $testroot/stdout
87 896e9b6f 2019-08-26 stsp ret="$?"
88 896e9b6f 2019-08-26 stsp if [ "$ret" != "0" ]; then
89 896e9b6f 2019-08-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
90 896e9b6f 2019-08-26 stsp test_done "$testroot" "$ret"
91 896e9b6f 2019-08-26 stsp return 1
92 896e9b6f 2019-08-26 stsp fi
93 896e9b6f 2019-08-26 stsp
94 896e9b6f 2019-08-26 stsp # cat tree by path
95 896e9b6f 2019-08-26 stsp echo "$delta_id 0100644 delta" > $testroot/stdout.expected
96 896e9b6f 2019-08-26 stsp got cat -r $testroot/repo gamma > $testroot/stdout
97 896e9b6f 2019-08-26 stsp cmp -s $testroot/stdout.expected $testroot/stdout
98 896e9b6f 2019-08-26 stsp ret="$?"
99 896e9b6f 2019-08-26 stsp if [ "$ret" != "0" ]; then
100 896e9b6f 2019-08-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
101 896e9b6f 2019-08-26 stsp test_done "$testroot" "$ret"
102 896e9b6f 2019-08-26 stsp return 1
103 896e9b6f 2019-08-26 stsp fi
104 896e9b6f 2019-08-26 stsp
105 896e9b6f 2019-08-26 stsp (cd $testroot && got checkout repo wt > /dev/null)
106 896e9b6f 2019-08-26 stsp echo "modified alpha" > $testroot/wt/alpha
107 896e9b6f 2019-08-26 stsp (cd $testroot/wt && got commit -m "changed alpha" > /dev/null)
108 896e9b6f 2019-08-26 stsp local commit_id2=`git_show_head $testroot/repo`
109 896e9b6f 2019-08-26 stsp local author_time2=`git_show_author_time $testroot/repo`
110 896e9b6f 2019-08-26 stsp local tree_commit2=`git_show_tree $testroot/repo`
111 896e9b6f 2019-08-26 stsp
112 896e9b6f 2019-08-26 stsp # cat blob by path in specific commit
113 896e9b6f 2019-08-26 stsp echo "alpha" > $testroot/stdout.expected
114 896e9b6f 2019-08-26 stsp got cat -r $testroot/repo -c $commit_id alpha > $testroot/stdout
115 896e9b6f 2019-08-26 stsp cmp -s $testroot/stdout.expected $testroot/stdout
116 896e9b6f 2019-08-26 stsp ret="$?"
117 896e9b6f 2019-08-26 stsp if [ "$ret" != "0" ]; then
118 896e9b6f 2019-08-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
119 896e9b6f 2019-08-26 stsp test_done "$testroot" "$ret"
120 896e9b6f 2019-08-26 stsp return 1
121 896e9b6f 2019-08-26 stsp fi
122 896e9b6f 2019-08-26 stsp echo "modified alpha" > $testroot/stdout.expected
123 896e9b6f 2019-08-26 stsp got cat -r $testroot/repo -c $commit_id2 alpha > $testroot/stdout
124 896e9b6f 2019-08-26 stsp cmp -s $testroot/stdout.expected $testroot/stdout
125 896e9b6f 2019-08-26 stsp ret="$?"
126 896e9b6f 2019-08-26 stsp if [ "$ret" != "0" ]; then
127 896e9b6f 2019-08-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
128 896e9b6f 2019-08-26 stsp test_done "$testroot" "$ret"
129 896e9b6f 2019-08-26 stsp return 1
130 896e9b6f 2019-08-26 stsp fi
131 896e9b6f 2019-08-26 stsp
132 896e9b6f 2019-08-26 stsp # resolve ambiguities between paths and other arguments
133 896e9b6f 2019-08-26 stsp echo "new file called master" > $testroot/wt/master
134 896e9b6f 2019-08-26 stsp echo "new file called $commit_id2" > $testroot/wt/$commit_id2
135 896e9b6f 2019-08-26 stsp (cd $testroot/wt && got add master $commit_id2 > /dev/null)
136 896e9b6f 2019-08-26 stsp (cd $testroot/wt && got commit -m "added clashing paths" > /dev/null)
137 896e9b6f 2019-08-26 stsp local commit_id3=`git_show_head $testroot/repo`
138 896e9b6f 2019-08-26 stsp local author_time3=`git_show_author_time $testroot/repo`
139 896e9b6f 2019-08-26 stsp
140 896e9b6f 2019-08-26 stsp # references and object IDs override paths:
141 896e9b6f 2019-08-26 stsp echo -n "tree " > $testroot/stdout.expected
142 896e9b6f 2019-08-26 stsp git_show_tree $testroot/repo >> $testroot/stdout.expected
143 896e9b6f 2019-08-26 stsp echo >> $testroot/stdout.expected
144 896e9b6f 2019-08-26 stsp echo "numparents 1" >> $testroot/stdout.expected
145 896e9b6f 2019-08-26 stsp echo "parent $commit_id2" >> $testroot/stdout.expected
146 896e9b6f 2019-08-26 stsp echo "author $GOT_AUTHOR $author_time3 +0000" >> $testroot/stdout.expected
147 896e9b6f 2019-08-26 stsp echo "committer $GOT_AUTHOR $author_time3 +0000" \
148 896e9b6f 2019-08-26 stsp >> $testroot/stdout.expected
149 896e9b6f 2019-08-26 stsp echo "messagelen 22" >> $testroot/stdout.expected
150 896e9b6f 2019-08-26 stsp printf "\nadded clashing paths\n" >> $testroot/stdout.expected
151 896e9b6f 2019-08-26 stsp
152 896e9b6f 2019-08-26 stsp for arg in master $commit_id3; do
153 896e9b6f 2019-08-26 stsp got cat -r $testroot/repo $arg > $testroot/stdout
154 896e9b6f 2019-08-26 stsp cmp -s $testroot/stdout.expected $testroot/stdout
155 896e9b6f 2019-08-26 stsp ret="$?"
156 896e9b6f 2019-08-26 stsp if [ "$ret" != "0" ]; then
157 896e9b6f 2019-08-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
158 896e9b6f 2019-08-26 stsp test_done "$testroot" "$ret"
159 896e9b6f 2019-08-26 stsp return 1
160 896e9b6f 2019-08-26 stsp fi
161 896e9b6f 2019-08-26 stsp done
162 896e9b6f 2019-08-26 stsp
163 896e9b6f 2019-08-26 stsp echo "tree $tree_commit2" > $testroot/stdout.expected
164 896e9b6f 2019-08-26 stsp echo "numparents 1" >> $testroot/stdout.expected
165 896e9b6f 2019-08-26 stsp echo "parent $commit_id" >> $testroot/stdout.expected
166 896e9b6f 2019-08-26 stsp echo "author $GOT_AUTHOR $author_time2 +0000" >> $testroot/stdout.expected
167 896e9b6f 2019-08-26 stsp echo "committer $GOT_AUTHOR $author_time2 +0000" \
168 896e9b6f 2019-08-26 stsp >> $testroot/stdout.expected
169 896e9b6f 2019-08-26 stsp echo "messagelen 15" >> $testroot/stdout.expected
170 896e9b6f 2019-08-26 stsp printf "\nchanged alpha\n" >> $testroot/stdout.expected
171 896e9b6f 2019-08-26 stsp
172 896e9b6f 2019-08-26 stsp got cat -r $testroot/repo $commit_id2 > $testroot/stdout
173 896e9b6f 2019-08-26 stsp cmp -s $testroot/stdout.expected $testroot/stdout
174 896e9b6f 2019-08-26 stsp ret="$?"
175 896e9b6f 2019-08-26 stsp if [ "$ret" != "0" ]; then
176 896e9b6f 2019-08-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
177 896e9b6f 2019-08-26 stsp test_done "$testroot" "$ret"
178 896e9b6f 2019-08-26 stsp return 1
179 896e9b6f 2019-08-26 stsp fi
180 896e9b6f 2019-08-26 stsp
181 896e9b6f 2019-08-26 stsp # force resolution of path 'master'
182 896e9b6f 2019-08-26 stsp echo "new file called master" > $testroot/stdout.expected
183 896e9b6f 2019-08-26 stsp got cat -r $testroot/repo -P master > $testroot/stdout
184 896e9b6f 2019-08-26 stsp cmp -s $testroot/stdout.expected $testroot/stdout
185 896e9b6f 2019-08-26 stsp ret="$?"
186 896e9b6f 2019-08-26 stsp if [ "$ret" != "0" ]; then
187 896e9b6f 2019-08-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
188 896e9b6f 2019-08-26 stsp test_done "$testroot" "$ret"
189 896e9b6f 2019-08-26 stsp return 1
190 896e9b6f 2019-08-26 stsp fi
191 896e9b6f 2019-08-26 stsp
192 896e9b6f 2019-08-26 stsp # force resolution of path "$commit_id2"
193 896e9b6f 2019-08-26 stsp echo "new file called $commit_id2" > $testroot/stdout.expected
194 896e9b6f 2019-08-26 stsp got cat -r $testroot/repo -P $commit_id2 > $testroot/stdout
195 896e9b6f 2019-08-26 stsp cmp -s $testroot/stdout.expected $testroot/stdout
196 896e9b6f 2019-08-26 stsp ret="$?"
197 896e9b6f 2019-08-26 stsp if [ "$ret" != "0" ]; then
198 896e9b6f 2019-08-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
199 896e9b6f 2019-08-26 stsp test_done "$testroot" "$ret"
200 896e9b6f 2019-08-26 stsp return 1
201 896e9b6f 2019-08-26 stsp fi
202 896e9b6f 2019-08-26 stsp test_done "$testroot" "$ret"
203 896e9b6f 2019-08-26 stsp }
204 896e9b6f 2019-08-26 stsp
205 f6cae3ed 2020-09-13 naddy test_cat_submodule() {
206 e7303626 2020-05-14 stsp local testroot=`test_init cat_submodule`
207 e7303626 2020-05-14 stsp
208 e7303626 2020-05-14 stsp make_single_file_repo $testroot/repo2 foo
209 e7303626 2020-05-14 stsp
210 e7303626 2020-05-14 stsp (cd $testroot/repo && git submodule -q add ../repo2)
211 e7303626 2020-05-14 stsp (cd $testroot/repo && git commit -q -m 'adding submodule')
212 e7303626 2020-05-14 stsp
213 e7303626 2020-05-14 stsp got cat -r $testroot/repo repo2 > $testroot/stdout \
214 e7303626 2020-05-14 stsp > $testroot/stdout 2> $testroot/stderr
215 e7303626 2020-05-14 stsp ret="$?"
216 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
217 e7303626 2020-05-14 stsp echo "cat command succeeded unexpectedly" >&2
218 e7303626 2020-05-14 stsp test_done "$testroot" "1"
219 e7303626 2020-05-14 stsp return 1
220 e7303626 2020-05-14 stsp fi
221 e7303626 2020-05-14 stsp local submodule_id=$(got tree -r $testroot/repo -i | \
222 e7303626 2020-05-14 stsp grep 'repo2\$$' | cut -d ' ' -f1)
223 e7303626 2020-05-14 stsp echo "got: object $submodule_id not found" > $testroot/stderr.expected
224 e7303626 2020-05-14 stsp
225 e7303626 2020-05-14 stsp cmp -s $testroot/stderr.expected $testroot/stderr
226 e7303626 2020-05-14 stsp ret="$?"
227 e7303626 2020-05-14 stsp if [ "$ret" != "0" ]; then
228 e7303626 2020-05-14 stsp diff -u $testroot/stderr.expected $testroot/stderr
229 e7303626 2020-05-14 stsp fi
230 e7303626 2020-05-14 stsp test_done "$testroot" "$ret"
231 e7303626 2020-05-14 stsp }
232 e7303626 2020-05-14 stsp
233 f6cae3ed 2020-09-13 naddy test_cat_submodule_of_same_repo() {
234 e7303626 2020-05-14 stsp local testroot=`test_init cat_submodule_of_same_repo`
235 e7303626 2020-05-14 stsp local commit_id0=`git_show_head $testroot/repo`
236 e7303626 2020-05-14 stsp local author_time=`git_show_author_time $testroot/repo`
237 e7303626 2020-05-14 stsp
238 e7303626 2020-05-14 stsp (cd $testroot && git clone -q repo repo2 >/dev/null)
239 e7303626 2020-05-14 stsp (cd $testroot/repo && git submodule -q add ../repo2)
240 e7303626 2020-05-14 stsp (cd $testroot/repo && git commit -q -m 'adding submodule')
241 e7303626 2020-05-14 stsp
242 e7303626 2020-05-14 stsp # 'got cat' shows the commit object which the submodule points to
243 e7303626 2020-05-14 stsp # because a commit with the same ID exists in the outer repository
244 e7303626 2020-05-14 stsp got cat -r $testroot/repo $commit_id0 | grep ^tree > $testroot/stdout.expected
245 e7303626 2020-05-14 stsp echo "numparents 0" >> $testroot/stdout.expected
246 e7303626 2020-05-14 stsp echo "author $GOT_AUTHOR $author_time +0000" >> $testroot/stdout.expected
247 e7303626 2020-05-14 stsp echo "committer $GOT_AUTHOR $author_time +0000" \
248 e7303626 2020-05-14 stsp >> $testroot/stdout.expected
249 e7303626 2020-05-14 stsp echo "messagelen 22" >> $testroot/stdout.expected
250 e7303626 2020-05-14 stsp printf "\nadding the test tree\n" >> $testroot/stdout.expected
251 e7303626 2020-05-14 stsp
252 e7303626 2020-05-14 stsp got cat -r $testroot/repo repo2 > $testroot/stdout
253 e7303626 2020-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
254 e7303626 2020-05-14 stsp ret="$?"
255 e7303626 2020-05-14 stsp if [ "$ret" != "0" ]; then
256 e7303626 2020-05-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
257 e7303626 2020-05-14 stsp fi
258 e7303626 2020-05-14 stsp
259 e7303626 2020-05-14 stsp test_done "$testroot" "$ret"
260 e7303626 2020-05-14 stsp }
261 e7303626 2020-05-14 stsp
262 f6cae3ed 2020-09-13 naddy test_cat_symlink() {
263 73259b37 2020-07-23 stsp local testroot=`test_init cat_symlink`
264 73259b37 2020-07-23 stsp local commit_id=`git_show_head $testroot/repo`
265 73259b37 2020-07-23 stsp local author_time=`git_show_author_time $testroot/repo`
266 73259b37 2020-07-23 stsp
267 73259b37 2020-07-23 stsp (cd $testroot/repo && ln -s alpha alpha.link)
268 73259b37 2020-07-23 stsp (cd $testroot/repo && ln -s epsilon epsilon.link)
269 73259b37 2020-07-23 stsp (cd $testroot/repo && ln -s /etc/passwd passwd.link)
270 73259b37 2020-07-23 stsp (cd $testroot/repo && ln -s ../beta epsilon/beta.link)
271 73259b37 2020-07-23 stsp (cd $testroot/repo && ln -s nonexistent nonexistent.link)
272 73259b37 2020-07-23 stsp (cd $testroot/repo && git add .)
273 73259b37 2020-07-23 stsp git_commit $testroot/repo -m "add symlinks"
274 73259b37 2020-07-23 stsp
275 73259b37 2020-07-23 stsp local alpha_link_id=`got tree -r $testroot/repo -i | grep 'alpha.link@ -> alpha$' | cut -d' ' -f 1`
276 73259b37 2020-07-23 stsp local epsilon_link_id=`got tree -r $testroot/repo -i | grep 'epsilon.link@ -> epsilon$' | cut -d' ' -f 1`
277 73259b37 2020-07-23 stsp local passwd_link_id=`got tree -r $testroot/repo -i | grep 'passwd.link@ -> /etc/passwd$' | cut -d' ' -f 1`
278 73259b37 2020-07-23 stsp local epsilon_beta_link_id=`got tree -r $testroot/repo -i epsilon | grep 'beta.link@ -> ../beta$' | cut -d' ' -f 1`
279 73259b37 2020-07-23 stsp local nonexistent_link_id=`got tree -r $testroot/repo -i | grep 'nonexistent.link@ -> nonexistent$' | cut -d' ' -f 1`
280 73259b37 2020-07-23 stsp
281 73259b37 2020-07-23 stsp # cat symlink to regular file
282 73259b37 2020-07-23 stsp echo -n "alpha" > $testroot/stdout.expected
283 73259b37 2020-07-23 stsp got cat -r $testroot/repo $alpha_link_id > $testroot/stdout
284 73259b37 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
285 73259b37 2020-07-23 stsp ret="$?"
286 73259b37 2020-07-23 stsp if [ "$ret" != "0" ]; then
287 73259b37 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
288 73259b37 2020-07-23 stsp test_done "$testroot" "$ret"
289 73259b37 2020-07-23 stsp return 1
290 73259b37 2020-07-23 stsp fi
291 73259b37 2020-07-23 stsp
292 73259b37 2020-07-23 stsp # cat symlink with relative path to regular file
293 73259b37 2020-07-23 stsp echo -n "../beta" > $testroot/stdout.expected
294 73259b37 2020-07-23 stsp got cat -r $testroot/repo $epsilon_beta_link_id > $testroot/stdout
295 73259b37 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
296 73259b37 2020-07-23 stsp ret="$?"
297 73259b37 2020-07-23 stsp if [ "$ret" != "0" ]; then
298 73259b37 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
299 73259b37 2020-07-23 stsp test_done "$testroot" "$ret"
300 73259b37 2020-07-23 stsp return 1
301 73259b37 2020-07-23 stsp fi
302 73259b37 2020-07-23 stsp
303 73259b37 2020-07-23 stsp # cat symlink to a tree
304 73259b37 2020-07-23 stsp echo -n "epsilon" > $testroot/stdout.expected
305 73259b37 2020-07-23 stsp got cat -r $testroot/repo $epsilon_link_id > $testroot/stdout
306 73259b37 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
307 73259b37 2020-07-23 stsp ret="$?"
308 73259b37 2020-07-23 stsp if [ "$ret" != "0" ]; then
309 73259b37 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
310 73259b37 2020-07-23 stsp test_done "$testroot" "$ret"
311 73259b37 2020-07-23 stsp return 1
312 73259b37 2020-07-23 stsp fi
313 73259b37 2020-07-23 stsp
314 73259b37 2020-07-23 stsp # cat symlink to paths which don't exist in repository
315 73259b37 2020-07-23 stsp echo -n "/etc/passwd" > $testroot/stdout.expected
316 73259b37 2020-07-23 stsp got cat -r $testroot/repo $passwd_link_id > $testroot/stdout
317 73259b37 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
318 73259b37 2020-07-23 stsp ret="$?"
319 73259b37 2020-07-23 stsp if [ "$ret" != "0" ]; then
320 73259b37 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
321 73259b37 2020-07-23 stsp test_done "$testroot" "$ret"
322 73259b37 2020-07-23 stsp return 1
323 73259b37 2020-07-23 stsp fi
324 73259b37 2020-07-23 stsp
325 73259b37 2020-07-23 stsp echo -n "nonexistent" > $testroot/stdout.expected
326 73259b37 2020-07-23 stsp got cat -r $testroot/repo $nonexistent_link_id > $testroot/stdout
327 73259b37 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
328 73259b37 2020-07-23 stsp ret="$?"
329 73259b37 2020-07-23 stsp if [ "$ret" != "0" ]; then
330 73259b37 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
331 73259b37 2020-07-23 stsp test_done "$testroot" "$ret"
332 73259b37 2020-07-23 stsp return 1
333 73259b37 2020-07-23 stsp fi
334 73259b37 2020-07-23 stsp
335 73259b37 2020-07-23 stsp test_done "$testroot" "$ret"
336 73259b37 2020-07-23 stsp }
337 73259b37 2020-07-23 stsp
338 7fb414ae 2020-08-08 stsp test_parseargs "$@"
339 01073a5d 2019-08-22 stsp run_test test_cat_basic
340 896e9b6f 2019-08-26 stsp run_test test_cat_path
341 e7303626 2020-05-14 stsp run_test test_cat_submodule
342 e7303626 2020-05-14 stsp run_test test_cat_submodule_of_same_repo
343 73259b37 2020-07-23 stsp run_test test_cat_symlink