Files @ 3c03c2ea9d2a
Branch filter:

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

branko
MAR-128: Upgraded tests for bootstrap role:

- Switch to new Molecule configuration.
- Updated set-up playbook to use become: yes.
- Moved some preparatory steps outside of the main playbook (eases
idempotence tests).
- Updated tests to reference the yml inventory file.
- Updated tests to use new fixture (host instead of individual ones).
- Fixed some linting issues.
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