This commit is contained in:
parent
5240a7d2d3
commit
8115ad2dd5
@ -13,19 +13,21 @@ def test_nginx_is_installed(host):
|
|||||||
nginx = host.package("nginx")
|
nginx = host.package("nginx")
|
||||||
assert nginx.is_installed
|
assert nginx.is_installed
|
||||||
|
|
||||||
|
|
||||||
def test_nginx_running_and_enabled(host):
|
def test_nginx_running_and_enabled(host):
|
||||||
nginx = host.service("nginx")
|
nginx = host.service("nginx")
|
||||||
assert nginx.is_running
|
assert nginx.is_running
|
||||||
assert nginx.is_enabled
|
assert nginx.is_enabled
|
||||||
|
|
||||||
|
|
||||||
def test_nginx_process(host):
|
def test_nginx_process(host):
|
||||||
# Verify worker procs are running
|
# Verify worker procs are running
|
||||||
master = host.process.get(user="root", comm="nginx")
|
master = host.process.get(user="root", comm="nginx")
|
||||||
workers = host.process.filter(ppid=master.pid)
|
workers = host.process.filter(ppid=master.pid)
|
||||||
assert len(workers) > 0
|
assert len(workers) > 0
|
||||||
|
|
||||||
|
|
||||||
def test_nginx_socket(host):
|
def test_nginx_socket(host):
|
||||||
# Verify the socket is listening for HTTP traffic
|
# 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:80").is_listening
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user