#!/bin/sh
#
# Set prefer mounted volumes to no to try to force use of
#   the drive swap code.
#
# This script uses the virtual disk autochanger and two drives
#
TestName="2drive-2job"
JobName="2drive2job"

. scripts/functions

# Directory to backup.
# This directory will be created by setup_data().
BackupDirectory="${tmp}/data"

scripts/cleanup

# Use a tgz to setup data to be backed up.
# Data will be placed at "${tmp}/data/".
setup_data data/small.tgz

scripts/copy-2disk-drive-confs
scripts/prepare-disk-changer
CLIENT=2drive2disk

change_jobname NightlySave $JobName
start_test

# the default fileset FS_TESTJOB backups all file and directories defined in "${tmp}/file-list".
echo "${BackupDirectory}" >${tmp}/file-list

# Turn off Prefer Mounted Volumes so we use 2 drives
outf="${cwd}/tmp/sed_tmp"
echo "s%# Prefer Mounted Volumes%  Prefer Mounted Volumes%g" >${outf}
cp ${cwd}/bin/bareos-dir.conf ${cwd}/tmp/1
# Comment the next line out to write everything to one drive
#  otherwise, it writes the two jobs to different drives
sed -f ${outf} ${cwd}/tmp/1 >${cwd}/bin/bareos-dir.conf

# Write out bconsole commands
cat <<END_OF_DATA >${cwd}/tmp/bconcmds
@$out /dev/null
messages
@$out ${cwd}/tmp/log1.out
label storage=tape volume=TestVolume001 slot=2 Pool=Default drive=0
label storage=tape volume=TestVolume002 slot=1 Pool=Default drive=1
status storage=tape
@#unmount storage=tape drive=0
@#unmount storage=tape drive=1
@#mount storage=tape slot=2 drive=0
@#mount storage=tape slot=1 drive=1
status storage=tape
setdebug level=120 storage=tape
run job=$JobName level=Full yes
@sleep 2
run job=$JobName level=Full yes
status storage=tape
wait
list volumes
list jobs
status storage=tape
messages
quit
END_OF_DATA

run_bareos

cat <<END_OF_DATA >${cwd}/tmp/bconcmds
@$out /dev/null
messages
@# now do a restore
@#
@$out ${cwd}/tmp/log2.out
@#unmount storage=tape drive=0
@#unmount storage=tape drive=1
@#mount storage=tape slot=1 drive=0
@#mount storage=tape slot=2 drive=1
restore where=${cwd}/tmp/bareos-restores select all storage=tape done
yes
wait
messages
quit
END_OF_DATA

run_bconsole
check_for_zombie_jobs storage=tape
stop_bareos

check_two_logs
check_restore_diff

end_test
