From fe9c54c24affd5c741031cf0c5f0bdf3c4fff31a Mon Sep 17 00:00:00 2001 From: gramanas Date: Sun, 18 Oct 2020 01:37:58 +0300 Subject: Initial.. --- test.sh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 test.sh (limited to 'test.sh') diff --git a/test.sh b/test.sh new file mode 100755 index 0000000..6dc38e6 --- /dev/null +++ b/test.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +CONF=$(realpath conf) +CONF_HOME=$(mktemp -d) +export CONF_HOME + +conf1=$(mktemp) +conf2=$(mktemp) +conf3=$(mktemp) +conf4=$(mktemp) +conf5=$(mktemp) + +echo "test config 1" > "$conf1" +echo "test config 2" > "$conf2" +echo "test config 3" > "$conf3" +echo "test config 4" > "$conf4" +echo "test config 5" > "$conf5" + +$CONF add "$conf1" +$CONF add -g conf "$conf2" "$conf3" +$CONF add -g conf "$conf4" +$CONF add -g other "$conf5" + +[ "$($CONF ls -l | wc -l)" != "5" ] && echo Test failed +[ "$($CONF ls | wc -l)" != "8" ] && echo Test failed + +rm -rf "$conf1" "$conf2" "$conf3" "$conf4" "$conf5" "$CONF_HOME" +echo PASS -- cgit v1.2.3