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