Files @ 8a6ebeaabb26
Branch filter:

Location: majic-ansible-roles/roles/ldap_server/tests/test_client.py - annotation

branko
MAR-125: Eliminated a couple of warnings:

- Use the file module when cleaning-up the /etc/duply/main/gnupg directory.
- Mark the bind_password in m_ldap_entry and m_ldap_permissions as no_log
parameters.
import testinfra.utils.ansible_runner

testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
    '.molecule/ansible_inventory').get_hosts('client')


def test_connectivity(Command, Sudo):

    with Sudo():

        ping = Command('hping3 -S -p 389 -c 1 10.31.127.10')
        assert ping.rc == 0

        ping = Command('hping3 -S -p 636 -c 1 10.31.127.10')
        assert ping.rc == 0

        ping = Command('hping3 -S -p 389 -c 1 10.31.127.11')
        assert ping.rc == 0

        ping = Command('hping3 -S -p 636 -c 1 10.31.127.11')
        assert ping.rc == 0