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

25 lines
643 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
def test_nginx_ports(host):
localhost = host.addr("127.0.0.1")
assert localhost.port(443).is_reachable
assert localhost.port(80).is_reachable