2019-10-18 12:57:23 +00:00
|
|
|
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_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
|