]> git.sur5r.net Git - bacula/bacula/commitdiff
Add maxvol test
authorKern Sibbald <kern@sibbald.com>
Sun, 23 Sep 2007 18:47:29 +0000 (18:47 +0000)
committerKern Sibbald <kern@sibbald.com>
Sun, 23 Sep 2007 18:47:29 +0000 (18:47 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5628 91ce42f0-d328-0410-95d8-f526ca767f89

regress/tests/maxvol-test [new file with mode: 0755]

diff --git a/regress/tests/maxvol-test b/regress/tests/maxvol-test
new file mode 100755 (executable)
index 0000000..1620b98
--- /dev/null
@@ -0,0 +1,64 @@
+#!/bin/sh
+#
+# Run four jobs at the same time, with four Volumes, but set
+#   Maximum Job Volumes = 1 on each of the Volumes.  Note,
+#   Volume 2 will probably have two jobs on it.  Something to
+#   be fixed in a later version.
+#
+TestName="maxvol-test"
+JobName=maxvol
+. scripts/functions
+
+scripts/cleanup
+scripts/copy-test-confs
+echo "${cwd}/build" >/tmp/file-list
+
+cp -f ${cwd}/bin/bacula-dir.conf ${cwd}/tmp/1
+sed "s%# Maximum Volume Jobs%  Maximum Volume Jobs%" ${cwd}/tmp/1 >${cwd}/bin/bacula-dir.conf
+
+
+change_jobname NightlySave $JobName
+start_test
+
+cat <<END_OF_DATA >tmp/bconcmds
+@output /dev/null
+messages
+@$out   tmp/log1.out
+label storage=File1 volume=TestVolume001
+label storage=File1 volume=TestVolume002
+label storage=File1 volume=TestVolume003
+label storage=File1 volume=TestVolume004
+update Volume=TestVolume001 MaxVolBytes=100000000
+@#50000000
+@#12
+@#setdebug level=100 Storage=File1
+run job=$JobName level=Full Storage=File1 yes
+run job=$JobName level=Full Storage=File1 yes
+run job=$JobName level=Full Storage=File1 yes
+wait
+list volumes
+messages
+@# 
+@# now do a restore
+@#
+@$out   tmp/log2.out
+restore where=${cwd}/tmp/bacula-restores select storage=File1
+unmark *
+mark *
+done
+yes
+wait
+reload
+reload
+messages
+@output
+quit
+END_OF_DATA
+
+run_bacula
+check_for_zombie_jobs storage=File1
+stop_bacula
+
+check_two_logs
+check_restore_diff
+end_test