Files @ 7c07f17e46ba
Branch filter:

Location: majic-ansible-roles/roles/backup/tests/test_parameters_optional.py

branko
MAR-26: Implemented scaffolding for testing the ldap_server role:

- Fixed role documentation and example for the ldap_server ldap_entries
parameter.
- Fixed missing leading zero when setting mode for deployed files.
- Marked certain tasks for skipping Ansible linting on.
- Fixed invocation of local LDAP commands to use unix socket out of the
box (don't depend on LDAP client configuration).
- Default to state 'present' for ldap_entry (makes things a bit more
readable/clear).
- Added test data for backup and TLS.
- Added dummy default test file.
import testinfra.utils.ansible_runner


testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
    '.molecule/ansible_inventory').get_hosts('parameters-optional')


def test_backup_patterns_content(File, Sudo):
    """
    Tests if content of file containing backup patterns is correct.
    """

    with Sudo():

        backup_pattern = File('/etc/duply/main/patterns/test')

        assert backup_pattern.content == "/etc/hosts\n/etc/ethers\n/var/log"


def test_include_content(File, Sudo):
    """
    Tests if content of assembled include file containing backup patterns is
    correct.
    """

    with Sudo():

        include = File('/etc/duply/main/include')

        assert include.content == "/etc/hosts\n/etc/ethers\n/var/log"