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

17 lines
427 B
Python
Raw Normal View History

2019-10-18 14:57:23 +02:00
import os
import testinfra.utils.ansible_runner
import warnings
2019-10-18 14:57:23 +02:00
warnings.filterwarnings("ignore", category=DeprecationWarning)
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']
).get_hosts('all')
2019-10-18 14:57:23 +02:00
def test_selinux_setup(host):
assert host.command.check_output("/usr/sbin/getenforce") == "Enforcing"
assert host.package("policycoreutils-python").is_installed