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