tcp: separate unit and throughput tests
[vpp.git] / test / test_tcp.py
index 4a5c9bc..ff23134 100644 (file)
@@ -45,14 +45,6 @@ class TestTCP(VppTestCase):
         self.vapi.session_enable_disable(is_enabled=0)
         super(TestTCP, self).tearDown()
 
-    def test_tcp_unittest(self):
-        """ TCP Unit Tests """
-        error = self.vapi.cli("test tcp all")
-
-        if error:
-            self.logger.critical(error)
-        self.assertEqual(error.find("failed"), -1)
-
     def test_tcp_transfer(self):
         """ TCP echo client/server transfer """
 
@@ -87,5 +79,25 @@ class TestTCP(VppTestCase):
         ip_t01.remove_vpp_config()
         ip_t10.remove_vpp_config()
 
+
+class TestTCPUnitTests(VppTestCase):
+    "TCP Unit Tests"
+
+    def setUp(self):
+        super(TestTCPUnitTests, self).setUp()
+        self.vapi.session_enable_disable(is_enabled=1)
+
+    def tearDown(self):
+        super(TestTCPUnitTests, self).tearDown()
+        self.vapi.session_enable_disable(is_enabled=0)
+
+    def test_tcp_unittest(self):
+        """ TCP Unit Tests """
+        error = self.vapi.cli("test tcp all")
+
+        if error:
+            self.logger.critical(error)
+        self.assertEqual(error.find("failed"), -1)
+
 if __name__ == '__main__':
     unittest.main(testRunner=VppTestRunner)