From 78ee1c72c670a71bfd165448676fc65bff802916 Mon Sep 17 00:00:00 2001 From: gramanas Date: Mon, 19 Nov 2018 19:11:06 +0200 Subject: Add ability to use ck without secret dir --- test/list.sh | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 test/list.sh (limited to 'test/list.sh') diff --git a/test/list.sh b/test/list.sh new file mode 100644 index 0000000..e330dad --- /dev/null +++ b/test/list.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +init list + +# add configs to ck +path1=$BIN/test1.conf +path2=$BIN/test2.conf +path3=$BIN/test3.conf + +add_config prog1 $path1 +add_config prog2 $path2 +add_config prog3 $path3 + +for i in $($BIN/ck -c $BIN list paths); do + if [[ "$i" != "$path1" ]] && [[ "$i" != "$path2" ]] && [[ "$i" != "$path3" ]]; then + err "Listing paths" + fi +done + +for i in $($BIN/ck -c $BIN list programs); do + if [[ "$i" != "prog1" ]] && [[ "$i" != "prog2" ]] && [[ "$i" != "prog3" ]]; then + err "Listing programs" + fi +done + +clear_tests +echo -e $PASS -- cgit v1.2.3