Fix broken code and collect errors on ceph commands

This commit is contained in:
Alex Kavanagh
2020-05-05 15:07:44 +01:00
parent 294fd83e49
commit 3de6251316
2 changed files with 18 additions and 4 deletions
+12 -4
View File
@@ -22,6 +22,7 @@ import zaza.model
from zaza.openstack.utilities import (
generic as generic_utils,
openstack as openstack_utils,
exceptions as zaza_exceptions
)
import zaza.openstack.charm_tests.test_utils as test_utils
@@ -43,7 +44,7 @@ class CinderCephMonTest(test_utils.OpenStackBaseTest):
current_release = openstack_utils.get_os_release()
bionic_train = openstack_utils.get_os_release('bionic_train')
if current_release < bionic_train:
units.extend(zaza.model.get_utils("cinder-ceph",
units.extend(zaza.model.get_units("cinder-ceph",
model_name=self.model_name))
commands = [
@@ -64,7 +65,14 @@ def run_commands(unit_name, commands):
Apply context to commands until all variables have been replaced, then
run the command on the given unit.
"""
errors = []
for cmd in commands:
generic_utils.assertRemoteRunOK(zaza.model.run_on_unit(
unit_name,
cmd))
try:
generic_utils.assertRemoteRunOK(zaza.model.run_on_unit(
unit_name,
cmd))
except Exception as e:
errors.append("unit: {}, command: {}, error: {}"
.format(unit_name, cmd, str(e)))
if errors:
raise zaza_exceptions.CephGenericError("\n".join(errors))
+6
View File
@@ -168,6 +168,12 @@ class CephPoolNotConfigured(Exception):
pass
class CephGenericError(Exception):
"""A generic/other Ceph error occurred."""
pass
class NovaGuestMigrationFailed(Exception):
"""Nova guest migration failed."""