Merge pull request #1545 from ceph/wip-rgw-test

test: add basic testing coverage for the rgw
pull/1951/merge
Sébastien Han 2017-09-26 15:19:10 +02:00 committed by GitHub
commit 39535dd513
1 changed files with 7 additions and 0 deletions

View File

@ -34,6 +34,13 @@ class TestRGWs(object):
daemons = [i for i in json.loads(output)["servicemap"]["services"]["rgw"]["daemons"]]
assert hostname in daemons
@pytest.mark.no_docker
def test_rgw_http_endpoint(self, node, host):
# rgw frontends ip_addr is configured on eth1
ip_addr = host.interface("eth1").addresses[0]
assert host.socket("tcp://{ip_addr}:{port}".format(ip_addr=ip_addr, port=8080)).is_listening
@pytest.mark.docker
def test_docker_rgw_is_up(self, node, host):
hostname = node["vars"]["inventory_hostname"]