]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/three-pool-test
Tweak restart base
[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 TestName="three-pool-disk"
11 JobName="threepooldisk"
12 . scripts/functions
13
14 scripts/cleanup
15 scripts/copy-2disk-drive-confs
16 scripts/prepare-disk-changer
17 CLIENT=2drive2disk
18
19 echo "${cwd}/build" >${cwd}/tmp/file-list
20 change_jobname NightlySave $JobName
21 start_test
22
23 # Turn off Prefer Mounted Volumes so we use 2 drives
24 outf="${cwd}/tmp/sed_tmp"
25 echo "s%# Prefer Mounted Volumes%  Prefer Mounted Volumes%g" >${outf}
26 cp ${cwd}/bin/bacula-dir.conf ${cwd}/tmp/1
27 # Comment the next line out to write everything to one drive
28 #  otherwise, it writes the two jobs to different drives
29 sed -f ${outf} ${cwd}/tmp/1 >${cwd}/bin/bacula-dir.conf
30
31 # Write out bconsole commands
32 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
33 @out /dev/null
34 messages
35 @$out ${cwd}/tmp/log1.out
36 @#setdebug level=200 storage=tape
37 @#setdebug level=200 client=$CLIENT 
38 label storage=tape volume=TestVolume001 slot=1 Pool=Default drive=0
39 label storage=tape volume=TestVolume002 slot=2 Pool=Full    drive=0
40 label storage=tape volume=TestVolume003 slot=3 Pool=Inc     drive=1
41 status storage=tape
42 run job=$JobName level=Full Pool=Default yes
43 run job=$JobName level=Full Pool=Default yes
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 setdebug level=200 storage=tape
48 @sleep 10
49 status storage=tape
50 list volumes
51 wait
52 list volumes
53 list jobs
54 status storage=tape
55 messages
56 quit
57 END_OF_DATA
58
59 # exit
60
61 run_bacula
62 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
63 @out /dev/null
64 messages
65 @# 
66 @# now do a restore
67 @#
68 @$out ${cwd}/tmp/log2.out
69 restore where=${cwd}/tmp/bacula-restores select all storage=tape done
70 yes
71 wait
72 messages
73 quit
74 END_OF_DATA
75
76 run_bconsole
77
78 check_for_zombie_jobs storage=tape
79 stop_bacula
80
81 check_two_logs
82 check_restore_diff
83
84 end_test