#!/bin/sh
#
# Run a simple backup  using the Sparse option
#   then restore it.
#
TestName="sparse-autoxflate-test"
JobName=SparseTest
. scripts/functions

scripts/cleanup
scripts/copy-test-confs

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

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

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





mv ${cwd}/bin/bareos-sd.conf ${cwd}/bin/bareos-sd.conf.sed

# enable autoxflate plugin
sed 's@# Maximum File Size = 10KB@# autoxflate plugin settings\
  autodeflate = both  # in/out/both\
  autodeflatealgorithm = gzip # gzip / lzo / lzfast / lz4 / lz4hc\
  # autodeflatelevel = 6 # compression level for gzip\
  autoinflate = both  # in/out/both\
@g' < ${cwd}/bin/bareos-sd.conf.sed > ${cwd}/bin/bareos-sd.conf


# enable plugin directory
mv ${cwd}/bin/bareos-sd.conf ${cwd}/bin/bareos-sd.conf.sed
# enable autoxflate plugin
sed 's@Pid Directory.*@\
Plugin Directory =\"'"${plugindir}"'\"\
@g' < ${cwd}/bin/bareos-sd.conf.sed > ${cwd}/bin/bareos-sd.conf

start_test

cat >${cwd}/tmp/bconcmds <<END_OF_DATA
@$out /dev/null
messages
@$out ${cwd}/tmp/log1.out
label storage=File volume=TestVolume001
run job=$JobName yes
wait
messages
@#
@# now do a restore
@#
@$out ${cwd}/tmp/log2.out
restore where=${cwd}/tmp/bareos-restores select storage=File
unmark *
mark *
done
yes
wait
messages
quit
END_OF_DATA

run_bareos
check_for_zombie_jobs storage=File
stop_bareos

check_two_logs
check_restore_diff
end_test
