X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=regress%2Ftests%2Fincremental-tape;h=38e8347b681fdff93f302c9859368cae22a5936e;hb=9d3109a03bb69d2ef5bf39f2cbe424cf9fc2076d;hp=7a2fcffd1408da197a0cb8e8903701a650b08f83;hpb=63b7dc63b83d3261dd467cc2e0c2504aba0b8a03;p=bacula%2Fbacula diff --git a/regress/tests/incremental-tape b/regress/tests/incremental-tape index 7a2fcffd14..38e8347b68 100755 --- a/regress/tests/incremental-tape +++ b/regress/tests/incremental-tape @@ -3,11 +3,16 @@ # Run a simple backup of the Bacula build directory then create some # new files, do an Incremental and restore those two files. # -cwd=`pwd` +TestName="incremental-tape" +JobName=IncTape +. scripts/functions + +require_tape_drive scripts/copy-tape-confs scripts/cleanup-tape -echo "${cwd}/tmp/build" >/tmp/file-list + +echo "${cwd}/tmp/build" >${cwd}/tmp/file-list if test ! -d ${cwd}/tmp/build ; then mkdir ${cwd}/tmp/build fi @@ -17,37 +22,37 @@ echo "${cwd}/tmp/build/ficheriro1.txt" >restore-list echo "${cwd}/tmp/build/ficheriro2.txt" >>restore-list cd ${cwd} -echo " " -echo " " -echo " === Starting incremental-tape test `date +%R:%S` ===" -echo " === Starting incremental-tape test `date +%R:%S` ===" >>working/log -echo " " +change_jobname NightlySave $JobName +start_test -bin/bacula start 2>&1 >/dev/null -bin/bconsole -c bin/bconsole.conf <${cwd}/tmp/bconcmds @output /dev/null messages -@output tmp/log1.out -label storage=DDS-4 volume=TestVolume001 slot=0 -run job=NightlySave yes +@$out ${cwd}/tmp/log1.out +label storage=DDS-4 volume=TestVolume001 slot=0 pool=Default +run job=$JobName yes wait messages quit END_OF_DATA -scripts/check_for_zombie_jobs storage=DDS-4 + +run_bacula +check_for_zombie_jobs storage=DDS-4 + echo "ficheriro1.txt" >${cwd}/tmp/build/ficheriro1.txt echo "ficheriro2.txt" >${cwd}/tmp/build/ficheriro2.txt -bin/bconsole -c bin/bconsole.conf <${cwd}/tmp/bconcmds @output /dev/null messages -@output tmp/log1.out -run level=Incremental job=NightlySave yes +@$out ${cwd}/tmp/log1.out +run level=Incremental job=$JobName yes wait messages @# @# now do a restore @# -@output tmp/log2.out +@$out ${cwd}/tmp/log2.out restore where=${cwd}/tmp/bacula-restores storage=DDS-4 7 <${cwd}/tmp/restore-list @@ -58,25 +63,16 @@ messages @output quit END_OF_DATA -scripts/check_for_zombie_jobs storage=DDS-4 -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=$? + +run_bconsole +check_for_zombie_jobs storage=DDS-4 +stop_bacula + # # 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-tape test Bacula source failed!!! !!!!! " - echo " !!!!! incremental-tape test failed!!! !!!!! " >>test.out - echo " " -else - echo " ===== incremental-tape test Bacula source OK ===== " - echo " ===== incremental-tape test OK ===== " >>test.out - scripts/cleanup -fi +rm -f ${cwd}/tmp/build/*.c + +check_two_logs +check_restore_tmp_build_diff +end_test