From a30e0c35f248cc9225e628e3a64723b2184d6087 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Wed, 10 Jul 2019 22:13:37 +0200 Subject: Allow scenarios without external network MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It allows creating testcases leveraging on Functest scenarios without external network. Then Rally can verify network providers by only skipping NovaServers.boot_server_associate_and_dissociate_floating_ip Change-Id: I07a9348214f7557195c7201466f7e37b2b980206 Signed-off-by: Cédric Ollivier --- functest/opnfv_tests/openstack/rally/blacklist.yaml | 5 +++++ functest/opnfv_tests/openstack/rally/rally.py | 3 +++ 2 files changed, 8 insertions(+) (limited to 'functest/opnfv_tests/openstack') diff --git a/functest/opnfv_tests/openstack/rally/blacklist.yaml b/functest/opnfv_tests/openstack/rally/blacklist.yaml index 77c514245..beed15cb9 100644 --- a/functest/opnfv_tests/openstack/rally/blacklist.yaml +++ b/functest/opnfv_tests/openstack/rally/blacklist.yaml @@ -28,3 +28,8 @@ functionality: - no_net_trunk_service tests: - '^NeutronTrunk' + - + functions: + - no_floating_ip + tests: + - NovaServers.boot_server_associate_and_dissociate_floating_ip diff --git a/functest/opnfv_tests/openstack/rally/rally.py b/functest/opnfv_tests/openstack/rally/rally.py index 98b368b0d..efc2e784f 100644 --- a/functest/opnfv_tests/openstack/rally/rally.py +++ b/functest/opnfv_tests/openstack/rally/rally.py @@ -66,6 +66,7 @@ class RallyBase(singlevm.VmReady2): visibility = 'public' shared_network = True + allow_no_fip = True def __init__(self, **kwargs): """Initialize RallyBase object.""" @@ -334,6 +335,8 @@ class RallyBase(singlevm.VmReady2): func_list.append("no_migration") if not self._network_trunk_supported(): func_list.append("no_net_trunk_service") + if not self.ext_net: + func_list.append("no_floating_ip") if 'functionality' in black_list_yaml.keys(): for item in black_list_yaml['functionality']: -- cgit 1.2.3-korg