tags/tests/basic.sh

49 lines
1.3 KiB
Bash
Raw Normal View History

2022-11-15 21:36:11 +00:00
#!/usr/bin/env bash
set -ueo pipefail
SCRIPT_DIR=$(dirname $(readlink -f "$0"))
2022-11-16 06:58:58 +00:00
DB_FILE="test.db"
2022-11-16 07:56:15 +00:00
FILENAME="test.mp4"
2022-11-15 21:36:11 +00:00
2022-11-16 06:58:58 +00:00
oneTimeSetUp() {
tag --db "$DB_FILE" init >/dev/null
2022-11-15 21:36:11 +00:00
}
2022-11-16 06:58:58 +00:00
oneTimeTearDown() {
# need to check if file exists
# because of bug in shunit2 that
# runs one-time teardown two times
# see https://github.com/kward/shunit2/issues/112
2022-11-15 21:36:11 +00:00
[ -f "$DB_FILE" ] && rm "$DB_FILE"
}
testDbCreated() {
assertTrue "[[ -f \"$DB_FILE\" ]]"
}
2022-11-16 06:58:58 +00:00
testTagAdded() {
tag --db "$DB_FILE" add tag hello >/dev/null
RESULT=$(sqlite3 "$DB_FILE" "SELECT label from tags WHERE label = 'hello'")
assertEquals $RESULT "hello"
}
testFilenameAdded() {
tag --db "$DB_FILE" add path "$FILENAME" >/dev/null
RESULT=$(sqlite3 "$DB_FILE" "SELECT filename from files WHERE filename = '$FILENAME'")
assertEquals "$RESULT" "$FILENAME"
}
testHashAdded() {
local HASH="fbe2153ce0614d76a378b2e6fe07cc9e"
2022-11-16 07:56:15 +00:00
tag --db "$DB_FILE" add hash "$FILENAME" "$HASH" >/dev/null
RESULT=$(sqlite3 "$DB_FILE" "SELECT md5 from hashes WHERE md5 = '$HASH'")
2022-11-16 06:58:58 +00:00
assertEquals "$RESULT" "$HASH"
}
2022-11-16 07:56:15 +00:00
testFailAddingHashOnNonexistentFile() {
local HASH="fbe2153ce0614d76a378b2e6fe07cc9e"
tag --db "$DB_FILE" add hash "nonexistentfile" "$HASH" 2>/dev/null
assertEquals "$?" 1
}
2022-11-16 06:58:58 +00:00
. ../shunit2/shunit2