forked from dbfixtures/pytest-postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_executor.py
149 lines (124 loc) · 4.73 KB
/
test_executor.py
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
"""Test various executor behaviours."""
import sys
from typing import Any
from pytest import FixtureRequest
from pkg_resources import parse_version
import pytest
from port_for import get_port
from pytest_postgresql.executor import PostgreSQLExecutor, PostgreSQLUnsupported
from pytest_postgresql.factories import postgresql_proc, postgresql
from pytest_postgresql.compat import connection, psycopg
from pytest_postgresql.config import get_config
from pytest_postgresql.retry import retry
class PatchedPostgreSQLExecutor(PostgreSQLExecutor):
"""PostgreSQLExecutor that always says it's 8.9 version."""
@property
def version(self) -> Any:
"""Overwrite version, to always return highest unsupported version."""
return parse_version("8.9")
def test_unsupported_version(request: FixtureRequest) -> None:
"""Check that the error gets raised on unsupported postgres version."""
config = get_config(request)
port = get_port(config["port"])
assert port is not None
executor = PatchedPostgreSQLExecutor(
executable=config["exec"],
host=config["host"],
port=port,
datadir="/tmp/error",
unixsocketdir=config["unixsocketdir"],
logfile="/tmp/version.error.log",
startparams=config["startparams"],
dbname="random_name",
)
with pytest.raises(PostgreSQLUnsupported):
executor.start()
@pytest.mark.skipif(
sys.platform == "darwin", reason="The default pg_ctl path is for linux, not macos"
)
@pytest.mark.parametrize("locale", ("en_US.UTF-8", "de_DE.UTF-8"))
def test_executor_init_with_password(
request: FixtureRequest,
monkeypatch: pytest.MonkeyPatch,
tmp_path_factory: pytest.TempPathFactory,
locale: str,
) -> None:
"""Test whether the executor initializes properly."""
config = get_config(request)
monkeypatch.setenv("LC_ALL", locale)
port = get_port(config["port"])
assert port is not None
tmpdir = tmp_path_factory.mktemp(f"pytest-postgresql-{request.node.name}")
datadir = tmpdir / f"data-{port}"
datadir.mkdir()
logfile_path = tmpdir / f"postgresql.{port}.log"
executor = PostgreSQLExecutor(
executable=config["exec"],
host=config["host"],
port=port,
datadir=str(datadir),
unixsocketdir=config["unixsocketdir"],
logfile=str(logfile_path),
startparams=config["startparams"],
password="somepassword",
dbname="somedatabase",
)
with executor:
assert executor.running()
psycopg.connect(
dbname=executor.user,
user=executor.user,
password=executor.password,
host=executor.host,
port=executor.port,
)
with pytest.raises(psycopg.OperationalError):
psycopg.connect(
dbname=executor.user,
user=executor.user,
password="bogus",
host=executor.host,
port=executor.port,
)
assert not executor.running()
postgres_with_password = postgresql_proc(password="hunter2")
def test_proc_with_password(
postgres_with_password: PostgreSQLExecutor,
) -> None:
"""Check that password option to postgresql_proc factory is honored."""
assert postgres_with_password.running() is True
# no assertion necessary here; we just want to make sure it connects with
# the password
retry(
lambda: psycopg.connect(
dbname=postgres_with_password.user,
user=postgres_with_password.user,
password=postgres_with_password.password,
host=postgres_with_password.host,
port=postgres_with_password.port,
),
possible_exception=psycopg.OperationalError,
)
with pytest.raises(psycopg.OperationalError):
psycopg.connect(
dbname=postgres_with_password.user,
user=postgres_with_password.user,
password="bogus",
host=postgres_with_password.host,
port=postgres_with_password.port,
)
postgresql_max_conns_proc = postgresql_proc(postgres_options="-N 42")
postgres_max_conns = postgresql("postgresql_max_conns_proc")
def test_postgres_options(postgres_max_conns: connection) -> None:
"""Check that max connections (-N 42) is honored."""
cur = postgres_max_conns.cursor()
cur.execute("SHOW max_connections")
assert cur.fetchone() == ("42",)
postgres_isolation_level = postgresql(
"postgresql_proc", isolation_level=psycopg.IsolationLevel.SERIALIZABLE
)
def test_custom_isolation_level(postgres_isolation_level: connection) -> None:
"""Check that a client fixture with a custom isolation level works."""
cur = postgres_isolation_level.cursor()
cur.execute("SELECT 1")
assert cur.fetchone() == (1,)