Merge "Added test cases for running the Python Tests included with SNAPS."
[functest.git] / functest / opnfv_tests / openstack / snaps / snaps_utils.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 import functest.utils.functest_utils as ft_utils
9 from snaps.openstack.tests import openstack_tests
10 from snaps.openstack.utils import neutron_utils
11
12
13 def get_ext_net_name():
14     """
15     Returns the first external network name
16     :return:
17     """
18     os_env_file = ft_utils.get_functest_config('general.openstack.creds')
19     os_creds = openstack_tests.get_credentials(os_env_file=os_env_file)
20     neutron = neutron_utils.neutron_client(os_creds)
21     ext_nets = neutron_utils.get_external_networks(neutron)
22     return ext_nets[0]['network']['name']