mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-11 07:30:56 +00:00
21 lines
560 B
Bash
21 lines
560 B
Bash
#!/usr/bin/env zsh
|
|
|
|
export test_description="Testing file integrity"
|
|
|
|
source ./setup
|
|
|
|
test_export "test" # Using already generated tomb
|
|
test_expect_success 'Testing contents integrity' '
|
|
tt_open --tomb-pwd $DUMMYPASS &&
|
|
tt_set_ownership "$MEDIA/$testname" &&
|
|
tt dig -s 10 "$MEDIA/$testname/datacheck.raw" &&
|
|
CRC1=$(sha256sum "$MEDIA/$testname/datacheck.raw") &&
|
|
tt_close --unsafe &&
|
|
tt_open --tomb-pwd $DUMMYPASS &&
|
|
CRC2=$(sha256sum "$MEDIA/$testname/datacheck.raw") &&
|
|
[[ "$CRC1" == "$CRC2" ]] &&
|
|
tt_close
|
|
'
|
|
|
|
test_done
|