Files @ eba5d5d69e4f
Branch filter:

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

branko
MAR-114: Moved set_fact for wsgi_website and php_website roles:

- Moved set_fact for setting application admin, user, and home directory into
defaults/main.yml.
- Updated test playbook for wsgi_website to fixate the ptpython and dnspython
versions (including their dependencies).
- Updated tests for wsgi_website to use new fixated versions for ptpython,
dnspython, and their dependencies.
import testinfra.utils.ansible_runner


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


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 == ''


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 == ''