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

19 lines
426 B
Python
Raw Normal View History

2019-11-09 16:48:19 +01:00
import os
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
2021-06-07 22:28:35 +02:00
os.environ["MOLECULE_INVENTORY_FILE"]
).get_hosts("all")
2019-11-09 16:48:19 +01:00
def test_cacerts_requirements(host):
base = host.file("/etc/pki/ca-trust/source/anchors")
command = "update-ca-trust"
assert base.exists
assert base.is_directory
assert host.exists(command)
assert host.run(command).rc == 0