#!/bin/sh
#
# Test the fill command in btape
#
TestName="btape-fill-full-tape"
JobName=btape-fill
. scripts/functions

require_tape_drive

scripts/copy-btape-confs
scripts/cleanup-tape

change_jobname $JobName
start_test

#
#  Increase block size to 262144
#
cp ${cwd}/bin/bareos-sd.conf ${cwd}/tmp/1
sed -e 's%64512%262144%' ${cwd}/tmp/1 >${cwd}/bin/bareos-sd.conf


if test "$debug" -eq 1 ; then
   $bin/btape -c bin/bareos-sd.conf Drive-0 <<END_OF_DATA | tee ${cwd}/tmp/log1.out
fill
s

quit
END_OF_DATA
else
   $bin/btape -c bin/bareos-sd.conf Drive-0 <<END_OF_DATA >${cwd}/tmp/log1.out 2>&1
fill
s

quit
END_OF_DATA
fi

grep "^The last block on the tape matches\. Test succeeded\." ${cwd}/tmp/log1.out >/dev/null 2>&1
if [ $? != 0 ] ; then
   echo " "
   echo " "
   echo "  !!!!! btape fill test failed!!! !!!!! "
   echo "  !!!!! btape fill test failed!!! !!!!! " >>test.out
   echo " "
else
   echo "  ===== btape fill test OK ===== "
   echo "  ===== btape fill test OK ===== " >>test.out
#  scripts/cleanup
fi
