]> git.sur5r.net Git - bacula/bacula/blobdiff - regress/tests/backup-bacula-test
Update disk tests
[bacula/bacula] / regress / tests / backup-bacula-test
index 50a20688693f93a9638a667503dd0f5424d00c83..bf329d125a263c48007e4a5ce5e05980a8b72eb3 100755 (executable)
@@ -3,37 +3,37 @@
 # Run a simple backup of the Bacula build directory
 #   then restore it.
 #
-cwd=`pwd`
+TestName="backup-bacula-test"
+JobName=backup
+. scripts/functions
+set_debug 0
+
 scripts/copy-confs
 scripts/cleanup
 
-echo " "
-echo " "
-echo " === Starting Backup Bacula Test at `date +%R:%S` ==="
-echo " === Starting Backup Bacula Test at `date +%R:%S` ===" >>working/log
-echo " "
+change_jobname Client1 $JobName
+start_test
 
-bin/bacula start 2>&1 >/dev/null
-#bin/bacula start
-bin/bconsole -c bin/bconsole.conf <<END_OF_DATA
+cat <<END_OF_DATA >tmp/bconcmds
 @output /dev/null
 messages
-@output tmp/log1.out
+@$out tmp/log1.out
 label volume=TestVolume001
-run job=Client1 yes
+@#setdebug level=100 storage=File
+run job=$JobName yes
 status storage=File
 status storage=File
 status storage=File
 status storage=File
 status storage=File
 status storage=File
-sleep 1
+@sleep 1
 status storage=File
 status storage=File
 status storage=File
 status storage=File
 status storage=File
-sleep 1
+@sleep 1
 status storage=File
 status storage=File
 status storage=File
@@ -44,36 +44,19 @@ messages
 @# 
 @# now do a restore
 @#
-@output tmp/log2.out  
+@$out tmp/log2.out  
 restore where=${cwd}/tmp/bacula-restores select all done
 yes
 wait
 messages
-@output
+@$out
 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=$?
-diff -r build tmp/bacula-restores${cwd}/build 2>&1 >/dev/null
-if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
-   echo " "
-   echo " "
-   echo "  !!!!! Backup Bacula Test failed!!! !!!!! "
-   echo "  !!!!! Backup Bacula 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 "  ===== Backup Bacula Test OK ===== "
-   echo "  ===== Backup Bacula Test OK ===== " >>test.out
-   scripts/cleanup
-fi
+
+run_bacula
+check_for_zombie_jobs storate=File
+stop_bacula
+
+check_two_logs
+check_restore_diff
+end_test