1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
import socket
import subprocess
from typing import Callable
from pydantic import PostgresDsn
from generalresearch.models.custom_types import InternalHostname, PostgresDict
from generalresearch.pg_helper import PostgresConfig
def is_port_open(host: InternalHostname, port: int = 5432, timeout: int = 3):
try:
with socket.create_connection((host, port), timeout=timeout):
return True
except (socket.timeout, ConnectionRefusedError, OSError):
return False
def can_ping(host: InternalHostname):
return (
subprocess.call(
["ping", "-c", "1", str(host)],
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
)
== 0
)
class TestPostgresDSN:
def test_ping(self, postgres_instance_host: InternalHostname):
assert can_ping(host=postgres_instance_host)
def test_port(self, postgres_instance_host: InternalHostname):
assert is_port_open(host=postgres_instance_host)
def test_conn(self, postgres_instance: PostgresDsn):
config = PostgresConfig(
dsn=postgres_instance,
connect_timeout=1,
statement_timeout=1,
)
res = config.execute_sql_query(query="SELECT 1;")
assert len(res) == 1
class TestPostgresDjangoCreation:
def test_ping(self, postgres_instance_dict: PostgresDict):
assert can_ping(host=postgres_instance_dict["host"])
def test_django_creation(
self,
django_db_factory: Callable[..., None],
):
dsn = django_db_factory()
assert isinstance(dsn, PostgresDsn)
def test_django_tables(self, thl_web_rw: PostgresConfig):
res = thl_web_rw.execute_sql_query(query="""
SELECT COUNT(*)
FROM information_schema.tables
WHERE table_schema = 'public';
""")
assert len(res) == 1
assert res[0]["count"] == 56
|