]> arthur.barton.de Git - bup.git/blob - t/test.sh
midx: the fanout table entries can be 4 bytes, not 8.
[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
54 # FIXME: currently directories are never marked unmodified, so -m just skips
55 # them.  Eventually, we should actually store the hashes of completed
56 # directories, at which time the output of -m will change, so we'll have to
57 # change this test too.
58 WVPASSEQ "$(cd $D && bup index -m .)" \
59 "./a"
60 WVPASSEQ "$(cd $D && bup index -m)" \
61 "a"
62 WVPASSEQ "$(cd $D && bup index -s .)" "$(cd $D && bup index -s .)"
63
64
65 WVSTART "split"
66 WVPASS bup split --bench -b <t/testfile1 >tags1.tmp
67 WVPASS bup split -vvvv -b t/testfile2 >tags2.tmp
68 WVPASS bup midx -a
69 WVPASS bup split -t t/testfile2 >tags2t.tmp
70 WVPASS bup split -t t/testfile2 --fanout 3 >tags2tf.tmp
71 WVPASS bup split -r "$BUP_DIR" -c t/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 t/testfile1 t/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 t/testfile1 out1.tmp
87 WVPASS diff -u t/testfile2 out2.tmp
88 WVPASS diff -u t/testfile2 out2t.tmp
89 WVPASS diff -u t/testfile2 out2c.tmp
90
91 WVSTART "save/git-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
104
105 WVSTART "fsck"
106 WVPASS bup fsck
107 if bup fsck --par2-ok; then
108     WVSTART "fsck (par2)"
109 else
110     WVSTART "fsck (PAR2 IS MISSING)"
111 fi
112 WVPASS bup fsck -g
113 WVPASS bup fsck -r
114 WVPASS bup damage $BUP_DIR/objects/pack/*.pack -n10 -s1 -S0
115 WVFAIL bup fsck
116 WVFAIL bup fsck --disable-par2
117 chmod u+w $BUP_DIR/objects/pack/*.idx
118 WVPASS bup damage $BUP_DIR/objects/pack/*.idx -n10 -s1 -S0
119 WVFAIL bup fsck -j4
120 WVPASS bup damage $BUP_DIR/objects/pack/*.pack -n10 -s1024 --percent 0.4 -S0
121 WVFAIL bup fsck
122 WVFAIL bup fsck -rvv -j99   # fails because repairs were needed
123 if bup fsck --par2-ok; then
124     WVPASS bup fsck -r # ok because of repairs from last time
125     WVPASS bup damage $BUP_DIR/objects/pack/*.pack -n201 -s1 --equal -S0
126     WVFAIL bup fsck
127     WVFAIL bup fsck -rvv   # too many errors to be repairable
128     WVFAIL bup fsck -r   # too many errors to be repairable
129 else
130     WVFAIL bup fsck -r # still fails because par2 was missing
131 fi