Tomb/extras/test/50_integrity.sh

21 lines
560 B
Bash
Raw Normal View History

2017-05-01 22:02:49 +00:00
#!/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") &&
2017-05-01 22:02:49 +00:00
tt_close --unsafe &&
tt_open --tomb-pwd $DUMMYPASS &&
CRC2=$(sha256sum "$MEDIA/$testname/datacheck.raw") &&
2017-05-01 22:02:49 +00:00
[[ "$CRC1" == "$CRC2" ]] &&
tt_close
'
test_done