]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/bscan-test
Turn off two failing tests for the moment
[bacula/bacula] / regress / tests / bscan-test
1 #!/bin/sh
2 #
3 # Run a simple backup of the Bacula build directory but 
4 #   split the archive into two volumes then bscan it
5 #   into the catalog after the backup. It also to a limited
6 #   extent tests the purge volume and delete volume commands.
7 #
8
9 TestName="bscan-test"
10 JobName=bscan
11 . scripts/functions
12
13 scripts/cleanup
14 scripts/copy-test-confs
15 echo "${cwd}/build" >tmp/file-list
16
17 change_jobname NightlySave $JobName
18 start_test
19
20 cat <<END_OF_DATA >tmp/bconcmds
21 @$out /dev/null
22 messages
23 @$out tmp/log1.out
24 label storage=File1
25 TestVolume001
26 label storage=File1
27 TestVolume002
28 update Volume=TestVolume001 MaxVolBytes=3000000
29 run job=$JobName storage=File1
30 yes
31 wait
32 list volumes
33 list files jobid=1
34 sql
35 select * from JobMedia;
36
37
38 messages
39 @$out /dev/null
40 @#
41 @# now purge the Volume
42 @#
43 purge volume=TestVolume001
44 purge volume=TestVolume002
45 delete volume=TestVolume001
46 yes
47 delete volume=TestVolume002
48 yes
49 messages
50 quit
51 END_OF_DATA
52
53 run_bacula
54 check_for_zombie_jobs storage=File1
55 stop_bacula
56
57 echo "volume=TestVolume001" >tmp/bscan.bsr
58 echo "volume=TestVolume002" >>tmp/bscan.bsr
59
60 if test "$debug" -eq 1 ; then
61   bin/bscan -w working -u regress -n regress -m -s -v -b tmp/bscan.bsr -c bin/bacula-sd.conf ${cwd}/tmp                   
62 else
63   bin/bscan -w working -u regress -n regress -m -s -v -b tmp/bscan.bsr -c bin/bacula-sd.conf ${cwd}/tmp 2>&1 >tmp/log3.out
64 fi
65
66 cat <<END_OF_DATA >tmp/bconcmds
67 @$out /dev/null
68 messages
69 @$out tmp/log2.out
70 @# 
71 @# now do a restore
72 @#
73 @#setdebug level=400 storage=File1
74 restore bootstrap=tmp/kern.bsr where=tmp/bacula-restores select all storage=File1 done
75 yes
76 wait
77 messages
78 @$out
79 quit
80 END_OF_DATA
81
82 # now run restore
83 run_bacula
84 check_for_zombie_jobs storage=File1
85 stop_bacula
86
87 check_two_logs
88 check_restore_diff
89 end_test