From deb6fdb6a59f5c02b8cacaa9c0e6043562e53646 Mon Sep 17 00:00:00 2001 From: Andrej Kozemcak Date: Wed, 4 May 2016 15:39:38 +0200 Subject: [PATCH] CSIT-125: Add test for lisp remote static mapping Test Lisp functionality and rename lisp file Testing this topology: - IPv4 lisp topology - IPv6 lisp topology - IPv4 over IPv6 - IPv6 over IPv4 Change-Id: Ie3439ca802f1c8ae82a1dfcfdebe579f9dc47089 Signed-off-by: Andrej Kozemcak --- resources/libraries/python/LispSetup.py | 103 +++++++++++- .../robot/{lisp.robot => lisp/lisp_api.robot} | 9 +- .../libraries/robot/lisp/lisp_static_mapping.robot | 88 ++++++++++ .../templates/vat/lisp/add_lisp_remote_mapping.vat | 1 + .../templates/vat/lisp/del_lisp_remote_mapping.vat | 1 + resources/templates/vat/lisp/lisp.vat | 1 + .../vat/lisp/show_lisp_enable_disable.vat | 1 + ...lisp_untagged.robot => lisp_api_untagged.robot} | 6 +- tests/suites/lisp/lisp_dataplane_untagged.robot | 177 +++++++++++++++++++++ tests/suites/lisp/resources/lisp_static_mapping.py | 124 +++++++++++++++ 10 files changed, 504 insertions(+), 7 deletions(-) rename resources/libraries/robot/{lisp.robot => lisp/lisp_api.robot} (97%) create mode 100644 resources/libraries/robot/lisp/lisp_static_mapping.robot create mode 100644 resources/templates/vat/lisp/add_lisp_remote_mapping.vat create mode 100644 resources/templates/vat/lisp/del_lisp_remote_mapping.vat create mode 100644 resources/templates/vat/lisp/lisp.vat create mode 100644 resources/templates/vat/lisp/show_lisp_enable_disable.vat rename tests/suites/lisp/{lisp_untagged.robot => lisp_api_untagged.robot} (92%) create mode 100644 tests/suites/lisp/lisp_dataplane_untagged.robot create mode 100644 tests/suites/lisp/resources/lisp_static_mapping.py diff --git a/resources/libraries/python/LispSetup.py b/resources/libraries/python/LispSetup.py index e0c86aae51..88fcfacda6 100644 --- a/resources/libraries/python/LispSetup.py +++ b/resources/libraries/python/LispSetup.py @@ -17,6 +17,94 @@ from resources.libraries.python.topology import NodeType from resources.libraries.python.VatExecutor import VatExecutor +class Lisp(object): + """Class for lisp API.""" + + def __init__(self): + pass + + @staticmethod + def vpp_lisp_enable_disable(node, state): + """Enable/Disable lisp in the VPP node in topology. + + :param node: Node of the test topology. + :param state: State of the lisp, enable or disable. + :type node: dict + :type state: str + """ + + VatExecutor.cmd_from_template(node, + 'lisp/lisp.vat', + state=state) + + +class LispRemoteMapping(object): + """Class for lisp remote mapping API.""" + + def __init__(self): + pass + + @staticmethod + def vpp_add_lisp_remote_mapping(node, vni, deid, deid_prefix, seid, + seid_prefix, rloc): + """Add lisp remote mapping on the VPP node in topology. + + :param node: VPP node. + :param vni: Vni. + :param deid: Destination eid address. + :param deid_predix: Destination eid address prefix_len. + :param seid: Source eid address. + :param seid_prefix: Source eid address prefix_len. + :param rloc: Receiver locator. + :type node: dict + :type vni: int + :type deid: str + :type deid_prefix: int + :type seid: str + :type seid_prefix: int + :type rloc: str + """ + + VatExecutor.cmd_from_template(node, + 'lisp/add_lisp_remote_mapping.vat', + vni=vni, + deid=deid, + deid_prefix=deid_prefix, + seid=seid, + seid_prefix=seid_prefix, + rloc=rloc) + + @staticmethod + def vpp_del_lisp_remote_mapping(node, vni, deid, deid_prefix, seid, + seid_prefix, rloc): + """Delete lisp remote mapping on the VPP node in topology. + + :param node: VPP node. + :param vni: Vni. + :param deid: Destination eid address. + :param deid_predix: Destination eid address prefix_len. + :param seid: Source eid address. + :param seid_prefix: Source eid address prefix_len. + :param rloc: Receiver locator. + :type node: dict + :type vni: int + :type deid: str + :type deid_prefix: int + :type seid: str + :type seid_prefix: int + :type rloc: str + """ + + VatExecutor.cmd_from_template(node, + 'lisp/del_lisp_remote_mapping.vat', + vni=vni, + deid=deid, + deid_predix=deid_prefix, + seid=seid, + seid_prefix=seid_prefix, + rloc=rloc) + + class LispGpeIface(object): """Class for Lisp gpe interface API.""" @@ -28,7 +116,7 @@ class LispGpeIface(object): """Set lisp gpe interface up or down on the VPP node in topology. :param node: VPP node. - :param state: State of the gpe iface, up or down + :param state: State of the gpe iface, up or down. :type node: dict :type state: str """ @@ -406,3 +494,16 @@ class LispSetup(object): lgi = LispGpeIface() lgi.vpp_lisp_gpe_iface(node, state) + + @staticmethod + def vpp_lisp_state(node, state): + """Enable/Disable lisp on VPP node in topology. + + :param node: VPP node. + :param state: State of the lisp, enable or disable + :type node: dict + :type state: str + """ + + lgi = Lisp() + lgi.vpp_lisp_enable_disable(node, state) diff --git a/resources/libraries/robot/lisp.robot b/resources/libraries/robot/lisp/lisp_api.robot similarity index 97% rename from resources/libraries/robot/lisp.robot rename to resources/libraries/robot/lisp/lisp_api.robot index a5b69fc547..43471a9d86 100644 --- a/resources/libraries/robot/lisp.robot +++ b/resources/libraries/robot/lisp/lisp_api.robot @@ -12,11 +12,10 @@ # limitations under the License. *** Settings *** -| Resource | resources/libraries/robot/default.robot -| Resource | resources/libraries/robot/counters.robot -| Library | resources.libraries.python.NodePath -| Library | resources.libraries.python.LispSetup.LispSetup -| Library | resources.libraries.python.LispUtil +| Resource | resources/libraries/robot/interfaces.robot +| Library | resources.libraries.python.NodePath +| Library | resources.libraries.python.LispSetup.LispSetup +| Library | resources.libraries.python.LispUtil *** Keywords *** diff --git a/resources/libraries/robot/lisp/lisp_static_mapping.robot b/resources/libraries/robot/lisp/lisp_static_mapping.robot new file mode 100644 index 0000000000..8d6bf311d0 --- /dev/null +++ b/resources/libraries/robot/lisp/lisp_static_mapping.robot @@ -0,0 +1,88 @@ +# 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. + +*** Settings *** +| Documentation | Lisp State mapping suite keywords +| Resource | resources/libraries/robot/interfaces.robot +| Library | resources.libraries.python.NodePath +| Library | resources.libraries.python.LispSetup.LispLocatorSet +| Library | resources.libraries.python.LispSetup.LispLocator +| Library | resources.libraries.python.LispSetup.LispLocalEid +| Library | resources.libraries.python.LispSetup.LispRemoteMapping +| Library | resources.libraries.python.LispSetup.LispSetup +| Library | resources.libraries.python.LispUtil + +*** Keywords *** +| Set up Lisp topology +| | [Documentation] | Set up Lisp static remote mapping topology. +| | ... +| | ... | *Arguments:* +| | ... | - ${dut1_node} - DUT1 node. Type: dictionary +| | ... | - ${dut1_int_name} - DUT1 node interface name. Type: string +| | ... | - ${dut1_int_index} - DUT1 node interface index. Type: integer +| | ... | - ${dut2_node} - DUT2 node. Type: dictionary +| | ... | - ${dut2_int_name} - DUT2 node interface name. Type: string +| | ... | - ${dut2_int_index} - DUT2 node interface index. Type: integer +| | ... | - ${locator_set} - Locator set values. Type: dict +| | ... | - ${dut1_eid} - Dut1 node eid address. Type: dict +| | ... | - ${dut2_eid} - Dut2 node eid address. Type: dict +| | ... | - ${dut1_static_mapping} - Dut1 static mapping address. Type: dict +| | ... | - ${dut2_static_mapping} - Dut2 static mapping address. Type: dict +| | ... +| | ... | *Return:* +| | ... | - No value returned +| | ... +| | ... | *Example:* +| | ... | \| Set up Lisp topology \| ${dut1_node} \| ${interface_name} \ +| | ... | \| None \| ${dut2_node} \| ${interface_name} \| None \ +| | ... | \| ${locator_set} \| ${dut1_eid} \| ${dut2_eid} \ +| | ... | \| ${dut1_static_mapping} \| ${dut2_static_mapping} \| +| | ... +| | [Arguments] | ${dut1_node} | ${dut1_int_name} | ${dut1_int_index} +| | ... | ${dut2_node} | ${dut2_int_name} | ${dut2_int_index} +| | ... | ${locator_set} | ${dut1_eid} | ${dut2_eid} +| | ... | ${dut1_static_mapping} | ${dut2_static_mapping} +| | ${dut1_int_index}= | Run Keyword If | ${dut1_int_index} is None +| | | ... | Get Interface Sw Index | ${dut1_node} +| | | ... | ${dut1_int_name} +| | | ... | ELSE | Set Variable | ${dut1_int_index} +| | ${dut2_int_index}= | Run Keyword If | ${dut2_int_index} is None +| | | ... | Get Interface Sw Index | ${dut2_node} +| | | ... | ${dut2_int_name} +| | | ... | ELSE | Set Variable | ${dut2_int_index} +| | Vpp lisp state | ${dut1_node} | enable +| | Vpp Add Lisp Locator Set | ${dut1_node} | ${locator_set['locator_name']} +| | Vpp Add Lisp Locator | ${dut1_node} | ${locator_set['locator_name']} +| | ... | ${dut1_int_index} | ${locator_set['priority']} +| | ... | ${locator_set['weight']} +| | Vpp Add Lisp Local Eid | ${dut1_node} | ${dut1_eid['locator_name']} | ${dut1_eid['eid']} +| | ... | ${dut1_eid['prefix']} +| | Vpp Add Lisp Remote Mapping | ${dut1_node} | ${dut1_static_mapping['vni']} +| | ... | ${dut1_static_mapping['deid']} +| | ... | ${dut1_static_mapping['prefix']} +| | ... | ${dut1_static_mapping['seid']} +| | ... | ${dut1_static_mapping['prefix']} +| | ... | ${dut1_static_mapping['rloc']} +| | Vpp Lisp State | ${dut2_node} | enable +| | Vpp Add Lisp Locator Set | ${dut2_node} | ${locator_set['locator_name']} +| | Vpp Add Lisp Locator | ${dut2_node} | ${locator_set['locator_name']} +| | ... | ${dut2_int_index} | ${locator_set['priority']} +| | ... | ${locator_set['weight']} +| | Vpp Add Lisp Local Eid | ${dut2_node} | ${dut2_eid['locator_name']} | ${dut2_eid['eid']} +| | ... | ${dut2_eid['prefix']} +| | Vpp Add Lisp Remote Mapping | ${dut2_node} | ${dut2_static_mapping['vni']} +| | ... | ${dut2_static_mapping['deid']} +| | ... | ${dut2_static_mapping['prefix']} +| | ... | ${dut2_static_mapping['seid']} +| | ... | ${dut2_static_mapping['prefix']} +| | ... | ${dut2_static_mapping['rloc']} \ No newline at end of file diff --git a/resources/templates/vat/lisp/add_lisp_remote_mapping.vat b/resources/templates/vat/lisp/add_lisp_remote_mapping.vat new file mode 100644 index 0000000000..d9a055a208 --- /dev/null +++ b/resources/templates/vat/lisp/add_lisp_remote_mapping.vat @@ -0,0 +1 @@ +lisp_add_del_remote_mapping add vni {vni} deid {deid}/{deid_prefix} seid {seid}/{seid_prefix} rloc {rloc} diff --git a/resources/templates/vat/lisp/del_lisp_remote_mapping.vat b/resources/templates/vat/lisp/del_lisp_remote_mapping.vat new file mode 100644 index 0000000000..f090ef97f5 --- /dev/null +++ b/resources/templates/vat/lisp/del_lisp_remote_mapping.vat @@ -0,0 +1 @@ +lisp_add_del_remote_mapping del vni {vni} deid {deid}/{deid_prefix} seid {seid}/{seid_prefix} rloc {rloc} diff --git a/resources/templates/vat/lisp/lisp.vat b/resources/templates/vat/lisp/lisp.vat new file mode 100644 index 0000000000..d7e97577d6 --- /dev/null +++ b/resources/templates/vat/lisp/lisp.vat @@ -0,0 +1 @@ +lisp_enable_disable {state} diff --git a/resources/templates/vat/lisp/show_lisp_enable_disable.vat b/resources/templates/vat/lisp/show_lisp_enable_disable.vat new file mode 100644 index 0000000000..2cd573ffb9 --- /dev/null +++ b/resources/templates/vat/lisp/show_lisp_enable_disable.vat @@ -0,0 +1 @@ +lisp_enable_disable_status_dump diff --git a/tests/suites/lisp/lisp_untagged.robot b/tests/suites/lisp/lisp_api_untagged.robot similarity index 92% rename from tests/suites/lisp/lisp_untagged.robot rename to tests/suites/lisp/lisp_api_untagged.robot index 9832a5135d..1a0c309b91 100644 --- a/tests/suites/lisp/lisp_untagged.robot +++ b/tests/suites/lisp/lisp_api_untagged.robot @@ -19,9 +19,13 @@ | Library | resources.libraries.python.LispUtil | Resource | resources/libraries/robot/default.robot | Resource | resources/libraries/robot/interfaces.robot -| Resource | resources/libraries/robot/lisp.robot +| Resource | resources/libraries/robot/lisp/lisp_api.robot | Force Tags | 3_NODE_SINGLE_LINK_TOPO | 3_NODE_DOUBLE_LINK_TOPO | ... | VM_ENV | HW_ENV +| Test Setup | Run Keywords | Setup all DUTs before test +| ... | AND | Setup all TGs before traffic script +| ... | AND | Update All Interface Data On All Nodes | ${nodes} +| Test Teardown | Show Packet Trace on All DUTs | ${nodes} *** Variables *** | ${locator_set_num}= | 3 diff --git a/tests/suites/lisp/lisp_dataplane_untagged.robot b/tests/suites/lisp/lisp_dataplane_untagged.robot new file mode 100644 index 0000000000..bdf290955e --- /dev/null +++ b/tests/suites/lisp/lisp_dataplane_untagged.robot @@ -0,0 +1,177 @@ +# 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. + +*** Settings *** +| Documentation | Test Lisp static remote mapping topology. +| Resource | resources/libraries/robot/default.robot +| Resource | resources/libraries/robot/testing_path.robot +| Resource | resources/libraries/robot/ipv4.robot +| Resource | resources/libraries/robot/traffic.robot +| Resource | resources/libraries/robot/lisp/lisp_static_mapping.robot +| Resource | resources/libraries/robot/l2_traffic.robot +| Library | resources.libraries.python.IPUtil +| Library | resources.libraries.python.Trace +| Library | resources.libraries.python.IPv4Util.IPv4Util +# import additional Lisp settings from resource file +| Variables | tests/suites/lisp/resources/lisp_static_mapping.py +| Force Tags | 3_NODE_SINGLE_LINK_TOPO | 3_NODE_DOUBLE_LINK_TOPO +| ... | VM_ENV | HW_ENV +| Test Setup | Run Keywords | Setup all DUTs before test +| ... | AND | Setup all TGs before traffic script +| ... | AND | Update All Interface Data On All Nodes | ${nodes} +| Test Teardown | Show Packet Trace on All DUTs | ${nodes} + +*** Test Cases *** +| VPP can pass IPv4 bidirectionally through LISP +| | [Documentation] | Test IP4 Lisp remote static mapping. +| | ... | Set IP4 lisp topology and check if packet passes through +| | ... | Lisp topology. +| | Given Path for 3-node testing is set +| | ... | ${nodes['TG']} | ${nodes['DUT1']} | ${nodes['DUT2']} | ${nodes['TG']} +| | And Interfaces in 3-node path are up +| | And IP addresses are set on interfaces +| | ... | ${dut1_node} | ${dut1_to_dut2} +| | ... | ${dut1_to_dut2_ip4} | ${prefix4} +| | ... | ${dut1_node} | ${dut1_to_tg} +| | ... | ${dut1_to_tg_ip4} | ${prefix4} +| | ... | ${dut2_node} | ${dut2_to_dut1} +| | ... | ${dut2_to_dut1_ip4} | ${prefix4} +| | ... | ${dut2_node} | ${dut2_to_tg} +| | ... | ${dut2_to_tg_ip4} | ${prefix4} +| | And VPP IP Probe | ${dut1_node} | ${dut1_to_dut2} | ${dut2_to_dut1_ip4} +| | And VPP IP Probe | ${dut2_node} | ${dut2_to_dut1} | ${dut1_to_dut2_ip4} +| | And Add Arp On Dut | ${dut2_node} | ${dut2_to_tg} | ${tg2_ip4} +| | ... | ${tg_to_dut2_mac} +| | And Add Arp On Dut | ${dut1_node} | ${dut1_to_tg} | ${tg1_ip4} +| | ... | ${tg_to_dut1_mac} +| | When Set up Lisp topology +| | ... | ${dut1_node} | ${dut1_to_dut2} | ${NONE} +| | ... | ${dut2_node} | ${dut2_to_dut1} | ${NONE} +| | ... | ${duts_locator_set} | ${dut1_ip4_eid} | ${dut2_ip4_eid} +| | ... | ${dut1_ip4_static_mapping} | ${dut2_ip4_static_mapping} +| | Then Send Packet And Check Headers +| | ... | ${tg_node} | ${tg1_ip4} | ${tg2_ip4} +| | ... | ${tg_to_dut1} | ${tg_to_dut1_mac} | ${dut1_to_tg_mac} +| | ... | ${tg_to_dut2} | ${dut2_to_tg_mac} | ${tg_to_dut2_mac} +| | And Send Packet And Check Headers +| | ... | ${tg_node} | ${tg2_ip4} | ${tg1_ip4} +| | ... | ${tg_to_dut2} | ${tg_to_dut2_mac} | ${dut2_to_tg_mac} +| | ... | ${tg_to_dut1} | ${dut1_to_tg_mac} | ${tg_to_dut1_mac} + +| VPP can pass IPv6 bidirectionally through LISP +| | [Documentation] | Test IP6 Lisp remote static mapping. +| | ... | Set IP6 lisp topology and check if packet passes through +| | ... | Lisp topology. +| | Given Path for 3-node testing is set +| | ... | ${nodes['TG']} | ${nodes['DUT1']} | ${nodes['DUT2']} | ${nodes['TG']} +| | And Interfaces in 3-node path are up +| | And IP addresses are set on interfaces +| | ... | ${dut1_node} | ${dut1_to_dut2} +| | ... | ${dut1_to_dut2_ip6} | ${prefix6} +| | ... | ${dut1_node} | ${dut1_to_tg} +| | ... | ${dut1_to_tg_ip6} | ${prefix6} +| | ... | ${dut2_node} | ${dut2_to_dut1} +| | ... | ${dut2_to_dut1_ip6} | ${prefix6} +| | ... | ${dut2_node} | ${dut2_to_tg} +| | ... | ${dut2_to_tg_ip6} | ${prefix6} +| | And VPP IP Probe | ${dut1_node} | ${dut1_to_dut2} | ${dut2_to_dut1_ip6} +| | And VPP IP Probe | ${dut2_node} | ${dut2_to_dut1} | ${dut1_to_dut2_ip6} +| | And Add Arp On Dut | ${dut2_node} | ${dut2_to_tg} | ${tg2_ip6} +| | ... | ${tg_to_dut2_mac} +| | And Add Arp On Dut | ${dut1_node} | ${dut1_to_tg} | ${tg1_ip6} +| | ... | ${tg_to_dut1_mac} +| | When Set up Lisp topology +| | ... | ${dut1_node} | ${dut1_to_dut2} | ${NONE} +| | ... | ${dut2_node} | ${dut2_to_dut1} | ${NONE} +| | ... | ${duts_locator_set} | ${dut1_ip6_eid} | ${dut2_ip6_eid} +| | ... | ${dut1_ip6_static_mapping} | ${dut2_ip6_static_mapping} +| | Then Send Packet And Check Headers +| | ... | ${tg_node} | ${tg1_ip6} | ${tg2_ip6} +| | ... | ${tg_to_dut1} | ${tg_to_dut1_mac} | ${dut1_to_tg_mac} +| | ... | ${tg_to_dut2} | ${dut2_to_tg_mac} | ${tg_to_dut2_mac} +| | And Send Packet And Check Headers +| | ... | ${tg_node} | ${tg2_ip6} | ${tg1_ip6} +| | ... | ${tg_to_dut2} | ${tg_to_dut2_mac} | ${dut2_to_tg_mac} +| | ... | ${tg_to_dut1} | ${dut1_to_tg_mac} | ${tg_to_dut1_mac} + +| VPP can pass IPv4 over IPv6 bidirectionally through LISP +| | [Documentation] | Test IP4 over IP6 in Lisp remote static mapping. +| | ... | Set IP6 topology and check if the IP4 packet +| | ... | passes through IP6 Lisp topology. +| | Given Path for 3-node testing is set +| | ... | ${nodes['TG']} | ${nodes['DUT1']} | ${nodes['DUT2']} | ${nodes['TG']} +| | And Interfaces in 3-node path are up +| | And IP addresses are set on interfaces +| | ... | ${dut1_node} | ${dut1_to_dut2} +| | ... | ${dut1_to_dut2_ip4o6} | ${dut_prefix4o6} +| | ... | ${dut1_node} | ${dut1_to_tg} +| | ... | ${dut1_to_tg_ip4o6} | ${tg_prefix4o6} +| | ... | ${dut2_node} | ${dut2_to_dut1} +| | ... | ${dut2_to_dut1_ip4o6} | ${dut_prefix4o6} +| | ... | ${dut2_node} | ${dut2_to_tg} +| | ... | ${dut2_to_tg_ip4o6} | ${tg_prefix4o6} +| | And VPP IP Probe | ${dut1_node} | ${dut1_to_dut2} | ${dut2_to_dut1_ip4o6} +| | And VPP IP Probe | ${dut2_node} | ${dut2_to_dut1} | ${dut1_to_dut2_ip4o6} +| | And Add Arp On Dut | ${dut2_node} | ${dut2_to_tg} | ${tg2_ip4o6} +| | ... | ${tg_to_dut2_mac} +| | And Add Arp On Dut | ${dut1_node} | ${dut1_to_tg} | ${tg1_ip4o6} +| | ... | ${tg_to_dut1_mac} +| | When Set up Lisp topology +| | ... | ${dut1_node} | ${dut1_to_dut2} | ${NONE} +| | ... | ${dut2_node} | ${dut2_to_dut1} | ${NONE} +| | ... | ${duts_locator_set} | ${dut1_ip4o6_eid} | ${dut2_ip4o6_eid} +| | ... | ${dut1_ip4o6_static_mapping} | ${dut2_ip4o6_static_mapping} +| | Then Send Packet And Check Headers +| | ... | ${tg_node} | ${tg1_ip4o6} | ${tg2_ip4o6} +| | ... | ${tg_to_dut1} | ${tg_to_dut1_mac} | ${dut1_to_tg_mac} +| | ... | ${tg_to_dut2} | ${dut2_to_tg_mac} | ${tg_to_dut2_mac} +| | And Send Packet And Check Headers +| | ... | ${tg_node} | ${tg2_ip4o6} | ${tg1_ip4o6} +| | ... | ${tg_to_dut2} | ${tg_to_dut2_mac} | ${dut2_to_tg_mac} +| | ... | ${tg_to_dut1} | ${dut1_to_tg_mac} | ${tg_to_dut1_mac} + +| VPP can pass IPv6 over IPv4 bidirectionally through LISP +| | [Documentation] | Test IP6 over IP4 in Lisp remote static mapping. +| | ... | Set IP4 topology and check if the IP6 packet +| | ... | passes through IP4 Lisp topology. +| | Given Path for 3-node testing is set +| | ... | ${nodes['TG']} | ${nodes['DUT1']} | ${nodes['DUT2']} | ${nodes['TG']} +| | And Interfaces in 3-node path are up +| | And IP addresses are set on interfaces +| | ... | ${dut1_node} | ${dut1_to_dut2} +| | ... | ${dut1_to_dut2_ip6o4} | ${dut_prefix6o4} +| | ... | ${dut1_node} | ${dut1_to_tg} +| | ... | ${dut1_to_tg_ip6o4} | ${tg_prefix6o4} +| | ... | ${dut2_node} | ${dut2_to_dut1} +| | ... | ${dut2_to_dut1_ip6o4} | ${dut_prefix6o4} +| | ... | ${dut2_node} | ${dut2_to_tg} +| | ... | ${dut2_to_tg_ip6o4} | ${tg_prefix6o4} +| | And VPP IP Probe | ${dut1_node} | ${dut1_to_dut2} | ${dut2_to_dut1_ip6o4} +| | And VPP IP Probe | ${dut2_node} | ${dut2_to_dut1} | ${dut1_to_dut2_ip6o4} +| | And Add Arp On Dut | ${dut2_node} | ${dut2_to_tg} | ${tg2_ip6o4} +| | ... | ${tg_to_dut2_mac} +| | And Add Arp On Dut | ${dut1_node} | ${dut1_to_tg} | ${tg1_ip6o4} +| | ... | ${tg_to_dut1_mac} +| | When Set up Lisp topology +| | ... | ${dut1_node} | ${dut1_to_dut2} | ${NONE} +| | ... | ${dut2_node} | ${dut2_to_dut1} | ${NONE} +| | ... | ${duts_locator_set} | ${dut1_ip6o4_eid} | ${dut2_ip6o4_eid} +| | ... | ${dut1_ip6o4_static_mapping} | ${dut2_ip6o4_static_mapping} +| | Then Send Packet And Check Headers +| | ... | ${tg_node} | ${tg1_ip6o4} | ${tg2_ip6o4} +| | ... | ${tg_to_dut1} | ${tg_to_dut1_mac} | ${dut1_to_tg_mac} +| | ... | ${tg_to_dut2} | ${dut2_to_tg_mac} | ${tg_to_dut2_mac} +| | And Send Packet And Check Headers +| | ... | ${tg_node} | ${tg2_ip6o4} | ${tg1_ip6o4} +| | ... | ${tg_to_dut2} | ${tg_to_dut2_mac} | ${dut2_to_tg_mac} +| | ... | ${tg_to_dut1} | ${dut1_to_tg_mac} | ${tg_to_dut1_mac} diff --git a/tests/suites/lisp/resources/lisp_static_mapping.py b/tests/suites/lisp/resources/lisp_static_mapping.py new file mode 100644 index 0000000000..3b27af969b --- /dev/null +++ b/tests/suites/lisp/resources/lisp_static_mapping.py @@ -0,0 +1,124 @@ +# 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 Lisp remote static mapping test suite.""" + +#Lisp default global value +locator_name = 'ls1' + +#Lisp default locator_set value +duts_locator_set = {'locator_name': locator_name, + 'priority': 1, + 'weight': 1} + +# IPv4 Lisp static mapping configuration +dut1_to_dut2_ip4 = '6.0.3.1' +dut2_to_dut1_ip4 = '6.0.3.2' +dut1_to_tg_ip4 = '6.0.1.1' +dut2_to_tg_ip4 = '6.0.2.1' +tg1_ip4 = '6.0.1.2' +tg2_ip4 = '6.0.2.2' +prefix4 = 24 +dut1_ip4_static_mapping = {'vni': 0, + 'deid': '6.0.2.0', + 'seid': '6.0.1.0', + 'rloc': '6.0.3.2', + 'prefix': 24} +dut2_ip4_static_mapping = {'vni': 0, + 'deid': '6.0.1.0', + 'seid': '6.0.2.0', + 'rloc': '6.0.3.1', + 'prefix': 24} +dut1_ip4_eid = {'locator_name': locator_name, + 'eid': '6.0.1.0', + 'prefix': 24} +dut2_ip4_eid = {'locator_name': locator_name, + 'eid': '6.0.2.0', + 'prefix': 24} + +# IPv6 Lisp static mapping configuration +dut1_to_dut2_ip6 = '6:0:3::1' +dut2_to_dut1_ip6 = '6:0:3::2' +dut1_to_tg_ip6 = '6:0:1::1' +dut2_to_tg_ip6 = '6:0:2::1' +tg1_ip6 = '6:0:1::2' +tg2_ip6 = '6:0:2::2' +prefix6 = 64 +dut1_ip6_static_mapping = {'vni': 0, + 'deid': '6:0:2::0', + 'seid': '6:0:1::0', + 'rloc': '6:0:3::2', + 'prefix': 64} +dut2_ip6_static_mapping = {'vni': 0, + 'deid': '6:0:1::0', + 'seid': '6:0:2::0', + 'rloc': '6:0:3::1', + 'prefix': 64} +dut1_ip6_eid = {'locator_name': locator_name, + 'eid': '6:0:1::0', + 'prefix': 64} +dut2_ip6_eid = {'locator_name': locator_name, + 'eid': '6:0:2::0', + 'prefix': 64} + +# IPv4 over IPv6 Lisp static mapping configuration +dut1_to_dut2_ip4o6 = '6:0:3::1' +dut2_to_dut1_ip4o6 = '6:0:3::2' +dut1_to_tg_ip4o6 = '6.0.1.1' +dut2_to_tg_ip4o6 = '6.0.2.1' +tg1_ip4o6 = '6.0.1.2' +tg2_ip4o6 = '6.0.2.2' +tg_prefix4o6 = 24 +dut_prefix4o6 = 64 +dut1_ip4o6_static_mapping = {'vni': 0, + 'deid': '6.0.2.0', + 'seid': '6.0.1.0', + 'rloc': '6:0:3::2', + 'prefix': 24} +dut2_ip4o6_static_mapping = {'vni': 0, + 'deid': '6.0.1.0', + 'seid': '6.0.2.0', + 'rloc': '6:0:3::1', + 'prefix': 24} +dut1_ip4o6_eid = {'locator_name': locator_name, + 'eid': '6.0.1.0', + 'prefix': 24} +dut2_ip4o6_eid = {'locator_name': locator_name, + 'eid': '6.0.2.0', + 'prefix': 24} + +# IPv6 over IPv4 Lisp static mapping configuration +dut1_to_dut2_ip6o4 = '6.0.3.1' +dut2_to_dut1_ip6o4 = '6.0.3.2' +dut1_to_tg_ip6o4 = '6:0:1::1' +dut2_to_tg_ip6o4 = '6:0:2::1' +tg1_ip6o4 = '6:0:1::2' +tg2_ip6o4 = '6:0:2::2' +tg_prefix6o4 = 64 +dut_prefix6o4 = 24 +dut1_ip6o4_static_mapping = {'vni': 0, + 'deid': '6:0:2::0', + 'seid': '6:0:1::0', + 'rloc': '6.0.3.2', + 'prefix': 64} +dut2_ip6o4_static_mapping = {'vni': 0, + 'deid': '6:0:1::0', + 'seid': '6:0:2::0', + 'rloc': '6.0.3.1', + 'prefix': 64} +dut1_ip6o4_eid = {'locator_name': locator_name, + 'eid': '6:0:1::0', + 'prefix': 64} +dut2_ip6o4_eid = {'locator_name': locator_name, + 'eid': '6:0:2::0', + 'prefix': 64} -- 2.16.6