]> arthur.barton.de Git - bup.git/blob - t/test.sh
Fix 'make test' on MacOS ("wc -l" returns extra whitespace).
[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 WVPASS bup save -r :$BUP_DIR -n r-test $D
120 WVFAIL bup save -r :$BUP_DIR/fake/path -n r-test $D
121 WVFAIL bup save -r :$BUP_DIR -n r-test $D/fake/path
122
123 WVSTART "split"
124 echo a >a.tmp
125 echo b >b.tmp
126 WVPASS bup split -b a.tmp >taga.tmp
127 WVPASS bup split -b b.tmp >tagb.tmp
128 cat a.tmp b.tmp | WVPASS bup split -b >tagab.tmp
129 WVPASSEQ $(cat taga.tmp | wc -l) 1
130 WVPASSEQ $(cat tagb.tmp | wc -l) 1
131 WVPASSEQ $(cat tagab.tmp | wc -l) 1
132 WVPASSEQ $(cat tag[ab].tmp | wc -l) 2
133 WVPASSEQ "$(bup split -b a.tmp b.tmp)" "$(cat tagab.tmp)"
134 WVPASSEQ "$(bup split -b --keep-boundaries a.tmp b.tmp)" "$(cat tag[ab].tmp)"
135 WVPASSEQ "$(cat tag[ab].tmp | bup split -b --keep-boundaries --git-ids)" \
136          "$(cat tag[ab].tmp)"
137 WVPASSEQ "$(cat tag[ab].tmp | bup split -b --git-ids)" \
138          "$(cat tagab.tmp)"
139 WVPASS bup split --bench -b <t/testfile1 >tags1.tmp
140 WVPASS bup split -vvvv -b t/testfile2 >tags2.tmp
141 WVPASS bup margin
142 WVPASS bup midx -f
143 WVPASS bup margin
144 WVPASS bup split -t t/testfile2 >tags2t.tmp
145 WVPASS bup split -t t/testfile2 --fanout 3 >tags2tf.tmp
146 WVPASS bup split -r "$BUP_DIR" -c t/testfile2 >tags2c.tmp
147 WVPASS bup split -r :$BUP_DIR -c t/testfile2 >tags2c.tmp
148 WVPASS ls -lR \
149    | WVPASS bup split -r :$BUP_DIR -c --fanout 3 --max-pack-objects 3 -n lslr
150 WVPASS bup ls
151 WVFAIL bup ls /does-not-exist
152 WVPASS bup ls /lslr
153 #WVPASS bup ls /lslr/1971-01-01   # all dates always exist
154 WVFAIL diff -u tags1.tmp tags2.tmp
155
156 # fanout must be different from non-fanout
157 WVFAIL diff -q tags2t.tmp tags2tf.tmp
158 wc -c t/testfile1 t/testfile2
159 wc -l tags1.tmp tags2.tmp
160
161 WVPASS bup memtest -c1 -n100
162 WVPASS bup memtest -c1 -n100 --existing
163
164 WVSTART "join"
165 WVPASS bup join $(cat tags1.tmp) >out1.tmp
166 WVPASS bup join <tags2.tmp >out2.tmp
167 WVPASS bup join <tags2t.tmp >out2t.tmp
168 WVPASS bup join -r "$BUP_DIR" <tags2c.tmp >out2c.tmp
169 WVPASS bup join -r ":$BUP_DIR" <tags2c.tmp >out2c.tmp
170 WVPASS diff -u t/testfile1 out1.tmp
171 WVPASS diff -u t/testfile2 out2.tmp
172 WVPASS diff -u t/testfile2 out2t.tmp
173 WVPASS diff -u t/testfile2 out2c.tmp
174
175 WVSTART "save/git-fsck"
176 (
177     set -e
178     cd "$BUP_DIR" || exit 1
179     #git repack -Ad
180     #git prune
181     (cd "$TOP/t/sampledata" && WVPASS bup save -vvn master /) || WVFAIL
182     n=$(git fsck --full --strict 2>&1 | 
183           egrep -v 'dangling (commit|tree)' |
184           tee -a /dev/stderr | 
185           wc -l)
186     WVPASS [ "$n" -eq 0 ]
187 ) || exit 1
188
189 WVSTART "restore"
190 rm -rf buprestore.tmp
191 WVFAIL bup restore boink
192 WVPASS bup restore -C buprestore.tmp "/master/latest/$TOP/$D"
193 WVPASSEQ "$(ls buprestore.tmp)" "bupdata.tmp"
194 rm -rf buprestore.tmp
195 WVPASS bup restore -C buprestore.tmp "/master/latest/$TOP/$D/"
196 WVPASS diff -ur $D/ buprestore.tmp/
197
198 WVSTART "ftp"
199 WVPASS bup ftp "cat /master/latest/$TOP/$D/b" >$D/b.new
200 WVPASS bup ftp "cat /master/latest/$TOP/$D/f" >$D/f.new
201 WVPASS bup ftp "cat /master/latest/$TOP/$D/f"{,} >$D/f2.new
202 WVPASS bup ftp "cat /master/latest/$TOP/$D/a" >$D/a.new
203 WVPASSEQ "$(sha1sum <$D/b)" "$(sha1sum <$D/b.new)"
204 WVPASSEQ "$(sha1sum <$D/f)" "$(sha1sum <$D/f.new)"
205 WVPASSEQ "$(cat $D/f.new{,} | sha1sum)" "$(sha1sum <$D/f2.new)"
206 WVPASSEQ "$(sha1sum <$D/a)" "$(sha1sum <$D/a.new)"
207
208 WVSTART "fsck"
209 WVPASS bup fsck
210 WVPASS bup fsck --quick
211 if bup fsck --par2-ok; then
212     WVSTART "fsck (par2)"
213 else
214     WVSTART "fsck (PAR2 IS MISSING)"
215 fi
216 WVPASS bup fsck -g
217 WVPASS bup fsck -r
218 WVPASS bup damage $BUP_DIR/objects/pack/*.pack -n10 -s1 -S0
219 WVFAIL bup fsck --quick
220 WVFAIL bup fsck --quick --disable-par2
221 chmod u+w $BUP_DIR/objects/pack/*.idx
222 WVPASS bup damage $BUP_DIR/objects/pack/*.idx -n10 -s1 -S0
223 WVFAIL bup fsck --quick -j4
224 WVPASS bup damage $BUP_DIR/objects/pack/*.pack -n10 -s1024 --percent 0.4 -S0
225 WVFAIL bup fsck --quick
226 WVFAIL bup fsck --quick -rvv -j99   # fails because repairs were needed
227 if bup fsck --par2-ok; then
228     WVPASS bup fsck -r # ok because of repairs from last time
229     WVPASS bup damage $BUP_DIR/objects/pack/*.pack -n202 -s1 --equal -S0
230     WVFAIL bup fsck
231     WVFAIL bup fsck -rvv   # too many errors to be repairable
232     WVFAIL bup fsck -r   # too many errors to be repairable
233 else
234     WVFAIL bup fsck --quick -r # still fails because par2 was missing
235 fi