2019-11-09 15:48:19 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
2021-06-07 20:28:35 +00:00
|
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
|
|
).get_hosts("all")
|
2019-11-09 15:48:19 +00: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
|