a80717759301630aa5091bf8ff4822c572de18fe
[integration/test.git] / csit / libraries / Coe.robot
1 *** Settings ***
2 Library           BuiltIn
3 Library           SSHLibrary
4 Library           String
5 Resource          DataModels.robot
6 Resource          Genius.robot
7 Resource          OVSDB.robot
8 Resource          SSHKeywords.robot
9 Resource          Utils.robot
10 Resource          ../variables/netvirt/Variables.robot
11 Resource          ../variables/Variables.robot
12 Resource          VpnOperations.robot
13 Variables         ../variables/coe/Modules.py
14 Variables         ../variables/netvirt/Modules.py
15 Resource          ToolsSystem.robot
16
17 *** Variables ***
18 ${BUSY_BOX}       ${CURDIR}/../variables/coe/busy-box.yaml
19 ${CNI_BINARY_FILE}    /opt/cni/bin/odlovs-cni
20 ${CONFIG_FILE}    /etc/cni/net.d/odlovs-cni.conf
21 ${CONFIG_FILE_TEMPLATE}    ${CURDIR}/../variables/coe/odlovs-cni.conf.j2
22 ${HOST_INVENTORY}    ${CURDIR}/../variables/coe/hosts.yaml
23 ${K8s_MASTER_IP}    ${TOOLS_SYSTEM_1_IP}
24 ${HOSTS_FILE_TEMPLATE}    ${CURDIR}/../variables/coe/minions_template.yaml
25 ${NODE_READY_STATUS}    \\sReady    # The check using this variable should not mess up with NotReady
26 ${PLAYBOOK_FILE}    ${CURDIR}/../variables/coe/coe_play.yaml
27 ${POD_RUNNING_STATUS}    \\sRunning
28 ${VARIABLES_PATH}    ${CURDIR}/../variables/coe
29 ${WATCHER_COE}    ${CURDIR}/../variables/coe/coe.yaml
30 @{COE_DIAG_SERVICES}    OPENFLOW    IFM    ITM    DATASTORE    ELAN    OVSDB
31
32 *** Keywords ***
33 Coe Suite Setup
34     [Documentation]    COE project requires start suite to be executed only for the first test suite.This keyword find the current suite,compares it with the stored first suite value and executes Coe.Start suite only if the cuurent suite is equal to the first suite.
35     ToolsSystem.Get Tools System Nodes Data
36     Coe.Set Connection ids and Bridge
37     Coe.Derive Coe Data Models
38     ${current suite}    ${suite names updated}    Extract current suite name
39     ${first_suite} =    Set Variable    ${suite names updated[0]}
40     ${status} =    BuiltIn.Evaluate    '${first_suite}' == '${current suite}'
41     Run Keyword If    '${status}' == 'True'    Coe.Start Suite
42
43 Start Suite
44     [Documentation]    Suite setup keyword.
45     Coe.Configuration Playbook
46     Coe.Verify Config Files
47     Coe.Verify Watcher Is Running
48     BuiltIn.Wait Until Keyword Succeeds    40s    2s    Coe.Check Node Status Is Ready
49     Coe.Label Nodes
50     BuiltIn.Wait Until Keyword Succeeds    60    2    ClusterManagement.Check Status Of Services Is OPERATIONAL    @{COE_DIAG_SERVICES}
51     BuiltIn.Wait Until Keyword Succeeds    85    2    Genius.Verify Tunnel Status as UP    default-transport-zone
52
53 Set Connection ids and Bridge
54     [Documentation]    Sets the connection ids for all the nodes and get the bridge from configuration file .
55     : FOR    ${conn_id}    IN    @{TOOLS_SYSTEM_ALL_CONN_IDS}
56     \    SSHLibrary.Switch Connection    ${conn_id}
57     \    SSHKeywords.Flexible_SSH_Login    ${DEFAULT_USER}    ${DEFAULT_PASSWORD}
58     ${file} =    OperatingSystem.Get File    ${CONFIG_FILE_TEMPLATE}
59     ${ovs bridge output}    ${bridge} =    BuiltIn.Should Match Regexp    ${file}    "ovsBridge": "(\\w.*)"
60     BuiltIn.Set Suite Variable    ${bridge}
61
62 Configuration Playbook
63     [Documentation]    Ansible playbook which does all basic configuration for kubernetes nodes.
64     ${playbook minions}    ${playbook hosts}    ${host file}    Modifying templates in playbook
65     ${playbook} =    OperatingSystem.Get File    ${PLAYBOOK_FILE}
66     ${playbook} =    String.Replace String    ${playbook}    coe-hosts    ${playbook hosts}
67     ${playbook} =    String.Replace String    ${playbook}    coe-minions    ${playbook minions}
68     OperatingSystem.Create File    ${PLAYBOOK_FILE}    ${playbook}
69     OperatingSystem.Create File    ${USER_HOME}/hosts.yaml    ${host file}
70     ${watcher} =    OperatingSystem.Get File    ${WATCHER_COE}
71     ${watcher} =    String.Replace String    ${watcher}    odlip    ${ODL_SYSTEM_IP}
72     ${watcher} =    String.Replace String    ${watcher}    port    ${RESTCONFPORT}
73     OperatingSystem.Create File    ${WATCHER_COE}    ${watcher}
74     SSHKeywords.Copy_File_To_Remote_System    ${K8s_MASTER_IP}    ${WATCHER_COE}    ${USER_HOME}
75     OperatingSystem.Copy File    ${PLAYBOOK_FILE}    ${USER_HOME}
76     ${branch_ref_spec} =    BuiltIn.Catenate    SEPARATOR=    refs/heads/    ${GERRIT_BRANCH}
77     ${gerrit_ref_spec} =    BuiltIn.Set Variable If    '${GERRIT_PROJECT}' != 'coe'    ${branch_ref_spec}    ${GERRIT_REFSPEC}
78     Run Coe Playbook    ${gerrit_ref_spec}
79
80 Run Coe Playbook
81     [Arguments]    ${gerrit_ref_spec}
82     ${play_output} =    OperatingSystem.Run    ansible-playbook -v ${USER_HOME}/coe_play.yaml -i ${USER_HOME}/hosts.yaml --extra-vars '{"gerrit_branch":"FETCH_HEAD","gerrit_refspec":"${gerrit_ref_spec}"}'
83     BuiltIn.Log    ${play_output}
84
85 Modifying templates in playbook
86     ${inventory} =    OperatingSystem.Get File    ${HOST_INVENTORY}
87     ${template} =    OperatingSystem.Get File    ${HOSTS_FILE_TEMPLATE}
88     ${template} =    String.Replace String    ${template}    minion_ip    ${TOOLS_SYSTEM_ALL_IPS[0]}
89     @{minions}    Create List    coe-minion
90     ${hosts}    Set Variable    coe-master:
91     : FOR    ${i}    IN RANGE    1    ${NUM_TOOLS_SYSTEM}
92     \    Append To List    ${minions}    coe-minion${i}
93     \    ${hosts} =    Catenate    ${hosts}    coe-minion${i}:
94     ${hosts} =    Replace String Using Regexp    ${hosts}    :$    ${EMPTY}
95     ${hosts} =    Remove Space on String    ${hosts}
96     ${minion hosts} =    Replace String Using Regexp    ${hosts}    ^[\\w-]+:    ${EMPTY}
97     : FOR    ${i}    IN RANGE    1    ${NUM_TOOLS_SYSTEM}
98     \    ${j} =    Evaluate    ${i}+1
99     \    ${template} =    String.Replace String    ${template}    ${minions[${i}-1]}    ${minions[${i}]}
100     \    ${template} =    String.Replace String    ${template}    ${TOOLS_SYSTEM_ALL_IPS[${i}-1]}    ${TOOLS_SYSTEM_ALL_IPS[${i}]}
101     \    ${template} =    String.Replace String    ${template}    192.168.50.1${i}    192.168.50.1${j}
102     \    ${template} =    String.Replace String    ${template}    10.11.${i}.0/24    10.11.${j}.0/24
103     \    ${template} =    String.Replace String    ${template}    10.11.${i}.1    10.11.${j}.1
104     \    Append To File    ${HOST_INVENTORY}    ${template}
105     ${host file} =    OperatingSystem.Get File    ${HOST_INVENTORY}
106     ${host file} =    String.Replace String    ${host file}    master_ip    ${TOOLS_SYSTEM_ALL_IPS[0]}
107     ${host file} =    String.Replace String    ${host file}    odl_ip    ${ODL_SYSTEM_IP}
108     ${host file} =    String.Replace String    ${host file}    mport    ${OVSDBPORT}
109     ${host file} =    String.Replace String    ${host file}    cport    ${ODL_OF_PORT_6653}
110     ${host file} =    String.Replace String    ${host file}    filepath    ${CONFIG_FILE_TEMPLATE}
111     ${host file} =    String.Replace String    ${host file}    yamlpath    ${USER_HOME}/coe.yaml
112     log    ${host file}
113     [Return]    ${minion hosts}    ${hosts}    ${host file}
114
115 Verify Config Files
116     [Documentation]    Checks if the configuration files are present in all nodes
117     : FOR    ${nodes}    IN    @{TOOLS_SYSTEM_ALL_IPS}
118     \    Utils.Verify File Exists On Remote System    ${nodes}    ${CONFIG_FILE}
119     : FOR    ${nodes}    IN    @{TOOLS_SYSTEM_ALL_IPS}
120     \    Utils.Verify File Exists On Remote System    ${nodes}    ${CNI_BINARY_FILE}
121
122 Verify Watcher Is Running
123     [Documentation]    Checks if watcher is running in the background
124     ${watcher status} =    Utils.Run Command On Remote System    ${K8s_MASTER_IP}    ps -ef | grep watcher
125     BuiltIn.Should Match Regexp    ${watcher status}    .* watcher odl
126
127 Check Node Status Is Ready
128     [Documentation]    Checks the status of nodes.This keyword is repeated until the status of all nodes is Ready
129     ${nodes} =    Utils.Run Command On Remote System And Log    ${K8s_MASTER_IP}    kubectl get nodes    ${DEFAULT_USER}    ${DEFAULT_PASSWORD}    ${DEFAULT_LINUX_PROMPT_STRICT}
130     ${node_status} =    String.Get Lines Matching Regexp    ${nodes}    ${NODE_READY_STATUS}    partial_match=True
131     ${lines_containing_ready} =    String.Get Line Count    ${node_status}
132     BuiltIn.Should Be Equal As Strings    ${lines_containing_ready}    ${NUM_TOOLS_SYSTEM}
133
134 Label Nodes
135     [Documentation]    Create labels for minions so that random allocation of pods to minions is avoided
136     ${i} =    BuiltIn.Set Variable    1
137     ${get nodes} =    Utils.Run Command On Remote System And Log    ${K8s_MASTER_IP}    kubectl get nodes
138     @{get nodes} =    String.Split To Lines    ${get nodes}    2
139     : FOR    ${status}    IN    @{get nodes}
140     \    ${minion} =    BuiltIn.Should Match Regexp    ${status}    ^\\w+-.*-\\d+
141     \    Utils.Run Command On Remote System And Log    ${K8s_MASTER_IP}    kubectl label nodes ${minion} disktype=ss${i}
142     \    ${i} =    BuiltIn.Evaluate    ${i}+1
143     Utils.Run Command On Remote System And Log    ${K8s_MASTER_IP}    kubectl get nodes --show-labels
144
145 Derive Coe Data Models
146     [Documentation]    Data models is created by integrating netvirt and coe data models which is given as input to get the model dumps
147     : FOR    ${models}    IN    @{netvirt_data_models}
148     \    Collections.Append To List    ${coe_data_models}    ${models}
149
150 Check Pod Status Is Running
151     [Documentation]    Checks the status of pods.This keyword is repeated until the status of all pods is Running
152     ${pods} =    Utils.Run Command On Remote System And Log    ${K8s_MASTER_IP}    kubectl get pods -o wide    ${DEFAULT_USER}    ${DEFAULT_PASSWORD}    ${DEFAULT_LINUX_PROMPT_STRICT}
153     @{cluster} =    String.Split To Lines    ${pods}    1
154     : FOR    ${pod}    IN    @{cluster}
155     \    BuiltIn.Should Match Regexp    ${pod}    ${POD_RUNNING_STATUS}
156
157 Tear Down
158     [Documentation]    Test teardown to get dumpflows,ovsconfig,model dump,node status,pod status and to dump config files \ and delete pods.
159     : FOR    ${conn_id}    IN    @{TOOLS_SYSTEM_ALL_CONN_IDS}
160     \    OVSDB.Get DumpFlows And Ovsconfig    ${conn_id}    ${bridge}
161     BuiltIn.Run Keyword And Ignore Error    DataModels.Get Model Dump    ${ODL_SYSTEM_IP}    ${coe_data_models}
162     Coe.DumpConfig File
163     Utils.Run Command On Remote System And Log    ${K8s_MASTER_IP}    kubectl get nodes    ${DEFAULT_USER}    ${DEFAULT_PASSWORD}    ${DEFAULT_LINUX_PROMPT_STRICT}
164     Utils.Run Command On Remote System And Log    ${K8s_MASTER_IP}    kubectl get pods -o wide    ${DEFAULT_USER}    ${DEFAULT_PASSWORD}    ${DEFAULT_LINUX_PROMPT_STRICT}
165     Coe.Delete Pods
166
167 Delete Pods
168     [Documentation]    Waits till the keyword delete status succeeds implying that all pods created have been deleted
169     ${get pods} =    Utils.Run Command On Remote System    ${K8s_MASTER_IP}    kubectl get pods -o wide
170     @{get pods} =    String.Split To Lines    ${get pods}    1
171     : FOR    ${status}    IN    @{get pods}
172     \    ${pod_name} =    BuiltIn.Should Match Regexp    ${status}    ^\\w+-\\w+
173     \    Utils.Run Command On Remote System    ${K8s_MASTER_IP}    kubectl delete pods ${pod_name}
174     BuiltIn.Wait Until Keyword Succeeds    60s    3s    Coe.Check If Pods Are Terminated
175
176 Check If Pods Are Terminated
177     [Documentation]    Checks if the pods created have been terminated.The keyword is repeated until the pods are deleted
178     ${status} =    Utils.Run Command On Remote System    ${K8s_MASTER_IP}    kubectl get pods -o wide    ${DEFAULT_USER}    ${DEFAULT_PASSWORD}    ${DEFAULT_LINUX_PROMPT_STRICT}
179     ...    ${DEFAULT_TIMEOUT}    return_stdout=False    return_stderr=True
180     BuiltIn.Should Contain    ${status}    No resources
181
182 Dump Config File
183     [Documentation]    Logs the configuration files present in all nodes
184     : FOR    ${nodes}    IN    @{TOOLS_SYSTEM_ALL_IPS}
185     \    Utils.Run Command On Remote System And Log    ${nodes}    cat ${CONFIG_FILE}
186
187 Stop Suite
188     [Documentation]    Suite teardown keyword
189     Coe.Collect Watcher Log
190     Coe.Collect Journalctl Log
191     Coe.Stop_Watcher
192     Coe.Kube_reset
193     SSHLibrary.Close All Connections
194
195 Collect Watcher Log
196     [Documentation]    Watcher running in background logs into watcher.out which is copied to ${JENKINS_WORKSPACE}/archives/watcher.log
197     SSHLibrary.Switch Connection    ${TOOLS_SYSTEM_ALL_CONN_IDS[0]}
198     SSHLibrary.Get File    /tmp/watcher.out    ${JENKINS_WORKSPACE}/archives/watcher.log
199
200 Collect Journalctl Log
201     [Documentation]    Logs of the command journalctl -u kubelet is copied to ${JENKINS_WORKSPACE}/archives/journal.log
202     Utils.Run Command On Remote System And Log    ${K8s_MASTER_IP}    sudo journalctl -u kubelet > ${USER_HOME}/journal.txt
203     SSHLibrary.Switch Connection    ${TOOLS_SYSTEM_ALL_CONN_IDS[0]}
204     SSHLibrary.Get File    ${USER_HOME}/journal.txt    ${JENKINS_WORKSPACE}/archives/journalctl.log
205
206 Stop Watcher
207     [Documentation]    Kill the watcher running at the background after completion of tests cases
208     ${watcher status} =    Utils.Run Command On Remote System    ${K8s_MASTER_IP}    ps -ef | grep watcher
209     ${watcher}    ${pid} =    BuiltIn.Should Match Regexp    ${watcher status}    \\w+\\s+(\\d+).*watcher odl
210     Utils.Run Command On Remote System    ${K8s_MASTER_IP}    kill -9 ${pid}
211
212 Kube reset
213     [Documentation]    Reset K8s to clear up all stale entries
214     : FOR    ${nodes}    IN    @{TOOLS_SYSTEM_ALL_IPS}
215     \    ${kube} =    Utils.Run Command On Remote System And Log    ${nodes}    sudo kubeadm reset
216     \    BuiltIn.Should Contain    ${kube}    Stopping the kubelet service.
217
218 Create Pods
219     [Arguments]    ${label}    ${yaml}    ${name}
220     [Documentation]    Creates pods using the labels of the nodes and busy box names passed as arguments.
221     ${busybox} =    OperatingSystem.Get File    ${BUSY_BOX}
222     ${busybox} =    String.Replace String    ${busybox}    string    ${label}
223     ${busybox} =    String.Replace String    ${busybox}    busyboxname    ${name}
224     OperatingSystem.Create File    ${VARIABLES_PATH}/${yaml}    ${busybox}
225     SSHKeywords.Move_file_To_Remote_System    ${K8s_MASTER_IP}    ${VARIABLES_PATH}/${yaml}    ${USER_HOME}
226     Utils.Run Command On Remote System And Log    ${K8s_MASTER_IP}    kubectl create -f ${yaml}
227
228 Collect Pod Names and Ping
229     [Documentation]    This keyword collects the pod names and checks connectivity between each and every pod with respect to one another.
230     SSHLibrary.Switch Connection    ${TOOLS_SYSTEM_ALL_CONN_IDS[0]}
231     ${get pods} =    Write Commands Until Expected Prompt    kubectl get pods -o wide    ${DEFAULT_LINUX_PROMPT_STRICT}
232     @{pod ips} =    String.Get Regexp Matches    ${get pods}    \\d+\\.\\d+\\.\\d+\\.\\d+
233     @{pod names} =    String.Get Regexp Matches    ${get pods}    ss\\w+-\\w+
234     : FOR    ${pod_name}    IN    @{pod names}
235     \    ${logs} =    Log Statements    ${pod ips}    ${pod names}    ${pod_name}
236     \    Ping Pods    ${pod_name}    ${pod ips}    ${logs}
237
238 Log Statements
239     [Arguments]    ${pod ips}    ${pod names}    ${pod_name}
240     @{log statement} =    Create List
241     ${i} =    Set Variable    0
242     : FOR    ${pod_ip}    IN    @{pod ips}
243     \    ${ping statement}    Set Variable    Ping from ${pod_name} to ${pod names[${i}]} (${pod ip})
244     \    Append To List    ${log statement}    ${ping statement}
245     \    ${i} =    Evaluate    ${i}+1
246     [Return]    @{log statement}
247
248 Ping Pods
249     [Arguments]    ${pod_name}    ${pod ips}    ${logs}
250     ${i} =    Set Variable    0
251     : FOR    ${ping info}    IN    @{logs}
252     \    ${ping} =    Write Commands Until Expected Prompt    kubectl exec -it ${pod_name} -- ping -c 3 ${pod ips[${i}]}    ${DEFAULT_LINUX_PROMPT_STRICT}
253     \    BuiltIn.log    ${ping}
254     \    Builtin.Should Match Regexp    ${ping}    ${PING_REGEXP}
255     \    ${i}    Evaluate    ${i}+1
256
257 Coe Suite Teardown
258     [Documentation]    COE project requires stop suite to be executed only for the last test suite.This keyword find the current suite,compares it with the stored last suite value and executes Coe.Stop suite only if the cuurent suite is equal to the last suite.
259     ${current suite}    ${suite names updated}    Extract current suite name
260     ${last_suite} =    Set Variable    ${suite names updated[-1]}
261     ${status} =    BuiltIn.Evaluate    '${last_suite}' == '${current suite}'
262     Run Keyword If    '${status}' == 'True'    Coe.Stop Suite
263
264 Extract current suite name
265     [Documentation]    This keyword returns the name of current test suite.Appropriate replacement in text is done to make test suite names in SUITES and SUITE_NAME similar.
266     BuiltIn.Log    SUITE_NAME: ${SUITE_NAME}
267     BuiltIn.Log    SUITES: ${SUITES}
268     @{suite_names}    Get Regexp Matches    ${SUITES}    coe\\/(\\w+).robot    1
269     @{suite_names_updated}    Create List
270     : FOR    ${suite}    IN    @{suite_names}
271     \    ${suite}    Replace String    ${suite}    _    ${SPACE}
272     \    Append To List    ${suite_names_updated}    ${suite}
273     ${num_suites} =    BuiltIn.Get Length    ${suite_names_updated}
274     ${suite line}    ${current_suite} =    BuiltIn.Run Keyword If    ${num_suites} > ${1}    Should Match Regexp    ${SUITE_NAME}    .txt.(\\w.*)
275     ...    ELSE    BuiltIn.Set Variable    @{suite_names_updated}[0]    @{suite_names_updated}[0]
276     [Return]    ${current_suite}    ${suite_names_updated}