]> git.sur5r.net Git - bacula/bacula/blobdiff - regress/tests/six-vol-test
Change test name
[bacula/bacula] / regress / tests / six-vol-test
index 1c369e0c254bf9e58c47feaf08a342c14ed51816..c5a99736ead57291f380295bc61c950849478f91 100755 (executable)
@@ -3,9 +3,14 @@
 # Create a 60MB file with random bytes. Back it up to 6 Volumes
 #   each constrained to 10MB using the automatic labeling feature.
 #
+
+if test ! -e /dev/urandom ; then
+   echo "No random device. Test skipped.\n"
+   exit 0
+fi
 cwd=`pwd`
 scripts/copy-testa-confs
-rm -rf tmp/SmallVols* tmp/bacula-restores tmp/largefile
+scripts/cleanup
 echo "${cwd}/tmp/largefile" >/tmp/file-list
 # Create 56MB file with random data
 echo "Creating a 56MB file with random data ..."
@@ -17,13 +22,15 @@ bin/make_sqlite_tables
 
 echo " "
 echo " "
-echo " === Starting two-vol-test  ==="
+echo " === Starting six-vol-test  ==="
+echo " === Starting six-vol-test  ===" >>working/log
 echo " "
 
-bin/bacula start
+bin/bacula start 2>&1 >/dev/null
 bin/console -c bin/console.conf <<END_OF_DATA
+@output /dev/null
 messages
-@output
+@output tmp/log1.out
 run job=MultiVol storage=File
 yes
 wait
@@ -31,24 +38,30 @@ messages
 @# 
 @# now do a restore
 @#
+@output tmp/log2.out
 restore where=${cwd}/tmp/bacula-restores
 5
 done
 yes
 wait
 messages
+@output
 quit
 END_OF_DATA
-bin/bacula stop
-diff -ur tmp/largefile  tmp/bacula-restores${cwd}/tmp/largefile
-if [ $? != 0 ] ; then
+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 tmp/largefile  tmp/bacula-restores${cwd}/tmp/largefile
+if [ $? != 0 -o $bstat != 0 -o $rstat != 0 ] ; then
    echo " "
    echo " "
-   echo "  ===== six-vol-test Bacula source failed!!! ===== "
-   echo "  ===== six-vol-test failed!!! ===== " >>test.out
+   echo "  !!!!! six-vol-test Bacula source failed!!! !!!!! "
+   echo "  !!!!! six-vol-test failed!!! !!!!! " >>test.out
    echo " "
 else
    echo "  ===== six-vol-test Bacula source OK ===== "
    echo "  ===== six-vol-test OK ===== " >>test.out
-   rm -rf tmp/bacula-restores tmp/SmallVols* tmp/largefile
+   scripts/cleanup
 fi