X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/6aadaaf234bfd8129e8b4ff7f64c3aef8df54659..3261ecc2503f45394eb3b9df97c36b08fb14fb1d:/functest/test_admins.sh diff --git a/functest/test_admins.sh b/functest/test_admins.sh index f82205e2..b19df2b0 100755 --- a/functest/test_admins.sh +++ b/functest/test_admins.sh @@ -1,5 +1,7 @@ #!/bin/sh +source `dirname $0`/functions + BASEPATH=$1 SGCONFPATH="$BASEPATH/stg/projects/sgconf" @@ -12,24 +14,18 @@ then 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 +LOGINS=`getFields "login" "$RES"` printf "Logins:\n$LOGINS\n" -NUM=`printf "$LOGINS" | wc -l` +NUM=`count "$LOGINS"` printf -- "--------\n$NUM\n\n" + +RES=`"$SGCONFPATH/sgconf" -s localhost -p 5555 -u admin -w 123456 --chg-admin admin --priv 111111111` + +if [ "$?" != "0" ] +then + printf "Failed to update admin's priviledges Result:\n$RES\n" + exit 0 +fi