]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/backup-bacula-test
Change test name
[bacula/bacula] / regress / tests / backup-bacula-test
1 #!/bin/sh
2 #
3 # Run a simple backup of the Bacula build directory
4 #   then restore it.
5 #
6 cwd=`pwd`
7 scripts/copy-confs
8 scripts/cleanup
9 bin/bacula stop 2>&1 >/dev/null
10 bin/drop_sqlite_tables
11 bin/make_sqlite_tables
12
13 echo " "
14 echo " "
15 echo " === Starting Backup Bacula Test ==="
16 echo " === Starting Backup Bacula Test ===" >>working/log
17 echo " "
18
19 bin/bacula start 2>&1 >/dev/null
20 bin/console -c bin/console.conf <<END_OF_DATA
21 @output /dev/null
22 messages
23 @output tmp/log1.out
24 label
25 TestVolume001
26 run job=Client1
27 yes
28 wait
29 messages
30 @# 
31 @# now do a restore
32 @#
33 @output tmp/log2.out  
34 restore current all
35 yes
36 @sleep 1
37 wait
38 messages
39 @output
40 quit
41 END_OF_DATA
42 bin/bacula stop 2>&1 >/dev/null
43 grep "^Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null
44 bstat=$?
45 grep "^Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null
46 rstat=$?
47 diff -r build /tmp/bacula-restores${cwd}/build
48 if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
49    echo " "
50    echo " "
51    echo "  !!!!! Backup Bacula Test failed!!! !!!!! "
52    echo "  !!!!! Backup Bacula Test failed!!! !!!!! " >>test.out
53    echo " "
54 else
55    echo "  ===== Backup Bacula Test OK ===== "
56    echo "  ===== Backup Bacula Test OK ===== " >>test.out
57    scripts/cleanup
58 fi