summaryrefslogtreecommitdiffstats
path: root/test/test_oc_interfaces.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_oc_interfaces.py')
-rw-r--r--test/test_oc_interfaces.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/test_oc_interfaces.py b/test/test_oc_interfaces.py
index be87eed..82168f5 100644
--- a/test/test_oc_interfaces.py
+++ b/test/test_oc_interfaces.py
@@ -39,6 +39,9 @@ class TestOcInterfaces(SweetcombTestCase):
self.topology.close_topology()
def test_interface(self):
+
+ self.logger.info("OC_INTERFACE_START_001")
+
name = "host-vpp1"
crud_service = CRUDService()
@@ -67,8 +70,13 @@ class TestOcInterfaces(SweetcombTestCase):
self.assertIsNotNone(p)
self.assertEquals(interface.config.enabled, p.State)
+ self.logger.info("OC_INTERFACE_FINISH_001")
+
@unittest.skip("YDK return error when try set IP address")
def test_interface_ipv4(self):
+
+ self.logger.info("OC_INTERFACE_START_002")
+
name = "host-vpp1"
crud_service = CRUDService()
@@ -94,5 +102,7 @@ class TestOcInterfaces(SweetcombTestCase):
a = self.vppctl.show_address(name)
+ self.logger.info("OC_INTERFACE_FINISH_002")
+
if __name__ == '__main__':
unittest.main(testRunner=SweetcombTestRunner)