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

14 lines
404 B
Python
Raw Normal View History

2019-10-18 14:57:23 +02:00
import os
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
2021-06-07 22:28:27 +02:00
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("libselinux-python").is_installed
assert host.package("policycoreutils-python").is_installed