From bf6a0ac805b3d85d46c8a00164f812c29d93e3f5 Mon Sep 17 00:00:00 2001 From: Nolan Brubaker Date: Fri, 2 Jun 2017 11:18:39 -0400 Subject: [PATCH] Refactor Keystone test to use OpenStackSDK By using OpenStack SDK, the tests are more uniform, and we reduce the direct dependencies we have to install. Change-Id: Ic5ee06367904ba6bc569399432908de1b08233cd --- bowling_ball/rolling_tests.py | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/bowling_ball/rolling_tests.py b/bowling_ball/rolling_tests.py index c8e0f474..91716a63 100755 --- a/bowling_ball/rolling_tests.py +++ b/bowling_ball/rolling_tests.py @@ -148,19 +148,12 @@ class KeystoneTest(ServiceTest): description = 'Obtain a token then a project list to validate it worked' def run(self): + self.get_connection() - auth_url = os.environ['OS_AUTH_URL'] - password = os.environ['OS_PASSWORD'] - - auth = v3.Password(auth_url=auth_url, username="admin", - password=password, project_name="admin", - user_domain_id="default", - project_domain_id="default") - - sess = session.Session(auth=auth) - keystone = key_client.Client(session=sess) - keystone.projects.list() - msg = "Project list retrieved" + projects = self.get_objects('identity', 'projects') + msg = "API reached, no projects found." + if projects: + msg = "Project list retrieved" return msg