From 84aca7b9f43b760d757b58c83d52f3eb923b4664 Mon Sep 17 00:00:00 2001 From: Laurent Ghigonis Date: Tue, 18 Jun 2013 04:24:12 +0200 Subject: jsaccess: store.sh deployment done --- jsaccess/tests/test_store_local.sh | 39 -------------------------------------- 1 file changed, 39 deletions(-) delete mode 100755 jsaccess/tests/test_store_local.sh (limited to 'jsaccess/tests/test_store_local.sh') 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 -- cgit v1.2.3-59-g8ed1b