xoxys.selinux/molecule/default/tests/test_default.py

15 lines
425 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_selinux_setup(host):
assert host.command.check_output('/usr/sbin/getenforce') == 'Enforcing'
assert host.package('policycoreutils-python').is_installed