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
|
#!/bin/bash
set -e
cd `dirname $0`/../..
export PYTHONPATH=`pwd`
# use testing/gnupg forever keys
export GNUPGHOME="testing/gnupg"
export PASSPHRASE="test"
export SIGN_KEY="839E6A2856538CCF"
export SIGN_PASSPHRASE="test"
export ENCRYPT_KEY1="839E6A2856538CCF"
export ENCRYPT_KEY2="453005CE9B736B2A"
ulimit -n 1024
ulimit -n
function clean() {
# Clean up if previous failure
rm -rf /tmp/testfiles /tmp/testbackup ~/.cache/duplicity/issue125
}
function build() {
# Make test dirs
mkdir /tmp/testfiles
mkdir /tmp/testbackup
# Full backup plus 256 incremental backups
for i in {1..256}
do
echo "File test${i}.file"
dd if=/dev/urandom of="/tmp/testfiles/test${i}.file" bs=1M count=1 status=none
bin/duplicity --name issue125 --encrypt-key ${ENCRYPT_KEY1} --no-print -v0 /tmp/testfiles file:///tmp/testbackup
done
}
function debug() {
# Verify may crash with "filedescriptor out of range in select()"
bin/duplicity verify --pydevd --name issue125 --encrypt-key ${ENCRYPT_KEY1} file:///tmp/testbackup /tmp/testfiles
}
case $1 in
"build")
clean
build
;;
"debug")
debug
;;
"clean")
clean
;;
*)
echo "Usage: $0 build | debug | clean"
exit 1
;;
esac
|