X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_session.py;h=94218d08e8e8470609ce78c3a40ff026715d3462;hb=61717cc38;hp=55541b70527b9ee8ba207b41862125c6e524c847;hpb=d5c60b96a3fd93916fc4af5c8d6d25625c28242e;p=vpp.git diff --git a/test/test_session.py b/test/test_session.py index 55541b70527..94218d08e8e 100644 --- a/test/test_session.py +++ b/test/test_session.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import unittest @@ -13,6 +13,10 @@ class TestSession(VppTestCase): def setUpClass(cls): super(TestSession, cls).setUpClass() + @classmethod + def tearDownClass(cls): + super(TestSession, cls).tearDownClass() + def setUp(self): super(TestSession, self).setUp() @@ -33,10 +37,10 @@ class TestSession(VppTestCase): table_id += 1 # Configure namespaces - self.vapi.app_namespace_add(namespace_id="0", - sw_if_index=self.loop0.sw_if_index) - self.vapi.app_namespace_add(namespace_id="1", - sw_if_index=self.loop1.sw_if_index) + self.vapi.app_namespace_add_del(namespace_id="0", + sw_if_index=self.loop0.sw_if_index) + self.vapi.app_namespace_add_del(namespace_id="1", + sw_if_index=self.loop1.sw_if_index) def tearDown(self): for i in self.lo_interfaces: @@ -47,14 +51,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 """ @@ -76,14 +72,14 @@ class TestSession(VppTestCase): "private-segment-size 1m uri " + uri) if error: self.logger.critical(error) - self.assertEqual(error.find("failed"), -1) + self.assertNotIn("failed", error) error = self.vapi.cli("test echo client nclients 100 appns 1 " + "no-output fifo-size 64 syn-timeout 2 " + "private-segment-size 1m uri " + uri) if error: self.logger.critical(error) - self.assertEqual(error.find("failed"), -1) + self.assertNotIn("failed", error) if self.vpp_dead: self.assert_equal(0) @@ -92,5 +88,59 @@ class TestSession(VppTestCase): ip_t01.remove_vpp_config() ip_t10.remove_vpp_config() + +class TestSessionUnitTests(VppTestCase): + """ Session Unit Tests Case """ + + @classmethod + def setUpClass(cls): + super(TestSessionUnitTests, cls).setUpClass() + + @classmethod + def tearDownClass(cls): + super(TestSessionUnitTests, cls).tearDownClass() + + 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.assertNotIn("failed", error) + + def tearDown(self): + super(TestSessionUnitTests, self).tearDown() + self.vapi.session_enable_disable(is_enabled=0) + + +class TestSvmFifoUnitTests(VppTestCase): + """ SVM Fifo Unit Tests Case """ + + @classmethod + def setUpClass(cls): + super(TestSvmFifoUnitTests, cls).setUpClass() + + @classmethod + def tearDownClass(cls): + super(TestSvmFifoUnitTests, cls).tearDownClass() + + def setUp(self): + super(TestSvmFifoUnitTests, self).setUp() + + def test_svm_fifo(self): + """ SVM Fifo Unit Tests """ + error = self.vapi.cli("test svm fifo all") + + if error: + self.logger.critical(error) + self.assertNotIn("failed", error) + + def tearDown(self): + super(TestSvmFifoUnitTests, self).tearDown() + if __name__ == '__main__': unittest.main(testRunner=VppTestRunner)