Merge "Use functest repo variable"
[functest.git] / functest / opnfv_tests / openstack / snaps / snaps_utils.py
1 #!/usr/bin/env python
2
3 # Copyright (c) 2015 All rights reserved
4 # This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9
10 """Some common utils wrapping snaps functions """
11
12 from functest.utils import config
13 from functest.utils import constants
14 from functest.utils import env
15
16 from snaps.openstack.tests import openstack_tests
17 from snaps.openstack.utils import neutron_utils, nova_utils
18
19
20 def get_ext_net_name(os_creds):
21     """
22     Returns the configured external network name or
23     the first retrieved external network name
24     :param: os_creds: an instance of snaps OSCreds object
25     :return:
26     """
27     neutron = neutron_utils.neutron_client(os_creds)
28     ext_nets = neutron_utils.get_external_networks(neutron)
29     if env.get('EXTERNAL_NETWORK'):
30         extnet_config = env.get('EXTERNAL_NETWORK')
31         for ext_net in ext_nets:
32             if ext_net.name == extnet_config:
33                 return extnet_config
34     return ext_nets[0].name if ext_nets else ""
35
36
37 def get_active_compute_cnt(os_creds):
38     """
39     Returns the number of active compute servers
40     :param: os_creds: an instance of snaps OSCreds object
41     :return: the number of active compute servers
42     """
43     nova = nova_utils.nova_client(os_creds)
44     computes = nova_utils.get_availability_zone_hosts(nova, zone_name='nova')
45     return len(computes)
46
47
48 def get_credentials(proxy_settings_str=None, ssh_proxy_cmd=None):
49     """
50     Returns snaps OSCreds object instance
51     :param: proxy_settings_str: proxy settings string <host>:<port>
52     :param: ssh_proxy_cmd: the SSH proxy command for the environment
53     :return: an instance of snaps OSCreds object
54     """
55     creds_override = None
56     if hasattr(config.CONF, 'snaps_os_creds_override'):
57         creds_override = getattr(config.CONF, 'snaps_os_creds_override')
58     os_creds = openstack_tests.get_credentials(
59         os_env_file=constants.ENV_FILE, proxy_settings_str=proxy_settings_str,
60         ssh_proxy_cmd=ssh_proxy_cmd, overrides=creds_override)
61     return os_creds