mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-13 16:26:28 +00:00
be911b1e16
this new "flavor" of tomb uses veracrypt for mounted volumes and POSIX sh only for its scripting, is a work in progress and still lacks full functionality, but provides a proof-of-concept to be developed further if needs arise.
52 lines
1.0 KiB
Bash
52 lines
1.0 KiB
Bash
load bats_setup
|
|
|
|
@test "Dig tomb" {
|
|
rm -f "$TOMB"
|
|
>&3 echo "$TOMB"
|
|
./tomb dig -s 20MiB "$TOMB"
|
|
}
|
|
|
|
@test "Forge key" {
|
|
rm -f "$TOMB".key
|
|
./tomb forge "$TOMB".key
|
|
}
|
|
|
|
@test "Lock tomb with key" {
|
|
./tomb lock -k "$TOMB".key "$TOMB"
|
|
}
|
|
|
|
@test "Open tomb with key" {
|
|
mkdir -p "$TOMB".mnt
|
|
./tomb open -k "$TOMB".key "$TOMB" "$TOMB".mnt
|
|
}
|
|
|
|
@test "Create random.data inside the tomb" {
|
|
dd if=/dev/urandom of="$TOMB".mnt/random.data bs=1024 count=10000
|
|
>&3 ls -l "$TOMB".mnt/random.data
|
|
sha512sum "$TOMB".mnt/random.data | awk '{print $1}' | >&3 tee "$TOMB".hash
|
|
uname -a > "$TOMB".uname
|
|
}
|
|
|
|
@test "Close tomb" {
|
|
./tomb close "$TOMB"
|
|
}
|
|
|
|
@test "Re-open tomb with key" {
|
|
./tomb open -k "$TOMB".key "$TOMB" "$TOMB".mnt
|
|
}
|
|
|
|
@test "Check integrity of random data" {
|
|
newhash=`sha512sum "$TOMB".mnt/random.data | awk '{print $1}'`
|
|
oldhash=`cat "$TOMB".hash`
|
|
>&2 echo $newhash
|
|
>&2 echo $oldhash
|
|
assert_equal "$newhash" "$oldhash"
|
|
if [ -r "$TOMB".uname ]; then
|
|
>&3 cat "$TOMB".uname
|
|
fi
|
|
}
|
|
|
|
@test "Close the tomb again" {
|
|
./tomb close "$TOMB"
|
|
}
|