mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-05 21:07:58 +00:00
25 lines
564 B
Bash
25 lines
564 B
Bash
#!/usr/bin/env zsh
|
|
|
|
export test_description="Testing common operations on tomb"
|
|
|
|
source ./setup
|
|
|
|
test_export "test" # Using already generated tomb
|
|
test_expect_success 'Testing open with wrong password ' '
|
|
test_must_fail tt_open --tomb-pwd wrongpassword
|
|
'
|
|
|
|
test_expect_success 'Testing open with good password ' '
|
|
tt_open --tomb-pwd $DUMMYPASS &&
|
|
tt_close
|
|
'
|
|
|
|
test_expect_success 'Testing open in read only mode' '
|
|
chmod -w $tomb &&
|
|
tt_open --tomb-pwd $DUMMYPASS -o ro,noatime,nodev &&
|
|
tt_close &&
|
|
chmod +w $tomb
|
|
'
|
|
|
|
test_done
|