From ac34419be8a56d86a395a6ef0ce86c89b25ddd55 Mon Sep 17 00:00:00 2001 From: gramanas Date: Sun, 15 Apr 2018 01:57:16 +0300 Subject: add testing --- src/tests/init | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 src/tests/init (limited to 'src/tests') diff --git a/src/tests/init b/src/tests/init new file mode 100755 index 0000000..2091bdc --- /dev/null +++ b/src/tests/init @@ -0,0 +1,23 @@ +#!/bin/bash +BIN=/build/ck + +TEST_LOCATION=@PROJECT_TESTING_GROUNDS@ +mkdir -p $TEST_LOCATION/vc +mkdir $TEST_LOCATION/sec + +exec $BIN/ck init $TEST_LOCATION/vc $TEST_LOCATION/sec > /dev/null 2>&1 & +wait $! + +if [ ! -f ~/.ck/ckrc ]; then + echo -e $ERROR"Config file not created." + exit 1 +fi + +if [ ! -f ~/.ck/ckdb ]; then + echo -e $ERROR"DB file not created." + exit 1 +fi + +rm -rf $HOME/.ck +rm -rf $TEST_LOCATION +echo -e $PASS -- cgit v1.2.3