#!/bin/sh # # Run a simple backup of the Bacula build directory then create some # new files, do an Incremental and restore those two files. # cwd=`pwd` scripts/copy-test-confs scripts/cleanup echo "${cwd}/tmp/build" >/tmp/file-list mkdir ${cwd}/tmp/build cp -p ${cwd}/build/src/dird/*.c ${cwd}/tmp/build cd ${cwd}/tmp echo "${cwd}/tmp/build/ficheriro1.txt" >restore-list echo "${cwd}/tmp/build/ficheriro2.txt" >>restore-list cd ${cwd} echo " " echo " " echo " === Starting incremental-test at `date +%R:%S` ===" echo " === Starting incremental-test at `date +%R:%S` ===" >>working/log echo " " bin/bacula start 2>&1 >/dev/null bin/bconsole -c bin/bconsole.conf <&1 >/dev/null @output /dev/null messages @output tmp/log1.out label storage=File volume=TestVolume001 label storage=File volume=TestVolume002 run job=CompressedTest yes wait messages quit END_OF_DATA scripts/check_for_zombie_jobs storage=File # # Now create two new files to be restored later # sleep 1 echo "ficheriro1.txt" >${cwd}/tmp/build/ficheriro1.txt cp -f ${cwd}/tmp/build/dird.c ${cwd}/tmp/build/ficheriro2.txt bin/bconsole -c bin/bconsole.conf <&1 >/dev/null @output /dev/null messages @output tmp/log1.out @# Force Incremental on the second Volume update volume=TestVolume001 VolStatus=Used run level=Differential job=CompressedTest yes wait messages quit END_OF_DATA sleep 1 touch ${cwd}/tmp/build/ficheriro1.txt touch ${cwd}/tmp/build/ficheriro2.txt bin/bconsole -c bin/bconsole.conf <&1 >/dev/null @output /dev/null messages @output tmp/log1.out run level=Incremental job=CompressedTest yes wait messages quit END_OF_DATA sleep 1 cd ${cwd}/tmp/build cp -f ficheriro2.txt 1 sed "s%a%b%g" 1 >ficheriro2.txt rm -f 1 cd ${cwd} bin/bconsole -c bin/bconsole.conf <&1 >/dev/null @output /dev/null messages @output tmp/log1.out run level=Differential job=CompressedTest yes wait messages quit END_OF_DATA sleep 1 touch ${cwd}/tmp/build/ficheriro1.txt touch ${cwd}/tmp/build/ficheriro2.txt bin/bconsole -c bin/bconsole.conf <&1 >/dev/null @output /dev/null messages @output tmp/log1.out run level=Incremental job=CompressedTest yes wait messages quit END_OF_DATA sleep 1 touch ${cwd}/tmp/build/ficheriro1.txt touch ${cwd}/tmp/build/ficheriro2.txt bin/bconsole -c bin/bconsole.conf <&1 >/dev/null @output /dev/null messages @output tmp/log1.out run level=Incremental job=CompressedTest yes wait messages quit END_OF_DATA sleep 1 touch ${cwd}/tmp/build/ficheriro1.txt touch ${cwd}/tmp/build/ficheriro2.txt bin/bconsole -c bin/bconsole.conf <&1 >/dev/null @output /dev/null messages @output tmp/log1.out run level=Incremental job=CompressedTest yes wait messages quit END_OF_DATA sleep 1 touch ${cwd}/tmp/build/ficheriro1.txt touch ${cwd}/tmp/build/ficheriro2.txt bin/bconsole -c bin/bconsole.conf <&1 >/dev/null @output /dev/null messages @output tmp/log1.out run level=Incremental job=CompressedTest yes wait messages @# @# now do a restore @# @output tmp/log2.out restore where=${cwd}/tmp/bacula-restores storage=File file=<${cwd}/tmp/restore-list yes wait messages @output quit END_OF_DATA scripts/check_for_zombie_jobs storage=File bin/bacula stop 2>&1 >/dev/null grep "^ Termination: *Backup OK" tmp/log1.out 2>&1 >/dev/null bstat=$? grep "^ Termination: *Restore OK" tmp/log2.out 2>&1 >/dev/null rstat=$? # # Delete .c files because we will only restored the txt files # rm -f tmp/build/*.c diff -r tmp/build tmp/bacula-restores${cwd}/tmp/build 2>&1 >/dev/null if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then echo " " echo " " echo " !!!!! incremental-test Bacula source failed!!! !!!!! " echo " !!!!! incremental-test failed!!! !!!!! " >>test.out if [ $bstat != 0 -o $rstat != 0 ] ; then echo " !!!!! Bad Job termination status !!!!! " echo " !!!!! Bad Job termination status !!!!! " >>test.out else echo " !!!!! Restored files differ !!!!! " echo " !!!!! Restored files differ !!!!! " >>test.out fi echo " " else echo " ===== incremental-test Bacula source OK ===== " echo " ===== incremental-test OK ===== " >>test.out scripts/cleanup fi