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
Dimitri Savineau 2019-04-16 16:52:42 -04:00 committed by Guillaume Abrioux
parent 85489315fa
commit e83f02ad71
1 changed files with 6 additions and 2 deletions

View File

@ -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(