]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/2drive-incremental-2tape
8f69bb30af3cdd9044eaefedef8d2954355650da
[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 @output /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 setdebug level=100 storage=DDS-4
54 run job=NightlySave yes
55 run job=NightlySave yes
56 wait
57 status storage=DDS-4
58 messages
59 quit
60 END_OF_DATA
61
62 if test "$debug" -eq 1 ; then
63   bin/bacula start
64   cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf
65 else
66   bin/bacula start 2>&1 >/dev/null
67   cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf  2>&1 >/dev/null
68 fi
69 echo "ficheriro1.txt" >${cwd}/tmp/build/ficheriro1.txt
70 echo "ficheriro2.txt" >${cwd}/tmp/build/ficheriro2.txt
71
72 cat <<END_OF_DATA >tmp/bconcmds
73 @$out /dev/null
74 messages
75 @$out tmp/log1.out
76 @# Force Incremental on the second Volume
77 update volume=TestVolume001 VolStatus=Used
78 status storage=DDS-4
79 @#setdebug level=400 storage=DDS-4
80 run level=Incremental job=NightlySave yes
81 wait
82 status storage=DDS-4
83 messages
84 @# 
85 @# now do a restore
86 @#
87 @$out tmp/log2.out
88 restore where=${cwd}/tmp/bacula-restores 
89 7
90 <${cwd}/tmp/restore-list
91
92 yes
93 wait
94 messages
95 @$out
96 quit
97 END_OF_DATA
98 if test "$debug" -eq 1 ; then
99   cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf
100 else
101   cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf  2>&1 >/dev/null
102 fi
103
104 bin/bacula stop 2>&1 >/dev/null
105 grep "^  Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null
106 bstat=$?
107 grep "^  Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null
108 rstat=$?
109 #
110 # Delete .c files because we will only restored the txt files
111 #
112 rm -f tmp/build/*.c
113 diff -r tmp/build tmp/bacula-restores${cwd}/tmp/build 2>&1 >/dev/null
114 if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
115    echo " "
116    echo " "
117    echo "  !!!!! 2drive-incremental-2tape test Bacula source failed!!! !!!!! "
118    echo "  !!!!! 2drive-incremental-2tape test failed!!! !!!!! " >>test.out
119    echo " "
120 else
121    echo "  ===== 2drive-incremental-2tape test Bacula source OK ===== "
122    echo "  ===== 2drive-incremental-2tape test OK ===== " >>test.out
123    scripts/cleanup
124 fi