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

15 lines
425 B
Python
Raw Normal View History

2019-10-18 14:57:23 +02: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):
assert host.command.check_output('/usr/sbin/getenforce') == 'Enforcing'
assert host.package('policycoreutils-python').is_installed