summaryrefslogtreecommitdiffstats
path: root/test/vpp_igmp.py
diff options
context:
space:
mode:
authorJakub Grajciar <jgrajcia@cisco.com>2017-12-08 16:28:42 +0100
committerChris Luke <chris_luke@comcast.com>2018-03-19 15:53:19 +0000
commit7b867a8e491357058d37838091ed67a2e77bce2c (patch)
tree8f9373e4e41e930d0f20e90305168a1ab80dd714 /test/vpp_igmp.py
parent489cc829224407a51ca8d612c92bd78c30eaf660 (diff)
IGMP plugin
- host mode: igmp_listen - API to signal that the host has joined an (S,G) - route mode: igmp_enable - API to enable the reception of host IGMP messages igmp_event - API to report the host join/leave from an (S,G) Change-Id: Id180ec27dee617d33ab3088f5dcf6125d3aa9c8f Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com>
Diffstat (limited to 'test/vpp_igmp.py')
-rw-r--r--test/vpp_igmp.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/test/vpp_igmp.py b/test/vpp_igmp.py
new file mode 100644
index 00000000000..d1a308878c5
--- /dev/null
+++ b/test/vpp_igmp.py
@@ -0,0 +1,39 @@
+
+from vpp_object import VppObject
+
+
+class IgmpSG():
+ def __init__(self, saddr, gaddr):
+ self.saddr = saddr
+ self.gaddr = gaddr
+
+
+class VppIgmpConfig(VppObject):
+ def __init__(self, test, sw_if_index, sg=None):
+ self._test = test
+ self.sw_if_index = sw_if_index
+ if isinstance(sg, list):
+ self.sg_list = sg
+ else:
+ self.sg_list = []
+ self.sg_list.append(sg)
+
+ def add_sg(self, sg):
+ self.sg.append(sg)
+
+ def add_vpp_config(self):
+ for e in self.sg_list:
+ self._test.vapi.igmp_listen(
+ 1, self.sw_if_index, e.saddr, e.gaddr)
+
+ def remove_vpp_config(self):
+ self._test.vapi.igmp_clear_interface(self.sw_if_index)
+
+ def __str__(self):
+ return self.object_id()
+
+ def object_id(self):
+ return "%s:%d" % (self.sg_list, self.sw_if_index)
+
+ def query_vpp_config(self):
+ return self._test.vapi.igmp_dump()