Files @ 19b29f0c7e7e
Branch filter:

Location: majic-ansible-roles/roles/backup/molecule/default/tests/test_parameters_mandatory.py

branko
MAR-129: Updated backup role for new Ansible and Molecule:

- Fixed linting errors.
- Include top-level linting configuration in tests.
- Moved variables from test playbook into group_vars.
- Updated how the hosts are referenced in tests.
import os

import testinfra.utils.ansible_runner


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


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

    with host.sudo():

        backup_pattern = host.file('/etc/duply/main/patterns/test')

        assert backup_pattern.content == ''


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

    with host.sudo():

        include = host.file('/etc/duply/main/include')

        assert include.content == ''