From 72e1f180369e40a059be66d931e30b18fee01e21 Mon Sep 17 00:00:00 2001 From: Nolan Brubaker Date: Thu, 1 Jun 2017 11:18:55 -0400 Subject: [PATCH] Add Cinder API test Poll the cinder API for a list of known volumes Change-Id: Ie6a854edb276a0ee2e3066035a700af239924e57 --- bowling_ball/rolling_tests.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/bowling_ball/rolling_tests.py b/bowling_ball/rolling_tests.py index 10006799..c8e0f474 100755 --- a/bowling_ball/rolling_tests.py +++ b/bowling_ball/rolling_tests.py @@ -237,6 +237,20 @@ class NeutronTest(ServiceTest): return msg +class CinderTest(ServiceTest): + service_name = 'cinder' + description = 'Query for a list of volumes' + + def run(self): + volumes = self.get_objects('block_store', 'volumes') + + msg = 'API reached, no volumes found' + if volumes: + msg = 'Volume list received' + + return msg + + class TestRunner(object): """Run a test in a loop, with the option to gracefully exit""" stop_now = False @@ -328,7 +342,8 @@ available_tests = { 'keystone': KeystoneTest, 'glance': GlanceTest, 'nova': NovaTest, - 'neutron': NeutronTest + 'neutron': NeutronTest, + 'cinder': CinderTest, }