blob: ae111835de2c9bd4e1f43586b76a6610e0e8031e [file] [log] [blame]
Suchitra Vemuri65cd65f2019-08-30 14:39:22 -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
15*** Settings ***
16Documentation Test various end-to-end scenarios
17Suite Setup Setup Suite
18Suite Teardown Teardown Suite
19Test Setup Setup
20Test Teardown Teardown
21Library Collections
22Library String
23Library OperatingSystem
24Library XML
25Library RequestsLibrary
26Resource ../../home/sdn/voltha/tests/atests/common/testCaseUtils.py
27Resource ../../home/sdn/cord-tester/src/test/cord-api/Framework/Subscriber.robot
28Resource ../../home/sdn/cord-tester/src/test/cord-api/Framework/DHCP.robot
29Resource ../libraries/onos.robot
30Resource ../libraries/voltctl.robot
31Resource ../libraries/utils.robot
32Resource ../variables/variables.robot
33
34*** Variables ***
35${POD_NAME} flex-ocp-cord
36${KUBERNETES_CONF} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf
37${KUBERNETES_CONFIGS_DIR} ~/pod-configs/kubernetes-configs
38#${KUBERNETES_CONFIGS_DIR} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf
39${KUBERNETES_YAML} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.yml
40${HELM_CHARTS_DIR} ~/helm-charts
41${VOLTHA_POD_NUM} 8
42${timeout} 90s
43${num_onus} 1
44${of_id} 0
45
46*** Test Cases ***
47Sanity E2E Test for OLT/ONU on POD
48 [Documentation] Validates E2E Ping Connectivity and object states for the given scenario:
49 ... Validate successful authentication/DHCP/E2E ping for the tech profile that is used
50 #[Setup] Clean Up Linux
51 [Tags] test1
52 ${of_id}= Wait Until Keyword Succeeds 60s 15s Validate OLT Connected to ONOS ${olt_serial_number}
53 Wait Until Keyword Succeeds 60s 2s Check EAPOL Flows in ONOS
54 Validate Authentication True ${src0['dp_iface_name']} wpa_supplicant.conf ${src0['ip']} ${src0['user']} ${src0['pass']} ${src0['container_type']} ${src0['container_name']}
55 #Validate ONU authenticated in ONOS
56 Wait Until Keyword Succeeds 90s 2s Verify Number of AAA-Users ${k8s_node_ip} ${ONOS_SSH_PORT} ${num_onus}
57 Wait Until Keyword Succeeds 60s 2s Execute ONOS Command ${k8s_node_ip} ${ONOS_SSH_PORT} volt-add-subscriber-access ${of_id} 16
58 # Perform dhclient and ping operations
59 Validate DHCP and Ping True True ${src0['dp_iface_name']} ${src0['s_tag']} ${src0['c_tag']} ${dst0['dp_iface_ip_qinq']} ${src0['ip']} ${src0['user']} ${src0['pass']} ${src0['container_type']} ${src0['container_name']} ${dst0['dp_iface_name']} ${dst0['ip']} ${dst0['user']} ${dst0['pass']} ${dst0['container_type']} ${dst0['container_name']}
60 #Validate DHCP allocation in ONOS
61 Wait Until Keyword Succeeds 60s 2s Validate DHCP Allocations ${k8s_node_ip} ${ONOS_SSH_PORT} ${num_onus}
62
63
64*** Keywords ***
65Setup Suite
66 #Set Global Variable ${KUBECTL_CONFIG} export KUBECONFIG=%{KUBECONFIG}
67 Set Global Variable ${export_kubeconfig} export KUBECONFIG=${KUBERNETES_CONF}
68 Set Global Variable ${of_id}
69 Set Global Variable ${VOLTCTL_CONFIG} export VOLTCONFIG=%{VOLTCONFIG}
70 ${k8s_node_ip}= Evaluate ${nodes}[0].get("ip")
71 ${k8s_node_user}= Evaluate ${nodes}[0].get("user")
72 ${k8s_node_pass}= Evaluate ${nodes}[0].get("pass")
73 Check CLI Tools Configured
74 ${onos_auth}= Create List karaf karaf
75 ${HEADERS} Create Dictionary Content-Type=application/json
76 Create Session ONOS http://${k8snode_ip}:${ONOS_REST_PORT} auth=${ONOS_AUTH}
77 Set Global Variable ${export_kubeconfig} export KUBECONFIG=${KUBERNETES_CONF}
78 ${olt_ip}= Evaluate ${olts}[0].get("ip")
79 ${olt_user}= Evaluate ${olts}[0].get("user")
80 ${olt_pass}= Evaluate ${olts}[0].get("pass")
81 ${olt_serial_number}= Evaluate ${olts}[0].get("serial")
82 ${onu_serial_number}= Evaluate ${onus}[0].get("serial")
83 Set Suite Variable ${olt_ip}
84 Set Suite Variable ${olt_user}
85 Set Suite Variable ${olt_pass}
86 Set Suite Variable ${k8s_node_ip}
87 Set Suite Variable ${k8s_node_user}
88 Set Suite Variable ${k8s_node_pass}
89 @{container_list}= Create List
90 Append To List ${container_list} adapter-open-olt
91 Append To List ${container_list} adapter-open-onu
92 Append To List ${container_list} voltha-api-server
93 Append To List ${container_list} voltha-ro-core
94 Append To List ${container_list} voltha-rw-core-11
95 Append To List ${container_list} voltha-rw-core-12
96 Append To List ${container_list} voltha-ofagent
97 Set Suite Variable ${container_list}
98 Set Deployment Config Variables
99 ${datetime}= Get Current Datetime On Kubernetes Node ${k8s_node_ip} ${k8s_node_user} ${k8s_node_pass}
100 Set Suite Variable ${datetime}
101
102Setup
103 #create/preprovision device
104 ${olt_device_id}= Create Device ${olt_ip} ${OLT_PORT}
105 Set Suite Variable ${olt_device_id}
106 #enable device
107 Enable Device ${olt_device_id}
108 #validate olt states
109 Wait Until Keyword Succeeds 60s 5s Validate Device ${olt_serial_number} ENABLED ACTIVE REACHABLE
110 #validate onu states
111 Wait Until Keyword Succeeds 60s 5s Validate Device ${onu_serial_number} ENABLED ACTIVE REACHABLE onu=True onu_reason=tech-profile-config-download-success
112 #get onu device id
113 ${onu_device_id}= Get Device ID From SN ${onu_serial_number}
114 Set Suite Variable ${onu_device_id}
115
116Teardown
117 [Documentation] kills processes and cleans up interfaces on src+dst servers
118 #Get VOLTHA Status
119 #Get ONOS Status
120 Clean Up Linux
121 Log Kubernetes Containers Logs Since Time ${datetime} ${container_list}
122
123Clean Up Linux
124 [Documentation] Kill processes and clean up interfaces on src+dst servers
125 Run Keyword And Ignore Error Kill Linux Process [w]pa_supplicant ${src0['ip']} ${src0['user']} ${src0['pass']} ${src0['container_type']} ${src0['container_name']}
126 Run Keyword And Ignore Error Kill Linux Process [d]hclient ${src0['ip']} ${src0['user']} ${src0['pass']} ${src0['container_type']} ${src0['container_name']}
127 Run Keyword If '${dst0['ip']}' != '${None}' Run Keyword And Ignore Error Kill Linux Process [d]hcpd ${dst0['ip']} ${dst0['user']} ${dst0['pass']} ${dst0['container_type']} ${dst0['container_name']}
128 Delete IP Addresses from Interface on Remote Host ${src0['dp_iface_name']} ${src0['ip']} ${src0['user']} ${src0['pass']} ${src0['container_type']} ${src0['container_name']}
129 Run Keyword If '${dst0['ip']}' != '${None}' Delete Interface on Remote Host ${dst0['dp_iface_name']}.${s_tag} ${dst0['ip']} ${dst0['user']} ${dst0['pass']} ${dst0['container_type']} ${dst0['container_name']}
130