#!/bin/sh
#
# Copyright (C) 2000-2026 Kern Sibbald
# License: BSD 2-Clause; see file LICENSE-FOSS
#
# This is Arno's test.  It uses three pools, three tapes, and
#  an autochanger. Note, the Director has four Pools in its 
#  conf:  Default, Full, Inc, and Scratch.  Default is used in the
#  NightlySave job by default.  What is backed up is what
#  is in ${cwd}/tmp/file-list, which is by default the Bacula
#  source code (i.e. the build directory).
#
#  Note, we use the virtual disk autochanger.
#
TestName="three-pool-recycle-test"
JobName=Three-pool-recycle
. scripts/functions

cwd=`pwd`
scripts/cleanup
scripts/copy-2disk-confs
scripts/prepare-disk-changer

# remove Client Run Before Job
cp ${cwd}/bin/bacula-dir.conf ${cwd}/tmp/1
sed "s%Client Run Before Job%#Client Run Before Job%" ${cwd}/tmp/1 >${cwd}/bin/bacula-dir.conf

echo "${cwd}/build" >${cwd}/tmp/file-list

start_test

# Write out bconsole commands to a file
cat <<END_OF_DATA >${cwd}/tmp/bconcmds
@output /dev/null
messages
@$out ${cwd}/tmp/log1.out
@#setdebug level=150 storage=tape
label storage=tape volume=TestVolume001 slot=1 pool=Full drive=0
label storage=tape volume=TestVolume002 slot=2 pool=Default drive=0
label storage=tape volume=TestVolume003 slot=3 pool=Scratch drive=0
update Volume=TestVolume001 maxvoljobs=1
update Volume=TestVolume002 maxvoljobs=1
update Volume=TestVolume003 volretention=7s
update Volume=TestVolume003 maxvoljobs=1
list volumes
llist volume=TestVolume003
@# should pull Scratch volume
run job=NightlySave1 level=Full pool=Inc yes
wait
update Volume=TestVolume003 volretention=7s
update Volume=TestVolume003 maxvoljobs=1
messages
list volumes
llist volume=TestVolume003
run job=NightlySave1 level=Full pool=Default yes
wait
messages
list volumes
llist volume=TestVolume003
run job=NightlySave1 level=Full pool=Full yes
wait
@sleep 10
messages
list volumes
llist volume=TestVolume003
@# should recycle Scratch pool
run job=NightlySave2 level=Full pool=Inc yes
wait
update Volume=TestVolume003 volretention=7s
update Volume=TestVolume003 maxvoljobs=1
@sleep 10
messages
list volumes
@# should recycle Scratch pool
llist volume=TestVolume003
@#setdebug level=50 dir
run job=NightlySave2 level=Full pool=Default yes
wait
update Volume=TestVolume003 volretention=7s
update Volume=TestVolume003 maxvoljobs=1
@sleep 10
messages
list volumes
@# should recycle Scratch pool
run job=NightlySave2 level=Full pool=Full yes
status storage=tape
messages
wait
list volumes
messages
@# 
@# now do a restore
@#
@$out ${cwd}/tmp/log2.out
restore where=${cwd}/tmp/bacula-restores select all storage=tape done
yes
wait
messages
quit
END_OF_DATA

run_bacula
check_for_zombie_jobs storage=tape
stop_bacula

check_two_logs
check_restore_diff
end_test
