#!/bin/sh set -e cd "$(dirname "$0")" . ../util.sh current_test=$(basename $(pwd)) export LOCAL_DIR=$(mktemp -d) export KEY_DIR=$(mktemp -d) export PASSPHRASE="test" gpg --batch --gen-key < "$LOCAL_DIR/decrypted.tar.gz" tar -xf "$LOCAL_DIR/decrypted.tar.gz" -C $TMP_DIR if [ ! -f $TMP_DIR/backup/app_data/offen.db ]; then fail "Could not find expected file in untared archive." fi rm "$LOCAL_DIR/decrypted.tar.gz" pass "Found relevant files in decrypted and untared local backup." if [ ! -L "$LOCAL_DIR/test-latest.tar.gz.gpg" ]; then fail "Could not find local symlink to latest encrypted backup." fi