]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/migration-volume-test
Update
[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 list jobs
57 @sleep 3
58 status storage=DiskChanger
59 @sleep 1
60 status storage=DiskChanger
61 @sleep 1
62 status storage=DiskChanger
63 wait
64 list jobs
65 sql
66 select * from JobMedia where JobId=1;
67
68 @# ensure we don't pickup old backup by purging volume
69 purge volume=FileVolume001
70 purge volume=FileVolume002
71 @echo "Now do a restore"
72 messages
73 @# 
74 @# now do a restore
75 @#
76 @$out tmp/log2.out
77 restore where=${cwd}/tmp/bacula-restores select storage=DiskChanger
78 unmark *
79 mark *
80 done
81 yes
82 wait
83 messages
84 @output
85 quit
86 END_OF_DATA
87
88 run_bacula
89 check_for_zombie_jobs storage=File
90 stop_bacula
91
92 check_two_logs
93 check_restore_diff
94 end_test