X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/536288bed73de62c0935144e2b9ba67a93764839..6aadaaf234bfd8129e8b4ff7f64c3aef8df54659:/functest/test_admins.sh?ds=sidebyside diff --git a/functest/test_admins.sh b/functest/test_admins.sh new file mode 100755 index 00000000..f82205e2 --- /dev/null +++ b/functest/test_admins.sh @@ -0,0 +1,35 @@ +#!/bin/sh + +BASEPATH=$1 + +SGCONFPATH="$BASEPATH/stg/projects/sgconf" + +RES=`"$SGCONFPATH/sgconf" -s localhost -p 5555 -u admin -w 123456 --get-admins` + +if [ "$?" != "0" ] +then + printf "Failed to get admins list. Result:\n$RES\n" + exit 0 +fi + +printf "Got admins list:\n" + +LOGINS="" +OLDIFS=$IFS +IFS=$(printf "\n") +for LINE in $RES +do + printf -- "$LINE\n" + LOGIN=`printf "$LINE" | grep login` + if [ "$?" == "0" ] + then + LOGINS="$LOGINS\n"`printf "$LOGIN" | cut -d: -f2 | sed -e 's/^ *//' -e 's/ *$//'` + fi +done +IFS=$OLDIFS + +printf "Logins:\n$LOGINS\n" + +NUM=`printf "$LOGINS" | wc -l` + +printf -- "--------\n$NUM\n\n"