session: extend connect api for internal apps
Change-Id: Ie4c5cfc4c97acb321a46b4df589dc44de1b616ba Signed-off-by: Florin Coras <fcoras@cisco.com>
This commit is contained in:

committed by
Damjan Marion

parent
75b39f8711
commit
5665cedf57
@ -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)
|
||||
|
Reference in New Issue
Block a user