]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/restore-seek-tape
Updates
[bacula/bacula] / regress / tests / restore-seek-tape
1 #!/bin/sh
2 #
3 # Run a simple backup of the Bacula build directory 
4 #   to a tape where the maximum tape file size is set to 1M
5 #   then restore a few files from it.  Note, by setting the maximum 
6 #   file size to 1M, it runs very slow. This tests the
7 #   seeking capability
8 #
9 TestName="restore-seek-tape"
10 JobName=restore-tape-seek
11 . scripts/functions
12 set_debug 0
13
14 copy_tape_confs
15 echo "${cwd}/tmp/build" >/tmp/file-list
16 rm -rf ${cwd}/tmp/build
17 mkdir ${cwd}/tmp/build
18 # Copy only the .c files (to be restored)
19 #  set files to "*.c" for all c files
20 files="ua_tree.c ua_update.c"
21 # files="*.c"
22 for i in ${files}; do
23    cp -p ${cwd}/build/src/dird/${i} ${cwd}/tmp/build
24 done
25 cd ${cwd}/tmp/build
26 ls >../1
27 cd ..
28 sed s%\^%${cwd}/tmp/build/% 1 >restore-list
29 #
30 # At this point restore-list contains the list
31 #  of files we will restore
32 #
33 rm -f 1
34 cd ${cwd}
35 #
36 # Now arrange to backup *everything*
37 #
38 rm -rf  ${cwd}/tmp/build
39 mkdir ${cwd}/tmp/build
40 cp -fp ${cwd}/build/src/dird/* ${cwd}/tmp/build
41 #
42 # Enable MaximumFileSize to ensure lots of JobMedia records and thus
43 #  lots of seeking
44 #
45 cp ${cwd}/bin/bacula-sd.conf ${cwd}/tmp/1
46 sed "s%# Maximum File Size = 1000000%  Maximum File Size = 10KB%" ${cwd}/tmp/1 >${cwd}/bin/bacula-sd.conf
47
48 change_jobname NightlySave $JobName
49 start_test
50
51 cat <<END_OF_DATA >tmp/bconcmds
52 @$out /dev/null
53 messages
54 @$out tmp/log1.out
55 label storage=DDS-4 volume=TestVolume001 pool=Default
56 run job=$JobName yes
57 wait
58 messages
59 @#
60 @# now do a restore
61 @#
62 @$out tmp/log2.out
63 setdebug level=30 fd
64 setdebug level=10 storage=DDS-4
65 sql
66 @# print the JobMedia records
67 select * from JobMedia;
68
69 restore bootstrap=${cwd}/tmp/kern.bsr where=${cwd}/tmp/bacula-restores storage=DDS-4
70 7
71 <${cwd}/tmp/restore-list
72
73 yes
74 wait
75 messages
76 @$out
77 quit
78 END_OF_DATA
79
80 run_bacula
81 check_for_zombie_jobs storage=DDS-4
82 stop_bacula
83
84 # Now setup a control directory of only what we *should* restore
85 rm -rf ${cwd}/tmp/build
86 mkdir  ${cwd}/tmp/build
87 for i in ${files}; do
88    cp -p ${cwd}/build/src/dird/${i} ${cwd}/tmp/build
89 done
90
91 check_two_logs
92 check_restore_tmp_build_diff
93 end_test