mirror of
https://github.com/ceph/ceph
synced 2025-02-09 20:09:53 +00:00
9e926e9927
Also: * Added some more tests * Better validation of drive Groups * Simplified `TestWriteCompletion` Signed-off-by: Sebastian Wagner <sebastian.wagner@suse.com>
70 lines
2.1 KiB
Python
70 lines
2.1 KiB
Python
import json
|
|
import logging
|
|
from tempfile import NamedTemporaryFile
|
|
|
|
from teuthology.exceptions import CommandFailedError
|
|
|
|
from mgr_test_case import MgrTestCase
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class TestOrchestratorCli(MgrTestCase):
|
|
MGRS_REQUIRED = 1
|
|
|
|
def _orch_cmd(self, *args):
|
|
return self.mgr_cluster.mon_manager.raw_cluster_cmd("orchestrator", *args)
|
|
|
|
def _orch_cmd_result(self, *args, **kwargs):
|
|
"""
|
|
superfluous, but raw_cluster_cmd doesn't support kwargs.
|
|
"""
|
|
res = self.mgr_cluster.mon_manager.raw_cluster_cmd_result("orchestrator", *args, **kwargs)
|
|
self.assertEqual(res, 0)
|
|
|
|
|
|
def setUp(self):
|
|
super(TestOrchestratorCli, self).setUp()
|
|
|
|
self._load_module("orchestrator_cli")
|
|
self._load_module("test_orchestrator")
|
|
self._orch_cmd("set", "backend", "test_orchestrator")
|
|
|
|
def test_status(self):
|
|
ret = self._orch_cmd("status")
|
|
self.assertIn("test_orchestrator", ret)
|
|
|
|
def test_device_ls(self):
|
|
ret = self._orch_cmd("device", "ls")
|
|
self.assertIn("localhost:", ret)
|
|
|
|
def test_service_ls(self):
|
|
ret = self._orch_cmd("service", "ls")
|
|
self.assertIn("ceph-mgr", ret)
|
|
|
|
def test_service_action(self):
|
|
self._orch_cmd("service", "reload", "mds", "cephfs")
|
|
self._orch_cmd("service", "stop", "mds", "cephfs")
|
|
self._orch_cmd("service", "start", "mds", "cephfs")
|
|
|
|
def test_service_instance_action(self):
|
|
self._orch_cmd("service-instance", "reload", "mds", "a")
|
|
self._orch_cmd("service-instance", "stop", "mds", "a")
|
|
self._orch_cmd("service-instance", "start", "mds", "a")
|
|
|
|
def test_osd_create(self):
|
|
self._orch_cmd("osd", "create", "*:device")
|
|
self._orch_cmd("osd", "create", "*:device,device2")
|
|
|
|
drive_group = {
|
|
"host_pattern": "*",
|
|
"data_devices": {"paths": ["/dev/sda"]}
|
|
}
|
|
|
|
self._orch_cmd_result("osd", "create", "-i", "-", stdin=json.dumps(drive_group))
|
|
|
|
with self.assertRaises(CommandFailedError):
|
|
self._orch_cmd("osd", "create", "notfound:device")
|
|
|