Files @ f1b75f1d4b5e
Branch filter:

Location: majic-ansible-roles/roles/bootstrap/molecule/default/tests/test_parameters_optional.py

branko
MAR-132: Add support for Debian 9 (Stretch) to ldap_server role:

- Updated Molecule tests to cover Debian 9 as well.
- Remove the ss utility instead of renaming it when preparing for
tests, and make sure the netstat utility is available.
- Duplicate private key/certificate for mandatory parameters testing.
import os

import testinfra.utils.ansible_runner


testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
    os.environ['MOLECULE_INVENTORY_FILE']).get_hosts(['parameters-optional'])


def test_authorized_keys(host):
    """
    Tests if Ansible user authorized_keys has been set-up correctly.
    """

    with host.sudo():

        ssh_key = open('tests/data/ansible_key.pub', 'read').read().strip()
        authorized_keys = host.file('/home/ansible/.ssh/authorized_keys')

        assert authorized_keys.is_file
        assert ssh_key in authorized_keys.content


def test_root_authorised_keys(host):
    """
    Tests if Ansible key been removed from root's authorized keys.
    """

    with host.sudo():

        ssh_key = open('tests/data/ansible_key.pub', 'read').read().strip()

        assert ssh_key not in host.file('/root/.ssh/authorized_keys').content