hwchiu | 20f35d9 | 2019-11-05 05:22:58 +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. |
| 14 | |
| 15 | *** Settings *** |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 16 | Documentation Provide the function to perform system related test |
hwchiu | 20f35d9 | 2019-11-05 05:22:58 +0000 | [diff] [blame] | 17 | Library OperatingSystem |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 18 | Resource ../../libraries/k8s.robot |
hwchiu | 20f35d9 | 2019-11-05 05:22:58 +0000 | [diff] [blame] | 19 | |
| 20 | *** Variables *** |
hwchiu | 58af72d | 2020-01-14 00:50:35 +0000 | [diff] [blame] | 21 | ${timeout} 120s |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 22 | ${desired_ETCD_cluster_size} 3 |
| 23 | ${minimal_ETCD_cluster_size} 2 |
| 24 | ${namespace} voltha |
| 25 | ${ETCD_resources} etcdclusters.etcd.database.coreos.com |
| 26 | ${ETCD_name} voltha-etcd-cluster |
hwchiu | 7438081 | 2020-01-08 18:05:18 +0800 | [diff] [blame] | 27 | ${ETCD_pod_label_key} etcd_cluster |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 28 | ${common_pod_label_key} app |
| 29 | ${rwcore_pod_label_value} rw-core |
| 30 | ${ofagent_pod_label_value} ofagent |
| 31 | ${adapter_openolt_pod_label_value} adapter-open-olt |
hwchiu | 20f35d9 | 2019-11-05 05:22:58 +0000 | [diff] [blame] | 32 | |
| 33 | *** Test Cases *** |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 34 | Scale Down ETCD Cluster |
| 35 | [Documentation] Scale Down the ETCD cluster to minimal size, skip test if current cluster size < 3 |
| 36 | [Tags] scaledown ETCDdown |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 37 | ${current_size}= Get ETCD Running Size voltha |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 38 | Pass Execution If '${current_size}' != '${desired_ETCD_cluster_size}' |
hwchiu | 20f35d9 | 2019-11-05 05:22:58 +0000 | [diff] [blame] | 39 | ... 'Skip the test if the cluster size smaller than minimal size 3' |
| 40 | # The minimal cluster size after scale down |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 41 | # based on https://github.com/ETCD-io/ETCD/blob/master/Documentation/faq.md#what-is-failure-tolerance |
| 42 | Scale ETCD ${namespace} ${minimal_ETCD_cluster_size} |
hwchiu | 58af72d | 2020-01-14 00:50:35 +0000 | [diff] [blame] | 43 | Wait Until Keyword Succeeds ${timeout} 2s |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 44 | ... Validate ETCD Size ${namespace} ${minimal_ETCD_cluster_size} |
| 45 | Wait Until Keyword Succeeds ${timeout} 2s |
| 46 | ... Check Expected Running Pods Number By Label ${namespace} |
| 47 | ... ${ETCD_pod_label_key} ${ETCD_name} 2 |
hwchiu | 20f35d9 | 2019-11-05 05:22:58 +0000 | [diff] [blame] | 48 | |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 49 | Scale Up ETCD Cluster |
| 50 | [Documentation] Recover the ETCD cluster by scaling up its size |
| 51 | [Tags] scaleup ETCDup |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 52 | ${current_size}= Get ETCD Running Size voltha |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 53 | Pass Execution If '${current_size}' != '${minimal_ETCD_cluster_size}' |
hwchiu | 20f35d9 | 2019-11-05 05:22:58 +0000 | [diff] [blame] | 54 | ... 'Skip the test if the cluster size smaller than minimal size 3' |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 55 | Scale ETCD ${namespace} ${desired_ETCD_cluster_size} |
| 56 | # We scale up the size to 3, the recommended size of ETCD cluster. |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 57 | Wait Until Keyword Succeeds ${timeout} 2s |
| 58 | ... Validate ETCD Size ${namespace} ${desired_ETCD_cluster_size} |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 59 | |
| 60 | ETCD Failure Test |
| 61 | [Documentation] Failure Scenario Test: ETCD Crash |
| 62 | [Tags] FailureTest |
| 63 | Delete K8s Pods By Label ${namespace} ${ETCD_pod_label_key} ${ETCD_name} |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 64 | Wait Until Keyword Succeeds ${timeout} 2s |
| 65 | ... Pods Do Not Exist By Label ${namespace} ${ETCD_pod_label_key} ${ETCD_name} |
| 66 | Wait Until Keyword Succeeds ${timeout} 2s |
| 67 | ... Pods Are Ready By Label ${namespace} ${common_pod_label_key} ${rwcore_pod_label_value} |
| 68 | Wait Until Keyword Succeeds ${timeout} 2s |
| 69 | ... Pods Are Ready By Label ${namespace} ${common_pod_label_key} ${ofagent_pod_label_value} |
| 70 | Wait Until Keyword Succeeds ${timeout} 2s |
| 71 | ... Pods Are Ready By Label ${namespace} ${common_pod_label_key} ${adapter_openolt_pod_label_value} |
hwchiu | 20f35d9 | 2019-11-05 05:22:58 +0000 | [diff] [blame] | 72 | |
| 73 | *** Keywords *** |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 74 | Get ETCD Running Size |
hwchiu | 20f35d9 | 2019-11-05 05:22:58 +0000 | [diff] [blame] | 75 | [Arguments] ${namespace} |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 76 | [Documentation] Get the number of running ETCD nodes |
hwchiu | 20f35d9 | 2019-11-05 05:22:58 +0000 | [diff] [blame] | 77 | ${rc} ${size}= Run and Return Rc and Output |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 78 | ... kubectl -n ${namespace} get ${ETCD_resources} ${ETCD_name} -o jsonpath='{.status.size}' |
hwchiu | 20f35d9 | 2019-11-05 05:22:58 +0000 | [diff] [blame] | 79 | Should Be Equal As Integers ${rc} 0 |
| 80 | [Return] ${size} |
| 81 | |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 82 | Scale ETCD |
hwchiu | 20f35d9 | 2019-11-05 05:22:58 +0000 | [diff] [blame] | 83 | [Arguments] ${namespace} ${size} |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 84 | [Documentation] Scale down the number of ETCD pod |
hwchiu | 20f35d9 | 2019-11-05 05:22:58 +0000 | [diff] [blame] | 85 | ${rc}= Run and Return Rc |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 86 | ... kubectl -n ${namespace} patch ${ETCD_resources} ${ETCD_name} --type='merge' -p '{"spec":{"size":${size}}}' |
hwchiu | 20f35d9 | 2019-11-05 05:22:58 +0000 | [diff] [blame] | 87 | Should Be Equal As Integers ${rc} 0 |
| 88 | |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 89 | Validate ETCD Size |
| 90 | [Arguments] ${namespace} ${ETCD_cluster_size} |
| 91 | [Documentation] Scale down the number of ETCD pod |
hwchiu | 20f35d9 | 2019-11-05 05:22:58 +0000 | [diff] [blame] | 92 | ${rc} ${size}= Run and Return Rc and Output |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 93 | ... kubectl -n ${namespace} get ${ETCD_resources} ${ETCD_name} -o jsonpath='{.status.size}' |
| 94 | Should Be Equal As Integers ${size} ${ETCD_cluster_size} |