restic/testsuite/test-backup.sh

19 lines
627 B
Bash
Raw Normal View History

2014-08-06 14:09:51 -04:00
set -e
2014-08-05 17:13:19 -04:00
prepare
2014-12-05 15:45:49 -05:00
run restic init
run restic backup "${BASE}/fake-data"
run restic restore "$(basename "$RESTIC_REPOSITORY"/snapshots/*)" "${BASE}/fake-data-restore"
2014-09-23 16:39:12 -04:00
dirdiff "${BASE}/fake-data" "${BASE}/fake-data-restore/fake-data"
2014-11-30 17:18:58 -05:00
2015-05-06 15:45:23 -04:00
SNAPSHOT=$(restic list snapshots)
run restic backup -p "$SNAPSHOT" "${BASE}/fake-data"
2014-12-05 15:45:49 -05:00
run restic restore "$(basename "$RESTIC_REPOSITORY"/snapshots/*)" "${BASE}/fake-data-restore-incremental"
2014-11-30 17:18:58 -05:00
dirdiff "${BASE}/fake-data" "${BASE}/fake-data-restore-incremental/fake-data"
2015-05-06 15:45:23 -04:00
echo "snapshot id is $SNAPSHOT"
2015-05-06 17:43:36 -04:00
restic ls "$SNAPSHOT" fake-data/0/0/1 | head -n 10
2015-05-06 15:45:23 -04:00
2014-12-22 08:59:46 -05:00
run restic fsck -o --check-data
2014-08-05 17:13:19 -04:00
cleanup