]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/two-pool-test
Backport from Bacula Enterprise
[bacula/bacula] / regress / tests / two-pool-test
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 #  Note, we use the virtual disk autochanger.
16 #
17 TestName="two-pool-test"
18 JobName=Two-pool
19 . scripts/functions
20
21 cwd=`pwd`
22 scripts/cleanup
23 scripts/copy-2disk-confs
24 scripts/prepare-disk-changer
25  
26 # Make a relatively large backup set 5 x source code directory
27 #  Reduced to 1 for portable
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
32 start_test
33
34 # Write out bconsole commands to a file
35 cat <<END_OF_DATA >tmp/bconcmds
36 @output /dev/null
37 messages
38 @$out tmp/log1.out
39 setdebug level=20 storage=tape
40 label storage=tape volume=TestVolume001 slot=1 pool=Full drive=0
41 label storage=tape volume=TestVolume002 slot=2 pool=Default drive=0
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 @# wait between starting jobs
47 @sleep 30
48 @#setdebug level=100 storage=tape
49 run job=NightlySave2 level=Full pool=Full yes
50 run job=NightlySave2 level=Full pool=Full yes
51 @sleep 10
52 messages
53 @sleep 10
54 messages
55 @sleep 10
56 status storage=tape
57 messages
58 wait
59 list volumes
60 messages
61 @# 
62 @# now do a restore
63 @#
64 @$out tmp/log2.out
65 release storage=tape drive=0
66 release storage=tape drive=1
67 restore where=${cwd}/tmp/bacula-restores select all storage=tape done
68 yes
69 wait
70 messages
71 quit
72 END_OF_DATA
73
74 run_bacula
75 check_for_zombie_jobs storage=tape
76 stop_bacula
77
78 check_two_logs
79 check_restore_diff
80 end_test