]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/2drive-incremental-2disk
Copy trunk regress into Branch
[bacula/bacula] / regress / tests / 2drive-incremental-2disk
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 virtual disk autochanger and two drives
7 #
8 TestName="2drive-incremental-2disk"
9 JobName="2drive2disk"
10 . scripts/functions
11
12 scripts/cleanup
13 scripts/copy-2disk-drive-confs
14 scripts/prepare-two-disks
15
16 change_jobname localhost-fd $JobName
17 start_test
18
19 echo "${cwd}/tmp/build" >${cwd}/tmp/file-list
20 if test ! -d ${cwd}/tmp/build ; then
21    mkdir ${cwd}/tmp/build
22 fi
23 cp -p ${cwd}/build/src/dird/*.c ${cwd}/tmp/build
24 cd ${cwd}/tmp
25 echo "${cwd}/tmp/build/ficheriro1.txt" >restore-list
26 echo "${cwd}/tmp/build/ficheriro2.txt" >>restore-list
27 cd ${cwd}
28
29 # Turn off Prefer Mounted Volumes so we use 2 drives
30 outf="${cwd}/tmp/sed_tmp"
31 echo "s%# Prefer Mounted Volumes%  Prefer Mounted Volumes%g" >${outf}
32 cp ${cwd}/bin/bacula-dir.conf ${cwd}/tmp/1
33 # Comment the next line out to write everything to one drive
34 #  otherwise, it writes the two jobs to different drives
35 sed -f ${outf} ${cwd}/tmp/1 >${cwd}/bin/bacula-dir.conf
36
37 # Write out bconsole commands
38 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
39 @output /dev/null
40 messages
41 @$out ${cwd}/tmp/log1.out
42 setdebug level=3 dir
43 setdebug level=3 storage=DDS-4
44 setdebug level=3 client
45 label storage=DDS-4 volume=TestVolume001 slot=1 Pool=Default drive=0
46 label storage=DDS-4 volume=TestVolume002 slot=2 Pool=Default drive=1
47 status storage=DDS-4
48 @#setdebug level=120 storage=DDS-4
49 run job=NightlySave yes
50 run job=NightlySave yes
51 run job=NightlySave yes
52 run job=NightlySave yes
53 run job=NightlySave yes
54 @sleep 3
55 status storage=DDS-4
56 wait
57 list volumes
58 list jobs
59 status storage=DDS-4
60 messages
61 quit
62 END_OF_DATA
63
64 run_bacula
65 echo "ficheriro1.txt" >${cwd}/tmp/build/ficheriro1.txt
66 echo "ficheriro2.txt" >${cwd}/tmp/build/ficheriro2.txt
67
68 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
69 @$out /dev/null
70 messages
71 @$out ${cwd}/tmp/log1.out
72 @# Force Incremental on the second Volume
73 update volume=TestVolume001 VolStatus=Used
74 status storage=DDS-4
75 @#setdebug level=120 storage=DDS-4
76 run level=Incremental job=NightlySave yes
77 wait
78 list volumes
79 status storage=DDS-4
80 messages
81 @# 
82 @# now do a restore
83 @#
84 @$out ${cwd}/tmp/log2.out
85 restore where=${cwd}/tmp/bacula-restores 
86 7
87 <${cwd}/tmp/restore-list
88
89 yes
90 wait
91 messages
92 @$out
93 quit
94 END_OF_DATA
95
96 run_bconsole
97 check_for_zombie_jobs storage=DDS-4
98 stop_bacula
99
100 check_two_logs
101 # The restore should read from TestVolume002, which was on drive 1
102 grep TestVolume002 ${cwd}/tmp/log2.out >/dev/null 2>&1
103 # Note rstat may already be set, so we don't just store into it
104 if [ $? != 0 ] ; then
105    rstat=$?
106 fi
107
108 #
109 # Delete .c files because we will only restored the txt files
110 #
111 rm -f ${cwd}/tmp/build/*.c
112 check_restore_tmp_build_diff
113
114 end_test