testsuite: Add test for 'ls' command

This commit is contained in:
Alexander Neumann 2015-05-06 21:45:23 +02:00
parent 683092f0c4
commit c86474663c
2 changed files with 1246 additions and 1 deletions

View File

@ -6,10 +6,17 @@ run restic backup "${BASE}/fake-data"
run restic restore "$(basename "$RESTIC_REPOSITORY"/snapshots/*)" "${BASE}/fake-data-restore"
dirdiff "${BASE}/fake-data" "${BASE}/fake-data-restore/fake-data"
SNAPSHOT=$(run restic list snapshots)
SNAPSHOT=$(restic list snapshots)
run restic backup -p "$SNAPSHOT" "${BASE}/fake-data"
run restic restore "$(basename "$RESTIC_REPOSITORY"/snapshots/*)" "${BASE}/fake-data-restore-incremental"
dirdiff "${BASE}/fake-data" "${BASE}/fake-data-restore-incremental/fake-data"
# 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"
run restic fsck -o --check-data
cleanup

1238
testsuite/test-ls-expected Normal file

File diff suppressed because it is too large Load Diff