]> git.sur5r.net Git - bacula/bacula/blobdiff - regress/tests/two-jobs-test
regress: tweak speed-test
[bacula/bacula] / regress / tests / two-jobs-test
index 374d988337065dcc89de79318d18363e9187026a..ef88177e9add359de3168f0eee6656eeba4d119c 100755 (executable)
@@ -3,61 +3,76 @@
 # Run a simple backup of the Bacula build directory using the compressed option
 #   then backup a second time and finally restore it
 #
+TestName="two-jobs-test"
+JobName=Two-Jobs
+. scripts/functions
+
 cwd=`pwd`
+scripts/cleanup
 scripts/copy-test-confs
-rm -rf /tmp/TestVolume001 /tmp/bacula-restores
-echo "${cwd}/build" >/tmp/file-list
-bin/bacula stop 2>&1 >/dev/null
-bin/drop_sqlite_tables
-bin/make_sqlite_tables
+echo "${cwd}/build" >${cwd}/tmp/file-list
 
-echo " "
-echo " "
-echo " === Starting two-jobs-test  ==="
-echo " "
+change_jobname CompressedTest $JobName
+start_test
 
-bin/bacula start
-bin/console -c bin/console.conf <<END_OF_DATA
-@output /dev/null
+cat >tmp/bconcmds <<END_OF_DATA
+setdebug level=150  storage=File
+@$out /dev/null
 messages
-label
-TestVolume001
-run job=CompressedTest
-yes
+@$out/dev/null
+estimate job=$JobName listing
+estimate job=$JobName
+estimate job=$JobName
+messages
+@$out tmp/log1.out
+label storage=File volume=TestVolume001
+run job=$JobName yes
 wait
 messages
 quit
 END_OF_DATA
+
+run_bacula
+check_for_zombie_jobs storage=File 
+
 echo "Backup 1 done"
 touch ${cwd}/build/src/dird/*.c
-bin/console -c bin/console.conf <<END_OF_DATA
-run job=CompressedTest
+#
+# run a second job
+#
+cat >tmp/bconcmds <<END_OF_DATA
+@$out /dev/null
+messages
+@$out tmp/log1.out
+run job=$JobName
 yes
 wait
 messages
-@output
 @# 
-@# now do a restore
+@# now do several restores to ensure we cleanup between jobs
 @#
-restore
-5
+@$out /dev/null
+restore where=${cwd}/tmp/bacula-restores select all storage=File done
+yes
+wait
+restore where=${cwd}/tmp/bacula-restores select all storage=File done
+yes
+wait
+@$out tmp/log2.out
+restore where=${cwd}/tmp/bacula-restores select storage=File
+unmark *
+mark *
 done
 yes
 wait
-@output /dev/null
 messages
 quit
 END_OF_DATA
-bin/bacula stop
-diff -ur build /tmp/bacula-restores${cwd}/build
-if [ $? != 0 ] ; then
-   echo " "
-   echo " "
-   echo "  ===== two-jobs-test Bacula source failed!!! ===== "
-   echo "  ===== two-jobs-test failed!!! ===== " >>test.out
-   echo " "
-else
-   echo "  ===== two-jobs-test Bacula source OK ===== "
-   echo "  ===== two-jobs-test OK ===== " >>test.out
-   rm -rf /tmp/bacula-restores /tmp/TestVolume001
-fi
+
+run_bconsole
+check_for_zombie_jobs storage=File
+stop_bacula
+
+check_two_logs
+check_restore_diff
+end_test