#!/bin/sh
#
# Copyright (C) 2000-2023 Kern Sibbald
# License: BSD 2-Clause; see file LICENSE-FOSS
#

#
# Run a simple backup of the Bacula build directory using the compressed option
#   then restore it.  Then do the same against the second storage, File1, which 
#   has AllowCompression=No set.
#
TestName="allowcompress-test"
JobName=compressed
. scripts/functions

scripts/cleanup
scripts/copy-test-confs
echo "${cwd}/build" >${cwd}/tmp/file-list

outf="tmp/sed_tmp"
echo "s/FileStorage$/FileStorage; AllowCompression=no/" > $outf
cp $scripts/bacula-dir.conf $tmp/1
sed -f ${outf} ${cwd}/tmp/1 > $scripts/bacula-dir.conf 

change_jobname CompressedTest $JobName
start_test
      
cat <<END_OF_DATA >${cwd}/tmp/bconcmds
@$out /dev/null
messages
@$out ${cwd}/tmp/log1.out
messages
label storage=File volume=TestVolume001
setdebug level=4 storage=File
run level=Full job=$JobName storage=File yes
wait
messages
@# 
@# now do a restore
@#
@$out ${cwd}/tmp/log2.out
restore where=${cwd}/tmp/bacula-restores select storage=File
unmark *
mark *
done
yes
wait
messages
@$out ${cwd}/tmp/log3.out
messages
label storage=File1 volume=TestVolume002
setdebug level=4 storage=File
run level=Full job=$JobName storage=File1 yes
wait
messages
@# 
@# now do a restore
@#
@$out ${cwd}/tmp/log2.out
restore where=${cwd}/tmp/bacula-restores select storage=File1
unmark *
mark *
done
yes
wait
messages
quit
END_OF_DATA

run_bacula
check_for_zombie_jobs storage=File
stop_bacula

check_two_logs
check_restore_diff
grep " Software Compression" ${cwd}/tmp/log3.out | grep "None" 2>&1 1>/dev/null
if [ $? = 0 ] ; then
   echo "  !!!!! No Compression when AllowCompression=yes is set !!!!!"
   bstat=1
fi

end_test
