2020-06-21 20:00:53 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
import warnings
|
2021-06-07 20:15:12 +00:00
|
|
|
|
2020-06-21 20:00:53 +00:00
|
|
|
warnings.filterwarnings("ignore", category=DeprecationWarning)
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
2021-06-07 20:15:12 +00:00
|
|
|
os.environ['MOLECULE_INVENTORY_FILE']
|
|
|
|
).get_hosts('all')
|
2020-06-21 20:00:53 +00:00
|
|
|
|
|
|
|
|
2021-05-15 20:09:29 +00:00
|
|
|
def test_vaultwarden_ldap_compose_file(host):
|
|
|
|
f = host.file('/var/lib/docker/services/vaultwarden_ldap/docker-compose.yml')
|
2020-06-21 20:00:53 +00:00
|
|
|
assert f.exists
|