5 from framework import VppTestCase, VppTestRunner
6 from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath
9 class TestSession(VppTestCase):
10 """ Session Test Case """
14 super(TestSession, cls).setUpClass()
17 super(TestSession, self).setUp()
19 self.vapi.session_enable_disable(is_enabled=1)
20 self.create_loopback_interfaces(2)
24 for i in self.lo_interfaces:
28 tbl = VppIpTable(self, table_id)
31 i.set_table_ip4(table_id)
35 # Configure namespaces
36 self.vapi.app_namespace_add(namespace_id="0",
37 sw_if_index=self.loop0.sw_if_index)
38 self.vapi.app_namespace_add(namespace_id="1",
39 sw_if_index=self.loop1.sw_if_index)
42 for i in self.lo_interfaces:
47 super(TestSession, self).tearDown()
48 self.vapi.session_enable_disable(is_enabled=1)
50 def test_segment_manager_alloc(self):
51 """ Session Segment Manager Multiple Segment Allocation """
53 # Add inter-table routes
54 ip_t01 = VppIpRoute(self, self.loop1.local_ip4, 32,
55 [VppRoutePath("0.0.0.0",
58 ip_t10 = VppIpRoute(self, self.loop0.local_ip4, 32,
59 [VppRoutePath("0.0.0.0",
61 nh_table_id=0)], table_id=1)
62 ip_t01.add_vpp_config()
63 ip_t10.add_vpp_config()
65 # Start builtin server and client with small private segments
66 uri = "tcp://" + self.loop0.local_ip4 + "/1234"
67 error = self.vapi.cli("test echo server appns 0 fifo-size 64 " +
68 "private-segment-size 1m uri " + uri)
70 self.logger.critical(error)
71 self.assertEqual(error.find("failed"), -1)
73 error = self.vapi.cli("test echo client nclients 100 appns 1 " +
74 "no-output fifo-size 64 syn-timeout 2 " +
75 "private-segment-size 1m uri " + uri)
77 self.logger.critical(error)
78 self.assertEqual(error.find("failed"), -1)
83 # Delete inter-table routes
84 ip_t01.remove_vpp_config()
85 ip_t10.remove_vpp_config()
88 class TestSessionUnitTests(VppTestCase):
89 """ Session Unit Tests Case """
92 super(TestSessionUnitTests, self).setUp()
93 self.vapi.session_enable_disable(is_enabled=1)
95 def test_session(self):
96 """ Session Unit Tests """
97 error = self.vapi.cli("test session all")
100 self.logger.critical(error)
101 self.assertEqual(error.find("failed"), -1)
104 super(TestSessionUnitTests, self).tearDown()
105 self.vapi.session_enable_disable(is_enabled=0)
107 if __name__ == '__main__':
108 unittest.main(testRunner=VppTestRunner)