xoxys.sshd/molecule/default/tests/test_default.py

17 lines
372 B
Python
Raw Normal View History

2019-11-02 19:10:39 +01:00
import os
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
2021-06-07 22:28:14 +02:00
os.environ["MOLECULE_INVENTORY_FILE"]
).get_hosts("all")
2019-11-02 19:10:39 +01:00
def test_sshd_config_file(host):
sshd = host.file("/etc/ssh/sshd_config")
assert sshd.exists
assert sshd.user == "root"
assert sshd.group == "root"
2019-11-02 20:07:47 +01:00
assert sshd.mode == 0o600