X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=regress%2Ftests%2Fbscan-test;h=20ac940a3eba22d353c93ce80f1e9b366fad5344;hb=38b243eb09f97315282dd31dd4f162fcbb6c6778;hp=03cef1028616857eeaa16e0db2295bbe0161634d;hpb=21dbbf431905c16d0c43ae80617243df9e0914cd;p=bacula%2Fbacula diff --git a/regress/tests/bscan-test b/regress/tests/bscan-test index 03cef10286..20ac940a3e 100755 --- a/regress/tests/bscan-test +++ b/regress/tests/bscan-test @@ -5,38 +5,38 @@ # into the catalog after the backup. It also to a limited # extent tests the purge volume and delete volume commands. # -cwd=`pwd` -scripts/copy-test-confs + +TestName="bscan-test" +JobName=bscan +. scripts/functions + scripts/cleanup -echo "${cwd}/build" >/tmp/file-list -bin/bacula stop 2>&1 >/dev/null -bin/drop_sqlite_tables -bin/make_sqlite_tables +scripts/copy-test-confs +echo "${cwd}/build" >tmp/file-list -echo " " -echo " " -echo " === Starting bscan-test ===" -echo " === Starting bscan-test ===" >working/log -echo " " +change_jobname NightlySave $JobName +start_test -bin/bacula start 2>&1 >/dev/null -bin/console -c bin/console.conf <tmp/bconcmds +@$out /dev/null messages -@output tmp/log1.out +@$out tmp/log1.out label storage=File1 TestVolume001 label storage=File1 TestVolume002 -update Volume=TestVolume001 -6 -3000000 -10 -run job=NightlySave storage=File1 +update Volume=TestVolume001 MaxVolBytes=3000000 +run job=$JobName storage=File1 yes wait +list volumes +list files jobid=1 +sql +select * from JobMedia; + + messages -@output /dev/null +@$out /dev/null @# @# now purge the Volume @# @@ -49,40 +49,50 @@ yes messages quit END_OF_DATA -bin/bacula stop 2>&1 >/dev/null -echo "volume=TestVolume001|TestVolume002" >tmp/bscan.bsr -bin/bscan -w working -m -s -v -b tmp/bscan.bsr -c bin/bacula-sd.conf ${cwd}/tmp 2>&1 >/dev/null -bin/bacula start 2>&1 >/dev/null -bin/console -c bin/console.conf <tmp/bscan.bsr +echo "volume=TestVolume002" >>tmp/bscan.bsr + +bscan_libdbi + +# If the database has a password pass it to bscan +if test "x${db_password}" = "x"; then + PASSWD= +else + PASSWD="-P ${db_password}" +fi + +if test "$debug" -eq 1 ; then + $bin/bscan -w working $BSCANLIBDBI -u ${db_user} -n ${db_name} $PASSWD -m -s -v -b tmp/bscan.bsr -c bin/bacula-sd.conf ${cwd}/tmp +else + $bin/bscan -w working $BSCANLIBDBI -u ${db_user} -n ${db_name} $PASSWD -m -s -v -b tmp/bscan.bsr -c bin/bacula-sd.conf ${cwd}/tmp >tmp/log3.out 2>&1 +fi + +cat <tmp/bconcmds +@$out /dev/null messages -@output tmp/log2.out +@$out tmp/log2.out @# @# now do a restore @# -restore where=${cwd}/tmp/bacula-restores -5 -done +@#setdebug level=400 storage=File1 +restore bootstrap=${cwd}/tmp/kern.bsr where=${cwd}/tmp/bacula-restores select all storage=File1 done yes wait messages -@output +@$out quit END_OF_DATA -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=$? -diff -r build tmp/bacula-restores${cwd}/build -if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then - echo " " - echo " " - echo " !!!!! bscan-test Bacula source failed!!! !!!!! " - echo " !!!!! bscan-test failed!!! !!!!! " >>test.out - echo " " -else - echo " ===== bscan-test Bacula source OK ===== " - echo " ===== bscan-test OK ===== " >>test.out - scripts/cleanup -fi + +# now run restore +run_bacula +check_for_zombie_jobs storage=File1 +stop_bacula + +check_two_logs +check_restore_diff +end_test