tests: fix `test_rgw_is_up` test

The data structure seems to have been modified in ceph@master (quincy).

This commit update the test accordingly.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit b8080bac41)
pull/6385/head
Guillaume Abrioux 2021-03-23 09:04:51 +01:00
parent fb75fce4fa
commit 439cb79e3e
1 changed files with 8 additions and 8 deletions

View File

@ -36,14 +36,14 @@ class TestRGWs(object):
cluster=cluster
)
output = host.check_output(cmd)
daemons = [i for i in json.loads(
output)["servicemap"]["services"]["rgw"]["daemons"]]
for i in range(int(node["radosgw_num_instances"])):
instance_name = "{hostname}.rgw{seq}".format(
hostname=hostname,
seq=i
)
assert instance_name in daemons
keys = [i for i in json.loads(
output)["servicemap"]["services"]["rgw"]["daemons"].keys()]
keys.remove('summary')
daemons = json.loads(output)["servicemap"]["services"]["rgw"]["daemons"]
hostnames = []
for key in keys:
hostnames.append(daemons[key]['metadata']['hostname'])
@pytest.mark.no_docker
def test_rgw_http_endpoint(self, node, host, setup):