X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/c0e423f3a00da01cdcc994e973d0f04c7c956bae..2ab46b57b6d575e31dbfa48a77cd7308c01f5914:/functest/test.sh diff --git a/functest/test.sh b/functest/test.sh index de55a588..333c45e0 100755 --- a/functest/test.sh +++ b/functest/test.sh @@ -25,10 +25,13 @@ cp -R "stuff/db-stub" "$STGPATH/db" sed -i "s|-STG-PATH-|$STGPATH|g" "$STGPATH/stargazer.conf" -LOGFILE=`pwd`"/"`date "+%Y-%m-%d-%H%M%S.console.log"` +CURPATH=`pwd` +LOGFILE="$CURPATH/"`date "+%Y-%m-%d-%H%M%S.console.log"` cd "$STGPATH" +printf "Starting Stargazer... " + "$STGPATH/stargazer" "$STGPATH" >> "$LOGFILE" 2>&1 & COUNT="" @@ -51,39 +54,13 @@ done PID=`cat "$STGPATH/stargazer.pid"` printf "Started with pid $PID\n" -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=`echo $LINE | grep login` - if [ "$?" == "0" ] - then - LOGINS="$LOGINS\n"`echo $LOGIN | cut -d: -f2 | sed -e 's/^ *//' -e 's/ *$//'` - fi -done -IFS=$OLDIFS - -printf "Logins:\n$LOGINS\n" - -NUM=`echo $LOGINS | wc -l` - -printf -- "--------\n$NUM\n\n" +printf "\nTesting admins:\n" +"$CURPATH/test_admins.sh" "$BASEPATH" +printf "\nTesting services:\n" +"$CURPATH/test_services.sh" "$BASEPATH" +printf "\n" -printf "Stopping...\n" +printf "Stopping... " kill $PID COUNT=""