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