]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/three-pool-test
Update
[bacula/bacula] / regress / tests / three-pool-test
1 #!/bin/sh
2 #
3 # Run a simple backup of the Bacula build directory. Create three
4 #   tapes, each in a different pool, then run two jobs both of which
5 #   want the tape that is not loaded.  Note, they both have     
6 #   prefers non-mounted tapes.  This should expose bug #801
7 #
8 # This script uses the virtual disk autochanger and two drives
9 #
10 . config.out
11 TestName="three-pool-disk"
12 JobName="threepooldisk"
13 . scripts/functions
14
15 set_debug 1
16 cwd=`pwd`
17
18 scripts/cleanup
19 scripts/copy-2disk-drive-confs
20 scripts/prepare-two-disks
21
22 echo "${cwd}/build" >/tmp/file-list
23 change_jobname NightlySave $JobName
24 start_test
25
26 # Turn off Prefer Mounted Volumes so we use 2 drives
27 outf="tmp/sed_tmp"
28 echo "s%# Prefer Mounted Volumes%  Prefer Mounted Volumes%g" >${outf}
29 cp ${cwd}/bin/bacula-dir.conf ${cwd}/tmp/1
30 # Comment the next line out to write everything to one drive
31 #  otherwise, it writes the two jobs to different drives
32 sed -f ${outf} ${cwd}/tmp/1 >${cwd}/bin/bacula-dir.conf
33
34 # Write out bconsole commands
35 cat <<END_OF_DATA >tmp/bconcmds
36 @output /dev/null
37 messages
38 @$out tmp/log1.out
39 @#setdebug level=150 storage=DDS-4
40 label storage=DDS-4 volume=TestVolume001 slot=1 Pool=Default drive=0
41 label storage=DDS-4 volume=TestVolume002 slot=2 Pool=Full    drive=0
42 label storage=DDS-4 volume=TestVolume003 slot=3 Pool=Inc     drive=1
43 status storage=DDS-4
44 run job=$JobName level=Full Pool=Default yes
45 run job=$JobName level=Full Pool=Default yes
46 run job=$JobName level=Full Pool=Default yes
47 run job=$JobName level=Full Pool=Default yes
48 run job=$JobName level=Full Pool=Default yes
49 @sleep 10
50 status storage=DDS-4
51 list volumes
52 wait
53 list volumes
54 list jobs
55 status storage=DDS-4
56 messages
57 quit
58 END_OF_DATA
59
60 # exit
61
62 run_bacula
63 cat <<END_OF_DATA >tmp/bconcmds
64 @$out /dev/null
65 messages
66 @# 
67 @# now do a restore
68 @#
69 @$out tmp/log2.out
70 restore where=${cwd}/tmp/bacula-restores select all storage=DDS-4 done
71 yes
72 wait
73 messages
74 @$out
75 quit
76 END_OF_DATA
77
78 run_bconsole
79 check_for_zombie_jobs storage=DDS-4
80 stop_bacula
81 check_two_logs
82 check_restore_tmp_build_diff
83
84 end_test