aboutsummaryrefslogtreecommitdiffstats
path: root/tests/suites/honeycomb/resources/vxlan_gpe.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2016-06-06 11:01:03 +0200
committerTibor Frank <tifrank@cisco.com>2016-06-08 08:11:29 +0000
commite8c787b699661f00e8358cc711bb20b8993dc87a (patch)
tree244d86b3844fdf8a559be5fc4969065b7a3bc22c /tests/suites/honeycomb/resources/vxlan_gpe.py
parent3744273d8f1540fe45312b5c3a4e2e6f8b21a81f (diff)
Add Tests for Honeycomb VxLAN GPE support
JIRA: CSIT-131 - add tests for Honeycomb VxLAN GPE support - add keywords needed for tests Change-Id: I460ecd30835bb95140958b20946b1d41ac6d9abc Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'tests/suites/honeycomb/resources/vxlan_gpe.py')
-rw-r--r--tests/suites/honeycomb/resources/vxlan_gpe.py99
1 files changed, 99 insertions, 0 deletions
diff --git a/tests/suites/honeycomb/resources/vxlan_gpe.py b/tests/suites/honeycomb/resources/vxlan_gpe.py
new file mode 100644
index 0000000000..7f219f93b6
--- /dev/null
+++ b/tests/suites/honeycomb/resources/vxlan_gpe.py
@@ -0,0 +1,99 @@
+# Copyright (c) 2016 Cisco and/or its affiliates.
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at:
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+"""Test variables for Honeycomb VxLAN GPE management test suite."""
+
+# The first VxLAN GPE Interface used in tests.
+vxlan_gpe_if1 = 'vxlan_gpe_tunnel0'
+vxlan_gpe_base_settings = {
+ 'name': vxlan_gpe_if1,
+ 'description': 'for testing purposes',
+ 'enabled': True,
+ 'link-up-down-trap-enable': 'enabled'
+}
+vxlan_gpe_settings = {
+ 'local': '192.168.50.76',
+ 'remote': '192.168.50.71',
+ 'vni': 9,
+ 'next-protocol': 'ipv4',
+ 'encap-vrf-id': 0,
+ 'decap-vrf-id': 0
+}
+
+# The values of parameters of disabled VxLAN GPE interface.
+vxlan_gpe_disabled_base_settings = {
+ 'name': vxlan_gpe_if1,
+ 'description': 'for testing purposes',
+ 'enabled': 'false'
+}
+
+# Wrong interface type.
+vxlan_gpe_if2 = 'vxlan_gpe_tunnel1'
+vxlan_gpe_wrong_type_base_settings = {
+ 'name': vxlan_gpe_if2,
+ 'type': 'iana-if-type:ethernetCsmacd',
+ 'description': 'for testing purposes',
+ 'enabled': 'true',
+ 'link-up-down-trap-enable': 'enabled'
+}
+
+# Wrong next-protocol value.
+vxlan_gpe_if3 = 'vxlan_gpe_tunnel1'
+vxlan_gpe_wrong_protocol_base_settings = {
+ 'name': vxlan_gpe_if3,
+ 'description': 'for testing purposes',
+ 'enabled': 'true',
+ 'link-up-down-trap-enable': 'enabled'
+}
+vxlan_gpe_wrong_protocol_settings = {
+ 'local': '192.168.50.77',
+ 'remote': '192.168.50.72',
+ 'vni': 9,
+ 'next-protocol': 'wrong_ipv4',
+ 'encap-vrf-id': 0,
+ 'decap-vrf-id': 0
+}
+
+# The first IPv6 VxLAN GPE interface.
+vxlan_gpe_if5 = 'vxlan_gpe_tunnel0'
+vxlan_gpe_base_ipv6_settings = {
+ 'name': vxlan_gpe_if5,
+ 'description': 'for testing purposes',
+ 'enabled': 'true',
+ 'link-up-down-trap-enable': 'enabled'
+}
+vxlan_gpe_ipv6_settings = {
+ 'local': '10:10:10:10:10:10:10:10',
+ 'remote': '10:10:10:10:10:10:10:11',
+ 'vni': 9,
+ 'next-protocol':'ipv4',
+ 'encap-vrf-id': 0,
+ 'decap-vrf-id': 0
+}
+
+# The second IPv6 VxLAN GPE interface.
+vxlan_gpe_if6 = 'vxlan_gpe_tunnel1'
+vxlan_gpe_base_ipv6_settings2 = {
+ 'name': vxlan_gpe_if6,
+ 'description': 'for testing purposes',
+ 'enabled': 'true',
+ 'link-up-down-trap-enable': 'enabled'
+}
+vxlan_gpe_ipv6_settings2 = {
+ 'local': '10:10:10:10:10:10:10:20',
+ 'remote': '10:10:10:10:10:10:10:21',
+ 'vni': 9,
+ 'next-protocol': 'ipv4',
+ 'encap-vrf-id': 0,
+ 'decap-vrf-id': 0
+}