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