2019-11-02 18:10:39 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
import warnings
|
|
|
|
warnings.filterwarnings("ignore", category=DeprecationWarning)
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|
|
|
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
|
|
|
|
|
|
|
|
|
|
|
|
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 18:12:20 +00:00
|
|
|
assert oct(sshd.mode) == "0600"
|