2019-10-18 12:57:23 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
2021-06-07 20:28:27 +00:00
|
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
|
|
).get_hosts("all")
|
2019-10-18 12:57:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_selinux_setup(host):
|
2019-10-18 13:04:04 +00:00
|
|
|
assert host.command.check_output("/usr/sbin/getenforce") == "Enforcing"
|
|
|
|
assert host.package("policycoreutils-python").is_installed
|