X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fintegration%2Finclude-raw-integration-deploy-openstack-run-test.sh;h=4e601acf069a0f60c6dbc19ee0d3ac87c8ed0f32;hb=1357cc51ad4f9175f92c3aeaa5780f091d949447;hp=b8e0f6998f155f68c01699c05359bb997cb904f7;hpb=68305451051aa298e057380d8e7fec68899e5b0f;p=releng%2Fbuilder.git diff --git a/jjb/integration/include-raw-integration-deploy-openstack-run-test.sh b/jjb/integration/include-raw-integration-deploy-openstack-run-test.sh index b8e0f6998..4e601acf0 100644 --- a/jjb/integration/include-raw-integration-deploy-openstack-run-test.sh +++ b/jjb/integration/include-raw-integration-deploy-openstack-run-test.sh @@ -4,20 +4,34 @@ # script. source ${ROBOT_VENV}/bin/activate +# TODO: remove this work to run changes.py if/when it's moved higher up to be visible at the Robot level +echo "showing recent changes that made it in to the distribution used by this job" +pip install --upgrade urllib3 +python ${WORKSPACE}/test/tools/distchanges/changes.py -d /tmp/distribution_folder \ + -u ${ACTUALBUNDLEURL} -b ${BRANCH} \ + -r ssh://jenkins-${SILO}@git.opendaylight.org:29418 || true + echo "#################################################" echo "## Deploy Openstack 3-node ##" echo "#################################################" SSH="ssh -t -t" + function create_control_node_local_conf { local_conf_file_name=${WORKSPACE}/local.conf_control +#Needs to be removed +if [ "${ODL_ML2_BRANCH}" == "stable/mitaka" ]; then + RECLONE=no +else + RECLONE=yes +fi cat > ${local_conf_file_name} << EOF [[local|localrc]] LOGFILE=stack.sh.log SCREEN_LOGDIR=/opt/stack/data/log LOG_COLOR=False -RECLONE=yes +RECLONE=${RECLONE} EOF IFS=, @@ -58,7 +72,7 @@ SERVICE_TOKEN=service SERVICE_PASSWORD=admin ADMIN_PASSWORD=admin -enable_plugin networking-odl ${ODL_ML2_DRIVER_REPO} ${ODL_ML2_VERSION} +enable_plugin networking-odl ${ODL_ML2_DRIVER_REPO} ${ODL_ML2_BRANCH} ODL_PORT=8080 ODL_MODE=externalodl @@ -66,6 +80,11 @@ LIBVIRT_TYPE=qemu EOF + +if [ "${ODL_ML2_DRIVER_VERSION}" == "v2" ]; then + echo "ODL_V2DRIVER=True" >> ${local_conf_file_name} +fi + if [ "${NUM_ODL_SYSTEM}" -gt 1 ]; then odl_list=${ODL_SYSTEM_1_IP} for i in `seq 2 ${NUM_ODL_SYSTEM}` @@ -99,27 +118,50 @@ else ODL_L3=False fi +# if we are using the new netvirt impl, as determined by the feature name +# odl-netvirt-openstack (note: old impl is odl-ovsdb-openstack) then we +# want PROVIDER_MAPPINGS to be used -- this should be fixed if we want to support +# external networks in legacy netvirt +if [[ ${CONTROLLERFEATURES} == *"odl-netvirt-openstack"* ]]; then + ODL_PROVIDER_MAPPINGS="\${PUBLIC_PHYSICAL_NETWORK}:${PUBLIC_BRIDGE}" +else + ODL_PROVIDER_MAPPINGS= +fi + if [ "${ODL_ENABLE_L3_FWD}" == "yes" ]; then cat >> ${local_conf_file_name} << EOF - PUBLIC_BRIDGE=${PUBLIC_BRIDGE} -ODL_PROVIDER_MAPPINGS=${PUBLIC_BRIDGE}:br100 +PUBLIC_PHYSICAL_NETWORK=physnet1 # FIXME this should be a parameter +ML2_VLAN_RANGES=physnet1 +ODL_PROVIDER_MAPPINGS=${ODL_PROVIDER_MAPPINGS} disable_service q-l3 Q_L3_ENABLED=True ODL_L3=${ODL_L3} PUBLIC_INTERFACE=br100 +EOF + +if [ "${ODL_ML2_BRANCH}" == "stable/mitaka" ]; then +cat >> ${local_conf_file_name} << EOF [[post-config|\$NEUTRON_CONF]] [DEFAULT] service_plugins = networking_odl.l3.l3_odl.OpenDaylightL3RouterPlugin EOF -fi +fi #check for ODL_ML2_BRANCH + +fi #ODL_ENABLE_L3_FWD check + cat >> ${local_conf_file_name} << EOF [[post-config|/etc/neutron/plugins/ml2/ml2_conf.ini]] [agent] minimize_polling=True +[ml2] +# Needed for VLAN provider tests - because our provider networks are always encapsulated in VXLAN (br-physnet1) +# MTU(1440) + VXLAN(50) + VLAN(4) = 1494 < MTU eth0/br-phynset1(1500) +physical_network_mtus = physnet1:1440 + [[post-config|/etc/neutron/dhcp_agent.ini]] [DEFAULT] force_metadata = True @@ -137,13 +179,19 @@ cat ${local_conf_file_name} function create_compute_node_local_conf { HOSTIP=$1 +#Needs to be removed +if [ "${ODL_ML2_BRANCH}" == "stable/mitaka" ]; then + RECLONE=no +else + RECLONE=yes +fi local_conf_file_name=${WORKSPACE}/local.conf_compute_${HOSTIP} cat > ${local_conf_file_name} << EOF [[local|localrc]] LOGFILE=stack.sh.log LOG_COLOR=False SCREEN_LOGDIR=/opt/stack/data/log -RECLONE=yes +RECLONE=${RECLONE} NOVA_VNC_ENABLED=True MULTI_HOST=1 @@ -169,10 +217,9 @@ SERVICE_TOKEN=service SERVICE_PASSWORD=admin ADMIN_PASSWORD=admin -enable_plugin networking-odl ${ODL_ML2_DRIVER_REPO} ${ODL_ML2_VERSION} +enable_plugin networking-odl ${ODL_ML2_DRIVER_REPO} ${ODL_ML2_BRANCH} ODL_MODE=compute LIBVIRT_TYPE=qemu - EOF if [ "${NUM_ODL_SYSTEM}" -gt 1 ]; then @@ -199,12 +246,25 @@ ODL_MGR_IP=${ODL_SYSTEM_1_IP} EOF fi +# if we are using the new netvirt impl, as determined by the feature name +# odl-netvirt-openstack (note: old impl is odl-ovsdb-openstack) then we +# want PROVIDER_MAPPINGS to be used -- this should be fixed if we want to support +# external networks in legacy netvirt +if [[ ${CONTROLLERFEATURES} == *"odl-netvirt-openstack"* ]]; then + ODL_PROVIDER_MAPPINGS="\${PUBLIC_PHYSICAL_NETWORK}:${PUBLIC_BRIDGE}" +else + ODL_PROVIDER_MAPPINGS= +fi + if [ "${ODL_ENABLE_L3_FWD}" == "yes" ]; then cat >> ${local_conf_file_name} << EOF # Uncomment lines below if odl-compute is to be used for l3 forwarding Q_L3_ENABLED=True ODL_L3=${ODL_L3} -PUBLIC_INTERFACE=br100 +PUBLIC_INTERFACE=br100 # FIXME do we use br100 at all? +PUBLIC_BRIDGE=${PUBLIC_BRIDGE} +PUBLIC_PHYSICAL_NETWORK=physnet1 # FIXME this should be a parameter +ODL_PROVIDER_MAPPINGS=${ODL_PROVIDER_MAPPINGS} EOF fi echo "local.conf Created...." @@ -255,6 +315,20 @@ cat >> ${WORKSPACE}/haproxy.cfg << EOF EOF done +cat >> ${WORKSPACE}/haproxy.cfg << EOF +listen opendaylight_rest + bind ${ha_proxy_ip}:8181 + balance source +EOF + +for i in `seq 1 ${NUM_ODL_SYSTEM}` +do +odlip=ODL_SYSTEM_${i}_IP +cat >> ${WORKSPACE}/haproxy.cfg << EOF + server controller-rest-$i ${!odlip}:8181 check fall 5 inter 2000 rise 2 +EOF +done + cat > ${WORKSPACE}/deploy_ha_proxy.sh<< EOF sudo chown haproxy:haproxy /tmp/haproxy.cfg sudo sed -i 's/\\/etc\\/haproxy\\/haproxy.cfg/\\/tmp\\/haproxy.cfg/g' /usr/lib/systemd/system/haproxy.service @@ -281,6 +355,13 @@ do ${SSH} "${!CONTROLLERIP}" bash -c 'ps axf | grep karaf | grep -v grep | awk '"'"'{print "kill -9 " $1}'"'"' | sh' done +cat > extra_debug.sh << EOF +echo -e "/usr/sbin/lsmod | /usr/bin/grep openvswitch\n" +/usr/sbin/lsmod | /usr/bin/grep openvswitch +echo -e "\ngrep ct_ /var/log/openvswitch/ovs-vswitchd.log\n" +grep ct_ /var/log/openvswitch/ovs-vswitchd.log +EOF + sleep 5 # FIXME: Do not create .tar and gzip before copying. for i in `seq 1 ${NUM_ODL_SYSTEM}` @@ -293,16 +374,40 @@ do rm ${WORKSPACE}/odl${i}_karaf.log.tar done -scp ${OPENSTACK_CONTROL_NODE_IP}:/opt/stack/devstack/nohup.out "openstack_control_stack.log" -${SSH} ${OPENSTACK_CONTROL_NODE_IP} "tar -cf /tmp/control_node_openstack_logs.tgz /opt/stack/logs/*" -scp "${OPENSTACK_CONTROL_NODE_IP}:/tmp/control_node_openstack_logs.tgz" control_node_openstack_logs.tgz +# Since this log collection work is happening before the archive build macro which also +# creates the ${WORKSPACE}/archives dir, we have to do it here first. The mkdir in the +# archives build step will essentially be a noop. +mkdir -p ${WORKSPACE}/archives + +# Control Node +OS_CTRL_FOLDER="control" +mkdir -p ${OS_CTRL_FOLDER} +scp ${OPENSTACK_CONTROL_NODE_IP}:/opt/stack/devstack/nohup.out ${OS_CTRL_FOLDER}/stack.log +scp ${OPENSTACK_CONTROL_NODE_IP}:/var/log/openvswitch/ovs-vswitchd.log ${OS_CTRL_FOLDER}/ovs-vswitchd.log +rsync -avhe ssh ${OPENSTACK_CONTROL_NODE_IP}:/opt/stack/logs/* ${OS_CTRL_FOLDER} # rsync to prevent copying of symbolic links +scp extra_debug.sh ${OPENSTACK_CONTROL_NODE_IP}:/tmp +${SSH} ${OPENSTACK_CONTROL_NODE_IP} "bash /tmp/extra_debug.sh > /tmp/extra_debug.log" +scp ${OPENSTACK_CONTROL_NODE_IP}:/tmp/extra_debug.log ${OS_CTRL_FOLDER}/extra_debug.log +mv local.conf_control ${OS_CTRL_FOLDER}/local.conf +mv ${OS_CTRL_FOLDER} ${WORKSPACE}/archives/ + +# Compute Nodes for i in `seq 1 $((NUM_OPENSTACK_SYSTEM - 1))` do OSIP=OPENSTACK_COMPUTE_NODE_${i}_IP - scp "${!OSIP}:/opt/stack/devstack/nohup.out" "openstack_compute_stack_${i}.log" - ${SSH} "${!OSIP}" "tar -cf /tmp/compute_node_${i}_openstack_logs.tgz /opt/stack/logs/*" - scp "${!OSIP}:/tmp/compute_node_${i}_openstack_logs.tgz" "compute_node_${i}_openstack_logs.tgz" + OS_COMPUTE_FOLDER="compute_${i}" + mkdir -p ${OS_COMPUTE_FOLDER} + scp ${!OSIP}:/opt/stack/devstack/nohup.out ${OS_COMPUTE_FOLDER}/stack.log + scp ${!OSIP}:/var/log/openvswitch/ovs-vswitchd.log ${OS_COMPUTE_FOLDER}/ovs-vswitchd.log + rsync -avhe ssh ${!OSIP}:/opt/stack/logs/* ${OS_COMPUTE_FOLDER} # rsync to prevent copying of symbolic links + scp extra_debug.sh ${!OSIP}:/tmp + ${SSH} ${!OSIP} "bash /tmp/extra_debug.sh > /tmp/extra_debug.log" + scp ${!OSIP}:/tmp/extra_debug.log ${OS_COMPUTE_FOLDER}/extra_debug.log + mv local.conf_compute_${!OSIP} ${OS_COMPUTE_FOLDER}/local.conf + mv ${OS_COMPUTE_FOLDER} ${WORKSPACE}/archives/ done + +ls local.conf* | xargs -I % mv % %.log } cat > ${WORKSPACE}/disable_firewall.sh << EOF @@ -324,7 +429,7 @@ echo "127.0.0.1 localhost \${HOSTNAME}" > /tmp/hosts echo "::1 localhost \${HOSTNAME}" >> /tmp/hosts sudo mv /tmp/hosts /etc/hosts sudo /usr/sbin/brctl addbr br100 -#sudo ifconfig eth0 mtu 2000 +#sudo ifconfig eth0 mtu 2000 sudo mkdir /opt/stack sudo chmod 777 /opt/stack cd /opt/stack @@ -345,6 +450,23 @@ scp ${WORKSPACE}/get_devstack.sh ${OPENSTACK_CONTROL_NODE_IP}:/tmp ${SSH} ${OPENSTACK_CONTROL_NODE_IP} "bash /tmp/get_devstack.sh" create_control_node_local_conf scp ${WORKSPACE}/local.conf_control ${OPENSTACK_CONTROL_NODE_IP}:/opt/stack/devstack/local.conf + + +# Workworund for successful stacking with Mitaka +if [ "${ODL_ML2_BRANCH}" == "stable/mitaka" ]; then + + # Workaround for problems with latest versions/specified versions in requirements of openstack + # Openstacksdk,libvirt-python -> the current version does not work with Mitaka diue to some requirements + # conflict and breaks when trying to stack + # paramiko -> Problems with tempest tests due to paramiko incompatibility with pycrypto. + # the problem has been solved with version 1.17. If the latest version of paramiko is used, it causes + # other timeout problems + ssh ${OPENSTACK_CONTROL_NODE_IP} "cd /opt/stack; git clone https://git.openstack.org/openstack/requirements; cd requirements; git checkout stable/mitaka; sed -i /openstacksdk/d upper-constraints.txt; sed -i /libvirt-python/d upper-constraints.txt; sed -i /paramiko/d upper-constraints.txt" + ssh ${OPENSTACK_CONTROL_NODE_IP} "sudo pip install deprecation" + ssh ${OPENSTACK_CONTROL_NODE_IP} "cd /opt/stack; git clone https://github.com/openstack/python-openstacksdk; cd python-openstacksdk; sudo python setup.py install" + ssh ${OPENSTACK_CONTROL_NODE_IP} "cd /opt/stack; git clone https://github.com/paramiko/paramiko; cd paramiko; git checkout 1.17; sudo python setup.py install" +fi + ssh ${OPENSTACK_CONTROL_NODE_IP} "cd /opt/stack/devstack; nohup ./stack.sh > /opt/stack/devstack/nohup.out 2>&1 &" ssh ${OPENSTACK_CONTROL_NODE_IP} "ps -ef | grep stack.sh" ssh ${OPENSTACK_CONTROL_NODE_IP} "ls -lrt /opt/stack/devstack/nohup.out" @@ -358,6 +480,9 @@ do ${SSH} ${!COMPUTEIP} "bash /tmp/get_devstack.sh" create_compute_node_local_conf ${!COMPUTEIP} scp ${WORKSPACE}/local.conf_compute_${!COMPUTEIP} ${!COMPUTEIP}:/opt/stack/devstack/local.conf + if [ "${ODL_ML2_BRANCH}" == "stable/mitaka" ]; then + ssh ${!COMPUTEIP} "cd /opt/stack; git clone https://git.openstack.org/openstack/requirements; cd requirements; git checkout stable/mitaka; sed -i /libvirt-python/d upper-constraints.txt" + fi ssh ${!COMPUTEIP} "cd /opt/stack/devstack; nohup ./stack.sh > /opt/stack/devstack/nohup.out 2>&1 &" ssh ${!COMPUTEIP} "ps -ef | grep stack.sh" os_node_list+=(${!COMPUTEIP}) @@ -420,6 +545,21 @@ ${SSH} ${OPENSTACK_CONTROL_NODE_IP} "sudo bash /tmp/disable_firewall.sh" echo "sleep for a minute and print hypervisor-list" sleep 60 ${SSH} ${OPENSTACK_CONTROL_NODE_IP} "cd /opt/stack/devstack; source openrc admin admin; nova hypervisor-list" +# in the case that we are doing openstack (control + compute) all in one node, then the number of hypervisors +# will be the same as the number of openstack systems. However, if we are doing multinode openstack then the +# assumption is we have a single control node and the rest are compute nodes, so the number of expected hypervisors +# is one less than the total number of openstack systems +if [ "${NUM_OPENSTACK_SYSTEM}" -eq 1 ]; then + expected_num_hypervisors=1 +else + expected_num_hypervisors=$((NUM_OPENSTACK_SYSTEM - 1)) +fi +num_hypervisors=$(${SSH} ${OPENSTACK_CONTROL_NODE_IP} "cd /opt/stack/devstack; source openrc admin admin; openstack hypervisor list -f value | wc -l" | tail -1 | tr -d "\r") +if ! [ "${num_hypervisors}" ] || ! [ ${num_hypervisors} -eq ${expected_num_hypervisors} ]; then + echo "Error: Only $num_hypervisors hypervisors detected, expected $expected_num_hypervisors" + collect_logs_and_exit + exit 1 +fi #Need to disable firewalld and iptables in compute nodes as well for i in `seq 1 $((NUM_OPENSTACK_SYSTEM - 1))` @@ -436,6 +576,44 @@ ${SSH} ${OPENSTACK_CONTROL_NODE_IP} "sudo pip install --upgrade pip" ${SSH} ${OPENSTACK_CONTROL_NODE_IP} "sudo pip install urllib3 --upgrade" ${SSH} ${OPENSTACK_CONTROL_NODE_IP} "sudo pip install httplib2 --upgrade" +for i in `seq 1 $((NUM_OPENSTACK_SYSTEM - 1))` +do + IP_VAR=OPENSTACK_COMPUTE_NODE_${i}_IP + COMPUTE_IPS[$((i-1))]=${!IP_VAR} +done + +# External Network +echo "prepare external networks by adding vxlan tunnels between all nodes on a separate bridge..." +devstack_index=1 +for ip in ${OPENSTACK_CONTROL_NODE_IP} ${COMPUTE_IPS[*]} +do + # FIXME - Workaround, ODL (new netvirt) currently adds PUBLIC_BRIDGE as a port in br-int since it doesn't see such a bridge existing when we stack + ${SSH} $ip "sudo ovs-vsctl --if-exists del-port br-int $PUBLIC_BRIDGE" + ${SSH} $ip "sudo ovs-vsctl --may-exist add-br $PUBLIC_BRIDGE -- set bridge $PUBLIC_BRIDGE other-config:disable-in-band=true other_config:hwaddr=f6:00:00:ff:01:0$((devstack_index++))" +done + +# Control Node - PUBLIC_BRIDGE will act as the external router +GATEWAY_IP="10.10.10.250" # FIXME this should be a parameter, also shared with integration-test +${SSH} ${OPENSTACK_CONTROL_NODE_IP} "sudo ifconfig $PUBLIC_BRIDGE up ${GATEWAY_IP}/24" +compute_index=1 +for compute_ip in ${COMPUTE_IPS[*]} +do + # Tunnel from controller to compute + PORT_NAME=compute$((compute_index++))_vxlan + ${SSH} ${OPENSTACK_CONTROL_NODE_IP} "sudo ovs-vsctl add-port $PUBLIC_BRIDGE $PORT_NAME -- set interface $PORT_NAME type=vxlan options:local_ip="${OPENSTACK_CONTROL_NODE_IP}" options:remote_ip="$compute_ip" options:dst_port=9876 options:key=flow" + + # Tunnel from compute to controller + PORT_NAME=control_vxlan + ${SSH} ${compute_ip} "sudo ovs-vsctl add-port $PUBLIC_BRIDGE $PORT_NAME -- set interface $PORT_NAME type=vxlan options:local_ip="$compute_ip" options:remote_ip="${OPENSTACK_CONTROL_NODE_IP}" options:dst_port=9876 options:key=flow" +done + +if [ "${NUM_ODL_SYSTEM}" -gt 1 ]; then + HA_PROXY_INDEX=${NUM_OPENSTACK_SYSTEM} + odlmgrip=OPENSTACK_COMPUTE_NODE_${HA_PROXY_INDEX}_IP + HA_PROXY_IP=${!odlmgrip} +else + HA_PROXY_IP=${ODL_SYSTEM_IP} +fi echo "Locating test plan to use..." testplan_filepath="${WORKSPACE}/test/csit/testplans/${STREAMTESTPLAN}" if [ ! -f "${testplan_filepath}" ]; then @@ -449,18 +627,44 @@ cat testplan.txt SUITES=`egrep -v '(^[[:space:]]*#|^[[:space:]]*$)' testplan.txt | tr '\012' ' '` echo "Starting Robot test suites ${SUITES} ..." -pybot -N ${TESTPLAN} --removekeywords wuks -c critical -e exclude -v BUNDLEFOLDER:${BUNDLEFOLDER} -v WORKSPACE:/tmp \ --v BUNDLE_URL:${ACTUALBUNDLEURL} -v NEXUSURL_PREFIX:${NEXUSURL_PREFIX} -v JDKVERSION:${JDKVERSION} -v ODL_STREAM:${DISTROSTREAM} \ --v ODL_SYSTEM_IP:${ODL_SYSTEM_IP} -v ODL_SYSTEM_1_IP:${ODL_SYSTEM_1_IP} -v ODL_SYSTEM_2_IP:${ODL_SYSTEM_2_IP} \ --v ODL_SYSTEM_3_IP:${ODL_SYSTEM_3_IP} -v NUM_ODL_SYSTEM:${NUM_ODL_SYSTEM} -v CONTROLLER_USER:${USER} -v OS_USER:${USER} \ --v NUM_OS_SYSTEM:${NUM_OPENSTACK_SYSTEM} -v OS_CONTROL_NODE_IP:${OPENSTACK_CONTROL_NODE_IP} \ --v OS_COMPUTE_1_IP:${OPENSTACK_COMPUTE_NODE_1_IP} -v OS_COMPUTE_2_IP:${OPENSTACK_COMPUTE_NODE_2_IP} \ --v DEVSTACK_DEPLOY_PATH:/opt/stack/devstack -v USER_HOME:${HOME} ${TESTOPTIONS} ${SUITES} || true +# please add pybot -v arguments on a single line and alphabetized +pybot -N ${TESTPLAN} --removekeywords wuks -c critical -e exclude \ + -v BUNDLEFOLDER:${BUNDLEFOLDER} \ + -v BUNDLE_URL:${ACTUALBUNDLEURL} \ + -v CONTROLLER_USER:${USER} \ + -v DEVSTACK_DEPLOY_PATH:/opt/stack/devstack \ + -v HA_PROXY_IP:${HA_PROXY_IP} \ + -v JDKVERSION:${JDKVERSION} \ + -v NEXUSURL_PREFIX:${NEXUSURL_PREFIX} \ + -v NUM_ODL_SYSTEM:${NUM_ODL_SYSTEM} \ + -v NUM_OS_SYSTEM:${NUM_OPENSTACK_SYSTEM} \ + -v NUM_TOOLS_SYSTEM:${NUM_TOOLS_SYSTEM} \ + -v ODL_STREAM:${DISTROSTREAM} \ + -v ODL_SYSTEM_IP:${ODL_SYSTEM_IP} \ + -v ODL_SYSTEM_1_IP:${ODL_SYSTEM_1_IP} \ + -v ODL_SYSTEM_2_IP:${ODL_SYSTEM_2_IP} \ + -v ODL_SYSTEM_3_IP:${ODL_SYSTEM_3_IP} \ + -v OS_CONTROL_NODE_IP:${OPENSTACK_CONTROL_NODE_IP} \ + -v OPENSTACK_BRANCH:${OPENSTACK_BRANCH} \ + -v OS_COMPUTE_1_IP:${OPENSTACK_COMPUTE_NODE_1_IP} \ + -v OS_COMPUTE_2_IP:${OPENSTACK_COMPUTE_NODE_2_IP} \ + -v OS_USER:${USER} \ + -v PUBLIC_PHYSICAL_NETWORK:${PUBLIC_PHYSICAL_NETWORK} \ + -v TOOLS_SYSTEM_IP:${TOOLS_SYSTEM_1_IP} \ + -v TOOLS_SYSTEM_1_IP:${TOOLS_SYSTEM_1_IP} \ + -v TOOLS_SYSTEM_2_IP:${TOOLS_SYSTEM_2_IP} \ + -v USER_HOME:${HOME} \ + -v WORKSPACE:/tmp \ + ${TESTOPTIONS} ${SUITES} || true + +echo "Examining the files in data/log and checking filesize" +ssh ${ODL_SYSTEM_IP} "ls -altr /tmp/${BUNDLEFOLDER}/data/log/" +ssh ${ODL_SYSTEM_IP} "du -hs /tmp/${BUNDLEFOLDER}/data/log/*" echo "Tests Executed" DEVSTACK_TEMPEST_DIR="/opt/stack/tempest" if $(ssh ${OPENSTACK_CONTROL_NODE_IP} "sudo sh -c '[ -f ${DEVSTACK_TEMPEST_DIR}/.testrepository/0 ]'"); then # if Tempest results exist - ssh ${OPENSTACK_CONTROL_NODE_IP} "sudo sh -c '${DEVSTACK_TEMPEST_DIR}/.tox/tempest/bin/subunit-1to2 < ${DEVSTACK_TEMPEST_DIR}/.testrepository/0 > ${DEVSTACK_TEMPEST_DIR}/subunit_log.txt'" + ssh ${OPENSTACK_CONTROL_NODE_IP} "for I in \$(sudo ls ${DEVSTACK_TEMPEST_DIR}/.testrepository/ | grep -E '^[0-9]+$'); do sudo sh -c \"${DEVSTACK_TEMPEST_DIR}/.tox/tempest/bin/subunit-1to2 < ${DEVSTACK_TEMPEST_DIR}/.testrepository/\${I} >> ${DEVSTACK_TEMPEST_DIR}/subunit_log.txt\"; done" ssh ${OPENSTACK_CONTROL_NODE_IP} "sudo sh -c '${DEVSTACK_TEMPEST_DIR}/.tox/tempest/bin/python ${DEVSTACK_TEMPEST_DIR}/.tox/tempest/lib/python2.7/site-packages/os_testr/subunit2html.py ${DEVSTACK_TEMPEST_DIR}/subunit_log.txt ${DEVSTACK_TEMPEST_DIR}/tempest_results.html'" scp ${OPENSTACK_CONTROL_NODE_IP}:${DEVSTACK_TEMPEST_DIR}/tempest_results.html ${WORKSPACE}/ fi