]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/restore-disk-seek-test
4a0514b669f3c97b366b9a249e1e9223ece1c79b
[bacula/bacula] / regress / tests / restore-disk-seek-test
1 #!/bin/sh
2 #
3 # Run a backup of the full bacula build directory, but with the
4 #   Maximum File Size set. Then do a restore of a few files to kick in
5 #   disk seeking (not yet enabled), and ensure that the restored files
6 #   match. Even though disk seeking is not yet enabled, this is a good test,
7 #   and once it is enabled, this will test it.
8 #
9 cwd=`pwd`
10 scripts/copy-test-confs
11 scripts/cleanup
12 echo "${cwd}/tmp/build" >/tmp/file-list
13 rm -rf ${cwd}/tmp/build
14 mkdir ${cwd}/tmp/build
15 # Copy only the .c files (to be restored)
16 cp -p ${cwd}/build/src/dird/*.c ${cwd}/tmp/build
17 cd ${cwd}/tmp/build
18 ls >../1
19 cd ..
20 sed s%\^%${cwd}/tmp/build/% 1 >restore-list
21 # At this point restore-list contains the list
22 #  of files we will restore
23 rm -f 1
24 cd ${cwd}
25 # Now backup *everything* 
26 rm -rf  ${cwd}/tmp/build
27 mkdir ${cwd}/tmp/build
28 cp -fp ${cwd}/build/src/dird/* ${cwd}/tmp/build
29 # Enable MaximumFileSize
30 cp ${cwd}/bin/bacula-sd.conf ${cwd}/tmp/1
31 sed "s%# Maximum File Size%  Maximum File Size%" ${cwd}/tmp/1 >${cwd}/bin/bacula-sd.conf
32
33 echo " "
34 echo " "
35 echo " === Starting restore-disk-seek-test ==="
36 echo " === Starting restore-disk-seek-test ===" >>working/log
37 echo " "
38
39 bin/bacula start -v -v 2>&1 >/dev/null
40 bin/bconsole -c bin/bconsole.conf <<END_OF_DATA
41 @output /dev/null
42 messages
43 @output tmp/log1.out
44 label storage=File volume=TestVolume001
45 run job=CompressedTest yes
46 wait
47 messages
48 @# 
49 @# now do a restore
50 @#
51 @output tmp/log2.out
52 sql
53 select * from JobMedia;
54
55 restore where=${cwd}/tmp/bacula-restores storage=File
56 7
57 <${cwd}/tmp/restore-list
58
59 yes
60 wait
61 messages
62 @output
63 quit
64 END_OF_DATA
65 scripts/check_for_zombie_jobs storage=File
66 bin/bacula stop 2>&1 >/dev/null
67 # Now setup a control directory of only what we *should* restore
68 rm -rf ${cwd}/tmp/build
69 mkdir  ${cwd}/tmp/build
70 cp -p ${cwd}/build/src/dird/*.c ${cwd}/tmp/build
71 grep "^Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null
72 bstat=$?
73 grep "^Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null
74 rstat=$?
75 diff -r tmp/build tmp/bacula-restores${cwd}/tmp/build 2>&1 >/dev/null
76 if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
77    echo " "
78    echo " "
79    echo "  !!!!! restore-disk-seek-test Bacula source failed!!! !!!!! "
80    echo "  !!!!! restore-disk-seek-test failed!!! !!!!! " >>test.out
81    echo " "
82 else
83    echo "  ===== restore-disk-seek-test Bacula source OK ===== "
84    echo "  ===== restore-disk-seek-test OK ===== " >>test.out
85 #  scripts/cleanup
86 #  rm -rf ${cwd}/tmp/build
87 fi