1
0
mirror of https://github.com/restic/restic.git synced 2024-07-29 16:26:44 +02:00
restic/testsuite/test-backup.sh

23 lines
819 B
Bash
Raw Normal View History

2014-08-06 20:09:51 +02:00
set -e
2014-08-05 23:13:19 +02:00
prepare
2014-12-05 21:45:49 +01:00
run restic init
run restic backup "${BASE}/fake-data"
run restic restore "$(basename "$RESTIC_REPOSITORY"/snapshots/*)" "${BASE}/fake-data-restore"
2014-09-23 22:39:12 +02:00
dirdiff "${BASE}/fake-data" "${BASE}/fake-data-restore/fake-data"
2014-11-30 23:18:58 +01:00
2015-05-06 21:45:23 +02:00
SNAPSHOT=$(restic list snapshots)
run restic backup -p "$SNAPSHOT" "${BASE}/fake-data"
2014-12-05 21:45:49 +01:00
run restic restore "$(basename "$RESTIC_REPOSITORY"/snapshots/*)" "${BASE}/fake-data-restore-incremental"
2014-11-30 23:18:58 +01:00
dirdiff "${BASE}/fake-data" "${BASE}/fake-data-restore-incremental/fake-data"
2015-05-06 21:45:23 +02:00
# first line contains snapshot id
# second line contains timestamp of directory creation
# so compare from line three on
echo "snapshot id is $SNAPSHOT"
restic ls "$SNAPSHOT" | tail -n +3 > "${BASE}/test-ls-output"
diff -au "${dir}/test-ls-expected" "${BASE}/test-ls-output"
2014-12-22 14:59:46 +01:00
run restic fsck -o --check-data
2014-08-05 23:13:19 +02:00
cleanup