xoxys.nginx/molecule/gce-centos-7/tests/test_default.py
Robert Kaussow 47a910f609
Some checks failed
continuous-integration/drone/push Build is failing
add test to resolve http ports
2019-03-25 13:42:56 +01:00

25 lines
643 B
Python

import os
import testinfra.utils.ansible_runner
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
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
def test_nginx_running_and_enabled(host):
nginx = host.service("nginx")
assert nginx.is_running
assert nginx.is_enabled
def test_nginx_ports(host):
localhost = host.addr("127.0.0.1")
assert localhost.port(443).is_reachable
assert localhost.port(80).is_reachable