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.
9 TestName="restore-disk-seek-test"
10 JobName=restore-disk-seek
14 scripts/copy-test-confs
15 echo "${cwd}/tmp/build" >${cwd}/tmp/file-list
16 rm -rf ${cwd}/tmp/build
17 mkdir -p ${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"
23 cp -p ${cwd}/build/src/dird/${i} ${cwd}/tmp/build
28 sed s%\^%${cwd}/tmp/build/% 1 | sort | uniq >restore-list
30 # At this point restore-list contains the list
31 # of files we will restore
36 # Now arrange to backup *everything*
38 rm -rf ${cwd}/tmp/build
39 mkdir -p ${cwd}/tmp/build
40 cp -fp ${cwd}/build/src/dird/* ${cwd}/tmp/build
42 # Enable MaximumFileSize to ensure lots of JobMedia records and thus
45 cp ${cwd}/bin/bacula-sd.conf ${cwd}/tmp/1
46 sed "s%# Maximum File Size% Maximum File Size%" ${cwd}/tmp/1 >${cwd}/bin/bacula-sd.conf
48 change_jobname CompressedTest $JobName
51 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
54 @$out ${cwd}/tmp/log1.out
55 label storage=File volume=TestVolume001
62 @$out ${cwd}/tmp/log2.out
64 setdebug level=11 storage=File
66 @# print the JobMedia records
67 select * from JobMedia;
69 restore bootstrap=${cwd}/tmp/kern.bsr where=${cwd}/tmp/bacula-restores storage=File
71 <${cwd}/tmp/restore-list
80 check_for_zombie_jobs storage=File
83 # Now setup a control directory of only what we *should* restore
84 rm -rf ${cwd}/tmp/build
85 mkdir -p ${cwd}/tmp/build
87 cp -p ${cwd}/build/src/dird/${i} ${cwd}/tmp/build
91 check_restore_tmp_build_diff