Robert Kaussow
6b093ce920
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: Robert Kaussow <xoxys@rknet.org> Co-committed-by: Robert Kaussow <xoxys@rknet.org>
24 lines
601 B
Python
24 lines
601 B
Python
import os
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
).get_hosts("all")
|
|
|
|
|
|
def test_postgres_is_installed(host):
|
|
postgres = host.package("postgresql12-server")
|
|
assert postgres.is_installed
|
|
|
|
|
|
def test_postgres_running_and_enabled(host):
|
|
postgres = host.service("postgresql-12")
|
|
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://127.0.0.1:5432").is_listening
|