]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/bscan-test
Add new concurrent tests
[bacula/bacula] / regress / tests / bscan-test
1 #!/bin/sh
2 #
3 # Run a simple backup of the Bacula build directory but 
4 #   split the archive into two volumes then bscan it
5 #   into the catalog after the backup. It also to a limited
6 #   extent tests the purge volume and delete volume commands.
7 #
8 cwd=`pwd`
9 scripts/copy-test-confs
10 scripts/cleanup
11 echo "${cwd}/build" >/tmp/file-list
12 bin/bacula stop 2>&1 >/dev/null
13 bin/drop_sqlite_tables
14 bin/make_sqlite_tables
15
16 echo " "
17 echo " "
18 echo " === Starting bscan-test  ==="
19 echo " === Starting bscan-test  ===" >working/log
20 echo " "
21
22 bin/bacula start 2>&1 >/dev/null
23 bin/console -c bin/console.conf <<END_OF_DATA
24 @output /dev/null
25 messages
26 @output tmp/log1.out
27 label storage=File1
28 TestVolume001
29 label storage=File1
30 TestVolume002
31 update Volume=TestVolume001
32 6
33 3000000
34 10
35 run job=NightlySave storage=File1
36 yes
37 wait
38 messages
39 @output /dev/null
40 @#
41 @# now purge the Volume
42 @#
43 purge volume=TestVolume001
44 purge volume=TestVolume002
45 delete volume=TestVolume001
46 yes
47 delete volume=TestVolume002
48 yes
49 messages
50 quit
51 END_OF_DATA
52 bin/bacula stop 2>&1 >/dev/null
53 echo "volume=TestVolume001|TestVolume002" >tmp/bscan.bsr
54 bin/bscan -w working -m -s -v -b tmp/bscan.bsr -c bin/bacula-sd.conf ${cwd}/tmp 2>&1 >/dev/null
55 bin/bacula start 2>&1 >/dev/null
56 bin/console -c bin/console.conf <<END_OF_DATA
57 @output /dev/null
58 messages
59 @output tmp/log2.out
60 @# 
61 @# now do a restore
62 @#
63 restore where=${cwd}/tmp/bacula-restores
64 5
65 done
66 yes
67 wait
68 messages
69 @output
70 quit
71 END_OF_DATA
72 bin/bacula stop 2>&1 >/dev/null
73 grep "^Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null
74 bstat=$?
75 grep "^Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null
76 rstat=$?
77 diff -r build  tmp/bacula-restores${cwd}/build
78 if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
79    echo " "
80    echo " "
81    echo "  ===== bscan-test Bacula source failed!!! ===== "
82    echo "  ===== bscan-test failed!!! ===== " >>test.out
83    echo " "
84 else
85    echo "  ===== bscan-test Bacula source OK ===== "
86    echo "  ===== bscan-test OK ===== " >>test.out
87    scripts/cleanup
88 fi