Files @ 0c2178fd95a5
Branch filter:

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

branko
MAR-25: Implemented tests for ldap_client role:

- Added Molecule configuration.
- Added test playbook.
- Fixed issue with mode not including leading zero.
- Implemented a couple of simple tests.
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"