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

23 lines
648 B
Python
Raw Normal View History

2019-09-18 17:23:35 +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_ldap_proxy_is_installed(host):
ldap_proxy_server = host.package("openldap-servers")
2019-09-18 21:28:25 +02:00
ldap_proxy_client = host.package("openldap-clients")
2019-09-18 17:23:35 +02:00
assert ldap_proxy_server.is_installed
assert ldap_proxy_client.is_installed
2019-09-18 21:17:52 +02:00
def test_ldap_proxy_running_and_enabled(host):
2019-09-18 21:28:25 +02:00
ldap_proxy = host.service("slapd")
2019-09-18 21:17:52 +02:00
assert ldap_proxy.is_running
assert ldap_proxy.is_enabled