Add basic testing infrastructure + initial tests
[onak.git] / t / fs-010-del.t
diff --git a/t/fs-010-del.t b/t/fs-010-del.t
new file mode 100755 (executable)
index 0000000..43fa7b0
--- /dev/null
@@ -0,0 +1,14 @@
+#!/bin/sh
+# Check we can delete a key successfully with the fs backend.
+
+set -e
+
+cd t
+../onak -b -c test.conf add < ../keys/noodles.key
+../onak -b -c test.conf delete 0x2DA8B985
+if [ -e db/key/2D/A8/2DA8B985/94FA372B2DA8B985 ]; then
+       echo "* Did not correctly delete key using fs backend"
+       exit 1
+fi
+
+exit 0