Merge "Publish framework presentation"
[functest.git] / functest / opnfv_tests / openstack / snaps / snaps_test_runner.py
1 # Copyright (c) 2015 All rights reserved
2 # This program and the accompanying materials
3 # are made available under the terms of the Apache License, Version 2.0
4 # which accompanies this distribution, and is available at
5 #
6 # http://www.apache.org/licenses/LICENSE-2.0
7
8 from functest.core.pytest_suite_runner import PyTestSuiteRunner
9 from functest.opnfv_tests.openstack.snaps import snaps_utils
10 from functest.utils import functest_utils
11 from functest.utils.constants import CONST
12
13 from snaps.openstack import create_flavor
14 from snaps.openstack.tests import openstack_tests
15
16
17 class SnapsTestRunner(PyTestSuiteRunner):
18     """
19     This test executes the SNAPS Python Test case SimpleHealthCheck which
20     creates a VM with a single port with an IPv4 address that is assigned by
21     DHCP. This test then validates the expected IP with the actual
22     """
23     def __init__(self, **kwargs):
24         super(SnapsTestRunner, self).__init__(**kwargs)
25
26         self.os_creds = openstack_tests.get_credentials(
27             os_env_file=CONST.__getattribute__('openstack_creds'),
28             proxy_settings_str=None, ssh_proxy_cmd=None)
29
30         self.ext_net_name = snaps_utils.get_ext_net_name(self.os_creds)
31         self.use_fip = CONST.__getattribute__('snaps_use_floating_ips')
32         self.use_keystone = CONST.__getattribute__('snaps_use_keystone')
33         scenario = functest_utils.get_scenario()
34
35         self.flavor_metadata = create_flavor.MEM_PAGE_SIZE_ANY
36         if 'ovs' in scenario or 'fdio' in scenario:
37             self.flavor_metadata = create_flavor.MEM_PAGE_SIZE_LARGE
38
39         self.logger.info("Using flavor metadata '%s'", self.flavor_metadata)