Merge "Remove tacker library from functest"
[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 from snaps.openstack.utils import neutron_utils
9
10
11 def get_ext_net_name(os_creds):
12     """
13     Returns the first external network name
14     :param: os_creds: an instance of snaps OSCreds object
15     :return:
16     """
17     neutron = neutron_utils.neutron_client(os_creds)
18     ext_nets = neutron_utils.get_external_networks(neutron)
19     return ext_nets[0].name