Files @ 0c2178fd95a5
Branch filter:

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

branko
MAR-25: Implemented tests for ldap_client role:

- Added Molecule configuration.
- Added test playbook.
- Fixed issue with mode not including leading zero.
- Implemented a couple of simple tests.
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