From: Eric Bollengier Date: Wed, 23 Mar 2022 14:45:43 +0000 (+0100) Subject: regress: Add test storageid-test2-changer X-Git-Tag: Release-11.3.2~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8527163cf272e20fdac12f84d46fd50e683462c6;p=thirdparty%2Fbacula.git regress: Add test storageid-test2-changer --- diff --git a/regress/tests/storageid-test2-changer b/regress/tests/storageid-test2-changer new file mode 100755 index 000000000..2df9e8de5 --- /dev/null +++ b/regress/tests/storageid-test2-changer @@ -0,0 +1,170 @@ +#!/bin/sh +# +# Copyright (C) 2000-2020 Kern Sibbald +# License: BSD 2-Clause; see file LICENSE-FOSS +# +# Run backups with dummy tape driver +# This test setups an Autochanger with 80 slots +# and 5 drives (3 LTO3 and 2 LTO1) +# +# TAPE_DRIVE="$cwd/working/ach/drive0" +# TAPE_DRIVE1="$cwd/working/ach/drive0" +# AUTOCHANGER="$cwd/working/ach/conf" +# USE_VTAPE=yes +# AUTOCHANGER_SCRIPT=disk-changer +# + +TestName="storageid-test2-changer" +JobName=backup +. scripts/functions + +require_vtape + +scripts/cleanup +scripts/copy-tape-confs +cp $rscripts/bacula-dir-vtape2.conf $conf/bacula-dir.conf +cp $rscripts/bacula-sd-vtape.conf $conf/bacula-sd.conf +scripts/prepare-fake-autochanger + +echo "${cwd}/build" >${cwd}/tmp/file-list + +start_test + +when1=`perl -MPOSIX -e "print strftime('%F %T', localtime(time+30))"` +when2=`perl -MPOSIX -e "print strftime('%F %T', localtime(time+45))"` + +clientname=`awk '/Name = .*-fd/ { if (!ok) { print $3 ; ok=1 } }' bin/bacula-dir.conf` + +# Catalog record for cleaning tape "CLN01" successfully created. +# CLN01 | Cleaning + +# Write out bconsole commands +cat <${cwd}/tmp/bconcmds +@output /dev/null +messages +@$out ${cwd}/tmp/log6.out +@#setdebug level=200 storage=LTO1 +label barcodes pool=Scratch slots=1-4 storage=LTO1-ANSI_6 drive=6 +yes +label barcodes pool=Scratch slots=15-25 storage=LTO1 drive=3 +yes +messages +list volumes +END_OF_DATA + +run_bacula + +cat <${cwd}/tmp/bconcmds +@$out ${cwd}/tmp/log7.out +label barcodes pool=Scratch slots=41-52 storage=LTO3 drive=0 +yes +sql +SELECT * from Storage; +SELECT Storage.Name, VolumeName, Slot, InChanger, StorageId, Pool.Name + AS PoolName FROM Media JOIN Storage USING (StorageId) JOIN Pool + USING (PoolId); + +messages +list volumes +@$out ${cwd}/tmp/log1.out +run storage=LTO3_0 job=NightlySave pool=Inc yes +wait +messages +run storage=LTO3_0 job=NightlySave2 pool=Full yes +wait +messages +@$out ${cwd}/tmp/log4.out +setdebug level=51 trace=1 dir +@exec "touch $cwd/build/po/fr.po" +run storage=LTO3_1 job=NightlySave pool=Inc yes +wait +setdebug level=0 trace=0 dir +messages +@$out ${cwd}/tmp/log1.out +run storage=LTO1_4 job=NightlySave pool=Inc yes +wait +messages +sql +SELECT Storage.Name, VolumeName, Slot, InChanger, StorageId, Pool.Name + AS PoolName FROM Media JOIN Storage USING (StorageId) JOIN Pool + USING (PoolId); + +@$out ${cwd}/tmp/log2.out +restore storage=LTO3_1 client=$clientname +3 +1,2,3 +m * +done +yes +wait +messages +quit +END_OF_DATA + +run_bconsole +check_for_zombie_jobs storage=LTO1 client=$clientname + +grep 'Volume ".*" previously written, moving' $cwd/tmp/log4.out > /dev/null +if [ $? -ne 0 ]; then + print_debug "ERROR: Job 3 should re-use a volume" + estat=1 +fi + +grep "Call prune_volumes" $working/*trace > /dev/null +if [ $? -eq 0 ]; then + print_debug "ERROR: Job 3 should re-use a volume, not try to prune one" + estat=1 +fi + +grep "after get scratch volume ok=" $working/*trace > /dev/null +if [ $? -eq 0 ]; then + print_debug "ERROR: Job 3 should re-use a volume, not try to get a scratch one" + estat=1 +fi + +# remove volume vol20 from autochanger +grep -v vol20 ${cwd}/working/ach/barcodes > ${cwd}/tmp/1 +cp ${cwd}/tmp/1 ${cwd}/working/ach/barcodes + +cat <${cwd}/tmp/bconcmds +@$out ${cwd}/tmp/log3.out +list volume=vol20 +update slots slots=5-40 storage=LTO1 drive=3 +list volume=vol20 +sql +SELECT * from Storage; +SELECT Storage.Name, VolumeName, Slot, InChanger, StorageId, Pool.Name + AS PoolName FROM Media JOIN Storage USING (StorageId) JOIN Pool + USING (PoolId); + +END_OF_DATA + +run_bconsole + +stop_bacula + +touch ${cwd}/tmp/log2.out +check_two_logs +check_restore_diff + +# get InChanger flag +RES=`awk -F'|' '/vol20.+Append/ { print $11 }' ${cwd}/tmp/log3.out` +set "$RES" +if [ "$1" = "$2" ]; then + echo "Error in update slots" + bstat=1 +fi + +grep LTO1_5 tmp/log1.out > /dev/null +if test $? = 0; then + echo "AutoSelect option broken" + bstat=1 +fi + +grep 'Error: Re-read' tmp/log1.out > /dev/null +if test $? = 0; then + echo "Found Re-read errors" + bstat=1 +fi + +end_test