1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
#!/bin/sh
# $Revision: $
# $Date: $
set -e
# Each test script should include testlib.sh
source testlib.sh
# When the test is ready, set this to false for nice outputs.
# if you want to see what happens, use those flags
# verbose="true"
# warnings="true"
# The conffile part of the test, see confs/* for details.
source confs/base.conf
source confs/tarball.conf
export BM_ARCHIVE_ROOT="repository"
export BM_ARCHIVE_METHOD="tarball"
export BM_TARBALL_DIRECTORIES="$PWD/testdir"
export BM_TARBALLINC_MASTERDATETYPE="weekly"
export BM_TARBALL_FILETYPE="tar.gz"
export BM_ARCHIVE_PURGEDUPS="true"
# This test is for incremental backups, we don't want master backups!
export BM_TARBALLINC_MASTERDATEVALUE="999"
source $locallib/sanitize.sh
bm_init_env
bm_init_today
YESTERDAY=$(date +%Y%m%d --date '1 days ago')
TODAY=$YESTERDAY
# The test actions
rm -rf $BM_REPOSITORY_ROOT
rm -rf testdir
mkdir testdir
mkdir testdir/dir1
cat /etc/passwd > testdir/dir1/file1
create_directories
make_archives
name=$(get_dir_name "$PWD/testdir" long)
if [[ -e "$BM_ARCHIVE_ROOT/$BM_ARCHIVE_PREFIX$name.$YESTERDAY.master.tar.gz" ]]; then
bm_init_today
make_archives
if [[ -L "$BM_ARCHIVE_ROOT/$BM_ARCHIVE_PREFIX$name.$YESTERDAY.master.tar.gz" ]]; then
info "Duplicate has been purged, succes."
rm -rf testdir
rm -rf $BM_ARCHIVE_ROOT
exit 0
else
warning "Duplicate has not been purged, failure."
rm -rf testdir
rm -rf $BM_ARCHIVE_ROOT
exit 1
fi
else
rm -rf testdir
rm -rf $BM_ARCHIVE_ROOT
exit 20
fi
|