session: extend connect api for internal apps

Change-Id: Ie4c5cfc4c97acb321a46b4df589dc44de1b616ba
Signed-off-by: Florin Coras <fcoras@cisco.com>
This commit is contained in:
Florin Coras
2018-10-25 18:03:45 -07:00
committed by Damjan Marion
parent 75b39f8711
commit 5665cedf57
18 changed files with 438 additions and 155 deletions

View File

@ -47,14 +47,6 @@ class TestSession(VppTestCase):
super(TestSession, self).tearDown()
self.vapi.session_enable_disable(is_enabled=1)
def test_session(self):
""" Session Unit Tests """
error = self.vapi.cli("test session all")
if error:
self.logger.critical(error)
self.assertEqual(error.find("failed"), -1)
def test_segment_manager_alloc(self):
""" Session Segment Manager Multiple Segment Allocation """
@ -92,5 +84,25 @@ class TestSession(VppTestCase):
ip_t01.remove_vpp_config()
ip_t10.remove_vpp_config()
class TestSessionUnitTests(VppTestCase):
""" Session Unit Tests Case """
def setUp(self):
super(TestSessionUnitTests, self).setUp()
self.vapi.session_enable_disable(is_enabled=1)
def test_session(self):
""" Session Unit Tests """
error = self.vapi.cli("test session all")
if error:
self.logger.critical(error)
self.assertEqual(error.find("failed"), -1)
def tearDown(self):
super(TestSessionUnitTests, self).tearDown()
self.vapi.session_enable_disable(is_enabled=0)
if __name__ == '__main__':
unittest.main(testRunner=VppTestRunner)