Files @ 772c56cb8d3e
Branch filter:

Location: majic-ansible-roles/roles/ldap_server/molecule/default/tests/test_deprecated.py - annotation

branko
MAR-239: Dropped support for Debian 11 Bullseye from the ldap_client role.
import os

import testinfra.utils.ansible_runner


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


def test_server_admin_entry_absent(host):
    """
    Tests if the explicit admin entry is absent from directory tree.
    """

    with host.sudo():
        ldapsearch = host.run('ldapsearch -H ldapi:/// -Q -LLL -Y EXTERNAL -b dc=local cn=admin dn')

        assert ldapsearch.rc == 0
        assert ldapsearch.stdout.strip() == ''