2019-06-10 13:05:20 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
2021-06-07 20:28:43 +00:00
|
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
|
|
).get_hosts("all")
|
2019-06-10 13:05:20 +00:00
|
|
|
|
|
|
|
|
2019-10-18 11:18:43 +00:00
|
|
|
def test_postgres_running_and_enabled(host):
|
2023-08-06 14:02:31 +00:00
|
|
|
postgres = host.service("postgres")
|
2019-10-18 11:18:43 +00:00
|
|
|
assert postgres.is_running
|
|
|
|
assert postgres.is_enabled
|
|
|
|
|
2019-06-10 13:05:20 +00:00
|
|
|
|
2022-04-04 19:51:15 +00:00
|
|
|
def test_postgres_auth(host):
|
2023-08-06 14:02:31 +00:00
|
|
|
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
|
|
|
|
)
|
2022-04-04 19:51:15 +00:00
|
|
|
assert login.succeeded
|
|
|
|
|
|
|
|
|
2019-10-18 11:18:43 +00:00
|
|
|
def test_postgres_socket(host):
|
|
|
|
# Verify the socket is listening for HTTP traffic
|
|
|
|
assert host.socket("tcp://127.0.0.1:5432").is_listening
|