]> arthur.barton.de Git - bup.git/blob - t/test.sh
cmd/split: add a new --keep-boundaries option.
[bup.git] / t / test.sh
1 #!/usr/bin/env 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 --check -p)" ""
24 WVPASSEQ "$(bup index --check -p $D)" ""
25 WVFAIL [ -e $D.fake ]
26 WVFAIL bup index --check -u $D.fake
27 WVPASS bup index --check -u $D
28 WVPASSEQ "$(bup index --check -p $D)" "$D/"
29 touch $D/a
30 WVPASS bup random 128k >$D/b
31 mkdir $D/d $D/d/e
32 WVPASS bup random 512 >$D/f
33 WVPASSEQ "$(bup index -s $D/)" "A $D/"
34 WVPASSEQ "$(bup index -s $D/b)" ""
35 WVPASSEQ "$(bup index --check -us $D/b)" "A $D/b"
36 WVPASSEQ "$(bup index --check -us $D/b $D/d)" \
37 "A $D/d/e/
38 A $D/d/
39 A $D/b"
40 touch $D/d/z
41 bup tick
42 WVPASSEQ "$(bup index --check -usx $D)" \
43 "A $D/f
44 A $D/d/z
45 A $D/d/e/
46 A $D/d/
47 A $D/b
48 A $D/a
49 A $D/"
50 WVPASSEQ "$(bup index --check -us $D/a $D/b --fake-valid)" \
51 "  $D/b
52   $D/a"
53 WVPASSEQ "$(bup index --check -us $D/a)" "  $D/a"  # stays unmodified
54 WVPASSEQ "$(bup index --check -us $D/d --fake-valid)" \
55 "  $D/d/z
56   $D/d/e/
57   $D/d/"
58 touch $D/d/z
59 WVPASS bup index -u $D/d/z  # becomes modified
60 WVPASSEQ "$(bup index -s $D/a $D $D/b)" \
61 "A $D/f
62 M $D/d/z
63   $D/d/e/
64 M $D/d/
65   $D/b
66   $D/a
67 A $D/"
68
69 WVPASS bup index -u $D/d/e $D/a --fake-invalid
70 WVPASSEQ "$(cd $D && bup index -m .)" \
71 "./f
72 ./d/z
73 ./d/e/
74 ./d/
75 ./a
76 ./"
77 WVPASSEQ "$(cd $D && bup index -m)" \
78 "f
79 d/z
80 d/e/
81 d/
82 a
83 ./"
84 WVPASSEQ "$(cd $D && bup index -s .)" "$(cd $D && bup index -s .)"
85
86 WVFAIL bup save -t $D/doesnt-exist-filename
87
88 mv $BUP_DIR/bupindex $BUP_DIR/bi.old
89 WVFAIL bup save -t $D/d/e/fifotest
90 mkfifo $D/d/e/fifotest
91 WVPASS bup index -u $D/d/e/fifotest
92 WVFAIL bup save -t $D/d/e/fifotest
93 WVFAIL bup save -t $D/d/e
94 rm -f $D/d/e/fifotest
95 WVPASS bup index -u $D/d/e
96 WVFAIL bup save -t $D/d/e/fifotest
97 mv $BUP_DIR/bi.old $BUP_DIR/bupindex
98
99 WVPASS bup index -u $D/d/e
100 WVPASS bup save -t $D/d/e
101 WVPASSEQ "$(cd $D && bup index -m)" \
102 "f
103 d/z
104 d/
105 a
106 ./"
107 WVPASS bup save -t $D/d
108 WVPASSEQ "$(cd $D && bup index -m)" \
109 "f
110 a
111 ./"
112 tree1=$(bup save -t $D)
113 WVPASSEQ "$(cd $D && bup index -m)" ""
114 tree2=$(bup save -t $D)
115 WVPASSEQ "$tree1" "$tree2"
116 WVPASSEQ "$(bup index -s / | grep ^D)" ""
117 tree3=$(bup save -t /)
118 WVPASSEQ "$tree1" "$tree3"
119 WVFAIL bup save -r localhost -n r-test $D
120 WVPASS bup save -r :$BUP_DIR -n r-test $D
121 WVFAIL bup save -r :$BUP_DIR/fake/path -n r-test $D
122 WVFAIL bup save -r :$BUP_DIR -n r-test $D/fake/path
123
124 WVSTART "split"
125 echo a >a.tmp
126 echo b >b.tmp
127 WVPASSEQ $(bup split -b a.tmp b.tmp | wc -l) 1
128 WVPASSEQ $(bup split -b --keep-boundaries a.tmp b.tmp | wc -l) 2
129 WVPASS bup split --bench -b <t/testfile1 >tags1.tmp
130 WVPASS bup split -vvvv -b t/testfile2 >tags2.tmp
131 WVPASS bup margin
132 WVPASS bup midx -f
133 WVPASS bup margin
134 WVPASS bup split -t t/testfile2 >tags2t.tmp
135 WVPASS bup split -t t/testfile2 --fanout 3 >tags2tf.tmp
136 WVFAIL bup split -r $BUP_DIR -c t/testfile2 >tags2c.tmp
137 WVPASS bup split -r :$BUP_DIR -c t/testfile2 >tags2c.tmp
138 WVPASS ls -lR \
139    | WVPASS bup split -r :$BUP_DIR -c --fanout 3 --max-pack-objects 3 -n lslr
140 WVPASS bup ls
141 WVFAIL bup ls /does-not-exist
142 WVPASS bup ls /lslr
143 #WVPASS bup ls /lslr/1971-01-01   # all dates always exist
144 WVFAIL diff -u tags1.tmp tags2.tmp
145
146 # fanout must be different from non-fanout
147 WVFAIL diff -q tags2t.tmp tags2tf.tmp
148 wc -c t/testfile1 t/testfile2
149 wc -l tags1.tmp tags2.tmp
150
151 WVPASS bup memtest -c1 -n100
152 WVPASS bup memtest -c1 -n100 --existing
153
154 WVSTART "join"
155 WVPASS bup join $(cat tags1.tmp) >out1.tmp
156 WVPASS bup join <tags2.tmp >out2.tmp
157 WVPASS bup join <tags2t.tmp >out2t.tmp
158 WVFAIL bup join -r "$BUP_DIR" <tags2c.tmp >out2c.tmp
159 WVPASS bup join -r ":$BUP_DIR" <tags2c.tmp >out2c.tmp
160 WVPASS diff -u t/testfile1 out1.tmp
161 WVPASS diff -u t/testfile2 out2.tmp
162 WVPASS diff -u t/testfile2 out2t.tmp
163 WVPASS diff -u t/testfile2 out2c.tmp
164
165 WVSTART "save/git-fsck"
166 (
167     set -e
168     cd "$BUP_DIR" || exit 1
169     #git repack -Ad
170     #git prune
171     (cd "$TOP/t/sampledata" && WVPASS bup save -vvn master /) || WVFAIL
172     n=$(git fsck --full --strict 2>&1 | 
173           egrep -v 'dangling (commit|tree)' |
174           tee -a /dev/stderr | 
175           wc -l)
176     WVPASS [ "$n" -eq 0 ]
177 ) || exit 1
178
179 WVSTART "restore"
180 rm -rf buprestore.tmp
181 WVFAIL bup restore boink
182 WVPASS bup restore -C buprestore.tmp "/master/latest/$TOP/$D"
183 WVPASSEQ "$(ls buprestore.tmp)" "bupdata.tmp"
184 rm -rf buprestore.tmp
185 WVPASS bup restore -C buprestore.tmp "/master/latest/$TOP/$D/"
186 WVPASS diff -ur $D/ buprestore.tmp/
187
188 WVSTART "ftp"
189 WVPASS bup ftp "cat /master/latest/$TOP/$D/b" >$D/b.new
190 WVPASS bup ftp "cat /master/latest/$TOP/$D/f" >$D/f.new
191 WVPASS bup ftp "cat /master/latest/$TOP/$D/f"{,} >$D/f2.new
192 WVPASS bup ftp "cat /master/latest/$TOP/$D/a" >$D/a.new
193 WVPASSEQ "$(sha1sum <$D/b)" "$(sha1sum <$D/b.new)"
194 WVPASSEQ "$(sha1sum <$D/f)" "$(sha1sum <$D/f.new)"
195 WVPASSEQ "$(cat $D/f.new{,} | sha1sum)" "$(sha1sum <$D/f2.new)"
196 WVPASSEQ "$(sha1sum <$D/a)" "$(sha1sum <$D/a.new)"
197
198 WVSTART "fsck"
199 WVPASS bup fsck
200 WVPASS bup fsck --quick
201 if bup fsck --par2-ok; then
202     WVSTART "fsck (par2)"
203 else
204     WVSTART "fsck (PAR2 IS MISSING)"
205 fi
206 WVPASS bup fsck -g
207 WVPASS bup fsck -r
208 WVPASS bup damage $BUP_DIR/objects/pack/*.pack -n10 -s1 -S0
209 WVFAIL bup fsck --quick
210 WVFAIL bup fsck --quick --disable-par2
211 chmod u+w $BUP_DIR/objects/pack/*.idx
212 WVPASS bup damage $BUP_DIR/objects/pack/*.idx -n10 -s1 -S0
213 WVFAIL bup fsck --quick -j4
214 WVPASS bup damage $BUP_DIR/objects/pack/*.pack -n10 -s1024 --percent 0.4 -S0
215 WVFAIL bup fsck --quick
216 WVFAIL bup fsck --quick -rvv -j99   # fails because repairs were needed
217 if bup fsck --par2-ok; then
218     WVPASS bup fsck -r # ok because of repairs from last time
219     WVPASS bup damage $BUP_DIR/objects/pack/*.pack -n202 -s1 --equal -S0
220     WVFAIL bup fsck
221     WVFAIL bup fsck -rvv   # too many errors to be repairable
222     WVFAIL bup fsck -r   # too many errors to be repairable
223 else
224     WVFAIL bup fsck --quick -r # still fails because par2 was missing
225 fi