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

25 lines
595 B
Python
Raw Normal View History

2019-11-03 22:40:04 +01:00
import os
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
2021-06-07 22:28:11 +02:00
os.environ["MOLECULE_INVENTORY_FILE"]
).get_hosts("all")
2019-11-03 22:40:04 +01:00
2019-11-03 22:58:31 +01:00
def test_sudoers_file(host):
sudoers = host.file("/etc/sudoers")
assert sudoers.exists
assert sudoers.user == "root"
assert sudoers.group == "root"
assert sudoers.mode == 0o440
def test_sudoers_content(host):
sudoers = host.file("/etc/sudoers")
assert sudoers.contains("/sbin:/bin:/usr/sbin:/usr/bin")
assert sudoers.contains("!visiblepw")
assert sudoers.contains("XAUTHORITY")