]> git.sur5r.net Git - bacula/bacula/blobdiff - regress/tests/restart2-job-test
Tweak add copyright to regression tests that do not have one
[bacula/bacula] / regress / tests / restart2-job-test
index 8119028e03f1702fbb68c11971e726e355db7c9b..be9b22496c382c43d959163c0f89f2b950dd9750 100755 (executable)
@@ -1,5 +1,8 @@
 #!/bin/sh
 #
+# Copyright (C) 2000-2017 Kern Sibbald
+# License: BSD 2-Clause; see file LICENSE-FOSS
+#
 # Run a backup of the build directory but force it to have
 #   a comm error, and check that it restarts correctly.
 #
@@ -9,54 +12,107 @@ JobName=RestartJob
 
 scripts/cleanup
 scripts/copy-test-confs
+setup_shstore # simulate shared storage if enabled
 echo "${cwd}/build" >${cwd}/tmp/file-list
 
 change_jobname NightlySave $JobName
+$bperl -e 'add_attribute("$conf/bacula-fd.conf", "MaximumBandwidthPerJob", "100 kB/s", "FileDaemon")'
+
 start_test
 
 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
-@$out /dev/null
+@output /dev/null
 messages
 @$out ${cwd}/tmp/log1.out
-setbandwidth limit=1000 client
-@#setdebug level=0 trace=0 hangup=100 client
+@#setdebug level=0 trace=0 hangup=469 client
 @#setdebug level=20 dir
 label storage=File volume=TestVolume001
 run job=$JobName yes
 @sleep 15
 status client
+status storage=File
 END_OF_DATA
 
-run_bacula  
+run_bacula 2>/dev/null 
 
+# Note, the following stops and restarts the FD while it
+#  is running to simulate a crash, so it is normal if
+#  orphanned buffers are reported
+#sleep 9
+$scripts/bacula-ctl-fd stop >/dev/null 2>&1
 sleep 5
-$bin/bacula-ctl-fd stop
+$scripts/bacula-ctl-fd start 1>/dev/null 2>&1
+sleep 5
+
+cat <<END_OF_DATA >${cwd}/tmp/bconcmds
+@$out ${cwd}/tmp/log1.out
+@sleep 15
+messages
+quit
+END_OF_DATA
+
+run_bconsole 
+
+# Note, the following stops and restarts the FD while it
+#  is running to simulate a crash, so it is normal if
+#  orphanned buffers are reported
+#sleep 9
+$scripts/bacula-ctl-fd stop >/dev/null 2>&1
+sleep 5
+$scripts/bacula-ctl-fd start >/dev/null 2>&1
+sleep 5
+
+cat <<END_OF_DATA >${cwd}/tmp/bconcmds
+@$out ${cwd}/tmp/log1.out
+@sleep 15
+messages
+quit
+END_OF_DATA
+
+run_bconsole 
+
+#
+# This is the last backup, so make it run in a reasonable time
+#
+$bperl -e 'add_attribute("$conf/bacula-fd.conf", "MaximumBandwidthPerJob", "500000 kB/s", "FileDaemon")'
+
+#sleep 9
+$scripts/bacula-ctl-fd stop >/dev/null 2>&1
 sleep 5
-$bin/bacula-ctl-fd start
+$scripts/bacula-ctl-fd start
 sleep 5
 
 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
 @$out ${cwd}/tmp/log1.out
 wait
 messages
+sql
+select * from JobMedia where JobId=1;
+
 quit
 END_OF_DATA
 
+
 run_bconsole  
 
 scripts/check_for_zombie_jobs storage=File
 
 cat <<END_OF_DATA >${cwd}/tmp/bconcmds
-@$out /dev/null
+@output /dev/null
 messages
 @# 
 @# now do a restore
 @#
 @$out ${cwd}/tmp/log2.out
+@#setdebug level=50 storage=File
 restore where=$tmp/bacula-restores storage=File select all done
 yes
 wait
 messages
+status dir
+status client
+status storage=File
+messages
 quit
 END_OF_DATA