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