2020-05-15 08:34:57 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
import warnings
|
2021-06-07 20:15:10 +00:00
|
|
|
|
2020-05-15 08:34:57 +00:00
|
|
|
warnings.filterwarnings("ignore", category=DeprecationWarning)
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
2021-06-07 20:15:10 +00:00
|
|
|
os.environ['MOLECULE_INVENTORY_FILE']
|
|
|
|
).get_hosts('all')
|
2020-05-15 08:34:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
# TODO: add useful tests
|
|
|
|
def test_hosts_file(host):
|
|
|
|
hosts = host.file("/etc/hosts")
|
|
|
|
|
|
|
|
assert hosts.exists
|