2016-08-30 16:12:10 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
## obackup test suite 2016083002
|
|
|
|
# Stupid and very basic tests v0.0000003-alpha-dev-pre-everything
|
|
|
|
|
|
|
|
OBACKUP_DIR="$(pwd)"
|
|
|
|
OBACKUP_DIR=${OBACKUP_DIR%%/dev*}
|
|
|
|
DEV_DIR="$OBACKUP_DIR/dev"
|
|
|
|
TESTS_DIR="$DEV_DIR/tests"
|
|
|
|
|
|
|
|
SOURCE_DIR="${HOME}/obackup-testdata"
|
|
|
|
TARGET_DIR="${HOME}/obackup-storage"
|
|
|
|
|
|
|
|
TARGET_DIR_SQL_LOCAL="${HOME}/obackup-storage/sql"
|
|
|
|
TARGET_DIR_FILE_LOCAL="${HOME}/obackup-storage/files"
|
|
|
|
|
|
|
|
TARGET_DIR_SQL_PULL="${HOME}/obackup-storage/sql-pull"
|
|
|
|
TARGET_DIR_FILE_PULL="${HOME}/obackup-storage/files-pull"
|
|
|
|
|
|
|
|
TARGET_DIR_SQL_PUSH="${HOME}/obackup-storage/sql-push"
|
|
|
|
TARGET_DIR_FILE_PUSH="${HOME}/obackup-storage/files-push"
|
|
|
|
|
|
|
|
SIMPLE_DIR="testData"
|
|
|
|
RECURSIVE_DIR="testDataRecursive"
|
|
|
|
|
|
|
|
S_DIR_1="dir rect ory"
|
|
|
|
R_EXCLUDED_DIR="Excluded"
|
|
|
|
R_DIR_1="a"
|
|
|
|
R_DIR_2="b"
|
|
|
|
R_DIR_3="c d"
|
|
|
|
|
|
|
|
S_FILE_1="some file"
|
|
|
|
R_FILE_1="file_1"
|
|
|
|
R_FILE_2="file 2"
|
|
|
|
R_FILE_3="file 3"
|
|
|
|
|
|
|
|
EXCLUDED_FILE="exclu.ded"
|
|
|
|
|
|
|
|
DATABASE_1="mysql.sql.xz"
|
|
|
|
DATABASE_2="performance_schema.sql.xz"
|
|
|
|
DATABASE_EXCLUDED="information_schema.sql.xz"
|
|
|
|
|
|
|
|
function oneTimeSetUp () {
|
|
|
|
source "$DEV_DIR/ofunctions.sh"
|
|
|
|
|
2016-08-30 16:24:30 +02:00
|
|
|
if grep "^IS_STABLE=YES" "$DEV_DIR/n_obackup.sh"; then
|
2016-08-30 16:12:10 +02:00
|
|
|
IS_STABLE=yes
|
|
|
|
else
|
|
|
|
IS_STABLE=no
|
|
|
|
sed -i 's/^IS_STABLE=no/IS_STABLE=yes/' "$DEV_DIR/n_obackup.sh"
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -p "$SOURCE_DIR/$SIMPLE_DIR/$S_DIR_1"
|
|
|
|
mkdir -p "$SOURCE_DIR/$RECURSIVE_DIR/$R_EXCLUDED_DIR"
|
|
|
|
mkdir -p "$SOURCE_DIR/$RECURSIVE_DIR/$R_DIR_1"
|
|
|
|
mkdir -p "$SOURCE_DIR/$RECURSIVE_DIR/$R_DIR_2"
|
|
|
|
mkdir -p "$SOURCE_DIR/$RECURSIVE_DIR/$R_DIR_3"
|
|
|
|
|
|
|
|
touch "$SOURCE_DIR/$SIMPLE_DIR/$S_DIR_1/$S_FILE_1"
|
|
|
|
touch "$SOURCE_DIR/$SIMPLE_DIR/$EXCLUDED_FILE"
|
|
|
|
touch "$SOURCE_DIR/$RECURSIVE_DIR/$R_DIR_1/$R_FILE_1"
|
|
|
|
touch "$SOURCE_DIR/$RECURSIVE_DIR/$R_DIR_2/$R_FILE_2"
|
|
|
|
dd if=/dev/urandom of="$SOURCE_DIR/$RECURSIVE_DIR/$R_DIR_3/$R_FILE_3" bs=1M count=2
|
|
|
|
touch "$SOURCE_DIR/$RECURSIVE_DIR/$R_DIR_3/$EXCLUDED_FILE"
|
|
|
|
|
|
|
|
FilePresence=(
|
|
|
|
"$SOURCE_DIR/$SIMPLE_DIR/$S_DIR_1/$S_FILE_1"
|
|
|
|
"$SOURCE_DIR/$RECURSIVE_DIR/$R_DIR_1/$R_FILE_1"
|
|
|
|
"$SOURCE_DIR/$RECURSIVE_DIR/$R_DIR_2/$R_FILE_2"
|
|
|
|
"$SOURCE_DIR/$RECURSIVE_DIR/$R_DIR_3/$R_FILE_3"
|
|
|
|
)
|
|
|
|
|
|
|
|
DatabasePresence=(
|
|
|
|
"$DATABASE_1"
|
|
|
|
"$DATABASE_2"
|
|
|
|
)
|
|
|
|
|
|
|
|
FileExcluded=(
|
|
|
|
"$SOURCE_DIR/$SIMPLE_DIR/$EXCLUDED_FILE"
|
|
|
|
"$SOURCE_DIR/$RECURSIVE_DIR/$R_DIR_3/$R_EXCLUDED_FILE"
|
|
|
|
)
|
|
|
|
|
|
|
|
DatabaseExcluded=(
|
|
|
|
"$DATABASE_EXCLUDED"
|
|
|
|
)
|
|
|
|
|
|
|
|
DirectoriesExcluded=(
|
|
|
|
"$RECURSIVE_DIR/$R_EXCLUDED_DIR"
|
|
|
|
)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function oneTimeTearDown () {
|
|
|
|
if [ "$IS_STABLE" == "no" ]; then
|
|
|
|
sed -i 's/^IS_STABLE=yes/IS_STABLE=no/' "$DEV_DIR/n_obackup.sh"
|
|
|
|
fi
|
|
|
|
|
|
|
|
#rm -rf $SOURCE_DIR
|
|
|
|
#rm -rf $TARGET_DIR
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-30 16:24:30 +02:00
|
|
|
function test_Merge () {
|
|
|
|
cd "$DEV_DIR"
|
|
|
|
./merge.sh
|
|
|
|
asserEquals "Merging" "0" $?
|
|
|
|
}
|
|
|
|
|
2016-08-30 16:12:10 +02:00
|
|
|
function test_FirstLocalRun () {
|
|
|
|
# Basic return code tests. Need to go deep into file presence testing
|
2016-08-30 16:24:30 +02:00
|
|
|
cd "$OBACKUP_DIR"
|
|
|
|
./obackup.sh dev/tests/conf/local.conf
|
2016-08-30 16:12:10 +02:00
|
|
|
assertEquals "Return code" "0" $?
|
|
|
|
|
|
|
|
for file in "${FilePresence[@]}"; do
|
|
|
|
[ -f "$TARGET_DIR_FILE_LOCAL/$file" ]
|
|
|
|
assertEquals "File Presence [$TARGET_DIR_FILE_LOCAL/$file]" "0" $?
|
|
|
|
done
|
|
|
|
|
|
|
|
for file in "${FileExcluded[@]}"; do
|
|
|
|
[ -f "$TARGET_DIR_FILE_LOCAL/$file" ]
|
|
|
|
assertEquals "File Excluded [$TARGET_DIR_FILE_LOCAL/$file]" "1" $?
|
|
|
|
done
|
|
|
|
|
|
|
|
for file in "${DatabasePresence[@]}"; do
|
|
|
|
[ -f "$TARGET_DIR_SQL_LOCAL/$file" ]
|
|
|
|
assertEquals "Database Presence [$TARGET_DIR_SQL_LOCAL/$file]" "0" $?
|
|
|
|
done
|
|
|
|
|
|
|
|
for file in "${DatabaseExcluded[@]}"; do
|
|
|
|
[ -f "$TARGET_DIR_SQL_LOCAL/$file" ]
|
|
|
|
assertEquals "Database Excluded [$TARGET_DIR_SQL_LOCAL/$file]" "1" $?
|
|
|
|
done
|
|
|
|
|
|
|
|
for directory in "${DirectoriesExcluded[@]}"; do
|
|
|
|
[ -d "$TARGET_DIR_FILE_LOCAL/$directory" ]
|
|
|
|
assertEquals "Directory Excluded [$TARGET_DIR_FILE_LOCAL/$directory]" "1" $?
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_SecondLocalRun () {
|
|
|
|
# Only tests presence of rotated files
|
2016-08-30 16:24:30 +02:00
|
|
|
cd "$OBACKUP_DIR"
|
|
|
|
./obackup.sh dev/tests/conf/local.conf > /dev/null
|
2016-08-30 16:12:10 +02:00
|
|
|
assertEquals "Return code" "0" $?
|
|
|
|
|
|
|
|
for file in "${DatabasePresence[@]}"; do
|
|
|
|
[ -f "$TARGET_DIR_SQL_LOCAL/$file.obackup.1" ]
|
|
|
|
assertEquals "Database rotated Presence [$TARGET_DIR_SQL_LOCAL/$file]" "0" $?
|
|
|
|
done
|
|
|
|
|
|
|
|
[ -d "$TARGET_DIR_FILE_LOCAL/$(dirname $SOURCE_DIR).obackup.1" ]
|
|
|
|
assertEquals "File rotated Presence" "0" $?
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_WaitForTaskCompletion () {
|
|
|
|
# Tests if wait for task completion works correctly
|
|
|
|
|
|
|
|
# Standard wait
|
|
|
|
sleep 3 &
|
|
|
|
pids="$!"
|
|
|
|
sleep 5 &
|
|
|
|
pids="$pids;$!"
|
|
|
|
WaitForTaskCompletion $pids 0 0 ${FUNCNAME[0]} true 0
|
|
|
|
assertEquals "WaitForTaskCompletion test 1" "0" $?
|
|
|
|
|
|
|
|
# Standard wait with warning
|
|
|
|
sleep 5 &
|
|
|
|
pids="$!"
|
|
|
|
sleep 8 &
|
|
|
|
pids="$pids;$!"
|
|
|
|
|
|
|
|
WaitForTaskCompletion $pids 6 0 ${FUNCNAME[0]} true 0
|
|
|
|
assertEquals "WaitForTaskCompletion test 2" "0" $?
|
|
|
|
|
|
|
|
# Both pids are killed
|
|
|
|
sleep 7 &
|
|
|
|
pids="$!"
|
|
|
|
sleep 9 &
|
|
|
|
pids="$pids;$!"
|
|
|
|
|
|
|
|
WaitForTaskCompletion $pids 0 5 ${FUNCNAME[0]} true 0
|
|
|
|
assertEquals "WaitForTaskCompletion test 3" "2" $?
|
|
|
|
|
|
|
|
# One of two pids are killed
|
|
|
|
sleep 3 &
|
|
|
|
pids="$!"
|
|
|
|
sleep 10 &
|
|
|
|
pids="$pids;$!"
|
|
|
|
|
|
|
|
WaitForTaskCompletion $pids 0 7 ${FUNCNAME[0]} true 0
|
|
|
|
assertEquals "WaitForTaskCompletion test 4" "1" $?
|
|
|
|
|
|
|
|
# Count since script begin, the following should output two warnings and both pids should get killed
|
|
|
|
sleep 5 &
|
|
|
|
pids="$!"
|
|
|
|
sleep 10 &
|
|
|
|
pids="$pids;$!"
|
|
|
|
|
|
|
|
WaitForTaskCompletion $pids 8 15 ${FUNCNAME[0]} false 0
|
|
|
|
assertEquals "WaitForTaskCompletion test 5" "2" $?
|
|
|
|
}
|
|
|
|
|
|
|
|
. "$TESTS_DIR/shunit2/shunit2"
|