aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests/openstack/api
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-10-21 12:32:15 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-10-21 14:06:10 +0200
commit87f5db13d594075903face649f877478edb3b285 (patch)
treec87cc204bde7d44bc760d2f21b7df7064d9297cb /functest/opnfv_tests/openstack/api
parentbed550d1971dbeb7d2f237d9630f24b4bc49b0b6 (diff)
List neutron exts and service providers in connection_check
It eases debugging as well [1]. [1] https://artifacts.opnfv.org/logs/functest/lf-pod1/2018-10-20_12-23-41/patrole/tempest-report.html Change-Id: Ie9ddc280fc239c5e0887347d434839940e7a3240 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/opnfv_tests/openstack/api')
-rw-r--r--functest/opnfv_tests/openstack/api/connection_check.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/api/connection_check.py b/functest/opnfv_tests/openstack/api/connection_check.py
index a7a780f67..48d06211b 100644
--- a/functest/opnfv_tests/openstack/api/connection_check.py
+++ b/functest/opnfv_tests/openstack/api/connection_check.py
@@ -32,12 +32,14 @@ class ConnectionCheck(testcase.TestCase):
self.cloud = None
def run(self, **kwargs):
+ # pylint: disable=protected-access
"""Run all read operations to check connections"""
status = testcase.TestCase.EX_RUN_ERROR
try:
assert self.cloud
self.start_time = time.time()
- for func in ["list_aggregates", "list_domains", "list_endpoints",
+ for func in ["get_network_extensions",
+ "list_aggregates", "list_domains", "list_endpoints",
"list_floating_ip_pools", "list_floating_ips",
"list_hypervisors", "list_keypairs", "list_networks",
"list_ports", "list_role_assignments", "list_roles",
@@ -45,6 +47,10 @@ class ConnectionCheck(testcase.TestCase):
"list_subnets"]:
self.__logger.debug(
"%s: %s", func, getattr(self.cloud, func)())
+ data = self.cloud._network_client.get("/service-providers.json")
+ self.__logger.debug(
+ "list_service_providers: %s",
+ self.cloud._get_and_munchify('service_providers', data))
self.result = 100
status = testcase.TestCase.EX_OK
except Exception: # pylint: disable=broad-except