]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/two-pool-changer
regress: tweak prune-migration-test
[bacula/bacula] / regress / tests / two-pool-changer
1 #!/bin/sh
2 #
3 # This is Arno's test.  It uses two pools, two tapes, and
4 #  an autochanger. Note, the Director has three Pools in its 
5 #  conf:  Default, Full, and Inc.  Default is used in the
6 #  NightlySave job by default.  What is backed up is what
7 #  is in ${cwd}/tmp/file-list, which is by default the Bacula
8 #  source code (i.e. the build directory).
9 #
10 TestName="two-pool-changer"
11 JobName=twopoolchanger
12 . scripts/functions
13
14 require_tape_drive
15 require_autochanger
16
17 scripts/cleanup
18 scripts/copy-2tape-confs
19 echo "Prepare two tapes"
20 scripts/prepare-two-tapes
21 echo "Done prepare two tapes"
22  
23 # Make a relatively large backup set 5 x source code directory
24 echo "${cwd}/build" >${cwd}/tmp/file-list
25 echo "${cwd}/build" >>${cwd}/tmp/file-list
26 echo "${cwd}/build" >>${cwd}/tmp/file-list
27 # echo "${cwd}/build" >>${cwd}/tmp/file-list
28 # echo "${cwd}/build" >>${cwd}/tmp/file-list
29
30 start_test
31
32 # Write out bconsole commands to a file
33 cat <<END_OF_DATA >tmp/bconcmds
34 @$out /dev/null
35 messages
36 @$out tmp/log1.out
37 label storage=tape volume=TestVolume001 slot=$SLOT1 pool=Full drive=$DRIVE1
38 label storage=tape volume=TestVolume002 slot=$SLOT2 pool=Default drive=$DRIVE1
39 list volumes
40 @# Start job with Client run before and sleep
41 run job=NightlySave1 level=Full pool=Default yes
42 run job=NightlySave1 level=Full pool=Default yes
43 #run job=NightlySave1 level=Full pool=Default yes
44 @# wait between starting jobs
45 @sleep 60
46 setdebug level=190 storage=tape
47 run job=NightlySave2 level=Full pool=Full yes
48 run job=NightlySave2 level=Full pool=Full yes
49 #run job=NightlySave2 level=Full pool=Full yes
50 @sleep 10
51 status storage=tape
52 messages
53 wait
54 list volumes
55 messages
56 @# 
57 @# now do a restore
58 @#
59 @$out tmp/log2.out
60 restore where=${cwd}/tmp/bacula-restores select all storage=tape done
61 yes
62 wait
63 messages
64 quit
65 END_OF_DATA
66
67 run_bacula
68 check_for_zombie_jobs storage=tape
69 stop_bacula
70
71 check_two_logs
72 check_restore_diff
73 end_test