]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/scratch-pool-test
Copy trunk regress into Branch
[bacula/bacula] / regress / tests / scratch-pool-test
1 #!/bin/sh
2 #
3 # Run a simple backup of the Bacula build directory 
4 #  to two tapes where the maximum tape file size is set to 1M
5 #  Note, this test simulates the tape filling and writing to
6 #   the next tape. One minor wrinkle: we create the two tapes
7 #   in the Scratch pool, so they should be switched to the Default
8 #   Pool automatically.
9 # We set TestVolume001 to not in the changer, so the algorithm
10 #   should find TestVolume002 and use it rather than blocking.
11 #
12 #  Note we use the viritual disk autochanger
13 #
14 TestName="scratch-pool-test"
15 JobName=scratch-pool
16 . scripts/functions
17
18 if test x${AUTOCHANGER} = x/dev/null ; then
19    echo "two-volume-test skipped. No autochanger."
20    exit
21 fi
22 cwd=`pwd`
23 scripts/cleanup
24 scripts/copy-2disk-confs
25 scripts/prepare-two-disks
26  
27 echo "${cwd}/build" >${cwd}/tmp/file-list
28
29 outf="${cwd}/tmp/sed_tmp"
30 echo "s%# Maximum File Size%  Maximum File Size%g" >${outf}
31 cp ${cwd}/bin/bacula-sd.conf ${cwd}/tmp/1
32 sed -f ${outf} ${cwd}/tmp/1 >${cwd}/bin/bacula-sd.conf
33
34 change_jobname NightlySave $JobName
35 start_test
36
37 # Write out bconsole commands
38 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
39 @$out /dev/null
40 messages
41 @$out ${cwd}/tmp/log1.out
42 label storage=DDS-4 volume=TestVolume001 slot=1 pool=Scratch drive=0
43 label storage=DDS-4 volume=TestVolume002 slot=2 pool=Scratch drive=0
44 update Volume=TestVolume001 MaxVolBytes=2000000 pool=Scratch drive=0
45 update Volume=TestVolume001 inchanger=no pool=Scratch drive=0
46 @#setdebug level=200 storage=DDS-4
47 llist volume=TestVolume001
48 llist volume=TestVolume002
49 run job=$JobName yes
50 wait
51 messages
52 list volumes
53 llist volume=TestVolume001
54 @# 
55 @# now do a restore
56 @#
57 @$out ${cwd}/tmp/log2.out
58 restore where=${cwd}/tmp/bacula-restores select all storage=DDS-4 done
59 yes
60 wait
61 messages
62 @$out
63 quit
64 END_OF_DATA
65
66 run_bacula
67 check_for_zombie_jobs storage=DDS-4
68 stop_bacula
69
70 check_two_logs
71 check_restore_diff
72 end_test