blob: 7383c8a9eda05ac2e7f0a58ee97a27bbc29ffca5 [file] [log] [blame]
Kailash Khalasi6dab16e2018-09-17 20:24:08 -07001# 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
Suchitra Vemuriff825322018-09-07 14:00:04 -070015*** Settings ***
You Wang59ded6c2018-10-05 17:43:44 -070016Documentation Test various end-to-end scenarios with ATT workflow
You Wang9f7eb392018-10-09 17:49:34 -070017Suite Setup Setup Suite
18Suite Teardown Teardown Suite
19Test Setup Setup Test
20Test Teardown Teardown Test
Suchitra Vemuriff825322018-09-07 14:00:04 -070021Library Collections
22Library String
23Library OperatingSystem
24Library XML
25Library RequestsLibrary
Suchitra Vemuri32fc2f22018-09-10 12:06:01 -070026Library ../../Framework/utils/utils.py
Kailash Khalasi6dab16e2018-09-17 20:24:08 -070027Resource ../../Framework/utils/utils.robot
Suchitra Vemuri32fc2f22018-09-10 12:06:01 -070028Library ../../Framework/restApi.py
Kailash Khalasi6dab16e2018-09-17 20:24:08 -070029Resource ../../Framework/Subscriber.robot
30Resource ../../Framework/ATTWorkFlowDriver.robot
You Wang0c2b3662018-10-01 16:56:17 -070031Resource ../../Framework/Kubernetes.robot
Kailash Khalasi6dab16e2018-09-17 20:24:08 -070032Resource ../../Framework/ONU.robot
You Wang0c2b3662018-10-01 16:56:17 -070033Resource ../../Framework/OLT.robot
Kailash Khalasi6dab16e2018-09-17 20:24:08 -070034Resource ../../Framework/DHCP.robot
35Variables ../../Properties/RestApiProperties.py
Suchitra Vemuriff825322018-09-07 14:00:04 -070036
37*** Variables ***
You Wang59ded6c2018-10-05 17:43:44 -070038${POD_NAME} flex-pod1-olt
39${KUBERNETES_CONFIGS_DIR} ~/pod-configs/kubernetes-configs
40${HELM_CHARTS_DIR} ~/helm-charts
41${WHITELIST_PATHFILE} ${CURDIR}/data/${POD_NAME}/ATTWhiteList.json
42${SUBSCRIBER_PATHFILE} ${CURDIR}/data/${POD_NAME}/ATTSubscriber.json
43${VOLT_DEVICE_PATHFILE} ${CURDIR}/data/${POD_NAME}/RealOLTDevice.json
44${KUBERNETES_CONF} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf
45${KUBERNETES_YAML} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.yml
46${VOLTHA_POD_NUM} 8
Suchitra Vemuriff825322018-09-07 14:00:04 -070047
Kailash Khalasia0810ce2018-09-10 13:03:27 -070048*** Test Cases ***
You Wang9f7eb392018-10-09 17:49:34 -070049ONU in Correct Location
Kailash Khalasif3e0a9f2018-09-18 13:43:42 -070050 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
You Wang9f7eb392018-10-09 17:49:34 -070051 ... Configure whitelist with correct ONU location
52 ... Validate successful authentication/DHCP/E2E ping
Kailash Khalasif3e0a9f2018-09-18 13:43:42 -070053 [Setup] None
You Wang5be816a2018-10-11 16:45:31 -070054 Wait Until Keyword Succeeds 300s 15s Validate ONU States ACTIVE ENABLED ${onu_device}
55 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
56 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
57 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
58 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
59 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
60 Validate DHCP and Ping True True ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang0c2b3662018-10-01 16:56:17 -070061
You Wang9f7eb392018-10-09 17:49:34 -070062ONU in Correct Location -> Remove ONU from Whitelist -> Add ONU to Whitelist
You Wang0c2b3662018-10-01 16:56:17 -070063 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
You Wang9f7eb392018-10-09 17:49:34 -070064 ... Configure whitelist with correct ONU location
65 ... Validate successful authentication/DHCP/E2E ping
66 ... Remove ONU from whitelist
67 ... Validate failed authentication/DHCP/E2E ping
68 ... Add ONU to whitelist
69 ... Validate successful authentication/DHCP/E2E ping
You Wang5be816a2018-10-11 16:45:31 -070070 Wait Until Keyword Succeeds 300s 15s Validate ONU States ACTIVE ENABLED ${onu_device}
71 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
72 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
73 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
74 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
75 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
76 Validate DHCP and Ping True True ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -070077 Clean Up Linux
78 Remove Whitelist
You Wang8fff6a02018-10-15 16:26:54 -070079 Wait Until Keyword Succeeds 300s 15s Validate ONU States UNKNOWN DISABLED ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -070080 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
81 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
82 Validate Authentication False ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
83 Validate DHCP and Ping False False ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -070084 Clean Up Linux
85 Create Whitelist
You Wang5be816a2018-10-11 16:45:31 -070086 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
87 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
88 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
89 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
90 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
91 Validate DHCP and Ping True True ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -070092
93ONU in Correct Location -> ONU in Wrong Location -> ONU in Correct Location
94 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
95 ... Configure whitelist with correct ONU location
96 ... Validate successful authentication/DHCP/E2E ping
97 ... Update whitelist with wrong ONU location
98 ... Validate failed authentication/DHCP/E2E ping
99 ... Update whitelist with correct ONU location
100 ... Validate successful authentication/DHCP/E2E ping
You Wang5be816a2018-10-11 16:45:31 -0700101 Wait Until Keyword Succeeds 300s 15s Validate ONU States ACTIVE ENABLED ${onu_device}
102 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
103 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
104 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
105 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
106 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
107 Validate DHCP and Ping True True ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700108 Clean Up Linux
109 Update Whitelist with Wrong Location
You Wang5be816a2018-10-11 16:45:31 -0700110 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
111 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
112 Validate Authentication False ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
113 Validate DHCP and Ping False False ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700114 Clean Up Linux
115 Update Whitelist with Correct Location
You Wang5be816a2018-10-11 16:45:31 -0700116 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
117 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
118 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
119 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
120 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
121 Validate DHCP and Ping True True ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700122
123ONU in Correct Location -> Remove Subscriber -> Create Subscriber
124 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
125 ... Configure whitelist with correct ONU location
126 ... Validate successful authentication/DHCP/E2E ping
127 ... Remove subscriber model
128 ... Validate failed authentication/DHCP/E2E ping
129 ... Recreate subscriber model
130 ... Validate successful authentication/DHCP/E2E ping
You Wang5be816a2018-10-11 16:45:31 -0700131 Wait Until Keyword Succeeds 300s 15s Validate ONU States ACTIVE ENABLED ${onu_device}
132 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
133 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
134 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
135 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
136 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
137 Validate DHCP and Ping True True ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700138 Clean Up Linux
139 Remove Subscriber
You Wang5be816a2018-10-11 16:45:31 -0700140 Validate Authentication False ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
141 Validate DHCP and Ping False False ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700142 Clean Up Linux
143 Create Subscriber
You Wang5be816a2018-10-11 16:45:31 -0700144 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
145 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
146 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
147 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
148 Validate DHCP and Ping True True ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700149
150ONU in Correct Location (Skip Subscriber Provisioning) -> Provision Subscriber
151 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
152 ... Configure whitelist with correct ONU location and skip provisioning subscriber
You Wang5be816a2018-10-11 16:45:31 -0700153 ... Validate successful authentication (expected with the ONF pod setup) but failed DHCP/E2E ping
You Wang9f7eb392018-10-09 17:49:34 -0700154 ... Provision subscriber
155 ... Validate successful authentication/DHCP/E2E ping
156 [Setup] None
157 Create Whitelist
158 Create VOLT
You Wang5be816a2018-10-11 16:45:31 -0700159 Wait Until Keyword Succeeds 300s 15s Validate ONU States ACTIVE ENABLED ${onu_device}
160 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
161 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
You Wang8fff6a02018-10-15 16:26:54 -0700162 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -0700163 Validate DHCP and Ping False False ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700164 Clean Up Linux
165 Create Subscriber
You Wang5be816a2018-10-11 16:45:31 -0700166 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
167 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
168 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
169 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
170 Validate DHCP and Ping True True ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700171
172ONU in Correct Location (Skip Authentication)
173 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
174 ... Configure whitelist with correct ONU location and skip RG authentication
175 ... Validate failed authentication/DHCP/E2E ping
You Wang5be816a2018-10-11 16:45:31 -0700176 Wait Until Keyword Succeeds 300s 15s Validate ONU States ACTIVE ENABLED ${onu_device}
177 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
178 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
179 Validate DHCP and Ping False False ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang0c2b3662018-10-01 16:56:17 -0700180
You Wang9f7eb392018-10-09 17:49:34 -0700181ONU not in Whitelist
You Wang0c2b3662018-10-01 16:56:17 -0700182 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
You Wang9f7eb392018-10-09 17:49:34 -0700183 ... Skip whitelist configuration for ONU
184 ... Validate failed authentication/DHCP/E2E ping
You Wang0c2b3662018-10-01 16:56:17 -0700185 [Setup] None
You Wang9f7eb392018-10-09 17:49:34 -0700186 Create Subscriber
187 Create VOLT
You Wang5be816a2018-10-11 16:45:31 -0700188 Wait Until Keyword Succeeds 300s 15s Validate ONU States UNKNOWN DISABLED ${onu_device}
189 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
190 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
191 Validate Authentication False ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
192 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
193 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
194 Validate DHCP and Ping False False ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
Suchitra Vemuriff825322018-09-07 14:00:04 -0700195
You Wang9f7eb392018-10-09 17:49:34 -0700196ONU not in Whitelist (Skip Subscriber Provisioning) -> Add ONU to Whitelist -> Provision Subscriber
197 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
198 ... Skip whitelist configuration for ONU and subscriber provisioning
You Wang5be816a2018-10-11 16:45:31 -0700199 ... Validate successful authentication but failed DHCP/E2E ping
You Wang9f7eb392018-10-09 17:49:34 -0700200 ... Configure whitelist with correct ONU location
You Wang5be816a2018-10-11 16:45:31 -0700201 ... Validate successful authentication (expected with the ONF pod setup) but failed DHCP/E2E ping
You Wang9f7eb392018-10-09 17:49:34 -0700202 ... Provision subscriber
203 ... Validate successful authentication/DHCP/E2E ping
204 [Setup] None
205 Create VOLT
You Wang5be816a2018-10-11 16:45:31 -0700206 Wait Until Keyword Succeeds 300s 15s Validate ONU States UNKNOWN DISABLED ${onu_device}
207 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
208 Validate Authentication False ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
209 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
210 Validate DHCP and Ping False False ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700211 Clean Up Linux
212 Create Whitelist
You Wang5be816a2018-10-11 16:45:31 -0700213 Wait Until Keyword Succeeds 300s 15s Validate ONU States ACTIVE ENABLED ${onu_device}
214 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
215 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
You Wang8fff6a02018-10-15 16:26:54 -0700216 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -0700217 Validate DHCP and Ping False False ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700218 Clean Up Linux
219 Create Subscriber
You Wang5be816a2018-10-11 16:45:31 -0700220 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
221 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
222 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
223 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
224 Validate DHCP and Ping True True ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700225
226ONU in Wrong Location
227 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
228 ... Configure whitelist with wrong ONU location
229 ... Validate failed authentication/DHCP/E2E ping
230 Update Whitelist with Wrong Location
You Wang5be816a2018-10-11 16:45:31 -0700231 Wait Until Keyword Succeeds 300s 15s Validate ONU States UNKNOWN DISABLED ${onu_device}
232 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
233 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
234 Validate Authentication False ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
235 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
236 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
237 Validate DHCP and Ping False False ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700238
You Wang5be816a2018-10-11 16:45:31 -0700239ONU in Wrong Location (Skip Subscriber Provisioning) -> ONU in Correct Location -> Provision Subscriber
You Wang9f7eb392018-10-09 17:49:34 -0700240 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
241 ... Configure whitelist with wrong ONU location and skip subscriber provisioning
242 ... Validate failed authentication/DHCP/E2E ping
243 ... Configure whitelist with correct ONU location
You Wang5be816a2018-10-11 16:45:31 -0700244 ... Validate successful authentication (expected with the ONF pod setup) but failed DHCP/E2E ping
You Wang9f7eb392018-10-09 17:49:34 -0700245 ... Provision subscriber
246 ... Validate successful authentication/DHCP/E2E ping
247 [Setup] None
You Wang9f7eb392018-10-09 17:49:34 -0700248 Create VOLT
249 Create Whitelist
250 Update Whitelist with Wrong Location
You Wang5be816a2018-10-11 16:45:31 -0700251 Wait Until Keyword Succeeds 300s 15s Validate ONU States UNKNOWN DISABLED ${onu_device}
252 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
253 Validate Authentication False ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
254 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
255 Validate DHCP and Ping False False ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700256 Clean Up Linux
257 Update Whitelist with Correct Location
You Wang5be816a2018-10-11 16:45:31 -0700258 Wait Until Keyword Succeeds 300s 15s Validate ONU States ACTIVE ENABLED ${onu_device}
259 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
260 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
You Wang8fff6a02018-10-15 16:26:54 -0700261 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -0700262 Validate DHCP and Ping False False ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700263 Clean Up Linux
264 Create Subscriber
You Wang5be816a2018-10-11 16:45:31 -0700265 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
266 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
267 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
268 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
269 Validate DHCP and Ping True True ${src_iface} ${s_tag} ${c_tag} ${dst_dp_ip} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name} ${dst_dp_iface} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700270
Suchitra Vemuriff825322018-09-07 14:00:04 -0700271*** Keywords ***
You Wang9f7eb392018-10-09 17:49:34 -0700272Setup Suite
Kailash Khalasif3e0a9f2018-09-18 13:43:42 -0700273 ${auth} = Create List ${XOS_USER} ${XOS_PASSWD}
274 ${HEADERS} Create Dictionary Content-Type=application/json
275 Create Session ${server_ip} http://${server_ip}:${server_port} auth=${AUTH} headers=${HEADERS}
276 ${att_workflow_service_id}= Get Service Owner Id ${ATT_SERVICE}
277 ${volt_service_id}= Get Service Owner Id ${VOLT_SERVICE}
Kailash Khalasi30a6a392018-09-10 14:32:39 -0700278 ${AttWhiteListList}= utils.jsonToList ${WHITELIST_PATHFILE} AttWhiteListInfo
You Wang9f7eb392018-10-09 17:49:34 -0700279 Set Suite Variable ${AttWhiteListList}
Suchitra Vemuriff825322018-09-07 14:00:04 -0700280 ${AttWhiteListDict}= utils.listToDict ${AttWhiteListList} 0
Kailash Khalasif3e0a9f2018-09-18 13:43:42 -0700281 ${AttWhiteListDict}= utils.setFieldValueInDict ${AttWhiteListDict} owner_id ${att_workflow_service_id}
Suchitra Vemuriff825322018-09-07 14:00:04 -0700282 ${onu_device}= Get From Dictionary ${AttWhiteListDict} serial_number
Suchitra Vemuriff825322018-09-07 14:00:04 -0700283 Set Global Variable ${onu_device}
You Wang9f7eb392018-10-09 17:49:34 -0700284 ${onu_location}= Get From Dictionary ${AttWhiteListDict} pon_port_id
285 Set Global Variable ${onu_location}
Kailash Khalasi30a6a392018-09-10 14:32:39 -0700286 ${SubscriberList}= utils.jsonToList ${SUBSCRIBER_PATHFILE} SubscriberInfo
You Wang9f7eb392018-10-09 17:49:34 -0700287 Set Global Variable ${SubscriberList}
Kailash Khalasi6dab16e2018-09-17 20:24:08 -0700288 ${SubscriberDict}= utils.listToDict ${SubscriberList} 0
289 ${s_tag}= utils.getFieldValueFromDict ${SubscriberDict} s_tag
290 ${c_tag}= utils.getFieldValueFromDict ${SubscriberDict} c_tag
Kailash Khalasif3e0a9f2018-09-18 13:43:42 -0700291 ${VoltDeviceList}= utils.jsonToList ${VOLT_DEVICE_PATHFILE} VOLTDeviceInfo
You Wang9f7eb392018-10-09 17:49:34 -0700292 Set Global Variable ${VoltDeviceList}
Kailash Khalasi6dab16e2018-09-17 20:24:08 -0700293 Set Suite Variable ${s_tag}
294 Set Suite Variable ${c_tag}
You Wang59ded6c2018-10-05 17:43:44 -0700295 Set Global Variable ${export_kubeconfig} export KUBECONFIG=${KUBERNETES_CONF}
296 # Read variables from yaml file
297 ${src_ip}= Evaluate ${hosts}.get("src").get("ip")
298 ${src_user}= Evaluate ${hosts}.get("src").get("user")
299 ${src_pass}= Evaluate ${hosts}.get("src").get("pass")
You Wang5be816a2018-10-11 16:45:31 -0700300 ${src_container_type}= Evaluate ${hosts}.get("src").get("container_type")
You Wang59ded6c2018-10-05 17:43:44 -0700301 ${src_container_name}= Evaluate ${hosts}.get("src").get("container_name")
302 ${src_iface}= Evaluate ${hosts}.get("src").get("dp_iface_name")
303 ${dst_ip}= Evaluate ${hosts}.get("dst").get("ip")
304 ${dst_user} = Evaluate ${hosts}.get("dst").get("user")
305 ${dst_pass}= Evaluate ${hosts}.get("dst").get("pass")
You Wang5be816a2018-10-11 16:45:31 -0700306 ${dst_container_type}= Evaluate ${hosts}.get("dst").get("container_type")
You Wang59ded6c2018-10-05 17:43:44 -0700307 ${dst_container_name}= Evaluate ${hosts}.get("dst").get("container_name")
308 ${dst_dp_iface}= Evaluate ${hosts}.get("dst").get("dp_iface_name")
309 ${dst_dp_ip}= Evaluate ${hosts}.get("dst").get("dp_iface_ip_qinq")
310 ${olt_ip}= Evaluate ${olts}[0].get("ip")
311 ${olt_user}= Evaluate ${olts}[0].get("user")
312 ${olt_pass}= Evaluate ${olts}[0].get("pass")
You Wang8fff6a02018-10-15 16:26:54 -0700313 ${k8s_node_ip}= Evaluate ${nodes}[0].get("ip")
314 ${k8s_node_user}= Evaluate ${nodes}[0].get("user")
315 ${k8s_node_pass}= Evaluate ${nodes}[0].get("pass")
You Wang59ded6c2018-10-05 17:43:44 -0700316 Set Suite Variable ${src_ip}
317 Set Suite Variable ${src_user}
318 Set Suite Variable ${src_pass}
You Wang5be816a2018-10-11 16:45:31 -0700319 Set Suite Variable ${src_container_type}
You Wang59ded6c2018-10-05 17:43:44 -0700320 Set Suite Variable ${src_container_name}
321 Set Suite Variable ${src_iface}
322 Set Suite Variable ${dst_ip}
323 Set Suite Variable ${dst_user}
324 Set Suite Variable ${dst_pass}
You Wang5be816a2018-10-11 16:45:31 -0700325 Set Suite Variable ${dst_container_type}
You Wang59ded6c2018-10-05 17:43:44 -0700326 Set Suite Variable ${dst_container_name}
327 Set Suite Variable ${dst_dp_iface}
328 Set Suite Variable ${dst_dp_ip}
329 Set Suite Variable ${olt_ip}
330 Set Suite Variable ${olt_user}
331 Set Suite Variable ${olt_pass}
You Wang8fff6a02018-10-15 16:26:54 -0700332 Set Suite Variable ${k8s_node_ip}
333 Set Suite Variable ${k8s_node_user}
334 Set Suite Variable ${k8s_node_pass}
335 @{container_list}= Create List
336 ${container_name}= Get Kubernetes POD Name By Prefix onos
337 Append To List ${container_list} ${container_name}
338 ${container_name}= Get Kubernetes POD Name By Prefix xos-core
339 Append To List ${container_list} ${container_name}
340 Set Suite Variable ${container_list}
341 ${datetime}= Get Current Datetime On Kubernetes Node ${k8s_node_ip} ${k8s_node_user} ${k8s_node_pass}
342 Set Suite Variable ${datetime}
Suchitra Vemuriff825322018-09-07 14:00:04 -0700343
You Wang9f7eb392018-10-09 17:49:34 -0700344Teardown Suite
Kailash Khalasif3e0a9f2018-09-18 13:43:42 -0700345 [Documentation] Performs any additional cleanup required
346 Log Suite Teardown cleanup
347 Delete All Sessions
348
You Wang9f7eb392018-10-09 17:49:34 -0700349Setup Test
Kailash Khalasif3e0a9f2018-09-18 13:43:42 -0700350 [Documentation] Re-create Subscriber, whitelist, and olt-device models to test
351 Log Re-creating objects
You Wang8fff6a02018-10-15 16:26:54 -0700352 ${datetime}= Get Current Datetime On Kubernetes Node ${k8s_node_ip} ${k8s_node_user} ${k8s_node_pass}
You Wang9f7eb392018-10-09 17:49:34 -0700353 Create Whitelist
354 Create Subscriber
355 Create VOLT
356
You Wang9f7eb392018-10-09 17:49:34 -0700357Teardown Test
Kailash Khalasif3e0a9f2018-09-18 13:43:42 -0700358 [Documentation] Delete xos objects, kills processes and cleans up interfaces on src+dst servers
You Wang9f7eb392018-10-09 17:49:34 -0700359 Clean Up Linux
360 Clean Up XOS
You Wang8fff6a02018-10-15 16:26:54 -0700361 Log Kubernetes Containers Logs Since Time ${datetime} ${container_list}
You Wang9f7eb392018-10-09 17:49:34 -0700362
363Clean Up Linux
364 [Documentation] Kill processes and clean up interfaces on src+dst servers
You Wang5be816a2018-10-11 16:45:31 -0700365 Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
366 Run Keyword And Ignore Error Kill Linux Process [d]hclient ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
367 Run Keyword If '${dst_ip}' != '${None}' Run Keyword And Ignore Error Kill Linux Process [d]hcpd ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
368 Delete IP Addresses from Interface on Remote Host ${src_iface} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
369 Run Keyword If '${dst_ip}' != '${None}' Delete Interface on Remote Host ${dst_dp_iface}.${s_tag} ${dst_ip} ${dst_user} ${dst_pass} ${dst_container_type} ${dst_container_name}
You Wang9f7eb392018-10-09 17:49:34 -0700370
371Clean Up XOS
372 [Documentation] Clean up all XOS objects and reinstall voltha after OLT reboots
You Wang88e1d852018-10-05 11:44:19 -0700373 Wait Until Keyword Succeeds 60s 2s Clean Up Objects ${VOLT_SUBSCRIBER}
374 Wait Until Keyword Succeeds 60s 2s Clean Up Objects ${VOLT_DEVICE}
375 Wait Until Keyword Succeeds 60s 2s Clean Up Objects ${ATT_WHITELIST}
You Wang0c2b3662018-10-01 16:56:17 -0700376 Wait Until Keyword Succeeds 120s 10s Check Remote System Reachability False ${olt_ip}
377 Wait Until Keyword Succeeds 120s 10s Check Remote System Reachability True ${olt_ip}
378 Wait Until Keyword Succeeds 120s 10s Openolt is Up ${olt_ip} ${olt_user} ${olt_pass}
379 Wait Until Keyword Succeeds 300s 10s Reinstall Voltha
Kailash Khalasia0810ce2018-09-10 13:03:27 -0700380
You Wang5be816a2018-10-11 16:45:31 -0700381Create Whitelist
382 ${AttWhiteListDict}= utils.listToDict ${AttWhiteListList} 0
383 CORD Post ${ATT_WHITELIST} ${AttWhiteListDict}
384
You Wang9f7eb392018-10-09 17:49:34 -0700385Remove Whitelist
386 ${whitelist_id}= Retrieve Whitelist Entry ${onu_device}
387 CORD Delete ${ATT_WHITELIST} ${whitelist_id}
388
389Update Whitelist with Wrong Location
390 ${whitelist_id}= Retrieve Whitelist Entry ${onu_device}
391 CORD Put ${ATT_WHITELIST} {"pon_port_id": 55 } ${whitelist_id}
392
393Update Whitelist with Correct Location
394 ${whitelist_id}= Retrieve Whitelist Entry ${onu_device}
395 CORD Put ${ATT_WHITELIST} {"pon_port_id": ${onu_location} } ${whitelist_id}
396
You Wang5be816a2018-10-11 16:45:31 -0700397Create Subscriber
398 ${SubscriberDict}= utils.listToDict ${SubscriberList} 0
399 Wait Until Keyword Succeeds 120s 15s CORD Post ${VOLT_SUBSCRIBER} ${SubscriberDict}
Kailash Khalasia0810ce2018-09-10 13:03:27 -0700400
You Wang5be816a2018-10-11 16:45:31 -0700401Create VOLT
402 ${VoltDeviceDict}= utils.listToDict ${VoltDeviceList} 0
403 CORD Post ${VOLT_DEVICE} ${VoltDeviceDict}