cf51ff0dbbf219e6530566869656255d6f13e688
[integration/test.git] / csit / libraries / Tempest.robot
1 *** Settings ***
2 Documentation     General Utils library. This library has broad scope, it can be used by any robot system tests.
3 Library           SSHLibrary
4 Resource          DevstackUtils.robot
5 Resource          OpenStackOperations.robot
6 Resource          SSHKeywords.robot
7 Resource          ../variables/Variables.robot
8
9 *** Variables ***
10 @{stable/newton_EXCLUSION_REGEXES}    ${EMPTY}
11 @{stable/ocata_EXCLUSION_REGEXES}    ${EMPTY}
12 @{stable/pike_EXCLUSION_REGEXES}    ${EMPTY}
13 @{master_EXCLUSION_REGEXES}    ${EMPTY}
14 ${BLACKLIST_FILE}    /tmp/blacklist.txt
15 ${TEMPEST_DIR}    /opt/stack/tempest
16 ${TEMPEST_CONFIG_FILE}    ${TEMPEST_DIR}/etc/tempest.conf
17 # Parameter values below are based on releng/builder - changing them requires updates in releng/builder as well
18 ${TEMPEST_TIMEOUT}    420s
19
20 *** Keywords ***
21 Suite Setup
22     OpenStackOperations.OpenStack Suite Setup
23     Tempest.Log In To Tempest Executor And Setup Test Environment
24
25 Run Tempest Tests
26     [Arguments]    ${tempest_regex}    ${timeout}=${TEMPEST_TIMEOUT}    ${debug}=False
27     BuiltIn.Run Keyword If    "${debug}" == "False"    Tempest.Run Tempest Tests Without Debug    ${tempest_regex}    timeout=${timeout}
28     BuiltIn.Run Keyword If    "${debug}" == "True"    Tempest.Run Tempest Tests With Debug    ${tempest_regex}    timeout=${timeout}
29     BuiltIn.Run Keyword If    "${debug}" != "True" and "${debug}" != "False"    Fail    debug argument must be True or False
30
31 Run Tempest Tests Without Debug
32     [Arguments]    ${tempest_regex}    ${TEMPEST_DIRectory}=${TEMPEST_DIR}    ${timeout}=${TEMPEST_TIMEOUT}
33     [Documentation]    Using ostestr will allow us to (by default) run tests in paralllel.
34     ...    Because of the parallel fashion, we must ensure there is no pause on teardown so that flag in tempest.conf is
35     ...    explicitly set to False.
36     BuiltIn.Return From Keyword If    "skip_if_${OPENSTACK_BRANCH}" in @{TEST_TAGS}
37     BuiltIn.Return From Keyword If    "skip_if_${SECURITY_GROUP_MODE}" in @{TEST_TAGS}
38     ${tempest_conn_id} =    SSHLibrary.Open Connection    ${OS_CONTROL_NODE_IP}    prompt=${DEFAULT_LINUX_PROMPT_STRICT}
39     SSHKeywords.Flexible SSH Login    ${OS_USER}    ${DEVSTACK_SYSTEM_PASSWORD}
40     DevstackUtils.Write Commands Until Prompt    source ${DEVSTACK_DEPLOY_PATH}/openrc admin admin
41     DevstackUtils.Write Commands Until Prompt    cd ${TEMPEST_DIRectory}
42     SSHLibrary.Read
43     Tempest.Tempest Conf Modify Pause On Test Teardown    False
44     SSHLibrary.Set Client Configuration    timeout=${timeout}
45     # There are tons of deprecation error messages when we use ostestr in our CSIT environment (openstack via devstack)
46     # The robot log files are very large and one culprit is all these deprecation warnings. If we redirect stderr to
47     # /dev/null we should be able to ignore them. We will miss any other errors, however.
48     ${output} =    DevstackUtils.Write Commands Until Prompt And Log    ostestr --regex ${tempest_regex} 2>/dev/null    timeout=${timeout}
49     SSHLibrary.Close Connection
50     BuiltIn.Should Contain    ${output}    Failed: 0
51
52 Run Tempest Tests With Debug
53     [Arguments]    ${tempest_regex}    ${TEMPEST_DIRectory}=${TEMPEST_DIR}    ${timeout}=${TEMPEST_TIMEOUT}
54     [Documentation]    After setting pause_teardown=True in tempest.conf, use the python -m testtools.run module to execute
55     ...    a single tempest test case. We need to run only one tempest test case at a time as there will
56     ...    be potentional for an unkown number of debug pdb() prompts to catch and continue if we are running multiple
57     ...    test cases with a single command. Essentially, this keyword only handles one breakpoint at a single teardown.
58     BuiltIn.Return From Keyword If    "skip_if_${OPENSTACK_BRANCH}" in @{TEST_TAGS}
59     BuiltIn.Return From Keyword If    "skip_if_${SECURITY_GROUP_MODE}" in @{TEST_TAGS}
60     ${tempest_conn_id} =    SSHLibrary.Open Connection    ${OS_CONTROL_NODE_IP}    prompt=${DEFAULT_LINUX_PROMPT_STRICT}
61     SSHKeywords.Flexible SSH Login    ${OS_USER}    ${DEVSTACK_SYSTEM_PASSWORD}
62     DevstackUtils.Write Commands Until Prompt    source ${DEVSTACK_DEPLOY_PATH}/openrc admin admin
63     DevstackUtils.Write Commands Until Prompt    cd ${TEMPEST_DIRectory}
64     SSHLibrary.Read
65     Tempest Conf Modify Pause On Test Teardown    True
66     SSHLibrary.Set Client Configuration    timeout=${timeout}
67     SSHLibrary.Write    python -m testtools.run ${tempest_regex}
68     ${output} =    SSHLibrary.Read Until Regexp    ${DEFAULT_LINUX_PROMPT_STRICT}|pdb.set_trace()
69     BuiltIn.Log    ${output}
70     OpenStackOperations.Show Debugs
71     OpenStackOperations.Get Test Teardown Debugs
72     SSHLibrary.Switch Connection    ${tempest_conn_id}
73     SSHLibrary.Write    continue
74     ${output} =    SSHLibrary.Read Until Regexp    ${DEFAULT_LINUX_PROMPT_STRICT}|pdb.set_trace()
75     BuiltIn.Log    ${output}
76     SSHLibrary.Write    continue
77     ${output} =    SSHLibrary.Read Until Prompt
78     BuiltIn.Log    ${output}
79     SSHLibrary.Close Connection
80     BuiltIn.Should Contain    ${output}    OK
81     BuiltIn.Should Not Contain    ${output}    FAILED
82
83 Log In To Tempest Executor And Setup Test Environment
84     [Documentation]    Initialize SetupUtils, open SSH connection to a devstack system and source the openstack
85     ...    credentials needed to run the tempest tests. The (sometimes empty) tempest blacklist file will be created
86     ...    and pushed to the tempest executor.
87     Tempest.Create Blacklist File
88     # Tempest tests need an existing external network in order to create routers.
89     OpenStackOperations.Create Network    ${EXTERNAL_NET_NAME}    --external --default --provider-network-type flat --provider-physical-network ${PUBLIC_PHYSICAL_NETWORK}
90     OpenStackOperations.Create Subnet    ${EXTERNAL_NET_NAME}    ${EXTERNAL_SUBNET_NAME}    ${EXTERNAL_SUBNET}    --gateway ${EXTERNAL_GATEWAY} --allocation-pool ${EXTERNAL_SUBNET_ALLOCATION_POOL}
91     OpenStackOperations.List Networks
92     ${control_node_conn_id} =    SSHLibrary.Open Connection    ${OS_CONTROL_NODE_IP}    prompt=${DEFAULT_LINUX_PROMPT_STRICT}
93     SSHKeywords.Flexible SSH Login    ${OS_USER}
94     DevstackUtils.Write Commands Until Prompt    source ${DEVSTACK_DEPLOY_PATH}/openrc admin admin
95     DevstackUtils.Write Commands Until Prompt    sudo rm -rf /opt/stack/tempest/.testrepository
96     ${net_id} =    OpenStackOperations.Get Net Id    ${EXTERNAL_NET_NAME}
97     Tempest.Tempest Conf Add External Network And Floating Network Name    ${net_id}
98
99 Tempest Conf Add External Network And Floating Network Name
100     [Arguments]    ${external_network_id}
101     [Documentation]    Tempest will be run with a config file - this function will add the
102     ...    given external network ID to the configuration file.
103     Tempest.Modify Config In File On Existing SSH Connection    ${TEMPEST_CONFIG_FILE}    set    network    public_network_id    ${external_network_id}
104     Tempest.Modify Config In File On Existing SSH Connection    ${TEMPEST_CONFIG_FILE}    set    DEFAULT    debug    False
105     Tempest.Modify Config In File On Existing SSH Connection    ${TEMPEST_CONFIG_FILE}    set    DEFAULT    log_level    INFO
106     Tempest.Modify Config In File On Existing SSH Connection    ${TEMPEST_CONFIG_FILE}    set    network    floating_network_name    ${EXTERNAL_NET_NAME}
107     DevstackUtils.Write Commands Until Prompt    sudo cat ${TEMPEST_CONFIG_FILE}
108     DevstackUtils.Write Commands Until Prompt    sudo chmod 777 ${TEMPEST_CONFIG_FILE}
109
110 Tempest Conf Modify Pause On Test Teardown
111     [Arguments]    ${pause_flag}
112     [Documentation]    Sets the DEFAULT section flag for pausing the test teardown. If True the tempest test case
113     ...    being executed will break to a pdb() debug shell when it hits it's teardown() function.
114     Tempest.Modify Config In File On Existing SSH Connection    ${TEMPEST_CONFIG_FILE}    set    DEFAULT    pause_teardown    ${pause_flag}
115
116 Modify Config In File On Existing SSH Connection
117     [Arguments]    ${config_file}    ${modifier}    ${config_section}    ${config_key}    ${config_value}=${EMPTY}
118     [Documentation]    uses crudini to populate oslo cofg file.
119     # this keyword is only one line so seems like extra overhead, but this may be a good candidate to move
120     # to a library at some point, when/if other suites need to use it, so wanted to make it generic.
121     DevstackUtils.Write Commands Until Prompt    sudo -E crudini --${modifier} ${config_file} ${config_section} ${config_key} ${config_value}
122
123 Create Blacklist File
124     [Documentation]    For each exclusion regex in the required @{${OPENSTACK_BRANCH}_EXCLUSION_REGEXES} list a new
125     ...    line will be created in the required ${BLACKLIST_FILE} location. This file is pushed to the OS_CONTROL_NODE
126     ...    which is assumed to be the tempest executor.
127     OperatingSystem.Create File    ${BLACKLIST_FILE}
128     : FOR    ${exclusion}    IN    @{${OPENSTACK_BRANCH}_EXCLUSION_REGEXES}
129     \    OperatingSystem.Append To File    ${BLACKLIST_FILE}    ${exclusion}\n
130     OperatingSystem.Log File    ${BLACKLIST_FILE}
131     SSHKeywords.Copy File To Remote System    ${OS_CONTROL_NODE_IP}    ${BLACKLIST_FILE}    ${BLACKLIST_FILE}