xoxys.yum/molecule/ec2-centos-7/tests/test_default.py

26 lines
602 B
Python
Raw Normal View History

2019-05-26 17:43:37 +02: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_yum_cron_is_installed(host):
yum = host.package("yum-cron")
assert yum.is_installed
2019-06-09 13:39:19 +02:00
2019-06-19 12:06:23 +02:00
def test_yum_cron_running_and_enabled(host):
2019-05-26 17:43:37 +02:00
yum = host.service("yum-cron")
assert yum.is_running
assert yum.is_enabled
2019-06-19 12:06:23 +02:00
def test_yum_cron_custom_cronjob(host):
custom = host.file("/etc/cron.d/x-yum")
assert custom.exists