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, }