xoxys.nginx/molecule/gce-centos-7/tests/test_default.py

30 lines
833 B
Python
Raw Normal View History

2019-02-27 09:37:29 +00:00
import os
import testinfra.utils.ansible_runner
2019-02-28 12:22:58 +00:00
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
2019-02-27 09:37:29 +00:00
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
def test_nginx_is_installed(host):
nginx = host.package("nginx")
assert nginx.is_installed
2019-02-27 09:37:29 +00:00
def test_nginx_running_and_enabled(host):
nginx = host.service("nginx")
assert nginx.is_running
assert nginx.is_enabled
2019-03-25 12:42:56 +00:00
2019-03-25 13:02:28 +00:00
def test_nginx_process(host):
# Verify worker procs are running
master = host.process.get(user="root", comm="nginx")
workers = host.process.filter(ppid=master.pid)
assert len(workers) > 0
def test_nginx_socket(host):
# Verify the socket is listening for HTTP traffic
2019-03-25 13:33:31 +00:00
assert host.socket("tcp://0.0.0.0:80").is_listening