From 195e09db8f2bb83665f5536dd46330467c251900 Mon Sep 17 00:00:00 2001 From: Maxim Mamontov Date: Sat, 11 Oct 2014 00:37:00 +0300 Subject: [PATCH] Use common functions in admin tests and service tests. --- functest/test_admins.sh | 20 +++----------- functest/test_services.sh | 56 ++++++--------------------------------- 2 files changed, 12 insertions(+), 64 deletions(-) diff --git a/functest/test_admins.sh b/functest/test_admins.sh index d82d97bc..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,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" diff --git a/functest/test_services.sh b/functest/test_services.sh index 3447c22f..3bc397ae 100755 --- a/functest/test_services.sh +++ b/functest/test_services.sh @@ -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 services list:\n" - -NAMES="" -OLDIFS=$IFS -IFS=$(printf "\n") -for LINE in $RES -do - printf -- "$LINE\n" - NAME=`printf "$LINE" | grep name` - if [ "$?" == "0" ] - then - NAMES="$NAMES\n"`printf "$NAME" | cut -d: -f2 | sed -e 's/^ *//' -e 's/ *$//'` - fi -done -IFS=$OLDIFS +NAMES=`getFields "name" "$RES"` printf "Names:\n$NAMES\n" -NUM=`printf "$NAMES" | wc -l` +NUM=`count "$NAMES"` printf -- "--------\n$NUM\n\n" @@ -56,25 +44,11 @@ then exit 0 fi -printf "Got services list:\n" - -NAMES="" -OLDIFS=$IFS -IFS=$(printf "\n") -for LINE in $RES -do - printf -- "$LINE\n" - NAME=`printf "$LINE" | grep name` - if [ "$?" == "0" ] - then - NAMES="$NAMES\n"`printf "$NAME" | cut -d: -f2 | sed -e 's/^ *//' -e 's/ *$//'` - fi -done -IFS=$OLDIFS +NAMES=`getFields "name" "$RES"` printf "Names:\n$NAMES\n" -NUM=`printf "$NAMES" | wc -l` +NUM=`count "$NAMES"` printf -- "--------\n$NUM\n\n" @@ -100,25 +74,11 @@ then exit 0 fi -printf "Got services list:\n" - -NAMES="" -OLDIFS=$IFS -IFS=$(printf "\n") -for LINE in $RES -do - printf -- "$LINE\n" - NAME=`printf "$LINE" | grep name` - if [ "$?" == "0" ] - then - NAMES="$NAMES\n"`printf "$NAME" | cut -d: -f2 | sed -e 's/^ *//' -e 's/ *$//'` - fi -done -IFS=$OLDIFS +NAMES=`getFields "name" "$RES"` printf "Names:\n$NAMES\n" -NUM=`printf "$NAMES" | wc -l` +NUM=`count "$NAMES"` printf -- "--------\n$NUM\n\n" -- 2.43.2