]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
regress: add test for org#2627 about dir crashing during copy job
authorMichal Rakowski <michal.rakowski@baculasystems.com>
Tue, 10 Aug 2021 16:00:35 +0000 (18:00 +0200)
committerEric Bollengier <eric@baculasystems.com>
Thu, 24 Mar 2022 08:03:03 +0000 (09:03 +0100)
regress/tests/copy-job-res-rename-test [new file with mode: 0755]

diff --git a/regress/tests/copy-job-res-rename-test b/regress/tests/copy-job-res-rename-test
new file mode 100755 (executable)
index 0000000..7099787
--- /dev/null
@@ -0,0 +1,70 @@
+#!/bin/sh
+#
+# Copyright (C) 2000-2021 Kern Sibbald
+# License: BSD 2-Clause; see file LICENSE-FOSS
+#
+# Run a simple backup of the Bacula build directory then rename fileset used and reload
+# config. Next try to copy such job, director should not crash and copying error should be
+# observed.
+# Tests community bug #2627
+TestName="copy-job-res-rename-test"
+JobName=CopyJobSave
+. scripts/functions
+
+scripts/cleanup
+scripts/copy-migration-confs
+echo "${cwd}/build" >${cwd}/tmp/file-list
+sed 's/migrate/copy/g' ${cwd}/bin/bacula-dir.conf > ${cwd}/tmp/1
+sed 's/Migrate/Copy/g' ${cwd}/tmp/1 > ${cwd}/bin/bacula-dir.conf
+change_jobname NightlySave $JobName
+
+start_test
+
+# Write out bconsole commands
+cat <<END_OF_DATA >${cwd}/tmp/bconcmds
+@output /dev/null
+messages
+@$out ${cwd}/tmp/log1.out
+@# setdebug level=100 storage=File
+label storage=File volume=FileVolume001 Pool=Default
+label storage=DiskChanger volume=ChangerVolume001 slot=1 Pool=Full drive=0
+label storage=DiskChanger volume=ChangerVolume002 slot=2 Pool=Full drive=0
+run job=$JobName yes
+wait
+messages
+quit
+END_OF_DATA
+run_bacula
+
+
+change_jobname NightlySave $JobName
+# Rename some resource (e.g. FileSet)
+sed 's/Full Set/New Full Set/g' ${cwd}/tmp/1 > ${cwd}/bin/bacula-dir.conf
+
+cat <<END_OF_DATA >${cwd}/tmp/bconcmds
+@$out ${cwd}/tmp/log2.out
+reload
+@$out ${cwd}/tmp/log3.out
+run job=copy-uncopied yes
+wait
+messages
+quit
+END_OF_DATA
+run_bconsole
+
+n_lines=`cat $tmp/log3.out | grep 'Termination' | grep 'Copying Error' | wc -l`
+if [ $n_lines -ne 1 ]; then
+   estat=1
+   print_debug "ERROR: Job did not fail as expected. See ${tmp}/log3.out"
+fi
+
+n_lines=`cat $tmp/log3.out | grep 'Fatal error: FileSet resource not found for "Full Set"' | wc -l`
+if [ $n_lines -ne 1 ]; then
+   estat=1
+   print_debug "ERROR: Did not find message related to the invalid FileSet. See ${tmp}/log3.out"
+fi
+
+check_for_zombie_jobs storage=File
+stop_bacula
+
+end_test