mirror of https://github.com/ceph/ceph-ansible.git
test_mons: test mon listening on port 3300
Since nautilus and msgr2 the monitors also bind on port 3300 in
addition of 6789.
This patch updates test_mons to reflect that change.
Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
(cherry picked from commit c84a74592a
)
pull/3884/head
parent
85489315fa
commit
e83f02ad71
|
@ -8,8 +8,12 @@ class TestMons(object):
|
|||
def test_ceph_mon_package_is_installed(self, node, host):
|
||||
assert host.package("ceph-mon").is_installed
|
||||
|
||||
def test_mon_listens_on_6789(self, node, host, setup):
|
||||
assert host.socket("tcp://%s:6789" % setup["address"]).is_listening
|
||||
@pytest.mark.parametrize("mon_port", [3300, 6789])
|
||||
def test_mon_listens(self, node, host, setup, mon_port):
|
||||
assert host.socket("tcp://{address}:{port}".format(
|
||||
address=setup["address"],
|
||||
port=mon_port
|
||||
)).is_listening
|
||||
|
||||
def test_mon_service_is_running(self, node, host):
|
||||
service_name = "ceph-mon@{hostname}".format(
|
||||
|
|
Loading…
Reference in New Issue