]> arthur.barton.de Git - bup.git/blob - t/test.sh
Move the main fsck tests from test.sh to test-fsck.sh.
[bup.git] / t / test.sh
1 #!/usr/bin/env bash
2 . wvtest.sh
3 . t/lib.sh
4
5 set -o pipefail
6
7 TOP="$(WVPASS /bin/pwd)" || exit $?
8 export BUP_DIR="$TOP/buptest.tmp"
9
10 bup()
11 {
12     "$TOP/bup" "$@"
13 }
14
15 WVSTART "init"
16
17 WVPASS rm -rf "$BUP_DIR"
18 WVPASS bup init
19
20 WVSTART "index"
21 D=bupdata.tmp
22 WVPASS force-delete $D
23 WVPASS mkdir $D
24 WVFAIL bup index --exclude-from $D/cannot-exist $D
25 WVPASSEQ "$(bup index --check -p)" ""
26 WVPASSEQ "$(bup index --check -p $D)" ""
27 WVFAIL [ -e $D.fake ]
28 WVFAIL bup index --check -u $D.fake
29 WVPASS bup index --check -u $D
30 WVPASSEQ "$(bup index --check -p $D)" "$D/"
31 WVPASS touch $D/a
32 WVPASS bup random 128k >$D/b
33 WVPASS mkdir $D/d $D/d/e
34 WVPASS bup random 512 >$D/f
35 WVPASS ln -s non-existent-file $D/g
36 WVPASSEQ "$(bup index -s $D/)" "A $D/"
37 WVPASSEQ "$(bup index -s $D/b)" ""
38 WVPASSEQ "$(bup index --check -us $D/b)" "A $D/b"
39 WVPASSEQ "$(bup index --check -us $D/b $D/d)" \
40 "A $D/d/e/
41 A $D/d/
42 A $D/b"
43 WVPASS touch $D/d/z
44 WVPASS bup tick
45 WVPASSEQ "$(bup index --check -usx $D)" \
46 "A $D/g
47 A $D/f
48 A $D/d/z
49 A $D/d/e/
50 A $D/d/
51 A $D/b
52 A $D/a
53 A $D/"
54 WVPASSEQ "$(bup index --check -us $D/a $D/b --fake-valid)" \
55 "  $D/b
56   $D/a"
57 WVPASSEQ "$(bup index --check -us $D/a)" "  $D/a"  # stays unmodified
58 WVPASSEQ "$(bup index --check -us $D/d --fake-valid)" \
59 "  $D/d/z
60   $D/d/e/
61   $D/d/"
62 WVPASS touch $D/d/z
63 WVPASS bup index -u $D/d/z  # becomes modified
64 WVPASSEQ "$(bup index -s $D/a $D $D/b)" \
65 "A $D/g
66 A $D/f
67 M $D/d/z
68   $D/d/e/
69 M $D/d/
70   $D/b
71   $D/a
72 A $D/"
73
74 WVPASS bup index -u $D/d/e $D/a --fake-invalid
75 WVPASSEQ "$(cd $D && bup index -m .)" \
76 "./g
77 ./f
78 ./d/z
79 ./d/e/
80 ./d/
81 ./a
82 ./"
83 WVPASSEQ "$(cd $D && bup index -m)" \
84 "g
85 f
86 d/z
87 d/e/
88 d/
89 a
90 ./"
91 WVPASSEQ "$(cd $D && bup index -s .)" "$(cd $D && bup index -s .)"
92
93 WVFAIL bup save -t $D/doesnt-exist-filename
94
95 WVPASS mv $BUP_DIR/bupindex $BUP_DIR/bi.old
96 WVFAIL bup save -t $D/d/e/fifotest
97 WVPASS mkfifo $D/d/e/fifotest
98 WVPASS bup index -u $D/d/e/fifotest
99 WVPASS bup save -t $D/d/e/fifotest
100 WVPASS bup save -t $D/d/e
101 WVPASS rm -f $D/d/e/fifotest
102 WVPASS bup index -u $D/d/e
103 WVFAIL bup save -t $D/d/e/fifotest
104 WVPASS mv $BUP_DIR/bi.old $BUP_DIR/bupindex
105
106 WVPASS bup index -u $D/d/e
107 WVPASS bup save -t $D/d/e
108 WVPASSEQ "$(cd $D && bup index -m)" \
109 "g
110 f
111 d/z
112 d/
113 a
114 ./"
115 WVPASS bup save -t $D/d
116 WVPASS bup index --fake-invalid $D/d/z
117 WVPASS bup save -t $D/d/z
118 WVPASS bup save -t $D/d/z  # test regenerating trees when no files are changed
119 WVPASS bup save -t $D/d
120 WVPASSEQ "$(cd $D && bup index -m)" \
121 "g
122 f
123 a
124 ./"
125 WVPASS bup save -r :$BUP_DIR -n r-test $D
126 WVFAIL bup save -r :$BUP_DIR/fake/path -n r-test $D
127 WVFAIL bup save -r :$BUP_DIR -n r-test $D/fake/path
128
129 WVSTART "split"
130 WVPASS echo a >a.tmp
131 WVPASS echo b >b.tmp
132 WVPASS bup split -b a.tmp >taga.tmp
133 WVPASS bup split -b b.tmp >tagb.tmp
134 WVPASS cat a.tmp b.tmp | WVPASS bup split -b >tagab.tmp
135 WVPASSEQ $(cat taga.tmp | wc -l) 1
136 WVPASSEQ $(cat tagb.tmp | wc -l) 1
137 WVPASSEQ $(cat tagab.tmp | wc -l) 1
138 WVPASSEQ $(cat tag[ab].tmp | wc -l) 2
139 WVPASSEQ "$(bup split -b a.tmp b.tmp)" "$(cat tagab.tmp)"
140 WVPASSEQ "$(bup split -b --keep-boundaries a.tmp b.tmp)" "$(cat tag[ab].tmp)"
141 WVPASSEQ "$(cat tag[ab].tmp | bup split -b --keep-boundaries --git-ids)" \
142          "$(cat tag[ab].tmp)"
143 WVPASSEQ "$(cat tag[ab].tmp | bup split -b --git-ids)" \
144          "$(cat tagab.tmp)"
145 WVPASS bup split --bench -b <t/testfile1 >tags1.tmp
146 WVPASS bup split -vvvv -b t/testfile2 >tags2.tmp
147 WVPASS bup margin
148 WVPASS bup midx -f
149 WVPASS bup midx --check -a
150 WVPASS bup midx -o $BUP_DIR/objects/pack/test1.midx \
151         $BUP_DIR/objects/pack/*.idx
152 WVPASS bup midx --check -a
153 WVPASS bup midx -o $BUP_DIR/objects/pack/test1.midx \
154         $BUP_DIR/objects/pack/*.idx \
155         $BUP_DIR/objects/pack/*.idx
156 WVPASS bup midx --check -a
157 all=$(echo $BUP_DIR/objects/pack/*.idx $BUP_DIR/objects/pack/*.midx)
158 WVPASS bup midx -o $BUP_DIR/objects/pack/zzz.midx $all
159 WVPASS bup tick
160 WVPASS bup midx -o $BUP_DIR/objects/pack/yyy.midx $all
161 WVPASS bup midx -a
162 WVPASSEQ "$(echo $BUP_DIR/objects/pack/*.midx)" \
163         "$BUP_DIR/objects/pack/yyy.midx"
164 WVPASS bup margin
165 WVPASS bup split -t t/testfile2 >tags2t.tmp
166 WVPASS bup split -t t/testfile2 --fanout 3 >tags2tf.tmp
167 WVPASS bup split -r "$BUP_DIR" -c t/testfile2 >tags2c.tmp
168 WVPASS bup split -r :$BUP_DIR -c t/testfile2 >tags2c.tmp
169 WVPASS ls -lR \
170     | WVPASS bup split -r :$BUP_DIR -c --fanout 3 --max-pack-objects 3 -n lslr \
171     || exit $?
172 WVPASS bup ls
173 WVFAIL bup ls /does-not-exist
174 WVPASS bup ls /lslr
175 WVPASS bup ls /lslr/latest
176 WVPASS bup ls /lslr/latest/
177 #WVPASS bup ls /lslr/1971-01-01   # all dates always exist
178 WVFAIL diff -u tags1.tmp tags2.tmp
179
180 # fanout must be different from non-fanout
181 WVFAIL diff tags2t.tmp tags2tf.tmp
182 WVPASS wc -c t/testfile1 t/testfile2
183 WVPASS wc -l tags1.tmp tags2.tmp
184
185 WVSTART "bloom"
186 WVPASS bup bloom -c $(ls -1 $BUP_DIR/objects/pack/*.idx|head -n1)
187 WVPASS rm $BUP_DIR/objects/pack/bup.bloom
188 WVPASS bup bloom -k 4
189 WVPASS bup bloom -c $(ls -1 $BUP_DIR/objects/pack/*.idx|head -n1)
190 WVPASS bup bloom -d buptest.tmp/objects/pack --ruin --force
191 WVFAIL bup bloom -c $(ls -1 $BUP_DIR/objects/pack/*.idx|head -n1)
192 WVPASS bup bloom --force -k 5
193 WVPASS bup bloom -c $(ls -1 $BUP_DIR/objects/pack/*.idx|head -n1)
194
195 WVSTART "memtest"
196 WVPASS bup memtest -c1 -n100
197 WVPASS bup memtest -c1 -n100 --existing
198
199 WVSTART "join"
200 WVPASS bup join $(cat tags1.tmp) >out1.tmp
201 WVPASS bup join <tags2.tmp >out2.tmp
202 WVPASS bup join <tags2t.tmp -o out2t.tmp
203 WVPASS bup join -r "$BUP_DIR" <tags2c.tmp >out2c.tmp
204 WVPASS bup join -r ":$BUP_DIR" <tags2c.tmp >out2c.tmp
205 WVPASS diff -u t/testfile1 out1.tmp
206 WVPASS diff -u t/testfile2 out2.tmp
207 WVPASS diff -u t/testfile2 out2t.tmp
208 WVPASS diff -u t/testfile2 out2c.tmp
209
210 WVSTART "save/git-fsck"
211 (
212     WVPASS cd "$BUP_DIR"
213     #git repack -Ad
214     #git prune
215     (WVPASS cd "$TOP/t/sampledata" && WVPASS bup save -vvn master /) || exit $?
216     result="$(git fsck --full --strict 2>&1)" || exit $?
217     n=$(echo "$result" |
218         WVFAIL egrep -v 'dangling (commit|tree|blob)' |
219         WVPASS tee -a /dev/stderr |
220         WVPASS wc -l) || exit $?
221     WVPASS [ "$n" -eq 0 ]
222 ) || exit $?
223
224 WVSTART "restore"
225 WVPASS force-delete buprestore.tmp
226 WVFAIL bup restore boink
227 WVPASS touch $TOP/$D/$D
228 WVPASS bup index -u $TOP/$D
229 WVPASS bup save -n master /
230 WVPASS bup restore -C buprestore.tmp "/master/latest/$TOP/$D"
231 WVPASSEQ "$(ls buprestore.tmp)" "bupdata.tmp"
232 WVPASS force-delete buprestore.tmp
233 WVPASS bup restore -C buprestore.tmp "/master/latest/$TOP/$D/"
234 WVPASS touch $D/non-existent-file buprestore.tmp/non-existent-file # else diff fails
235 WVPASS diff -ur $D/ buprestore.tmp/
236
237 (
238     tmp=testrestore.tmp
239     WVPASS force-delete $tmp
240     WVPASS mkdir $tmp
241     export BUP_DIR="$(pwd)/$tmp/bup"
242     WVPASS WVPASS bup init
243     WVPASS mkdir -p $tmp/src/x/y/z
244     WVPASS bup random 8k > $tmp/src/x/y/random-1
245     WVPASS bup random 8k > $tmp/src/x/y/z/random-2
246     WVPASS bup index -u $tmp/src
247     WVPASS bup save --strip -n foo $tmp/src
248
249     WVSTART "restore /foo/latest"
250     WVPASS bup restore -C $tmp/restore /foo/latest
251     WVPASS t/compare-trees $tmp/src/ $tmp/restore/latest/
252
253     WVSTART "restore /foo/latest/"
254     WVPASS force-delete "$tmp/restore"
255     WVPASS bup restore -C $tmp/restore /foo/latest/
256     for x in $tmp/src/*; do
257         WVPASS t/compare-trees $x/ $tmp/restore/$(basename $x);
258     done
259
260     WVSTART "restore /foo/latest/."
261     WVPASS force-delete "$tmp/restore"
262     WVPASS bup restore -C $tmp/restore /foo/latest/.
263     WVPASS t/compare-trees $tmp/src/ $tmp/restore/
264
265     WVSTART "restore /foo/latest/x"
266     WVPASS force-delete "$tmp/restore"
267     WVPASS bup restore -C $tmp/restore /foo/latest/x
268     WVPASS t/compare-trees $tmp/src/x/ $tmp/restore/x/
269
270     WVSTART "restore /foo/latest/x/"
271     WVPASS force-delete "$tmp/restore"
272     WVPASS bup restore -C $tmp/restore /foo/latest/x/
273     for x in $tmp/src/x/*; do
274         WVPASS t/compare-trees $x/ $tmp/restore/$(basename $x);
275     done
276
277     WVSTART "restore /foo/latest/x/."
278     WVPASS force-delete "$tmp/restore"
279     WVPASS bup restore -C $tmp/restore /foo/latest/x/.
280     WVPASS t/compare-trees $tmp/src/x/ $tmp/restore/
281 ) || exit $?
282
283
284 WVSTART "ftp"
285 WVPASS bup ftp "cat /master/latest/$TOP/$D/b" >$D/b.new
286 WVPASS bup ftp "cat /master/latest/$TOP/$D/f" >$D/f.new
287 WVPASS bup ftp "cat /master/latest/$TOP/$D/f"{,} >$D/f2.new
288 WVPASS bup ftp "cat /master/latest/$TOP/$D/a" >$D/a.new
289 WVPASSEQ "$(sha1sum <$D/b)" "$(sha1sum <$D/b.new)"
290 WVPASSEQ "$(sha1sum <$D/f)" "$(sha1sum <$D/f.new)"
291 WVPASSEQ "$(cat $D/f.new{,} | sha1sum)" "$(sha1sum <$D/f2.new)"
292 WVPASSEQ "$(sha1sum <$D/a)" "$(sha1sum <$D/a.new)"
293
294 WVSTART "tag"
295 WVFAIL bup tag -d v0.n 2>/dev/null
296 WVFAIL bup tag v0.n non-existant 2>/dev/null
297 WVPASSEQ "$(bup tag)" ""
298 WVPASS bup tag v0.1 master
299 WVPASSEQ "$(bup tag)" "v0.1"
300 WVFAIL bup tag v0.1 master
301 WVPASS bup tag -f v0.1 master
302 WVPASS bup tag -d v0.1
303 WVPASS bup tag -f -d v0.1
304 WVFAIL bup tag -d v0.1
305
306
307 WVSTART "save (no index)"
308 (
309     tmp=save-no-index.tmp
310     WVPASS force-delete $tmp
311     WVPASS mkdir $tmp
312     export BUP_DIR="$(WVPASS pwd)/$tmp/bup" || exit $?
313     WVPASS bup init
314     WVFAIL bup save -n nothing /
315     WVPASS rm -r "$tmp"
316 ) || exit $?
317
318 WVSTART "indexfile"
319 D=indexfile.tmp
320 INDEXFILE=tmpindexfile.tmp
321 WVPASS rm -f $INDEXFILE
322 WVPASS force-delete $D
323 WVPASS mkdir $D
324 export BUP_DIR="$D/.bup"
325 WVPASS bup init
326 WVPASS touch $D/a
327 WVPASS touch $D/b
328 WVPASS mkdir $D/c
329 WVPASS bup index -ux $D
330 WVPASS bup save --strip -n bupdir $D
331 WVPASSEQ "$(bup ls -F bupdir/latest/)" "a
332 b
333 c/"
334 WVPASS bup index -f $INDEXFILE --exclude=$D/c -ux $D
335 WVPASS bup save --strip -n indexfile -f $INDEXFILE $D
336 WVPASSEQ "$(bup ls indexfile/latest/)" "a
337 b"
338
339
340 WVSTART "import-rsnapshot"
341 D=rsnapshot.tmp
342 export BUP_DIR="$TOP/$D/.bup"
343 WVPASS force-delete $D
344 WVPASS mkdir $D
345 WVPASS bup init
346 WVPASS mkdir -p $D/hourly.0/buptest/a
347 WVPASS touch $D/hourly.0/buptest/a/b
348 WVPASS mkdir -p $D/hourly.0/buptest/c/d
349 WVPASS touch $D/hourly.0/buptest/c/d/e
350 WVPASS true
351 WVPASS bup import-rsnapshot $D/
352 WVPASSEQ "$(bup ls -F buptest/latest/)" "a/
353 c/"
354
355
356 WVSTART "save disjoint top-level directories"
357 (
358     # Resolve any symlinks involving the top top-level dirs.
359     real_pwd="$(WVPASS realpath .)" || exit $?
360     real_tmp="$(WVPASS realpath /tmp/.)" || exit $?
361     pwd_top="$(echo $real_pwd | WVPASS awk -F "/" '{print $2}')" || exit $?
362     tmp_top="$(echo $real_tmp | WVPASS awk -F "/" '{print $2}')" || exit $?
363
364     if [ "$pwd_top" = "$tmp_top" ]; then
365         echo "(running from within /$tmp_top; skipping test)" 1>&2
366         exit 0
367     fi
368     D=bupdata.tmp
369     WVPASS force-delete $D
370     WVPASS mkdir -p $D/x
371     WVPASS date > $D/x/1
372     tmpdir="$(WVPASS mktemp -d $real_tmp/bup-test-XXXXXXX)" || exit $?
373     cleanup() { WVPASS rm -r "${tmpdir}"; }
374     WVPASS trap cleanup EXIT
375     WVPASS date > "$tmpdir/2"
376
377     export BUP_DIR="$TOP/buptest.tmp"
378     WVPASS test -d "$BUP_DIR" && WVPASS rm -r "$BUP_DIR"
379
380     WVPASS bup init
381     WVPASS bup index -vu $(pwd)/$D/x "$tmpdir"
382     WVPASS bup save -t -n src $(pwd)/$D/x "$tmpdir"
383
384     # For now, assume that "ls -a" and "sort" use the same order.
385     actual="$(WVPASS bup ls -AF src/latest)" || exit $?
386     expected="$(echo -e "$pwd_top/\n$tmp_top/" | WVPASS sort)" || exit $?
387     WVPASSEQ "$actual" "$expected"
388 ) || exit $?