Merge "refstack client: improvement and fix of TestCase usage"
[functest.git] / functest / opnfv_tests / openstack / snaps / snaps_test_runner.py
index 67cd941..044a0bb 100644 (file)
@@ -5,6 +5,7 @@
 #
 # http://www.apache.org/licenses/LICENSE-2.0
 
+from functest.utils import functest_logger as ft_logger
 from functest.core.pytest_suite_runner import PyTestSuiteRunner
 from functest.opnfv_tests.openstack.snaps import snaps_utils
 from functest.utils import functest_utils
@@ -18,13 +19,15 @@ class SnapsTestRunner(PyTestSuiteRunner):
     creates a VM with a single port with an IPv4 address that is assigned by
     DHCP. This test then validates the expected IP with the actual
     """
-    def __init__(self):
-        super(SnapsTestRunner, self).__init__()
+    def __init__(self, case_name=''):
+        super(SnapsTestRunner, self).__init__(case_name)
 
         self.ext_net_name = snaps_utils.get_ext_net_name()
-
+        self.logger = ft_logger.Logger(self.project_name).getLogger()
         scenario = functest_utils.get_scenario()
 
         self.flavor_metadata = create_flavor.MEM_PAGE_SIZE_ANY
         if 'ovs' in scenario or 'fdio' in scenario:
             self.flavor_metadata = create_flavor.MEM_PAGE_SIZE_LARGE
+
+        self.logger.info("Using flavor metatdata '%s'" % self.flavor_metadata)