Files @ b6f7eccea487
Branch filter:

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

branko
MAR-117: Renamed ldap_entry and ldap_permissions modules:

- Renamed ldap_entry module to m_ldap_entry.
- Renamed ldap_permissions module to m_ldap_permissions.
- Renames done to avoid collisions with official modules (at least for
ldap_entry).
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"