Files @ cde12eec8256
Branch filter:

Location: majic-ansible-roles/roles/wsgi_website/molecule/default/tests/conftest.py

branko
MAR-192: Added support for Debian 12 Bookworm to wsgi_website role:

- Update list of Python packages that are installed for running the
tests.
- Paramterise Python version testing (depends on distribution
release). Use similar construct like for the php_website role.
from collections import namedtuple

import pytest


@pytest.fixture
def python_info(host):
    """
    Helper fixture used to define what the expected Python details
    are (paths, package names etc) based on Debian release.

    Currently supports:

    - Debian 11 (Bullseye)
    - Debian 12 (Bookworm)

    Resulting information can be accessed through returned named tuple
    with the following properties:

    - python_version (version of installed Python interpreter)
    """

    PythonInfo = namedtuple('PythonInfo', 'python_version')

    ansible_facts = host.ansible("setup")["ansible_facts"]
    ansible_distribution_release = ansible_facts['ansible_distribution_release']

    if ansible_distribution_release == 'bullseye':
        info = PythonInfo(python_version="3.9.2")
    elif ansible_distribution_release == 'bookworm':
        info = PythonInfo(python_version="3.11.2")
    else:
        raise Exception('The php_info pytest fixture does not support Debian release: %s' % ansible_distribution_release)

    return info