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

14 lines
410 B
Python
Raw Normal View History

2021-10-03 14:32:57 +00:00
import os
import testinfra.utils.ansible_runner
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"
2022-01-26 21:00:36 +00:00
assert host.package("libselinux-python").is_installed
assert host.package("policycoreutils-python-utils").is_installed