]> git.stg.codes - stg.git/blobdiff - functest/test_admins.sh
Use common functions in admin tests and service tests.
[stg.git] / functest / test_admins.sh
index d82d97bcb596c73f768a04c682524131a1d72954..b19df2b080d615ab05f7487497061ad6a3b197d9 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+source `dirname $0`/functions
+
 BASEPATH=$1
 
 SGCONFPATH="$BASEPATH/stg/projects/sgconf"
@@ -12,25 +14,11 @@ 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"