aboutsummaryrefslogtreecommitdiffstats
path: root/jsaccess/tests/test_store_local.sh
diff options
context:
space:
mode:
Diffstat (limited to 'jsaccess/tests/test_store_local.sh')
-rwxr-xr-xjsaccess/tests/test_store_local.sh39
1 files changed, 0 insertions, 39 deletions
diff --git a/jsaccess/tests/test_store_local.sh b/jsaccess/tests/test_store_local.sh
deleted file mode 100755
index 0cec47a..0000000
--- a/jsaccess/tests/test_store_local.sh
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-
-# Unittests for jsaccess store.sh
-
-storesh=../store.sh
-TMP=tmp
-export JSA_PASS=jsa_unittest_passphrase
-export JSA_FORCE=1
-
-$storesh init store ||exit 1
-[ -d store ] ||exit 2
-
-$storesh add example.txt ||exit 10
-[ -d /home/user/code/laurent-tools/jsaccess/tests/store/ad2c5eb7c4fca722235f5df80e11fa619adbd533/ ] ||exit 11
-[ -f /home/user/code/laurent-tools/jsaccess/tests/store/ad2c5eb7c4fca722235f5df80e11fa619adbd533/8e895f3f4317fb442747a40b9025d6ad8c9c8cf3 ] ||exit 12
-
-$storesh ls > $TMP ||exit 20
-[ `grep -c "example.txt" $TMP` -eq 1 ] || exit 21
-rm $TMP
-
-$storesh rm example.txt ||exit 30
-[ ! -f /home/user/code/laurent-tools/jsaccess/tests/store/ad2c5eb7c4fca722235f5df80e11fa619adbd533/8e895f3f4317fb442747a40b9025d6ad8c9c8cf3 ] ||exit 31
-
-$storesh ls > $TMP ||exit 40
-[ `grep -c "example.txt" $TMP` -eq 0 ] || exit 41
-rm $TMP
-
-$storesh add example.txt ||exit 50
-[ -d /home/user/code/laurent-tools/jsaccess/tests/store/ad2c5eb7c4fca722235f5df80e11fa619adbd533/ ] ||exit 51
-[ -f /home/user/code/laurent-tools/jsaccess/tests/store/ad2c5eb7c4fca722235f5df80e11fa619adbd533/8e895f3f4317fb442747a40b9025d6ad8c9c8cf3 ] ||exit 52
-
-$storesh rmall ||exit 60
-[ ! -d /home/user/code/laurent-tools/jsaccess/tests/store/ad2c5eb7c4fca722235f5df80e11fa619adbd533/ ] ||exit 61
-
-$storesh wipe store ||exit 70
-[ ! -d store ] ||exit 71
-
-echo TEST OK
-exit 0