X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=common%2Fscripts%2Fapplication-lifecycle.sh;h=0bdc6d459e4f073a48c7066f1d1e780645f03c28;hb=fcefef408d150eb3fc3d63efdcc370973b54eaeb;hp=551e5b67b8fad9baca2d90518571c4191d5c032b;hpb=9f36891d6fdee48056c9733fb5910087c9750b58;p=src%2Fqa-testdefinitions.git diff --git a/common/scripts/application-lifecycle.sh b/common/scripts/application-lifecycle.sh index 551e5b6..0bdc6d4 100755 --- a/common/scripts/application-lifecycle.sh +++ b/common/scripts/application-lifecycle.sh @@ -3,6 +3,7 @@ set -x export TERM=dumb +export COLUMNS=1000 AGLDRIVER=agl-driver @@ -29,34 +30,39 @@ fi do_afm_util() { +set -x if [ $SERVICE_USER -eq 1 -o $APPLICATION_USER -eq 1 ];then - echo "DEBUG: do_afm_util as $AGLDRIVER" su - $AGLDRIVER -c "afm-util $*" else - echo "DEBUG: do_afm_util as $(whoami)" afm-util $* fi return $? } -wget -q $BASEURL -O index.html -if [ $? -ne 0 ];then - echo "ERROR: Cannot wget $BASEURL" - exit 1 +if [ ! -f index.html ] ; then + wget -q $BASEURL -O index.html + if [ $? -ne 0 ];then + echo "ERROR: Cannot wget $BASEURL" + exit 1 + fi fi grep -o '[a-z-]*.wgt' index.html | sort | uniq | while read wgtfile do - WGTNAME=$(echo $wgtfile | sed 's,.wgt$,,') + # remove extension and the debug state + WGTNAME=$(echo $wgtfile | sed 's,.wgt$,,' | sed 's,-debug$,,') SERVICE_PLATFORM=0 SERVICE_USER=0 APPLICATION_USER=0 echo "DEBUG: fetch $wgtfile" - wget -q $BASEURL/$wgtfile - if [ $? -ne 0 ];then - echo "ERROR: wget from $BASEURL/$wgtfile" - continue + + if [ ! -f $wgtfile ] ; then + wget -q $BASEURL/$wgtfile + if [ $? -ne 0 ];then + echo "ERROR: wget from $BASEURL/$wgtfile" + continue + fi fi echo "DEBUG: analyse wgt file" @@ -105,20 +111,20 @@ do fi echo "DEBUG: check presence of $WGTNAME" - NAMEID=$(grep id\\\":\\\"${WGTNAME}@ $LIST | cut -d\" -f4 | cut -d\\ -f1) + NAMEID=$(grep id\\\":\\\"${WGTNAME}\" $LIST | cut -d\" -f4 | cut -d\\ -f1) if [ ! -z "$NAMEID" ];then echo "DEBUG: $WGTNAME already installed as $NAMEID" # need to kill then deinstall - afm-util ps | grep -q $WGTNAME + do_afm_util ps --all | grep -q $WGTNAME if [ $? -eq 0 ];then echo "DEBUG: kill $WGTNAME" - afm-util kill $WGTNAME + do_afm_util kill $WGTNAME if [ $? -ne 0 ];then echo "ERROR: afm-util kill" - lava-test-case afm-util-pre-kill-$WGTNAME --result fail - continue - else - lava-test-case afm-util-pre-kill-$WGTNAME --result pass + #lava-test-case afm-util-pre-kill-$WGTNAME --result fail + #continue + #else + # lava-test-case afm-util-pre-kill-$WGTNAME --result pass fi else echo "DEBUG: no need to kill $WGTNAME" @@ -128,8 +134,9 @@ do afm-util remove $NAMEID if [ $? -ne 0 ];then echo "ERROR: afm-util remove" - lava-test-case afm-util-remove-$WGTNAME --result fail - continue + #lava-test-case afm-util-remove-$WGTNAME --result fail + journalctl -b | tail -40 + #continue else lava-test-case afm-util-remove-$WGTNAME --result pass fi @@ -149,9 +156,12 @@ do lava-test-case afm-util-install-$WGTNAME --result pass fi # message is like \"added\":\"mediaplayer@0.1\" - NAMEID=$(grep d\\\":\\\"${WGTNAME}@ $OUT | cut -d\" -f4 | cut -d\\ -f1) + NAMEID=$(grep d\\\":\\\"${WGTNAME}\" $OUT | cut -d\" -f4 | cut -d\\ -f1) if [ -z "$NAMEID" ];then echo "ERROR: Cannot get nameid" + echo "DEBUG: ========== DUMPING output ==========" + cat $OUT + echo "DEBUG: ========== END DUMP ==========" continue fi echo "DEBUG: $WGTNAME is installed as $NAMEID" @@ -175,7 +185,7 @@ do echo "DEBUG: end of list" fi - afm-util info $NAMEID + do_afm_util info $NAMEID if [ $? -ne 0 ];then echo "ERROR: afm-util info" lava-test-case afm-util-info-$WGTNAME --result fail @@ -184,9 +194,9 @@ do fi echo "DEBUG: check if we see the package with systemctl list-units (before start)" - systemctl list-units --full | grep "afm.*$WGTNAME" + systemctl list-units --full | grep "afm.*$WGTNAME--" echo "DEBUG: check if we see the package with systemctl -a (before start)" - systemctl -a |grep "afm.*$WGTNAME" + systemctl -a |grep "afm.*$WGTNAME--" echo "DEBUG: start $NAMEID" do_afm_util start $NAMEID > "rid" @@ -199,13 +209,13 @@ do fi echo "DEBUG: check if we see the package with systemctl list-units (after start)" - systemctl list-units --full | grep "afm.*$WGTNAME" + systemctl list-units --full | grep "afm.*$WGTNAME--" echo "DEBUG: check if we see the package with systemctl -a (after start)" - systemctl -a |grep "afm.*$WGTNAME" + systemctl -a |grep "afm.*$WGTNAME--" echo "DEBUG: Get RID for $NAMEID" PSLIST="pslist" - afm-util ps > $PSLIST + afm-util ps --all > $PSLIST if [ $? -ne 0 ];then echo "ERROR: afm-util ps" lava-test-case afm-util-ps-$WGTNAME --result fail @@ -216,9 +226,26 @@ do fi # TODO, compare RID with the list in $PSLIST" RID="$(cat rid)" + if [ "$RID" == 'null' ];then + sleep 20 + echo "DEBUG: retry start $NAMEID" + do_afm_util start $NAMEID > "rid" + if [ $? -ne 0 ];then + echo "ERROR: afm-util start" + lava-test-case afm-util-start-$WGTNAME --result fail + continue + fi + RID="$(cat rid)" + fi + + if [ "$RID" == 'null' ];then + echo "ERROR: RID is null, service fail to start" + lava-test-case afm-util-status-$WGTNAME --result fail + continue + fi echo "DEBUG: status $NAMEID ($RID)" - afm-util status $RID + do_afm_util status $RID if [ $? -ne 0 ];then echo "ERROR: afm-util status" lava-test-case afm-util-status-$WGTNAME --result fail @@ -228,7 +255,7 @@ do fi echo "DEBUG: kill $NAMEID ($RID)" - afm-util kill $NAMEID + do_afm_util kill $NAMEID if [ $? -ne 0 ];then echo "ERROR: afm-util kill" lava-test-case afm-util-kill-$WGTNAME --result fail @@ -238,7 +265,7 @@ do fi echo "DEBUG: start2 $NAMEID" - do_afm_util start $NAMEID + do_afm_util start $NAMEID > rid if [ $? -ne 0 ];then echo "ERROR: afm-util start2" lava-test-case afm-util-start2-$WGTNAME --result fail @@ -246,4 +273,19 @@ do else lava-test-case afm-util-start2-$WGTNAME --result pass fi + RID="$(cat rid)" + if [ "$RID" == 'null' ];then + echo "ERROR: RID is null" + continue + fi + sleep 120 + echo "DEBUG: status2 $NAMEID ($RID)" + do_afm_util status $RID + if [ $? -ne 0 ];then + echo "ERROR: afm-util status2" + lava-test-case afm-util-status2-$WGTNAME --result fail + continue + else + lava-test-case afm-util-status2-$WGTNAME --result pass + fi done