1
0
mirror of https://github.com/ceph/ceph synced 2025-04-04 23:42:13 +00:00
ceph/qa/tasks/mgr/test_cli.py
Patrick Donnelly d8e839f97c qa: add unit tests for MgrMap down flag
Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
(cherry picked from commit 9ebcbdbed0)
2024-03-26 09:35:35 -04:00

33 lines
1.0 KiB
Python

import logging
from .mgr_test_case import MgrTestCase
log = logging.getLogger(__name__)
class TestCLI(MgrTestCase):
MGRS_REQUIRED = 2
def setUp(self):
super(TestCLI, self).setUp()
self.setup_mgrs()
def test_set_down(self):
"""
That setting the down flag prevents a standby from promoting.
"""
with self.assert_cluster_log("Activating manager daemon", present=False):
self.mgr_cluster.mon_manager.raw_cluster_cmd('mgr', 'set', 'down', 'true')
self.wait_until_true(lambda: self.mgr_cluster.get_active_id() == "", timeout=60)
def test_set_down_off(self):
"""
That removing the down flag allows a standby to promote.
"""
with self.assert_cluster_log("Activating manager daemon"):
self.mgr_cluster.mon_manager.raw_cluster_cmd('mgr', 'set', 'down', 'true')
self.wait_until_true(lambda: self.mgr_cluster.get_active_id() == "", timeout=60)
self.mgr_cluster.mon_manager.raw_cluster_cmd('mgr', 'set', 'down', 'false')