X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=regress%2Ftests%2Fdifferential-test;h=4949bfe6d8e508474a12df99513c0efe7881371e;hb=464f995d79e96a677ebf5b52398ab1d38d5a954a;hp=3182e98cb763629018e9eb51a9c5cace2d672323;hpb=7d20d41386d0003a64eec14d4e13816cfa688db7;p=bacula%2Fbacula diff --git a/regress/tests/differential-test b/regress/tests/differential-test index 3182e98cb7..4949bfe6d8 100755 --- a/regress/tests/differential-test +++ b/regress/tests/differential-test @@ -3,16 +3,13 @@ # Run a simple backup of the Bacula build directory then create some # new files, do a differential and restore those two files. # -debug=0 -if test "$debug" -eq 1 ; then - out="tee" -else - out="output" -fi +TestName="differential-test" +JobName=differential +. scripts/functions +set_debug 0 -cwd=`pwd` -scripts/copy-test-confs scripts/cleanup +scripts/copy-test-confs echo "${cwd}/tmp/build" >/tmp/file-list mkdir ${cwd}/tmp/build cp -p ${cwd}/build/src/dird/*.c ${cwd}/tmp/build @@ -21,11 +18,8 @@ echo "${cwd}/tmp/build/ficheriro1.txt" >restore-list echo "${cwd}/tmp/build/ficheriro2.txt" >>restore-list cd ${cwd} -echo " " -echo " " -echo " === Starting differential-test at `date +%R:%S` ===" -echo " === Starting differential-test at `date +%R:%S` ===" >>working/log -echo " " +change_jobname CompressedTest $JobName +start_test cat <tmp/bconcmds @$out /dev/null @@ -33,19 +27,13 @@ messages @$out tmp/log1.out label storage=File volume=TestVolume002 label storage=File volume=TestVolume001 -run job=CompressedTest yes +run job=$JobName yes wait messages quit END_OF_DATA -if test "$debug" -eq 1 ; then - bin/bacula start - cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf -else - bin/bacula start 2>&1 >/dev/null - cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf 2>&1 >/dev/null -fi +run_bacula scripts/check_for_zombie_jobs storage=File echo "ficheriro1.txt" >${cwd}/tmp/build/ficheriro1.txt @@ -57,17 +45,13 @@ messages @$out tmp/log1.out @# Force differential on the second Volume update volume=TestVolume002 VolStatus=Used -run level=differential job=CompressedTest yes +run level=differential job=$JobName yes wait messages @$out END_OF_DATA -if test "$debug" -eq 1 ; then - cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf -else - cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf 2>&1 >/dev/null -fi +run_bconsole scripts/check_for_zombie_jobs storage=File echo "ficheriro2.txt" >${cwd}/tmp/build/ficheriro2.txt @@ -76,7 +60,7 @@ cat <tmp/bconcmds @$out /dev/null messages @$out tmp/log1.out -run level=incremental job=CompressedTest yes +run level=incremental job=$JobName yes wait messages @# @@ -91,38 +75,14 @@ messages quit END_OF_DATA -if test "$debug" -eq 1 ; then - cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf -else - cat tmp/bconcmds | bin/bconsole -c bin/bconsole.conf 2>&1 >/dev/null -fi - +run_bconsole 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=$? +stop_bacula + +check_two_logs # # Delete .c files because we will only restore 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 " !!!!! differential-test Bacula source failed!!! !!!!! " - echo " !!!!! differential-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 " ===== differential-test Bacula source OK ===== " - echo " ===== differential-test OK ===== " >>test.out - scripts/cleanup -fi +check_restore_tmp_build_diff +end_test