blob: ce0de140d615e5d534f62649a87bb336f1823096 [file] [log] [blame]
hwchiu20f35d92019-11-05 05:22:58 +00001#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 ***
hwchiu85695932019-12-18 08:05:25 +000016Documentation Provide the function to perform system related test
hwchiu20f35d92019-11-05 05:22:58 +000017Library OperatingSystem
hwchiu85695932019-12-18 08:05:25 +000018Resource ../../libraries/k8s.robot
hwchiu20f35d92019-11-05 05:22:58 +000019
20*** Variables ***
hwchiu58af72d2020-01-14 00:50:35 +000021${timeout} 120s
Zack Williamsa8fe75a2020-01-10 14:25:27 -070022${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
hwchiu74380812020-01-08 18:05:18 +080027${ETCD_pod_label_key} etcd_cluster
hwchiu85695932019-12-18 08:05:25 +000028${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
hwchiu20f35d92019-11-05 05:22:58 +000032
33*** Test Cases ***
hwchiu85695932019-12-18 08:05:25 +000034Scale 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 Williamsa8fe75a2020-01-10 14:25:27 -070037 ${current_size}= Get ETCD Running Size voltha
hwchiu85695932019-12-18 08:05:25 +000038 Pass Execution If '${current_size}' != '${desired_ETCD_cluster_size}'
hwchiu20f35d92019-11-05 05:22:58 +000039 ... 'Skip the test if the cluster size smaller than minimal size 3'
40 # The minimal cluster size after scale down
hwchiu85695932019-12-18 08:05:25 +000041 # 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}
hwchiu58af72d2020-01-14 00:50:35 +000043 Wait Until Keyword Succeeds ${timeout} 2s
Zack Williamsa8fe75a2020-01-10 14:25:27 -070044 ... 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
hwchiu20f35d92019-11-05 05:22:58 +000048
hwchiu85695932019-12-18 08:05:25 +000049Scale Up ETCD Cluster
50 [Documentation] Recover the ETCD cluster by scaling up its size
51 [Tags] scaleup ETCDup
Zack Williamsa8fe75a2020-01-10 14:25:27 -070052 ${current_size}= Get ETCD Running Size voltha
hwchiu85695932019-12-18 08:05:25 +000053 Pass Execution If '${current_size}' != '${minimal_ETCD_cluster_size}'
hwchiu20f35d92019-11-05 05:22:58 +000054 ... 'Skip the test if the cluster size smaller than minimal size 3'
hwchiu85695932019-12-18 08:05:25 +000055 Scale ETCD ${namespace} ${desired_ETCD_cluster_size}
56 # We scale up the size to 3, the recommended size of ETCD cluster.
Zack Williamsa8fe75a2020-01-10 14:25:27 -070057 Wait Until Keyword Succeeds ${timeout} 2s
58 ... Validate ETCD Size ${namespace} ${desired_ETCD_cluster_size}
hwchiu85695932019-12-18 08:05:25 +000059
60ETCD 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 Williamsa8fe75a2020-01-10 14:25:27 -070064 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}
hwchiu20f35d92019-11-05 05:22:58 +000072
73*** Keywords ***
hwchiu85695932019-12-18 08:05:25 +000074Get ETCD Running Size
hwchiu20f35d92019-11-05 05:22:58 +000075 [Arguments] ${namespace}
hwchiu85695932019-12-18 08:05:25 +000076 [Documentation] Get the number of running ETCD nodes
hwchiu20f35d92019-11-05 05:22:58 +000077 ${rc} ${size}= Run and Return Rc and Output
hwchiu85695932019-12-18 08:05:25 +000078 ... kubectl -n ${namespace} get ${ETCD_resources} ${ETCD_name} -o jsonpath='{.status.size}'
hwchiu20f35d92019-11-05 05:22:58 +000079 Should Be Equal As Integers ${rc} 0
80 [Return] ${size}
81
hwchiu85695932019-12-18 08:05:25 +000082Scale ETCD
hwchiu20f35d92019-11-05 05:22:58 +000083 [Arguments] ${namespace} ${size}
hwchiu85695932019-12-18 08:05:25 +000084 [Documentation] Scale down the number of ETCD pod
hwchiu20f35d92019-11-05 05:22:58 +000085 ${rc}= Run and Return Rc
hwchiu85695932019-12-18 08:05:25 +000086 ... kubectl -n ${namespace} patch ${ETCD_resources} ${ETCD_name} --type='merge' -p '{"spec":{"size":${size}}}'
hwchiu20f35d92019-11-05 05:22:58 +000087 Should Be Equal As Integers ${rc} 0
88
hwchiu85695932019-12-18 08:05:25 +000089Validate ETCD Size
90 [Arguments] ${namespace} ${ETCD_cluster_size}
91 [Documentation] Scale down the number of ETCD pod
hwchiu20f35d92019-11-05 05:22:58 +000092 ${rc} ${size}= Run and Return Rc and Output
hwchiu85695932019-12-18 08:05:25 +000093 ... kubectl -n ${namespace} get ${ETCD_resources} ${ETCD_name} -o jsonpath='{.status.size}'
94 Should Be Equal As Integers ${size} ${ETCD_cluster_size}