]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/bsr-opt-test
Updates
[bacula/bacula] / regress / tests / bsr-opt-test
1 #!/bin/sh
2 #
3 # Run a simple backup of the Bacula build directory but 
4 #   split the archive into two volumes, then restore
5 #   files on only one of the volumes and ensure that
6 #   the other volume is not used.  I.e. bsr optimization
7 #   works.
8 #
9 TestName="bsr-opt-test"
10 JobName=bsr-opt
11 . scripts/functions
12
13 scripts/cleanup
14 scripts/copy-test-confs
15 echo "${cwd}/build" >${cwd}/tmp/file-list
16
17 change_jobname NightlySave $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=File1 volume=TestVolume001
25 label storage=File1 volume=TestVolume002
26 update Volume=TestVolume001 MaxVolBytes=3000000
27 run job=$JobName storage=File1 yes
28 wait
29 messages
30 @# 
31 @# now do a restore
32 @#
33 @$out ${cwd}/tmp/log2.out
34 setdebug level=150 storage=File1
35 restore bootstrap=${cwd}/working/restore.bsr where=${cwd}/tmp/bacula-restores select storage=File1
36 unmark *
37 cd ${cwd}/build/src/cats
38 mark *
39 ls
40 done
41 yes
42 wait
43 messages
44 @$out
45 quit
46 END_OF_DATA
47
48 run_bacula
49 check_for_zombie_jobs storage=File1
50 stop_bacula
51 #
52 # This test is not really reliable. What we want to do is
53 #   to select files on only one Volume, then insure here
54 #   that only one Volume is chosen.
55 #
56 grep TestVolume002 working/restore.bsr 2>&1 >/dev/null
57 bsrstat=$?
58 check_two_logs
59
60 diff -r build/src/cats  ${cwd}/tmp/bacula-restores${cwd}/build/src/cats 2>&1 >/dev/null
61 if [ $? != 0 -o $bsrstat != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
62    echo " "
63    echo " "
64    echo "  !!!!! bsr-opt-test Bacula source failed!!! !!!!! "
65    echo "  !!!!! bsr-opt-test failed!!! !!!!! " >>test.out
66    if [ $bstat != 0 -o $rstat != 0 ] ; then
67       echo "  !!!!! Bad Job termination status     !!!!! "
68       echo "  !!!!! Bad Job termination status     !!!!! " >>test.out
69    elif [ $bsrstat != 0 ] ; then
70       echo "  !!!!! Volume selection error         !!!!! "
71       echo "  !!!!! Volume selection error         !!!!! " >>test.out
72    else
73       echo "  !!!!! Restored files differ          !!!!! "
74       echo "  !!!!! Restored files differ          !!!!! " >>test.out
75    fi
76    echo " "
77    exit 1
78 else
79    echo "  ===== bsr-opt-test Bacula source OK `date +%R:%S` ===== "
80    echo "  ===== bsr-opt-test OK `date +%R:%S` ===== " >>test.out
81    scripts/cleanup
82 fi