2019-02-27 09:37:29 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|
|
|
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
|
|
|
|
|
|
|
|
|
2019-02-28 09:00:08 +00:00
|
|
|
def test_nginx_is_installed(host):
|
|
|
|
nginx = host.package("nginx")
|
|
|
|
assert nginx.is_installed
|
2019-02-27 09:37:29 +00:00
|
|
|
|
2019-02-28 09:00:08 +00:00
|
|
|
def test_nginx_running_and_enabled(host):
|
|
|
|
nginx = host.service("nginx")
|
|
|
|
assert nginx.is_running
|
|
|
|
assert nginx.is_enabled
|