Files @ eee778bc2d7c
Branch filter:

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

branko
MAR-128: Upgraded tests for ROLE_NAME role:

- Switch to new Molecule configuration.
- Updated set-up playbook to use become: yes.
- Moved some preparatory steps outside of the main playbook (eases
idempotence tests).
- Updated tests to reference the yml inventory file.
- Updated tests to use new fixture (host instead of individual ones).
- Switched to extracting hostname instead of hard-coding it in a
couple of tests.
- Renamed hosts instances to include Debian version in their
hostnames.
- Fixed some linting issues.
import testinfra.utils.ansible_runner

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


def test_connectivity(host):

    with host.sudo():

        ping = host.run('hping3 -S -p 389 -c 1 10.31.127.20')
        assert ping.rc == 0

        ping = host.run('hping3 -S -p 636 -c 1 10.31.127.20')
        assert ping.rc == 0

        ping = host.run('hping3 -S -p 389 -c 1 10.31.127.21')
        assert ping.rc == 0

        ping = host.run('hping3 -S -p 636 -c 1 10.31.127.21')
        assert ping.rc == 0