xoxys.postgres/molecule/ec2-centos-7/tests/test_default.py
Robert Kaussow 0b619a71fe
Some checks failed
continuous-integration/drone/push Build is failing
enable molecule tests
2019-06-10 15:05:20 +02:00

27 lines
726 B
Python

import os
import testinfra.utils.ansible_runner
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
def test_postgres_is_installed(host):
ansible_vars = host.ansible.get_variables()
postgres = host.package("postgresql10-server")
assert postgres.is_installed
def test_postgres_running_and_enabled(host):
postgres = host.service("postgresql-10")
assert postgres.is_running
assert postgres.is_enabled
def test_postgres_socket(host):
# Verify the socket is listening for HTTP traffic
assert host.socket("tcp://0.0.0.0:5432").is_listening