blob: 91f3fa9f4d4fdd5081eb9595ba8f0baa05621a69 [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
Kailash Khalasi92061c12018-10-29 11:52:39 -070054 [Tags] test1
You Wang5be816a2018-10-11 16:45:31 -070055 Wait Until Keyword Succeeds 300s 15s Validate ONU States ACTIVE ENABLED ${onu_device}
56 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
57 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
58 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
59 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
60 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
61 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 -070062
You Wang9f7eb392018-10-09 17:49:34 -070063ONU in Correct Location -> Remove ONU from Whitelist -> Add ONU to Whitelist
You Wang0c2b3662018-10-01 16:56:17 -070064 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
You Wang9f7eb392018-10-09 17:49:34 -070065 ... Configure whitelist with correct ONU location
66 ... Validate successful authentication/DHCP/E2E ping
67 ... Remove ONU from whitelist
68 ... Validate failed authentication/DHCP/E2E ping
69 ... Add ONU to whitelist
70 ... Validate successful authentication/DHCP/E2E ping
Kailash Khalasi92061c12018-10-29 11:52:39 -070071 [Tags] test2
You Wang5be816a2018-10-11 16:45:31 -070072 Wait Until Keyword Succeeds 300s 15s Validate ONU States ACTIVE ENABLED ${onu_device}
73 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
74 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
75 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
76 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
77 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
78 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 -070079 Clean Up Linux
80 Remove Whitelist
You Wanga4524992018-10-17 16:38:33 -070081 Wait Until Keyword Succeeds 60s 2s Validate ONU States UNKNOWN DISABLED ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -070082 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
83 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
84 Validate Authentication False ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
85 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 -070086 Clean Up Linux
87 Create Whitelist
You Wang5fa194b2018-11-07 17:21:23 -080088 Wait Until Keyword Succeeds 120s 5s Validate ONU States ACTIVE ENABLED ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -070089 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
90 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
91 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
92 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
93 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
94 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 -070095
96ONU in Correct Location -> ONU in Wrong Location -> ONU in Correct Location
97 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
98 ... Configure whitelist with correct ONU location
99 ... Validate successful authentication/DHCP/E2E ping
100 ... Update whitelist with wrong ONU location
101 ... Validate failed authentication/DHCP/E2E ping
102 ... Update whitelist with correct ONU location
103 ... Validate successful authentication/DHCP/E2E ping
Kailash Khalasi92061c12018-10-29 11:52:39 -0700104 [Tags] test3
You Wang5be816a2018-10-11 16:45:31 -0700105 Wait Until Keyword Succeeds 300s 15s Validate ONU States ACTIVE ENABLED ${onu_device}
106 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
107 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
108 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
109 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
110 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
111 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 -0700112 Clean Up Linux
113 Update Whitelist with Wrong Location
You Wanga4524992018-10-17 16:38:33 -0700114 Wait Until Keyword Succeeds 60s 2s Validate ONU States UNKNOWN DISABLED ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -0700115 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
116 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
117 Validate Authentication False ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
118 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 -0700119 Clean Up Linux
120 Update Whitelist with Correct Location
You Wang5fa194b2018-11-07 17:21:23 -0800121 Wait Until Keyword Succeeds 120s 5s Validate ONU States ACTIVE ENABLED ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -0700122 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
123 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
124 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
125 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
126 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
127 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 -0700128
129ONU in Correct Location -> Remove Subscriber -> Create Subscriber
130 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
131 ... Configure whitelist with correct ONU location
132 ... Validate successful authentication/DHCP/E2E ping
133 ... Remove subscriber model
You Wang070302c2018-10-17 15:42:24 -0700134 ... Validate successful authentication (expected with the ONF pod setup) but failed DHCP/E2E ping
You Wang9f7eb392018-10-09 17:49:34 -0700135 ... Recreate subscriber model
136 ... Validate successful authentication/DHCP/E2E ping
Kailash Khalasi92061c12018-10-29 11:52:39 -0700137 [Tags] test4
You Wang5be816a2018-10-11 16:45:31 -0700138 Wait Until Keyword Succeeds 300s 15s Validate ONU States ACTIVE ENABLED ${onu_device}
139 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
140 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
141 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
142 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
143 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
144 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 -0700145 Clean Up Linux
146 Remove Subscriber
You Wang070302c2018-10-17 15:42:24 -0700147 Sleep 10s
148 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
You Wang5be816a2018-10-11 16:45:31 -0700149 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 -0700150 Clean Up Linux
151 Create Subscriber
You Wang070302c2018-10-17 15:42:24 -0700152 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status pre-provisioned ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -0700153 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
154 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
155 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
156 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 -0700157
158ONU in Correct Location (Skip Subscriber Provisioning) -> Provision Subscriber
159 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
160 ... Configure whitelist with correct ONU location and skip provisioning subscriber
You Wang5be816a2018-10-11 16:45:31 -0700161 ... Validate successful authentication (expected with the ONF pod setup) but failed DHCP/E2E ping
You Wang9f7eb392018-10-09 17:49:34 -0700162 ... Provision subscriber
163 ... Validate successful authentication/DHCP/E2E ping
164 [Setup] None
Kailash Khalasi92061c12018-10-29 11:52:39 -0700165 [Tags] test5
You Wang9f7eb392018-10-09 17:49:34 -0700166 Create Whitelist
167 Create VOLT
You Wang5be816a2018-10-11 16:45:31 -0700168 Wait Until Keyword Succeeds 300s 15s Validate ONU States ACTIVE ENABLED ${onu_device}
169 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
170 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 -0700171 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -0700172 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 -0700173 Clean Up Linux
174 Create Subscriber
You Wanga4524992018-10-17 16:38:33 -0700175 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status pre-provisioned ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -0700176 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
177 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
178 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
179 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 -0700180
181ONU in Correct Location (Skip Authentication)
182 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
183 ... Configure whitelist with correct ONU location and skip RG authentication
184 ... Validate failed authentication/DHCP/E2E ping
Kailash Khalasi92061c12018-10-29 11:52:39 -0700185 [Tags] test6
You Wang5be816a2018-10-11 16:45:31 -0700186 Wait Until Keyword Succeeds 300s 15s Validate ONU States ACTIVE ENABLED ${onu_device}
187 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
188 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
189 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 -0700190
You Wang9f7eb392018-10-09 17:49:34 -0700191ONU not in Whitelist
You Wang0c2b3662018-10-01 16:56:17 -0700192 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
You Wang9f7eb392018-10-09 17:49:34 -0700193 ... Skip whitelist configuration for ONU
194 ... Validate failed authentication/DHCP/E2E ping
You Wang0c2b3662018-10-01 16:56:17 -0700195 [Setup] None
Kailash Khalasi92061c12018-10-29 11:52:39 -0700196 [Tags] test7
You Wang9f7eb392018-10-09 17:49:34 -0700197 Create Subscriber
198 Create VOLT
You Wang5be816a2018-10-11 16:45:31 -0700199 Wait Until Keyword Succeeds 300s 15s Validate ONU States UNKNOWN DISABLED ${onu_device}
200 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
201 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
202 Validate Authentication False ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
203 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
204 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
205 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 -0700206
You Wang9f7eb392018-10-09 17:49:34 -0700207ONU not in Whitelist (Skip Subscriber Provisioning) -> Add ONU to Whitelist -> Provision Subscriber
208 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
209 ... Skip whitelist configuration for ONU and subscriber provisioning
You Wang5be816a2018-10-11 16:45:31 -0700210 ... Validate successful authentication but failed DHCP/E2E ping
You Wang9f7eb392018-10-09 17:49:34 -0700211 ... Configure whitelist with correct ONU location
You Wang5be816a2018-10-11 16:45:31 -0700212 ... Validate successful authentication (expected with the ONF pod setup) but failed DHCP/E2E ping
You Wang9f7eb392018-10-09 17:49:34 -0700213 ... Provision subscriber
214 ... Validate successful authentication/DHCP/E2E ping
215 [Setup] None
Kailash Khalasi92061c12018-10-29 11:52:39 -0700216 [Tags] test8
You Wang9f7eb392018-10-09 17:49:34 -0700217 Create VOLT
You Wang5be816a2018-10-11 16:45:31 -0700218 Wait Until Keyword Succeeds 300s 15s Validate ONU States UNKNOWN DISABLED ${onu_device}
219 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
220 Validate Authentication False ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
221 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
222 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 -0700223 Clean Up Linux
224 Create Whitelist
You Wanga4524992018-10-17 16:38:33 -0700225 Wait Until Keyword Succeeds 60s 2s Validate ONU States ACTIVE ENABLED ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -0700226 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
227 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 -0700228 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -0700229 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 -0700230 Clean Up Linux
231 Create Subscriber
You Wanga4524992018-10-17 16:38:33 -0700232 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status pre-provisioned ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -0700233 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
234 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
235 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
236 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 -0700237
238ONU in Wrong Location
239 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
240 ... Configure whitelist with wrong ONU location
241 ... Validate failed authentication/DHCP/E2E ping
Kailash Khalasi92061c12018-10-29 11:52:39 -0700242 [Tags] test9
You Wang9f7eb392018-10-09 17:49:34 -0700243 Update Whitelist with Wrong Location
You Wang5be816a2018-10-11 16:45:31 -0700244 Wait Until Keyword Succeeds 300s 15s Validate ONU States UNKNOWN DISABLED ${onu_device}
245 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
246 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
247 Validate Authentication False ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
248 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
249 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status awaiting-auth ${onu_device}
250 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 -0700251
You Wang5be816a2018-10-11 16:45:31 -0700252ONU in Wrong Location (Skip Subscriber Provisioning) -> ONU in Correct Location -> Provision Subscriber
You Wang9f7eb392018-10-09 17:49:34 -0700253 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
254 ... Configure whitelist with wrong ONU location and skip subscriber provisioning
255 ... Validate failed authentication/DHCP/E2E ping
256 ... Configure whitelist with correct ONU location
You Wang5be816a2018-10-11 16:45:31 -0700257 ... Validate successful authentication (expected with the ONF pod setup) but failed DHCP/E2E ping
You Wang9f7eb392018-10-09 17:49:34 -0700258 ... Provision subscriber
259 ... Validate successful authentication/DHCP/E2E ping
260 [Setup] None
Kailash Khalasi92061c12018-10-29 11:52:39 -0700261 [Tags] test10
You Wang9f7eb392018-10-09 17:49:34 -0700262 Create VOLT
263 Create Whitelist
264 Update Whitelist with Wrong Location
You Wang5be816a2018-10-11 16:45:31 -0700265 Wait Until Keyword Succeeds 300s 15s Validate ONU States UNKNOWN DISABLED ${onu_device}
266 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
267 Validate Authentication False ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
268 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI DISABLED AWAITING ${onu_device}
269 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 -0700270 Clean Up Linux
271 Update Whitelist with Correct Location
You Wanga4524992018-10-17 16:38:33 -0700272 Wait Until Keyword Succeeds 60s 2s Validate ONU States ACTIVE ENABLED ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -0700273 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED AWAITING ${onu_device}
274 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 -0700275 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -0700276 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 -0700277 Clean Up Linux
278 Create Subscriber
You Wanga4524992018-10-17 16:38:33 -0700279 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status pre-provisioned ${onu_device}
You Wang5be816a2018-10-11 16:45:31 -0700280 Validate Authentication True ${src_iface} wpa_supplicant.conf ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
281 Wait Until Keyword Succeeds 60s 2s Validate ATT Workflow Driver SI ENABLED APPROVED ${onu_device}
282 Wait Until Keyword Succeeds 60s 2s Validate Subscriber Status enabled ${onu_device}
283 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 -0700284
Suchitra Vemuriff825322018-09-07 14:00:04 -0700285*** Keywords ***
You Wang9f7eb392018-10-09 17:49:34 -0700286Setup Suite
Kailash Khalasif3e0a9f2018-09-18 13:43:42 -0700287 ${auth} = Create List ${XOS_USER} ${XOS_PASSWD}
288 ${HEADERS} Create Dictionary Content-Type=application/json
289 Create Session ${server_ip} http://${server_ip}:${server_port} auth=${AUTH} headers=${HEADERS}
290 ${att_workflow_service_id}= Get Service Owner Id ${ATT_SERVICE}
291 ${volt_service_id}= Get Service Owner Id ${VOLT_SERVICE}
Kailash Khalasi30a6a392018-09-10 14:32:39 -0700292 ${AttWhiteListList}= utils.jsonToList ${WHITELIST_PATHFILE} AttWhiteListInfo
You Wang9f7eb392018-10-09 17:49:34 -0700293 Set Suite Variable ${AttWhiteListList}
Suchitra Vemuriff825322018-09-07 14:00:04 -0700294 ${AttWhiteListDict}= utils.listToDict ${AttWhiteListList} 0
Kailash Khalasif3e0a9f2018-09-18 13:43:42 -0700295 ${AttWhiteListDict}= utils.setFieldValueInDict ${AttWhiteListDict} owner_id ${att_workflow_service_id}
Suchitra Vemuriff825322018-09-07 14:00:04 -0700296 ${onu_device}= Get From Dictionary ${AttWhiteListDict} serial_number
Suchitra Vemuriff825322018-09-07 14:00:04 -0700297 Set Global Variable ${onu_device}
You Wang9f7eb392018-10-09 17:49:34 -0700298 ${onu_location}= Get From Dictionary ${AttWhiteListDict} pon_port_id
299 Set Global Variable ${onu_location}
Kailash Khalasi30a6a392018-09-10 14:32:39 -0700300 ${SubscriberList}= utils.jsonToList ${SUBSCRIBER_PATHFILE} SubscriberInfo
You Wang9f7eb392018-10-09 17:49:34 -0700301 Set Global Variable ${SubscriberList}
Kailash Khalasi6dab16e2018-09-17 20:24:08 -0700302 ${SubscriberDict}= utils.listToDict ${SubscriberList} 0
303 ${s_tag}= utils.getFieldValueFromDict ${SubscriberDict} s_tag
304 ${c_tag}= utils.getFieldValueFromDict ${SubscriberDict} c_tag
Kailash Khalasif3e0a9f2018-09-18 13:43:42 -0700305 ${VoltDeviceList}= utils.jsonToList ${VOLT_DEVICE_PATHFILE} VOLTDeviceInfo
Kailash Khalasi4e1ce762018-12-18 20:29:29 -0800306 ${VoltDeviceDict}= utils.setFieldValueInDict ${VoltDeviceList[0]} volt_service_id ${volt_service_id}
You Wang9f7eb392018-10-09 17:49:34 -0700307 Set Global Variable ${VoltDeviceList}
Kailash Khalasi4e1ce762018-12-18 20:29:29 -0800308 Set Global Variable ${VoltDeviceDict}
Kailash Khalasi6dab16e2018-09-17 20:24:08 -0700309 Set Suite Variable ${s_tag}
310 Set Suite Variable ${c_tag}
You Wang59ded6c2018-10-05 17:43:44 -0700311 Set Global Variable ${export_kubeconfig} export KUBECONFIG=${KUBERNETES_CONF}
312 # Read variables from yaml file
313 ${src_ip}= Evaluate ${hosts}.get("src").get("ip")
314 ${src_user}= Evaluate ${hosts}.get("src").get("user")
315 ${src_pass}= Evaluate ${hosts}.get("src").get("pass")
You Wang5be816a2018-10-11 16:45:31 -0700316 ${src_container_type}= Evaluate ${hosts}.get("src").get("container_type")
You Wang59ded6c2018-10-05 17:43:44 -0700317 ${src_container_name}= Evaluate ${hosts}.get("src").get("container_name")
318 ${src_iface}= Evaluate ${hosts}.get("src").get("dp_iface_name")
319 ${dst_ip}= Evaluate ${hosts}.get("dst").get("ip")
320 ${dst_user} = Evaluate ${hosts}.get("dst").get("user")
321 ${dst_pass}= Evaluate ${hosts}.get("dst").get("pass")
You Wang5be816a2018-10-11 16:45:31 -0700322 ${dst_container_type}= Evaluate ${hosts}.get("dst").get("container_type")
You Wang59ded6c2018-10-05 17:43:44 -0700323 ${dst_container_name}= Evaluate ${hosts}.get("dst").get("container_name")
324 ${dst_dp_iface}= Evaluate ${hosts}.get("dst").get("dp_iface_name")
325 ${dst_dp_ip}= Evaluate ${hosts}.get("dst").get("dp_iface_ip_qinq")
326 ${olt_ip}= Evaluate ${olts}[0].get("ip")
327 ${olt_user}= Evaluate ${olts}[0].get("user")
328 ${olt_pass}= Evaluate ${olts}[0].get("pass")
You Wang8fff6a02018-10-15 16:26:54 -0700329 ${k8s_node_ip}= Evaluate ${nodes}[0].get("ip")
330 ${k8s_node_user}= Evaluate ${nodes}[0].get("user")
331 ${k8s_node_pass}= Evaluate ${nodes}[0].get("pass")
You Wang59ded6c2018-10-05 17:43:44 -0700332 Set Suite Variable ${src_ip}
333 Set Suite Variable ${src_user}
334 Set Suite Variable ${src_pass}
You Wang5be816a2018-10-11 16:45:31 -0700335 Set Suite Variable ${src_container_type}
You Wang59ded6c2018-10-05 17:43:44 -0700336 Set Suite Variable ${src_container_name}
337 Set Suite Variable ${src_iface}
338 Set Suite Variable ${dst_ip}
339 Set Suite Variable ${dst_user}
340 Set Suite Variable ${dst_pass}
You Wang5be816a2018-10-11 16:45:31 -0700341 Set Suite Variable ${dst_container_type}
You Wang59ded6c2018-10-05 17:43:44 -0700342 Set Suite Variable ${dst_container_name}
343 Set Suite Variable ${dst_dp_iface}
344 Set Suite Variable ${dst_dp_ip}
345 Set Suite Variable ${olt_ip}
346 Set Suite Variable ${olt_user}
347 Set Suite Variable ${olt_pass}
You Wang8fff6a02018-10-15 16:26:54 -0700348 Set Suite Variable ${k8s_node_ip}
349 Set Suite Variable ${k8s_node_user}
350 Set Suite Variable ${k8s_node_pass}
351 @{container_list}= Create List
Kailash Khalasidd9136a2018-10-18 11:16:18 -0700352 Append To List ${container_list} att-workflow-att-workflow-driver
Kailash Khalasie59ba702018-12-18 19:36:03 -0800353 Append To List ${container_list} seba-services-volt
354 Append To List ${container_list} seba-services-rcord
355 Append To List ${container_list} seba-services-fabric-crossconnect
You Wangf573e402018-10-17 14:01:59 -0700356 Append To List ${container_list} xos-core
357 Append To List ${container_list} vcore
You Wang8fff6a02018-10-15 16:26:54 -0700358 Set Suite Variable ${container_list}
359 ${datetime}= Get Current Datetime On Kubernetes Node ${k8s_node_ip} ${k8s_node_user} ${k8s_node_pass}
360 Set Suite Variable ${datetime}
Suchitra Vemuriff825322018-09-07 14:00:04 -0700361
You Wang9f7eb392018-10-09 17:49:34 -0700362Teardown Suite
Kailash Khalasif3e0a9f2018-09-18 13:43:42 -0700363 [Documentation] Performs any additional cleanup required
364 Log Suite Teardown cleanup
365 Delete All Sessions
366
You Wang9f7eb392018-10-09 17:49:34 -0700367Setup Test
Kailash Khalasif3e0a9f2018-09-18 13:43:42 -0700368 [Documentation] Re-create Subscriber, whitelist, and olt-device models to test
369 Log Re-creating objects
You Wang8fff6a02018-10-15 16:26:54 -0700370 ${datetime}= Get Current Datetime On Kubernetes Node ${k8s_node_ip} ${k8s_node_user} ${k8s_node_pass}
You Wang9f7eb392018-10-09 17:49:34 -0700371 Create Whitelist
372 Create Subscriber
373 Create VOLT
374
You Wang9f7eb392018-10-09 17:49:34 -0700375Teardown Test
Kailash Khalasif3e0a9f2018-09-18 13:43:42 -0700376 [Documentation] Delete xos objects, kills processes and cleans up interfaces on src+dst servers
You Wang9f7eb392018-10-09 17:49:34 -0700377 Clean Up Linux
378 Clean Up XOS
You Wang8fff6a02018-10-15 16:26:54 -0700379 Log Kubernetes Containers Logs Since Time ${datetime} ${container_list}
You Wang9f7eb392018-10-09 17:49:34 -0700380
381Clean Up Linux
382 [Documentation] Kill processes and clean up interfaces on src+dst servers
You Wang5be816a2018-10-11 16:45:31 -0700383 Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
384 Run Keyword And Ignore Error Kill Linux Process [d]hclient ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
385 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}
386 Delete IP Addresses from Interface on Remote Host ${src_iface} ${src_ip} ${src_user} ${src_pass} ${src_container_type} ${src_container_name}
387 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 -0700388
389Clean Up XOS
390 [Documentation] Clean up all XOS objects and reinstall voltha after OLT reboots
You Wang88e1d852018-10-05 11:44:19 -0700391 Wait Until Keyword Succeeds 60s 2s Clean Up Objects ${VOLT_SUBSCRIBER}
You Wang88e1d852018-10-05 11:44:19 -0700392 Wait Until Keyword Succeeds 60s 2s Clean Up Objects ${ATT_WHITELIST}
Suchitra Vemuri4d81bf12018-11-28 12:32:58 -0800393 Sleep 20s
Kailashefc1e0d2018-11-20 13:49:06 -0800394 Wait Until Keyword Succeeds 30s 2s Validate Subscriber Count 0
Kailashd1587112018-11-20 11:55:16 -0800395 Sleep 10s
396 Wait Until Keyword Succeeds 60s 2s Clean Up Objects ${VOLT_DEVICE}
Suchitra Vemuri4d81bf12018-11-28 12:32:58 -0800397 Sleep 20s
Kailashefc1e0d2018-11-20 13:49:06 -0800398 Wait Until Keyword Succeeds 60s 2s Clean Up Objects ${ATT_SERVICEINSTANCES}
You Wang0c2b3662018-10-01 16:56:17 -0700399 Wait Until Keyword Succeeds 120s 10s Check Remote System Reachability False ${olt_ip}
400 Wait Until Keyword Succeeds 120s 10s Check Remote System Reachability True ${olt_ip}
401 Wait Until Keyword Succeeds 120s 10s Openolt is Up ${olt_ip} ${olt_user} ${olt_pass}
Suchitra Vemuria63b6de2019-02-04 18:55:33 -0800402 Sleep 300s
Kailash Khalasia0810ce2018-09-10 13:03:27 -0700403
You Wang5be816a2018-10-11 16:45:31 -0700404Create Whitelist
405 ${AttWhiteListDict}= utils.listToDict ${AttWhiteListList} 0
406 CORD Post ${ATT_WHITELIST} ${AttWhiteListDict}
407
You Wang9f7eb392018-10-09 17:49:34 -0700408Remove Whitelist
409 ${whitelist_id}= Retrieve Whitelist Entry ${onu_device}
410 CORD Delete ${ATT_WHITELIST} ${whitelist_id}
411
412Update Whitelist with Wrong Location
413 ${whitelist_id}= Retrieve Whitelist Entry ${onu_device}
414 CORD Put ${ATT_WHITELIST} {"pon_port_id": 55 } ${whitelist_id}
415
416Update Whitelist with Correct Location
417 ${whitelist_id}= Retrieve Whitelist Entry ${onu_device}
418 CORD Put ${ATT_WHITELIST} {"pon_port_id": ${onu_location} } ${whitelist_id}
419
You Wang5be816a2018-10-11 16:45:31 -0700420Create Subscriber
421 ${SubscriberDict}= utils.listToDict ${SubscriberList} 0
422 Wait Until Keyword Succeeds 120s 15s CORD Post ${VOLT_SUBSCRIBER} ${SubscriberDict}
Kailash Khalasia0810ce2018-09-10 13:03:27 -0700423
You Wangf573e402018-10-17 14:01:59 -0700424Remove Subscriber
425 ${subscriber_id}= Retrieve Subscriber ${c_tag}
426 CORD Delete ${VOLT_SUBSCRIBER} ${subscriber_id}
427
You Wang5be816a2018-10-11 16:45:31 -0700428Create VOLT
Suchitra Vemuria63b6de2019-02-04 18:55:33 -0800429 CORD Post ${VOLT_DEVICE} ${VoltDeviceDict}