X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FLispSetup.py;h=88fcfacda692772ca6d8af6a482aec2894b21c11;hp=e0c86aae51861851dafe1bafaae2f0a9b4fffd68;hb=deb6fdb6a59f5c02b8cacaa9c0e6043562e53646;hpb=38b0e2f738a81decc9d32e4d6cac678506fd090b 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)