]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/two-volume-tape
Updates
[bacula/bacula] / regress / tests / two-volume-tape
1 #!/bin/sh
2 #
3 # Run a simple backup of the Bacula build directory 
4 #  to two tapes where the maximum tape file size is set to 1M
5 #  Note, this test simulates the tape filling and writing to
6 #   the next tape.
7 #
8 debug=0
9 if test "$debug" -eq 1 ; then
10   out="tee"
11 else
12   out="output"
13 fi
14 cwd=`pwd`
15 scripts/cleanup
16 scripts/copy-2tape-confs
17 scripts/prepare-two-tapes
18  
19 echo "${cwd}/build" >/tmp/file-list
20
21 outf="tmp/sed_tmp"
22 echo "s%# Maximum File Size%  Maximum File Size%g" >${outf}
23 cp ${cwd}/bin/bacula-sd.conf ${cwd}/tmp/1
24 sed -f ${outf} ${cwd}/tmp/1 >${cwd}/bin/bacula-sd.conf
25
26 echo " "
27 echo " "
28 echo " === Starting Two Volume Tape test at `date +%R:%S` ==="
29 echo " === Starting Two Volume Tape test at `date +%R:%S` ===" >>working/log
30 echo " "
31 # Write out bconsole commands
32 cat <<END_OF_DATA >tmp/bconcmds
33 @$out /dev/null
34 messages
35 @$out tmp/log1.out
36 label storage=DDS-4 volume=TestVolume001 slot=1 pool=Default drive=0
37 label storage=DDS-4 volume=TestVolume002 slot=2 pool=Default drive=0
38 update Volume=TestVolume001 MaxVolBytes=3000000 pool=Default drive=0
39 @#setdebug level=1000 client 
40 run job=NightlySave yes
41 wait
42 messages
43 @# 
44 @# now do a restore
45 @#
46 @$out tmp/log2.out
47 restore where=${cwd}/tmp/bacula-restores select all storage=DDS-4 done
48 yes
49 wait
50 messages
51 @$out
52 quit
53 END_OF_DATA
54
55 if test "$debug" -eq 1 ; then
56   bin/bacula start
57   cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf
58 else
59   bin/bacula start 2>&1 >/dev/null
60   cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf  2>&1 >/dev/null
61 fi
62 scripts/check_for_zombie_jobs storage=DDS-4
63
64 bin/bacula stop 2>&1 >/dev/null
65 grep "^  Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null
66 bstat=$?
67 grep "^  Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null
68 rstat=$?
69 diff -r build tmp/bacula-restores${cwd}/build 2>&1 >/dev/null
70 if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
71    echo " "
72    echo " "
73    echo "  !!!!! Two Volume Tape test Bacula source failed!!! !!!!! "
74    echo "  !!!!! Two Volume Tape test failed!!! !!!!! " >>test.out
75    echo " "
76 else
77    echo "  ===== Two Volume Tape test Bacula source OK ===== "
78    echo "  ===== Two Volume Tape test OK ===== " >>test.out
79 #  scripts/cleanup
80 fi