]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/scratch-pool-test
Final changes
[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 set_debug 0
18
19 . config.out
20 if test x${AUTOCHANGER} = x/dev/null ; then
21    echo "two-volume-test skipped. No autochanger."
22    exit
23 fi
24 cwd=`pwd`
25 scripts/cleanup
26 scripts/copy-2disk-confs
27 scripts/prepare-two-disks
28  
29 echo "${cwd}/build" >/tmp/file-list
30
31 outf="tmp/sed_tmp"
32 echo "s%# Maximum File Size%  Maximum File Size%g" >${outf}
33 cp ${cwd}/bin/bacula-sd.conf ${cwd}/tmp/1
34 sed -f ${outf} ${cwd}/tmp/1 >${cwd}/bin/bacula-sd.conf
35
36 change_jobname NightlySave $JobName
37 start_test
38
39 # Write out bconsole commands
40 cat <<END_OF_DATA >tmp/bconcmds
41 @$out /dev/null
42 messages
43 @$out tmp/log1.out
44 label storage=DDS-4 volume=TestVolume001 slot=1 pool=Scratch drive=0
45 label storage=DDS-4 volume=TestVolume002 slot=2 pool=Scratch drive=0
46 update Volume=TestVolume001 MaxVolBytes=2000000 pool=Scratch drive=0
47 update Volume=TestVolume001 inchanger=no pool=Scratch drive=0
48 @#setdebug level=200 storage=DDS-4
49 llist volume=TestVolume001
50 llist volume=TestVolume002
51 run job=$JobName yes
52 wait
53 messages
54 list volumes
55 llist volume=TestVolume001
56 @# 
57 @# now do a restore
58 @#
59 @$out tmp/log2.out
60 restore where=${cwd}/tmp/bacula-restores select all storage=DDS-4 done
61 yes
62 wait
63 messages
64 @$out
65 quit
66 END_OF_DATA
67
68 run_bacula
69 check_for_zombie_jobs storage=DDS-4
70 stop_bacula
71
72 check_two_logs
73 check_restore_diff
74 end_test