David Bainbridge | 117d23e | 2019-09-30 20:37:51 +0000 | [diff] [blame] | 1 | # Copyright 2017-present Open Networking Foundation |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
David Bainbridge | 117d23e | 2019-09-30 20:37:51 +0000 | [diff] [blame] | 14 | # voltctl common functions |
| 15 | |
| 16 | *** Settings *** |
| 17 | Documentation Library for various utilities |
| 18 | Library SSHLibrary |
David Bainbridge | 117d23e | 2019-09-30 20:37:51 +0000 | [diff] [blame] | 19 | Library String |
| 20 | Library DateTime |
| 21 | Library Process |
| 22 | Library Collections |
| 23 | Library RequestsLibrary |
| 24 | Library OperatingSystem |
| 25 | |
| 26 | *** Keywords *** |
| 27 | Lookup Service IP |
| 28 | [Arguments] ${namespace} ${name} |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 29 | [Documentation] Uses kubectl to resolve a service name to an IP |
Gilles Depatie | 675a206 | 2019-10-22 12:44:42 -0400 | [diff] [blame] | 30 | ${rc} ${ip}= Run and Return Rc and Output |
| 31 | ... kubectl get svc -n ${namespace} ${name} -o jsonpath={.spec.clusterIP} |
David Bainbridge | 117d23e | 2019-09-30 20:37:51 +0000 | [diff] [blame] | 32 | Should Be Equal as Integers ${rc} 0 |
| 33 | [Return] ${ip} |
| 34 | |
| 35 | Lookup Service PORT |
| 36 | [Arguments] ${namespace} ${name} |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 37 | [Documentation] Uses kubectl to resolve a service name to an PORT |
Gilles Depatie | 675a206 | 2019-10-22 12:44:42 -0400 | [diff] [blame] | 38 | ${rc} ${port}= Run and Return Rc and Output |
| 39 | ... kubectl get svc -n ${namespace} ${name} -o jsonpath={.spec.ports[0].port} |
David Bainbridge | 117d23e | 2019-09-30 20:37:51 +0000 | [diff] [blame] | 40 | Should Be Equal as Integers ${rc} 0 |
| 41 | [Return] ${port} |
suraj gour | d64356b | 2019-11-07 13:26:20 +0000 | [diff] [blame] | 42 | |
| 43 | Restart Pod |
| 44 | [Arguments] ${namespace} ${name} |
| 45 | [Documentation] Uses kubectl to force delete pod |
suraj gour | 067451d | 2019-11-13 11:20:13 +0000 | [diff] [blame] | 46 | ${rc} ${restart_pod_name}= Run and Return Rc and Output |
| 47 | ... kubectl get pods -n ${namespace} | grep ${name} | awk 'NR==1{print $1}' |
suraj gour | d64356b | 2019-11-07 13:26:20 +0000 | [diff] [blame] | 48 | Log ${restart_pod_name} |
suraj gour | 067451d | 2019-11-13 11:20:13 +0000 | [diff] [blame] | 49 | Should Not Be Empty ${restart_pod_name} Unable to parse pod name |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 50 | ${rc} ${output}= Run and Return Rc and Output |
| 51 | ... kubectl delete pod ${restart_pod_name} -n ${namespace} --grace-period=0 --force |
suraj gour | d64356b | 2019-11-07 13:26:20 +0000 | [diff] [blame] | 52 | Log ${output} |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 53 | |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 54 | Exec Pod |
| 55 | [Arguments] ${namespace} ${name} ${command} |
| 56 | [Documentation] Uses kubectl to execute a command in the pod and return the output |
| 57 | ${rc} ${exec_pod_name}= Run and Return Rc and Output |
Andrea Campanella | 1b25ac5 | 2020-09-09 14:34:31 +0200 | [diff] [blame] | 58 | ... kubectl -n ${namespace} get pods -l app=${name} -o name |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 59 | Log ${exec_pod_name} |
| 60 | Should Not Be Empty ${exec_pod_name} Unable to parse pod name |
| 61 | ${rc} ${output}= Run and Return Rc and Output |
| 62 | ... kubectl exec -i ${exec_pod_name} -n ${namespace} -- ${command} |
| 63 | Log ${output} |
| 64 | [return] ${output} |
| 65 | |
Holger Hildebrandt | 2314774 | 2020-11-16 10:13:21 +0000 | [diff] [blame] | 66 | Exec Pod In Kube |
| 67 | [Arguments] ${namespace} ${name} ${command} |
| 68 | [Documentation] Uses kubectl to execute a command in the pod and return the output |
| 69 | ${rc} ${exec_pod_name}= Run and Return Rc and Output |
| 70 | ... kubectl -n ${namespace} get pods -l app.kubernetes.io/name=${name} -o name |
| 71 | Log ${exec_pod_name} |
| 72 | Should Not Be Empty ${exec_pod_name} Unable to parse pod name |
| 73 | ${rc} ${output}= Run and Return Rc and Output |
| 74 | ... kubectl exec -i ${exec_pod_name} -n ${namespace} -- ${command} |
| 75 | Log ${output} |
| 76 | [return] ${output} |
| 77 | |
| 78 | |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 79 | Exec Pod Separate Stderr |
| 80 | [Arguments] ${namespace} ${name} ${command} |
| 81 | [Documentation] Uses kubectl to execute a command in the pod and return the stderr and stdout |
| 82 | ${rc} ${exec_pod_name}= Run and Return Rc and Output |
Andrea Campanella | 1b25ac5 | 2020-09-09 14:34:31 +0200 | [diff] [blame] | 83 | ... kubectl -n ${namespace} get pods -l app=${name} -o name |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 84 | Log ${exec_pod_name} |
| 85 | Should Not Be Empty ${exec_pod_name} Unable to parse pod name |
| 86 | @{args}= Split String ${command} |
| 87 | ${result}= Run Process |
| 88 | ... kubectl exec -i ${exec_pod_name} -n ${namespace} -- @{args} |
| 89 | ${stdout}= Set Variable ${result.stdout} |
| 90 | ${stderr}= Set Variable ${result.stderr} |
| 91 | Log ${stdout} |
| 92 | Log ${stderr} |
| 93 | [return] ${stdout} ${stderr} |
| 94 | |
Scott Baker | 0478bab | 2020-04-10 17:19:57 -0700 | [diff] [blame] | 95 | Copy File To Pod |
| 96 | [Arguments] ${namespace} ${name} ${src} ${dest} |
| 97 | [Documentation] Uses kubectl to copy a file to a pod |
| 98 | ${rc} ${exec_pod_name}= Run and Return Rc and Output |
| 99 | ... kubectl get pods -n ${namespace} | grep ${name} | awk 'NR==1{print $1}' |
| 100 | Log ${exec_pod_name} |
| 101 | Should Not Be Empty ${exec_pod_name} Unable to parse pod name |
| 102 | ${rc} ${output}= Run and Return Rc and Output |
| 103 | ... kubectl cp -n ${namespace} ${src} ${exec_pod_name}:${dest} |
| 104 | Log ${output} |
| 105 | [return] ${output} |
| 106 | |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 107 | Apply Kubernetes Resources |
| 108 | [Arguments] ${resource_yaml} ${namespace} |
| 109 | [Documentation] Use kubectl to create resources given a yaml file |
| 110 | ${rc} Run and Return Rc |
| 111 | ... kubectl apply -n ${namespace} -f ${resource_yaml} |
| 112 | Should Be Equal as Integers ${rc} 0 |
| 113 | |
Scott Baker | 0478bab | 2020-04-10 17:19:57 -0700 | [diff] [blame] | 114 | Delete Kubernetes Resources |
| 115 | [Arguments] ${resource_yaml} ${namespace} |
| 116 | [Documentation] Use kubectl to delete resources given a yaml file |
| 117 | ${rc} Run and Return Rc |
| 118 | ... kubectl delete -n ${namespace} -f ${resource_yaml} |
| 119 | Should Be Equal as Integers ${rc} 0 |
| 120 | |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 121 | Validate Pod Status |
| 122 | [Arguments] ${pod_name} ${namespace} ${expectedStatus} |
| 123 | [Documentation] To run the kubectl command and check the status of the given pod matches the expected status |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 124 | ${length}= Run kubectl get pod -n ${namespace} -o name | wc -l |
| 125 | ${matched}= Set Variable False |
| 126 | FOR ${index} IN RANGE ${length} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 127 | ${currentPodName}= Run |
| 128 | ... kubectl get pod -n ${namespace} -o=jsonpath="{.items[${index}].status.containerStatuses[0].name}" |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 129 | Log Required Pod : ${pod_name} |
| 130 | Log Current Pod: ${currentPodName} |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 131 | ${matched}= Set Variable If '${currentPodName}'=='${pod_name}' True False |
| 132 | Exit For Loop If ${matched} |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 133 | END |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 134 | Should Be True ${matched} No pod ${podname} found |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 135 | ${currentStatusofPod}= Run |
| 136 | ... kubectl get pod -n ${namespace} -o=jsonpath="{.items[${index}].status.phase}" |
suraj gour | 1ecfae9 | 2019-12-20 15:11:40 +0000 | [diff] [blame] | 137 | Log ${currentStatusofPod} |
| 138 | Should Contain ${currentStatusofPod} ${expectedStatus} |
| 139 | |
Hung-Wei Chiu | 2bee4d4 | 2020-04-24 11:31:50 -0700 | [diff] [blame] | 140 | Validate Pods Status By Label |
| 141 | [Arguments] ${namespace} ${label_key} ${label_value} ${expectedStatus} |
| 142 | [Documentation] To run the kubectl command and check the status of all pods filter |
| 143 | ... by label matche the expected status |
| 144 | ${command}= Catenate |
| 145 | ... kubectl -n ${namespace} get pods -l ${label_key}=${label_value} |
| 146 | ... -o=jsonpath="{.items[?(.status.phase=='${expectedStatus}')].status.phase}" |
| 147 | ${pods_status}= Run ${command} |
| 148 | Should Not Be Equal ${pods_status} ${EMPTY} Can't filter out Pods with exptected status ${expectedStatus} |
| 149 | |
Andrea Campanella | 4c40463 | 2020-08-26 14:41:36 +0200 | [diff] [blame] | 150 | Validate Pods Status By Name |
| 151 | [Arguments] ${namespace} ${name} ${expectedStatus} |
| 152 | [Documentation] To run the kubectl command and check the status of all pods filter |
| 153 | ... by label matche the expected status |
| 154 | ${command}= Catenate |
| 155 | ... kubectl -n ${namespace} get pods ${name} |
| 156 | ... -o=jsonpath="{.status.phase}" |
| 157 | ${pods_status}= Run ${command} |
| 158 | Should Not Be Equal ${pods_status} ${EMPTY} Can't filter out Pods with exptected status ${expectedStatus} |
| 159 | |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 160 | Verify All Voltha Pods For Any Error Logs |
| 161 | [Arguments] ${datetime} |
| 162 | [Documentation] This keyword checks for the error occurence in the voltha pods |
| 163 | &{errorPodDict} Create Dictionary |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 164 | &{containerDict} Get Container Dictionary voltha |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 165 | FOR ${podName} IN @{PODLIST1} |
| 166 | ${containerName} Get From Dictionary ${containerDict} ${podName} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 167 | ${rc} ${logOutput} Run And Return Rc And Output |
| 168 | ... kubectl logs --timestamps -n voltha --since-time=${datetime} ${containerName} |
| 169 | Run Keyword And Ignore Error |
| 170 | ... Run Keyword If '${logOutput}'=='${EMPTY}' |
| 171 | ... Run Keywords Log No Log found in pod ${podName} |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 172 | ... AND Continue For Loop |
| 173 | ${errorDict} Check For Error Logs in Pod Type1 Given the Log Output ${logOutput} |
| 174 | ${returnStatusFlagList} Get Dictionary Keys ${errorDict} |
| 175 | ${returnStatusFlag} Get From List ${returnStatusFlagList} 0 |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 176 | Run Keyword And Ignore Error |
| 177 | ... Run Keyword If '${returnStatusFlag}'=='Nologfound' |
| 178 | ... Run Keywords Log No Error Log found in pod ${podName} |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 179 | ... AND Continue For Loop |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 180 | Run Keyword And Ignore Error |
| 181 | ... Run Keyword If '${returnStatusFlag}'=='UnexpectedErrorfound' |
| 182 | ... Run Keywords Log Unexpected Error Log found in pod ${podName} |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 183 | ... AND Set to Dictionary ${errorPodDict} ${podName} ${errorDict} |
| 184 | END |
| 185 | FOR ${podName} IN @{PODLIST2} |
| 186 | ${containerName} Get From Dictionary ${containerDict} ${podName} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 187 | ${rc} ${logOutput} Run And Return Rc And Output |
| 188 | ... kubectl logs --timestamps -n voltha --since-time=${datetime} ${containerName} |
| 189 | Run Keyword And Ignore Error |
| 190 | ... Run Keyword If '${logOutput}'=='${EMPTY}' |
| 191 | ... Run Keywords Log No Log found in pod ${podName} |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 192 | ... AND Continue For Loop |
| 193 | ${errorDict} Check For Error Logs in Pod Type2 Given the Log Output ${logOutput} |
| 194 | ${returnStatusFlagList} Get Dictionary Keys ${errorDict} |
| 195 | ${returnStatusFlag} Get From List ${returnStatusFlagList} 0 |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 196 | Run Keyword And Ignore Error |
| 197 | ... Run Keyword If '${returnStatusFlag}'=='Nologfound' |
| 198 | ... Run Keywords Log No Error Log found in pod ${podName} |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 199 | ... AND Continue For Loop |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 200 | Run Keyword And Ignore Error |
| 201 | ... Run Keyword If '${returnStatusFlag}'=='UnexpectedErrorfound' |
| 202 | ... Run Keywords Log Unexpected Error Log found in pod ${podName} |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 203 | ... AND Set to Dictionary ${errorPodDict} ${podName} ${errorDict} |
| 204 | END |
| 205 | Print to Console Error Statement logged in the following pods : ${errorPodDict} |
| 206 | [Return] ${errorPodDict} |
| 207 | |
| 208 | Check For Error Logs in Pod Type1 Given the Log Output |
| 209 | [Arguments] ${logOutput} ${logLevel}=error ${errorMessage}=${EMPTY} |
| 210 | [Documentation] Checks for error message in the particular list of pods |
| 211 | Log ${logOutput} |
| 212 | ${linesContainingLog} = Get Lines Matching Regexp ${logOutput} .*\s\${logLevel}.* partial_match=true |
| 213 | ${is_exec_status} ${output} Run Keyword And Ignore Error Should Be Empty ${linesContainingLog} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 214 | ${returnStatusFlag} Set Variable If '${is_exec_status}'=='PASS' |
| 215 | ... Nologfound '${is_exec_status}'=='FAIL' Errorlogfound |
| 216 | ${linesContainingError} = Get Lines Matching Regexp |
| 217 | ... ${logOutput} .*\s\${logLevel}.*${errorMessage} partial_match=true |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 218 | ${is_exec_status} ${output} Run Keyword And Ignore Error Should Be Empty ${linesContainingError} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 219 | ${returnStatusFlag} Set Variable If '${is_exec_status}'=='PASS' |
| 220 | ... UnexpectedErrorfound '${is_exec_status}'=='FAIL' MatchingErrorlogfound |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 221 | Log {linesContainingError} |
| 222 | &{errorDict} Create Dictionary ${returnStatusFlag} ${linesContainingLog} |
| 223 | [Return] ${errorDict} |
| 224 | |
| 225 | Check For Error Logs in Pod Type2 Given the Log Output |
| 226 | [Arguments] ${logOutput} ${logLevel}=warn ${errorMessage}=${EMPTY} |
| 227 | [Documentation] Checks for error message in the particular set of pods |
| 228 | Log ${logOutput} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 229 | ${linesContainingLog} = Get Lines Matching Regexp |
| 230 | ... ${logOutput} .*?\s.*level.*${logLevel}.* partial_match=true |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 231 | ${is_exec_status} ${output} Run Keyword And Ignore Error Should Be Empty ${linesContainingLog} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 232 | ${returnStatusFlag} Set Variable If '${is_exec_status}'=='PASS' |
| 233 | ... Nologfound '${is_exec_status}'=='FAIL' Errorlogfound |
| 234 | ${linesContainingError} = Get Lines Matching Regexp |
| 235 | ... ${logOutput} .*?\s.*level.*${logLevel}.*msg.*${errorMessage} partial_match=true |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 236 | ${is_exec_status} ${output} Run Keyword And Ignore Error Should Be Empty ${linesContainingError} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 237 | ${returnStatusFlag} Set Variable If '${is_exec_status}'=='PASS' |
| 238 | ... UnexpectedErrorfound '${is_exec_status}'=='FAIL' MatchingErrorlogfound |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 239 | Log {linesContainingError} |
| 240 | &{errorDict} Create Dictionary ${returnStatusFlag} ${linesContainingLog} |
| 241 | [Return] ${errorDict} |
| 242 | |
| 243 | Get Container Dictionary |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 244 | [Arguments] ${namespace} |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 245 | [Documentation] Creates a mapping for pod name and container name and returns the same |
| 246 | &{containerDict} Create Dictionary |
| 247 | ${containerName} Set Variable ${EMPTY} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 248 | ${podName} Run kubectl get deployment -n ${namespace} | awk 'NR>1 {print $1}' |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 249 | @{podNameList}= Split To Lines ${podName} |
| 250 | Append To List ${podNameList} voltha-etcd-cluster voltha-kafka voltha-ro-core voltha-zookeeper |
| 251 | Log ${podNameList} |
| 252 | #Creatiing dictionary to correspond pod name and container name |
| 253 | FOR ${pod} IN @{podNameList} |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 254 | ${containerName} Run kubectl get pod -n ${namespace} | grep ${pod} | awk '{print $1}' |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 255 | &{containerDict} Set To Dictionary ${containerDict} ${pod} ${containerName} |
| 256 | END |
| 257 | Log ${containerDict} |
| 258 | [Return] ${containerDict} |
| 259 | |
| 260 | Validate Error For Given Pods |
| 261 | [Arguments] ${datetime} ${podDict} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 262 | [Documentation] |
| 263 | ... This keyword is used to get the list of pods if there is any unexpected error |
| 264 | ... in a particular pod(s) given the time-${datetime} from which the log needs to |
| 265 | ... be analysed and the dictionary of pods and the error in the dictionary format |
| 266 | ... ${podDict] . |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 267 | ... |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 268 | ... Usage: ${returnStatusFlag} Validate Error For Given Pods ${datetime} ${podDict} |
| 269 | ... |
| 270 | ... Arguments: |
| 271 | ... |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 272 | ... ${datetime} = time from which the log needs to be taken |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 273 | ... ${podDict} = Key-value pair of the pod name and the error msg |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 274 | ... |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 275 | ... Example: ${podDict} = Set Dictionary ${podDict} radius sample error message. |
| 276 | ... |
| 277 | ... In case the radius pod log has any other error than the expected |
| 278 | ... error, then the podname will be returned |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 279 | ${podList} = Get Dictionary Keys ${podDict} |
| 280 | FOR ${podName} IN @{podList} |
| 281 | ${containerName} Get From Dictionary ${containerDict} ${podName} |
| 282 | ${expectedError} Get From Dictionary ${podDict} ${podName} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 283 | ${rc} ${logOutput} Run And Return Rc And Output |
| 284 | ... kubectl logs --timestamps -n voltha --since-time=${datetime} ${containerName} |
| 285 | Run Keyword And Ignore Error |
| 286 | ... Run Keyword If '${logOutput}'=='${EMPTY}' |
| 287 | ... Run Keywords Log No Log found in pod ${podName} |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 288 | ... AND Continue For Loop |
| 289 | ${returnStatusFlag} Check For Error Logs in Pod Type1 Given the Log Output ${logOutput} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 290 | Run Keyword And Ignore Error |
| 291 | ... Run Keyword If '${returnStatusFlag}'=='Nologfound' |
| 292 | ... Run Keywords Log No Error Log found in pod ${podName} |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 293 | ... AND Continue For Loop |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 294 | Run Keyword And Ignore Error |
| 295 | ... Run Keyword If '${returnStatusFlag}'=='UnexpectedErrorfound' |
| 296 | ... Run Keywords Log Unexpected Error Log found in pod ${podName} |
Gayathri.Selvan | 61fbcdb | 2019-11-14 05:08:19 +0000 | [diff] [blame] | 297 | ... AND Append To List ${errorPodList} ${podName} |
| 298 | END |
| 299 | [Return] ${errorPodList} |
| 300 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 301 | Delete K8s Pod |
| 302 | [Arguments] ${namespace} ${name} |
| 303 | [Documentation] Uses kubectl to delete a named POD |
| 304 | ${rc} Run and Return Rc |
| 305 | ... kubectl delete -n ${namespace} pod/${name} |
| 306 | Should Be Equal as Integers ${rc} 0 |
| 307 | |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 308 | Delete K8s Pods By Label |
| 309 | [Arguments] ${namespace} ${key} ${value} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 310 | [Documentation] Uses kubectl to delete a PODs, filtering by label |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 311 | ${rc}= Run and Return Rc |
| 312 | ... kubectl -n ${namespace} delete pods -l${key}=${value} |
| 313 | Should Be Equal as Integers ${rc} 0 |
| 314 | |
Andrea Campanella | 4c40463 | 2020-08-26 14:41:36 +0200 | [diff] [blame] | 315 | Delete K8s Pods By Name |
| 316 | [Arguments] ${namespace} ${value} |
| 317 | [Documentation] Uses kubectl to delete a PODs, filtering by label |
| 318 | ${rc}= Run and Return Rc |
| 319 | ... kubectl -n ${namespace} delete pods ${value} |
| 320 | Should Be Equal as Integers ${rc} 0 |
| 321 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 322 | Scale K8s Deployment |
| 323 | [Arguments] ${namespace} ${name} ${count} |
| 324 | [Documentation] Uses kubectl to scale a named deployment |
| 325 | ${rc} Run and Return Rc |
| 326 | ... kubectl scale --replicas=${count} -n ${namespace} deploy/${name} |
| 327 | Should Be Equal as Integers ${rc} 0 |
| 328 | |
| 329 | Pod Exists |
| 330 | [Arguments] ${namespace} ${name} |
| 331 | [Documentation] Succeeds it the named POD exists |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 332 | ${rc} ${count} Run and Return Rc |
| 333 | ... kubectl get -n ${namespace} pod -o json | jq -r ".items[].metadata.name" | grep ${name} |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 334 | Should Be True ${count}>0 Pod ${name} not found |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 335 | |
| 336 | Pod Does Not Exist |
| 337 | [Arguments] ${namespace} ${name} |
| 338 | [Documentation] Succeeds if the named POD does not exist |
| 339 | ${rc} ${count} Run and Return Rc And Output |
| 340 | ... kubectl get -n ${namespace} pod -o json | jq -r ".items[].metadata.name" | grep -c ${name} |
| 341 | Should Be Equal As Integers ${count} 0 |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 342 | Should Be True ${count}==0 Pod ${name} exists but should not |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 343 | |
TorstenThieme | d2cd91d | 2020-07-28 07:13:44 +0000 | [diff] [blame] | 344 | Wait For Pods Not Exist |
| 345 | [Arguments] ${namespace} ${list_names} |
| 346 | [Documentation] Checks the passed PODs are no longer existing |
| 347 | FOR ${pod_name} IN @{list_names} |
| 348 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 3s |
| 349 | ... Pod Does Not Exist ${namespace} ${pod_name} |
| 350 | END |
| 351 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 352 | Pods Do Not Exist By Label |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 353 | [Arguments] ${namespace} ${key} ${value} |
| 354 | [Documentation] Succeeds if the named POD does not exist |
| 355 | ${rc} ${count} Run and Return Rc And Output |
| 356 | ... kubectl get -n ${namespace} pod -l${key}=${value} -o json | jq -r ".items[].metadata.name" | wc -l |
| 357 | Should Be Equal As Integers ${count} 0 |
Andy Bavier | b63f6d2 | 2020-03-12 15:34:37 -0700 | [diff] [blame] | 358 | Should Be True ${count}==0 Pod with label ${key}=${value} exists but should not |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 359 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 360 | Get Available Deployment Replicas |
| 361 | [Arguments] ${namespace} ${name} |
| 362 | [Documentation] Succeeds if the named POD exists and has a ready count > 0 |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 363 | ${rc} ${count} Run and Return Rc and Output |
| 364 | ... kubectl get -n ${namespace} deploy/${name} -o jsonpath='{.status.availableReplicas}' |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 365 | ${result}= Run Keyword If '${count}' == '' Set Variable 0 |
| 366 | ... ELSE Set Variable ${count} |
| 367 | [Return] ${result} |
| 368 | |
| 369 | Check Expected Available Deployment Replicas |
| 370 | [Arguments] ${namespace} ${name} ${expected} |
| 371 | [Documentation] Succeeds if the named deployment has the expected number of available replicas |
| 372 | ${count}= Get Available Deployment Replicas ${namespace} ${name} |
| 373 | Should Be Equal As Integers ${expected} ${count} |
| 374 | |
| 375 | Get Deployment Replica Count |
| 376 | [Arguments] ${namespace} ${name} |
| 377 | [Documentation] Uses kubectl to fetch the number of configured replicas on a deployment |
| 378 | ${rc} ${value} Run and Return Rc and Output |
| 379 | ... kubectl -n ${namespace} get deploy/${name} -o 'jsonpath={.status.replicas}' |
| 380 | Should Be Equal as Integers ${rc} 0 |
| 381 | ${replicas}= Run Keyword If '${value}' == '' Set Variable 0 |
| 382 | ... ELSE Set Variable ${value} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 383 | [Return] ${replicas} |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 384 | |
| 385 | Does Deployment Have Replicas |
| 386 | [Arguments] ${namespace} ${name} ${expected_count} |
| 387 | [Documentation] Uses kubectl to fetch the number of configured replicas on a deployment |
| 388 | ${rc} ${value} Run and Return Rc and Output |
| 389 | ... kubectl -n ${namespace} get deploy/${name} -o 'jsonpath={.status.replicas}' |
| 390 | Should Be Equal as Integers ${rc} 0 |
| 391 | ${replicas}= Run Keyword If '${value}' == '' Set Variable 0 |
| 392 | ... ELSE Set Variable ${value} |
| 393 | Should be Equal as Integers ${replicas} ${expected_count} |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 394 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 395 | Pods Are Ready By Label |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 396 | [Arguments] ${namespace} ${key} ${value} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 397 | [Documentation] Check that all pods with a label are ready |
| 398 | ${output}= Run |
| 399 | ... kubectl -n ${namespace} get pods -l ${key}=${value} -o=jsonpath="{.items[].status.containerStatuses[].ready}" |
TorstenThieme | d2cd91d | 2020-07-28 07:13:44 +0000 | [diff] [blame] | 400 | Should Not Contain ${output} false |
| 401 | |
| 402 | Wait For Pods Ready |
| 403 | [Arguments] ${namespace} ${list_apps} |
| 404 | [Documentation] Checks the passed PODs are ready |
| 405 | FOR ${app_name} IN @{list_apps} |
| 406 | Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 3s |
| 407 | ... Pods Are Ready By Label ${namespace} app ${app_name} |
| 408 | END |
Gayathri.Selvan | 4939896 | 2020-01-13 07:19:12 +0000 | [diff] [blame] | 409 | |
hwchiu | 58af72d | 2020-01-14 00:50:35 +0000 | [diff] [blame] | 410 | Check Expected Running Pods Number By Label |
| 411 | [Arguments] ${namespace} ${key} ${value} ${number} |
| 412 | [Documentation] Succeeds if the desired pod has expected number replicas |
| 413 | ${rc} ${count} Run and Return Rc and Output |
| 414 | ... kubectl -n ${namespace} get pods -l ${key}=${value} -o json | jq -r ".items[].status.phase" | wc -l |
| 415 | Should Be Equal as Integers ${count} ${number} |
Andrea Campanella | 962fe83 | 2020-09-21 10:41:47 +0200 | [diff] [blame] | 416 | |
| 417 | Get Number of Running Pods Number By Label |
| 418 | [Arguments] ${namespace} ${key} ${value} |
| 419 | [Documentation] Returns the number of pods for a given label |
| 420 | ${rc} ${count} Run and Return Rc and Output |
| 421 | ... kubectl -n ${namespace} get pods -l ${key}=${value} -o name | wc -l |
| 422 | [Return] ${count} |