]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/restart-base-job-test
regress: tweak restart base job
[bacula/bacula] / regress / tests / restart-base-job-test
1 #!/bin/sh
2 #
3 # Run a backup of the build directory but force it to have
4 #   a comm error, and check that it restarts correctly.
5 #
6 TestName="restart-base-job-test"
7 JobName=RestartJobWithBase
8 . scripts/functions
9
10 scripts/cleanup
11 scripts/copy-test-confs
12 echo "${cwd}/build" >${cwd}/tmp/file-list
13
14 change_jobname NightlySave $JobName
15
16 $bperl -e "add_attribute('$conf/bacula-dir.conf', 'Base', '$JobName', 'Job', '$JobName')"
17 $bperl -e "add_attribute('$conf/bacula-dir.conf', 'Accurate', 'yes', 'Job', '$JobName')"
18 start_test
19
20 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
21 @$out /dev/null
22 messages
23 @$out ${cwd}/tmp/log1.out
24 label storage=File volume=TestVolume001
25 run job=$JobName level=Base yes
26 wait
27 messages
28 @exec "touch $cwd/build/po/fr.po"
29 setdebug level=0 trace=0 hangup=100 client
30 setdebug level=200 trace=1 dir
31 run job=$JobName yes
32 wait
33 messages
34 setdebug level=0 trace=0 dir
35 @$out ${cwd}/tmp/log3.out
36 list jobs
37 quit
38 END_OF_DATA
39
40 run_bacula  
41
42 scripts/check_for_zombie_jobs storage=File
43
44 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
45 @$out /dev/null
46 messages
47 @# 
48 @# now do a restore
49 @#
50 @$out ${cwd}/tmp/log2.out
51 restore where=$tmp/bacula-restores storage=File select all done
52 yes
53 wait
54 messages
55 quit
56 END_OF_DATA
57
58 run_bconsole
59 scripts/check_for_zombie_jobs storage=File
60 stop_bacula
61
62 check_two_logs
63 check_restore_diff
64
65 nb_B=`awk -F '|' '/RestartJob.+ B.+ B/ { gsub(/,/, "");print $7}' $tmp/log3.out`
66 nb_F=`awk -F '|' '/RestartJob.+F/ { gsub(/,/, ""); print $7}' $tmp/log3.out`
67
68 if [ $nb_F -ne $nb_B ]; then
69     print_debug "ERROR: Base and Full should have the same number of files"
70     estat=1
71 fi 
72
73 nb_B=`awk -F '|' '/RestartJob.+B.+B/ { gsub(/,/, ""); print $8}' $tmp/log3.out`
74 nb_F=`awk -F '|' '/RestartJob.+F/ { gsub(/,/, ""); print $8}' $tmp/log3.out`
75
76 if [ $nb_F -gt 1000000 ]; then
77     print_debug "ERROR: Base job should backup only one file"
78     estat=2
79 fi
80
81 end_test