X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Frobot%2Flisp%2Fl2lisp.robot;fp=resources%2Flibraries%2Frobot%2Flisp%2Fl2lisp.robot;h=0000000000000000000000000000000000000000;hp=3e908a2378a67cddf789561e7c2de53467efc865;hb=6721e7f09aa95bff6622068332a3f56afad9c87b;hpb=859157b5db45927c7b4bb0b2d575e68805777a86 diff --git a/resources/libraries/robot/lisp/l2lisp.robot b/resources/libraries/robot/lisp/l2lisp.robot deleted file mode 100644 index 3e908a2378..0000000000 --- a/resources/libraries/robot/lisp/l2lisp.robot +++ /dev/null @@ -1,77 +0,0 @@ -# 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-gpe encapsulation suite keywords -| Library | resources.libraries.python.topology.Topology -| Resource | resources/libraries/robot/lisp/lisp_api.robot -| Library | resources.libraries.python.LispSetup.LispLocatorSet -| Library | resources.libraries.python.LispSetup.LispLocator -| Library | resources.libraries.python.LispSetup.LispLocalEid -| Library | resources.libraries.python.LispSetup.LispAdjacency -| Library | resources.libraries.python.LispSetup.LispRemoteMapping -| Library | resources.libraries.python.LispSetup.LispMapResolver -| Library | resources.libraries.python.LispSetup.LispEidTableMap - -*** Keywords *** -| Configure L2 LISP on DUT -| | [Documentation] | Set up LISP L2 topology. -| | ... -| | ... | *Arguments:* -| | ... | - dut_node - DUT node. Type: dictionary -| | ... | - adjacency - DUT static adjacency settings. Type: dict -| | ... | - settings - DUT other LISP related settings. Type: dict -| | ... -| | ... | *Return:* -| | ... | - No value returned -| | ... -| | ... | *Example:* -| | ... | \| Configure LISP GPE topology in 3-node circular topology \| ${dut_node} \| ${adjacency} \ -| | ... | \| ${settings} \| -| | ... -| | [Arguments] -| | ... | ${dut_node} | ${adjacency} | ${settings} -| | ... -| | ${int_idx}= | Get Interface Sw Index | ${dut_node} | ${${adjacency['int']}} -| | Enable Lisp | ${dut_node} -| | Vpp Add Lisp Locator Set | ${dut_node} -| | ... | ${settings['locator_name']} -| | Vpp Add Lisp Locator | ${dut_node} -| | ... | ${settings['locator_name']} -| | ... | ${int_idx} -| | ... | ${settings['priority']} -| | ... | ${settings['weight']} -| | Vpp Lisp Eid Table Mapping | ${dut_node} -| | ... | ${settings['vni']} -| | ... | bd_id=${settings['bd']} -| | Vpp Add Lisp Local Eid | ${dut_node} -| | ... | ${settings['locator_name']} -| | ... | ${settings['vni']} -| | ... | ${adjacency['seid']} -| | Vpp Add Map Resolver | ${dut_node} -| | ... | ${adjacency['map_res']} -| | Vpp Add Lisp Remote Mapping | ${dut_node} -| | ... | ${settings['vni']} -| | ... | ${adjacency['eid']} -| | ... | 0 -| | ... | ${adjacency['seid']} -| | ... | 0 -| | ... | ${adjacency['rloc']} -| | ... | is_mac=${TRUE} -| | Vpp Add Lisp Adjacency | ${dut_node} -| | ... | ${settings['vni']} -| | ... | ${adjacency['eid']} -| | ... | 0 -| | ... | ${adjacency['seid']} -| | ... | 0 -| | ... | is_mac=${TRUE}