This commit is contained in:
parent
47a910f609
commit
0b146f9943
@ -18,7 +18,13 @@ def test_nginx_running_and_enabled(host):
|
|||||||
assert nginx.is_running
|
assert nginx.is_running
|
||||||
assert nginx.is_enabled
|
assert nginx.is_enabled
|
||||||
|
|
||||||
def test_nginx_ports(host):
|
def test_nginx_process(host):
|
||||||
localhost = host.addr("127.0.0.1")
|
# Verify worker procs are running
|
||||||
assert localhost.port(443).is_reachable
|
master = host.process.get(user="root", comm="nginx")
|
||||||
assert localhost.port(80).is_reachable
|
workers = host.process.filter(ppid=master.pid)
|
||||||
|
assert len(workers) > 0
|
||||||
|
|
||||||
|
def test_nginx_socket(host):
|
||||||
|
# Verify the socket is listening for HTTP traffic
|
||||||
|
assert host.socket("tcp://0.0.0.0:80").is_listening
|
||||||
|
assert host.socket("tcp://0.0.0.0:443").is_listening
|
||||||
|
Loading…
Reference in New Issue
Block a user