]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/migration-time-test
Merge branch 'master' of ssh://bacula.git.sourceforge.net/gitroot/bacula/bacula
[bacula/bacula] / regress / tests / migration-time-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-time-test"
9 JobName=MigrationJobSave
10 . scripts/functions
11
12
13 scripts/cleanup
14 scripts/copy-migration-confs
15 scripts/prepare-disk-changer
16 echo "${cwd}/build" >${cwd}/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 >${cwd}/tmp/bconcmds
29 @output
30 messages
31 @$out ${cwd}/tmp/log1.out
32 label storage=File volume=FileVolume001 Pool=Default
33 label storage=File volume=FileVolume002 Pool=Special
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 list volumes
37 @# run three jobs
38 run job=$JobName pool=Special level=Full yes
39 run job=$JobName level=Full yes
40 run job=$JobName level=Full yes
41 wait
42 update volume=FileVolume001 VolStatus=Used
43 update volume=FileVolume002 VolStatus=Used
44 @sleep 3
45 llist jobid=2,3
46 list jobs
47 list volumes
48 @#setdebug level=20 dir
49 @# should migrate only jobid=2 and 3
50 run job=migrate-time yes
51 wait
52 messages
53 wait
54 list jobs
55 list volumes
56 @# 
57 @# now do a restore
58 @#
59 @$out ${cwd}/tmp/log2.out
60 restore where=${cwd}/tmp/bacula-restores select storage=DiskChanger
61 unmark *
62 mark *
63 done
64 yes
65 wait
66 messages
67 @output
68 quit
69 END_OF_DATA
70
71 run_bacula
72 check_for_zombie_jobs storage=File
73 stop_bacula
74
75 for i in 1 2 3; do
76     get_mig_info $i ${cwd}/tmp/log1.out
77
78     if [ "$i" -eq 1 -a -n "$RET" ]; then
79         bstat=2
80         print_debug "The first job should not have been copied"
81
82     elif [ "$i" -ne 1 -a -z "$RET" ]; then
83         bstat=2
84         print_debug "Other job should have been copied"
85     fi
86 done
87
88 check_two_logs
89 check_restore_diff
90 end_test