xoxys.postgres/molecule/rocky9/tests/test_default.py
Robert Kaussow 17e78db3d3
Some checks failed
continuous-integration/drone/pr Build is failing
refactor: move to podman container setup
2023-08-06 16:02:31 +02:00

27 lines
755 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_running_and_enabled(host):
postgres = host.service("postgres")
assert postgres.is_running
assert postgres.is_enabled
def test_postgres_auth(host):
login = host.run(
"source /etc/containers/systemd/postgres.env;"
"podman exec --env PGPASSWORD=$POSTGRES_PASSWORD systemd-postgres psql -U$POSTGRES_USER -c 'select 1' -q $POSTGRES_DB" # noqa :E501
)
assert login.succeeded
def test_postgres_socket(host):
# Verify the socket is listening for HTTP traffic
assert host.socket("tcp://127.0.0.1:5432").is_listening