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

28 lines
604 B
Python

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_yum_cron_is_installed(host):
yum = host.package("yum-cron")
assert yum.is_installed
def test_yum_cron_running_and_enabled(host):
yum = host.service("yum-cron")
assert yum.is_running
assert yum.is_enabled
def test_yum_cron_custom_cronjob(host):
custom = host.file("/etc/cron.d/x-yum")
assert custom.exists