]> arthur.barton.de Git - bup.git/blob - t/test.sh
Merge branch 'master' of git://github.com/apenwarr/bup
[bup.git] / t / test.sh
1 #!/bin/bash
2 . wvtest.sh
3 #set -e
4
5 TOP="$(pwd)"
6 export BUP_DIR="$TOP/buptest.tmp"
7
8 bup()
9 {
10     "$TOP/bup" "$@"
11 }
12
13 WVSTART "init"
14
15 #set -x
16 rm -rf "$BUP_DIR"
17 WVPASS bup init
18
19 WVSTART "index"
20 D=bupdata.tmp
21 rm -rf $D
22 mkdir $D
23 WVPASSEQ "$(bup index -p)" ""
24 WVPASSEQ "$(bup index -p $D)" ""
25 WVFAIL [ -e $D.fake ]
26 WVFAIL bup index -u $D.fake
27 WVPASS bup index -u $D
28 WVPASSEQ "$(bup index -p $D)" "$D/"
29 touch $D/a $D/b
30 mkdir $D/d $D/d/e
31 WVPASSEQ "$(bup index -s $D/)" "A $D/"
32 WVPASSEQ "$(bup index -s $D/b)" ""
33 bup tick
34 WVPASSEQ "$(bup index -us $D/b)" "A $D/b"
35 WVPASSEQ "$(bup index -us $D)" \
36 "A $D/d/e/
37 A $D/d/
38 A $D/b
39 A $D/a
40 A $D/"
41 WVPASSEQ "$(bup index -us $D/a $D/b --fake-valid)" \
42 "  $D/b
43   $D/a"
44 WVPASSEQ "$(bup index -us $D/a)" "  $D/a"  # stays unmodified
45 touch $D/a
46 WVPASS bup index -u $D/a  # becomes modified
47 WVPASSEQ "$(bup index -s $D/a $D $D/b)" \
48 "A $D/d/e/
49 A $D/d/
50   $D/b
51 M $D/a
52 A $D/"
53 WVPASSEQ "$(cd $D && bup index -m .)" \
54 "./d/e/
55 ./d/
56 ./a
57 ./"
58 WVPASSEQ "$(cd $D && bup index -m)" \
59 "d/e/
60 d/
61 a
62 ./"
63 WVPASSEQ "$(cd $D && bup index -s .)" "$(cd $D && bup index -s .)"
64
65
66 WVSTART "split"
67 WVPASS bup split --bench -b <testfile1 >tags1.tmp
68 WVPASS bup split -vvvv -b testfile2 >tags2.tmp
69 WVPASS bup split -t testfile2 >tags2t.tmp
70 WVPASS bup split -t testfile2 --fanout 3 >tags2tf.tmp
71 WVPASS bup split -r "$BUP_DIR" -c testfile2 >tags2c.tmp
72 WVPASS ls -lR \
73    | WVPASS bup split -r "$BUP_DIR" -c --fanout 3 --max-pack-objects 3 -n lslr
74 WVFAIL diff -u tags1.tmp tags2.tmp
75
76 # fanout must be different from non-fanout
77 WVFAIL diff -q tags2t.tmp tags2tf.tmp
78 wc -c testfile1 testfile2
79 wc -l tags1.tmp tags2.tmp
80
81 WVSTART "join"
82 WVPASS bup join $(cat tags1.tmp) >out1.tmp
83 WVPASS bup join <tags2.tmp >out2.tmp
84 WVPASS bup join <tags2t.tmp >out2t.tmp
85 WVPASS bup join -r "$BUP_DIR" <tags2c.tmp >out2c.tmp
86 WVPASS diff -u testfile1 out1.tmp
87 WVPASS diff -u testfile2 out2.tmp
88 WVPASS diff -u testfile2 out2t.tmp
89 WVPASS diff -u testfile2 out2c.tmp
90
91 WVSTART "save/fsck"
92 (
93     set -e
94     cd "$BUP_DIR" || exit 1
95     #git repack -Ad
96     #git prune
97     (cd "$TOP/t/sampledata" && WVPASS bup save -vvn master /) || WVFAIL
98     n=$(git fsck --full --strict 2>&1 | 
99           egrep -v 'dangling (commit|tree)' |
100           tee -a /dev/stderr | 
101           wc -l)
102     WVPASS [ "$n" -eq 0 ]
103 ) || exit 1