]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/2drive-incremental-2tape
Update 2 drive test
[bacula/bacula] / regress / tests / 2drive-incremental-2tape
1 #!/bin/sh
2 #
3 # Run a simple backup of the Bacula build directory then create some           
4 #   new files, do an Incremental and restore those two files.
5 #
6 # This script uses the autochanger and two tapes
7 #
8 debug=1
9 if test "$debug" -eq 1 ; then
10   out="tee"
11 else
12   out="output"
13 fi
14 cwd=`pwd`
15 bin/bacula stop  2>&1 >/dev/null
16 cd bin
17 ./drop_bacula_tables >/dev/null 2>&1
18 ./make_bacula_tables >/dev/null 2>&1
19 ./grant_bacula_privileges 2>&1 >/dev/null
20 cd ..
21
22 scripts/copy-2drive-confs
23 scripts/cleanup-2drive
24 echo "${cwd}/tmp/build" >/tmp/file-list
25 if test ! -d ${cwd}/tmp/build ; then
26    mkdir ${cwd}/tmp/build
27 fi
28 cp -p ${cwd}/build/src/dird/*.c ${cwd}/tmp/build
29 cd ${cwd}/tmp
30 echo "${cwd}/tmp/build/ficheriro1.txt" >restore-list
31 echo "${cwd}/tmp/build/ficheriro2.txt" >>restore-list
32 cd ${cwd}
33
34 # Turn off Prefer Mounted Volumes so we use 2 drives
35 outf="tmp/sed_tmp"
36 echo "s%# Prefer Mounted Volumes%  Prefer Mounted Volumes%g" >${outf}
37 cp ${cwd}/bin/bacula-dir.conf ${cwd}/tmp/1
38 sed -f ${outf} ${cwd}/tmp/1 >${cwd}/bin/bacula-dir.conf
39
40 echo " "
41 echo " "
42 echo " === Starting 2drive-incremental-2tape test ==="
43 echo " === Starting 2drive-incremental-2tape test ===" >>working/log
44 echo " "
45
46 # Write out bconsole commands
47 cat <<END_OF_DATA >tmp/bconcmds
48 @$out /dev/null
49 messages
50 @$out tmp/log1.out
51 label storage=DDS-4 volume=TestVolume001 slot=1 Pool=Default drive=0
52 label storage=DDS-4 volume=TestVolume002 slot=2 Pool=Default drive=1
53 run job=NightlySave yes
54 run job=NightlySave yes
55 wait
56 status storage=DDS-4
57 messages
58 quit
59 END_OF_DATA
60
61 if test "$debug" -eq 1 ; then
62   bin/bacula start
63   cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf
64 else
65   bin/bacula start 2>&1 >/dev/null
66   cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf  2>&1 >/dev/null
67 fi
68 echo "ficheriro1.txt" >${cwd}/tmp/build/ficheriro1.txt
69 echo "ficheriro2.txt" >${cwd}/tmp/build/ficheriro2.txt
70
71 cat <<END_OF_DATA >tmp/bconcmds
72 @$out /dev/null
73 messages
74 @$out tmp/log1.out
75 @# Force Incremental on the second Volume
76 update volume=TestVolume001 VolStatus=Used
77 status storage=DDS-4
78 @#setdebug level=400 storage=DDS-4
79 run level=Incremental job=NightlySave yes
80 wait
81 status storage=DDS-4
82 messages
83 @# 
84 @# now do a restore
85 @#
86 @$out tmp/log2.out
87 restore where=${cwd}/tmp/bacula-restores 
88 7
89 <${cwd}/tmp/restore-list
90
91 yes
92 wait
93 messages
94 @$out
95 quit
96 END_OF_DATA
97 if test "$debug" -eq 1 ; then
98   cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf
99 else
100   cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf  2>&1 >/dev/null
101 fi
102
103 bin/bacula stop 2>&1 >/dev/null
104 grep "^  Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null
105 bstat=$?
106 grep "^  Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null
107 rstat=$?
108 #
109 # Delete .c files because we will only restored the txt files
110 #
111 rm -f tmp/build/*.c
112 diff -r tmp/build tmp/bacula-restores${cwd}/tmp/build 2>&1 >/dev/null
113 if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
114    echo " "
115    echo " "
116    echo "  !!!!! 2drive-incremental-2tape test Bacula source failed!!! !!!!! "
117    echo "  !!!!! 2drive-incremental-2tape test failed!!! !!!!! " >>test.out
118    echo " "
119 else
120    echo "  ===== 2drive-incremental-2tape test Bacula source OK ===== "
121    echo "  ===== 2drive-incremental-2tape test OK ===== " >>test.out
122    scripts/cleanup
123 fi