X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fintegration%2Finclude-raw-integration-deploy-controller-run-test.sh;h=865c31a693b36a30ca1875910cd3a89890c433ba;hb=f5e6a7ace6e24101384eba81a91a651797b368cd;hp=ed62b457fa48acc44e877e5b49152ad2d911dc1d;hpb=192aef25070a09c7f58a59a303d08bec8e301543;p=releng%2Fbuilder.git diff --git a/jjb/integration/include-raw-integration-deploy-controller-run-test.sh b/jjb/integration/include-raw-integration-deploy-controller-run-test.sh index ed62b457f..865c31a69 100644 --- a/jjb/integration/include-raw-integration-deploy-controller-run-test.sh +++ b/jjb/integration/include-raw-integration-deploy-controller-run-test.sh @@ -1,4 +1,8 @@ -export NEXUSURL_PREFIX=${ODLNEXUSPROXY:-https://nexus.opendaylight.org} +# Activate robotframework virtualenv +# ${ROBOT_VENV} comes from the include-raw-integration-install-robotframework.sh +# script. +source ${ROBOT_VENV}/bin/activate + CONTROLLERMEM="2048m" if [ ${CONTROLLERSCOPE} == 'all' ]; then @@ -8,31 +12,6 @@ else ACTUALFEATURES="${CONTROLLERFEATURES}" fi -if [ ${BUNDLEURL} == 'last' ]; then - NEXUSPATH="${NEXUSURL_PREFIX}/content/repositories/opendaylight.snapshot/org/opendaylight/integration/distribution-karaf" - # Extract the BUNDLEVERSION from the pom.xml - export BUNDLEVERSION=`xpath pom.xml '/project/version/text()' 2> /dev/null` - echo "Bundle version is ${BUNDLEVERSION}" - # Acquire the timestamp information from maven-metadata.xml - wget ${NEXUSPATH}/${BUNDLEVERSION}/maven-metadata.xml - TIMESTAMP=`xpath maven-metadata.xml "//snapshotVersion[extension='zip'][1]/value/text()" 2>/dev/null` - echo "Nexus timestamp is ${TIMESTAMP}" - export BUNDLEFOLDER="distribution-karaf-${BUNDLEVERSION}" - export BUNDLE="distribution-karaf-${TIMESTAMP}.zip" - export ACTUALBUNDLEURL="${NEXUSPATH}/${BUNDLEVERSION}/${BUNDLE}" -else - export ACTUALBUNDLEURL="${BUNDLEURL}" - export BUNDLE="${BUNDLEURL##*/}" - export BUNDLEVERSION="$(basename $(dirname $BUNDLEURL))" - export BUNDLEFOLDER="distribution-karaf-${BUNDLEVERSION}" -fi - -echo "Distribution bundle URL is ${ACTUALBUNDLEURL}" -echo "Distribution bundle is ${BUNDLE}" -echo "Distribution bundle version is ${BUNDLEVERSION}" -echo "Distribution folder is ${BUNDLEFOLDER}" -echo "Nexus prefix is ${NEXUSURL_PREFIX}" - if [ -f ${WORKSPACE}/test/csit/scriptplans/${TESTPLAN} ]; then echo "scriptplan exists!!!" echo "Changing the scriptplan path..." @@ -102,8 +81,8 @@ sshpass -p karaf /tmp/${BUNDLEFOLDER}/bin/client -u karaf 'bundle:list' EOF -scp ${WORKSPACE}/controller-script.sh ${CONTROLLER0}:/tmp -ssh ${CONTROLLER0} 'bash /tmp/controller-script.sh' +scp ${WORKSPACE}/controller-script.sh ${ODL_SYSTEM_IP}:/tmp +ssh ${ODL_SYSTEM_IP} 'bash /tmp/controller-script.sh' echo "Changing the testplan path..." cat ${WORKSPACE}/test/csit/testplans/${TESTPLAN} | sed "s:integration:${WORKSPACE}:" > testplan.txt @@ -113,12 +92,15 @@ SUITES=$( egrep -v '(^[[:space:]]*#|^[[:space:]]*$)' testplan.txt | tr '\012' ' echo "Starting Robot test suites ${SUITES} ..." pybot -N ${TESTPLAN} -c critical -e exclude -v BUNDLEFOLDER:${BUNDLEFOLDER} -v WORKSPACE:/tmp \ --v NEXUSURL_PREFIX:${NEXUSURL_PREFIX} -v CONTROLLER:${CONTROLLER0} -v CONTROLLER_USER:${USER} \ --v MININET:${MININET0} -v MININET1:${MININET1} -v MININET2:${MININET2} -v MININET_USER:${USER} \ +-v NEXUSURL_PREFIX:${NEXUSURL_PREFIX} \ +-v CONTROLLER:${ODL_SYSTEM_IP} -v ODL_SYSTEM_IP:${ODL_SYSTEM_IP} -v CONTROLLER_USER:${USER} -v ODL_SYSTEM_USER:${USER} \ +-v TOOLS_SYSTEM_IP:${TOOLS_SYSTEM_IP} -v TOOLS_SYSTEM_2_IP:${TOOLS_SYSTEM_2_IP} -v TOOLS_SYSTEM_3_IP:${TOOLS_SYSTEM_3_IP} \ +-v TOOLS_SYSTEM_USER:${USER} \ +-v MININET:${TOOLS_SYSTEM_IP} -v MININET1:${TOOLS_SYSTEM_2_IP} -v MININET2:${TOOLS_SYSTEM_3_IP} -v MININET_USER:${USER} \ -v USER_HOME:${HOME} ${TESTOPTIONS} ${SUITES} || true echo "Fetching Karaf log" -scp ${CONTROLLER0}:/tmp/${BUNDLEFOLDER}/data/log/karaf.log . +scp ${ODL_SYSTEM_IP}:/tmp/${BUNDLEFOLDER}/data/log/karaf.log . # vim: ts=4 sw=4 sts=4 et ft=sh :