Files @ eba5d5d69e4f
Branch filter:

Location: majic-ansible-roles/roles/ldap_client/tests/test_default.py - annotation

branko
MAR-114: Moved set_fact for wsgi_website and php_website roles:

- Moved set_fact for setting application admin, user, and home directory into
defaults/main.yml.
- Updated test playbook for wsgi_website to fixate the ptpython and dnspython
versions (including their dependencies).
- Updated tests for wsgi_website to use new fixated versions for ptpython,
dnspython, and their dependencies.
import testinfra.utils.ansible_runner

testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
    '.molecule/ansible_inventory').get_hosts('all')


def test_installed_packages(Package):
    """
    Tests if correct packages are installed.
    """

    assert Package('ldap-utils').is_installed


def test_ldap_configuration_file(File):
    """
    Tests if LDAP configuration files has been deployed with correct
    permissions.
    """

    config = File('/etc/ldap/ldap.conf')

    assert config.is_file
    assert config.user == 'root'
    assert config.group == 'root'
    assert config.mode == 0o644