]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/migration-volume-test
updates
[bacula/bacula] / regress / tests / migration-volume-test
1 #!/bin/sh
2 #
3 # Run a backup of the Bacula build directory on two Volumes
4 #   then migrate it to another device.             
5 #
6 # This script uses the virtual disk autochanger
7 #
8 TestName="migration-volume-test"
9 JobName=MigVolBackup
10 . scripts/functions
11 set_debug 0 
12
13 . config.out
14
15 scripts/cleanup
16 scripts/copy-migration-confs
17 scripts/prepare-two-disks
18 echo "${cwd}/build" >/tmp/file-list
19 #cp ${cwd}/bin/bacula-sd.conf ${cwd}/tmp/1
20 #sed "s%# Maximum File Size%  Maximum File Size%" ${cwd}/tmp/1 >${cwd}/bin/bacula-sd.conf
21
22 change_jobname NightlySave $JobName
23 start_test
24
25 #
26 # Note, we first backup into Pool Default, 
27 #          then Migrate into Pool Full. 
28 #              Pool Default uses Storage=File
29 #              Pool Full    uses Storage=DiskChanger
30
31 # Write out bconsole commands
32 cat <<END_OF_DATA >tmp/bconcmds
33 @output
34 messages
35 @$out tmp/log1.out
36 label storage=File volume=FileVolume001 Pool=Default
37 label storage=File volume=FileVolume002 Pool=Default
38 update Volume=FileVolume001 MaxVolBytes=3000000 pool=Default
39 label storage=DiskChanger volume=ChangerVolume001 slot=1 Pool=Full drive=0
40 label storage=DiskChanger volume=ChangerVolume002 slot=2 Pool=Full drive=0
41 list volumes
42 @# 
43 run job=$JobName yes
44 wait
45 run job=$JobName yes
46 wait
47 update volume=FileVolume001 VolStatus=Used
48 update volume=FileVolume002 VolStatus=Used
49 list volumes
50 @# should migrate two jobs
51 @# setdebug level=11 dir
52 @echo "Run migrate-volume Job"
53 @#setdebug level=100 dir
54 run job=migrate-volume yes
55 list volumes
56 @sleep 3
57 status storage=DiskChanger
58 @sleep 1
59 status storage=DiskChanger
60 @sleep 1
61 status storage=DiskChanger
62 wait
63 purge volume=FileVolume001
64 purge volume=FileVolume002
65 @echo "Now do a restore"
66 messages
67 @# 
68 @# now do a restore
69 @#
70 @$out tmp/log2.out
71 restore where=${cwd}/tmp/bacula-restores select storage=DiskChanger
72 unmark *
73 mark *
74 done
75 yes
76 wait
77 messages
78 @output
79 quit
80 END_OF_DATA
81
82 run_bacula
83 check_for_zombie_jobs storage=File
84 stop_bacula
85
86 check_two_logs
87 check_restore_diff
88 end_test