]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/two-pool-test
Delete unwanted subdirectory
[bacula/bacula] / regress / tests / two-pool-test
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 /tmp/file-list, which is by default the Bacula
8 #  source code (i.e. the build directory).
9 #
10 #  Note, we use the virtual disk autochanger.
11 #
12 TestName="two-pool-test"
13 JobName=Two-pool
14 . scripts/functions
15
16 cwd=`pwd`
17 scripts/cleanup
18 scripts/copy-2disk-confs
19 scripts/prepare-two-disks
20  
21 # Make a relatively large backup set 5 x source code directory
22 #  Reduced to 1 for portable
23 echo "${cwd}/build" >/tmp/file-list
24 echo "${cwd}/build" >/tmp/file-list
25 echo "${cwd}/build" >/tmp/file-list
26 echo "${cwd}/build" >/tmp/file-list
27
28 start_test
29
30 # Write out bconsole commands to a file
31 cat <<END_OF_DATA >tmp/bconcmds
32 @output /dev/null
33 messages
34 @$out tmp/log1.out
35 @#setdebug level=150 storage=DDS-4
36 label storage=DDS-4 volume=TestVolume001 slot=1 pool=Full drive=0
37 label storage=DDS-4 volume=TestVolume002 slot=2 pool=Default drive=0
38 list volumes
39 @# Start job with Client run before and sleep
40 run job=NightlySave1 level=Full pool=Default yes
41 run job=NightlySave1 level=Full pool=Default yes
42 run job=NightlySave1 level=Full pool=Default yes
43 @# wait between starting jobs
44 @sleep 30
45 @#setdebug level=100 storage=DDS-4
46 run job=NightlySave2 level=Full pool=Full yes
47 run job=NightlySave2 level=Full pool=Full yes
48 run job=NightlySave2 level=Full pool=Full yes
49 @sleep 10
50 messages
51 @sleep 10
52 messages
53 @sleep 10
54 status storage=DDS-4
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=DDS-4 done
64 yes
65 wait
66 messages
67 @$out
68 quit
69 END_OF_DATA
70
71 run_bacula
72 check_for_zombie_jobs storage=DDS-4
73 stop_bacula
74
75 check_two_logs
76 check_restore_diff
77 end_test