X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=csit%2Flibraries%2FDevstackUtils.robot;h=8f08bc55daab4b10dd98ef58b7c362dfe2f60f7b;hb=d55183474598900a240357b8bf0a215a69acac2a;hp=b2fc3ae64a8e1f003e4b64e57f39ff09ffeca190;hpb=f13fe6d8f3a1dee3e17f14a881b8a2d67e5dc94c;p=integration%2Ftest.git diff --git a/csit/libraries/DevstackUtils.robot b/csit/libraries/DevstackUtils.robot index b2fc3ae64a..8f08bc55da 100644 --- a/csit/libraries/DevstackUtils.robot +++ b/csit/libraries/DevstackUtils.robot @@ -9,31 +9,30 @@ Library RequestsLibrary Library ./UtilLibrary.py Resource KarafKeywords.robot Resource OpenStackOperations.robot +Resource SSHKeywords.robot Variables ../variables/Variables.py *** Variables *** -${OPENSTACK_BRANCH} stable/liberty -${NETWORKING-ODL_BRANCH} ${OPENSTACK_BRANCH} -${TEMPEST_REGEX} tempest.api.network -${ODL_BOOT_WAIT_URL} restconf/operational/network-topology:network-topology/topology/netvirt:1 ${default_devstack_prompt_timeout} 10s -${devstack_workspace} ~/ds_workspace ${DEVSTACK_SYSTEM_PASSWORD} \ # set to empty, but provide for others to override if desired -${CLEAN_DEVSTACK_HOST} False *** Keywords *** Run Tempest Tests - [Arguments] ${tempest_regex} ${tempest_exclusion_regex}="" ${tempest_conf}="" ${tempest_directory}=/opt/stack/tempest ${timeout}=600s + [Arguments] ${tempest_regex} ${exclusion_file}=/dev/null ${tempest_conf}="" ${tempest_directory}=/opt/stack/tempest ${timeout}=600s [Documentation] Execute the tempest tests. + Return From Keyword If "skip_if_${OPENSTACK_BRANCH}" in @{TEST_TAGS} + Return From Keyword If "skip_if_${SECURITY_GROUP_MODE}" in @{TEST_TAGS} ${devstack_conn_id}= Get ControlNode Connection Switch Connection ${devstack_conn_id} + # There seems to be a bug in the mitaka version of os-testr that does not allow --regex to work in conjunction + # with a blacklist-file. Upgrading with pip should resolve this. This can probably go away once mitaka is no + # longer tested in this environment. But, while it's being tested the mitaka devstack setup will be bringing + # in this broken os-testr, so we manually upgrade here. + Write Commands Until Prompt sudo pip install os-testr --upgrade timeout=120s Write Commands Until Prompt source ${DEVSTACK_DEPLOY_PATH}/openrc admin admin Write Commands Until Prompt cd ${tempest_directory} - Write Commands Until Prompt sudo testr list-tests | egrep ${tempest_regex} | egrep -v ${tempest_exclusion_regex} > tests_to_execute.txt - ${tests_to_execute}= Write Commands Until Prompt sudo cat tests_to_execute.txt - Log ${tests_to_execute} - # run_tempests.sh is a wrapper to testr, and we are providing the config file - ${results}= Write Commands Until Prompt sudo -E ${tempest_directory}/run_tempest.sh -C ${tempest_conf} -N ${tempest_regex} -- --load-list tests_to_execute.txt timeout=${timeout} + # From Ocata and moving forward, we can replace 'ostestr' with 'tempest run' + ${results}= Write Commands Until Prompt ostestr --regex ${tempest_regex} -b ${exclusion_file} timeout=${timeout} Log ${results} # Save stdout to file Create File tempest_output_${tempest_regex}.log data=${results} @@ -56,54 +55,15 @@ Devstack Suite Setup Set Suite Variable ${devstack_conn_id} Set Suite Variable ${source_pwd} Log ${devstack_conn_id} - Utils.Flexible SSH Login ${OS_USER} ${DEVSTACK_SYSTEM_PASSWORD} + SSHKeywords.Flexible SSH Login ${OS_USER} ${DEVSTACK_SYSTEM_PASSWORD} SSHLibrary.Set Client Configuration timeout=${default_devstack_prompt_timeout} -Clean DevStack Host In Case It Is Not Sterile - [Documentation] In upstream CI, the expectation is that the devstack VM is fresh, sterile and ready - ... for any version of devstack, networking-odl, and OpenDaylight. During local test development, - ... it can be faster to just clean the needed packages, configurations, repos, files, etc. instead of - ... spinning up a new system. This keyword serves as a living list of those items needed to prep a - ... potentially non-sterile devstack system. - Write Commands Until Prompt pgrep python | awk '{print "sudo kill",$1}' | sh - Write Commands Until Prompt pgrep java | awk '{print "sudo kill",$1}' | sh - Write Commands Until Prompt rpm -qa | grep rdo - Write Commands Until Prompt sudo rpm -e $(sudo rpm -qa | grep rdo) - Write Commands Until Prompt sudo yum remove -y pyOpenSSL - Write Commands Until Prompt sudo -H pip uninstall -y virtualenv - Write Commands Until Prompt sudo rm -rf /tmp/ansible /opt/stack - Write Commands Until Prompt rm -rf ${devstack_workspace} ~/os-testr - Write Commands Until Prompt sudo ovs-vsctl del-br br-ex - Write Commands Until Prompt sudo ovs-vsctl del-br br-int - Write Commands Until Prompt sudo ovs-vsctl del-manager - Write Commands Until Prompt [Arguments] ${cmd} ${timeout}=${default_devstack_prompt_timeout} [Documentation] quick wrapper for Write and Read Until Prompt Keywords to make test cases more readable + Log ${cmd} SSHLibrary.Set Client Configuration timeout=${timeout} SSHLibrary.Read - SSHLibrary.Write ${cmd} + SSHLibrary.Write ${cmd};echo Command Returns $? ${output}= SSHLibrary.Read Until Prompt [Return] ${output} - -Get Networking ODL Version Of Release - [Arguments] ${version} - [Documentation] Get version of ODL to be installed - # once Beryllium SR1 goes out, we can change beryllium-latest to use 0.4.2 - Return From Keyword If "${version}" == "beryllium-latest" beryllium-snapshot-0.4.2 - Return From Keyword If "${version}" == "beryllium-SR1" beryllium-snapshot-0.4.1 - Return From Keyword If "${version}" == "beryllium" beryllium-snapshot-0.4.0 - Return From Keyword If "${version}" == "lithium-latest" lithium-snapshot-0.3.5 - Return From Keyword If "${version}" == "lithium-SR4" lithium-snapshot-0.3.4 - Return From Keyword If "${version}" == "lithium-SR3" lithium-snapshot-0.3.3 - Return From Keyword If "${version}" == "lithium-SR2" lithium-snapshot-0.3.2 - Return From Keyword If "${version}" == "lithium-SR1" lithium-snapshot-0.3.1 - # FYI networking-odl no longer has this for some reason. - Return From Keyword If "${version}" == "lithium" lithium-snapshot-0.3.0 - Return From Keyword If "${version}" == "helium" helium - -Show Devstack Debugs - [Documentation] Collect the devstack logs to debug in case of failure - Write Commands Until Prompt gunzip /opt/stack/logs/devstacklog.txt.gz - Write Commands Until Prompt tail -n2000 /opt/stack/logs/devstacklog.txt timeout=600s - Write Commands Until Prompt grep 'distribution-karaf.*zip' /opt/stack/logs/devstacklog.txt