forked from dbfixtures/pytest-postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_noopexecutor.py
42 lines (37 loc) · 1.4 KB
/
test_noopexecutor.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
"""Test for NoopExecutor."""
from pytest_postgresql.executor import PostgreSQLExecutor
from pytest_postgresql.compat import psycopg
from pytest_postgresql.executor_noop import NoopExecutor
from pytest_postgresql.retry import retry
def test_noproc_version(postgresql_proc: PostgreSQLExecutor) -> None:
"""
Test the way postgresql version is being read.
Version behaves differently for postgresql >= 10 and differently for older ones
"""
postgresql_noproc = NoopExecutor(
postgresql_proc.host,
postgresql_proc.port,
postgresql_proc.user,
postgresql_proc.options,
postgresql_proc.dbname,
)
noproc_version = retry(
lambda: postgresql_noproc.version, # type: ignore[no-any-return]
possible_exception=psycopg.OperationalError,
)
assert postgresql_proc.version == noproc_version
def test_noproc_cached_version(postgresql_proc: PostgreSQLExecutor) -> None:
"""Test that the version is being cached."""
postgresql_noproc = NoopExecutor(
postgresql_proc.host,
postgresql_proc.port,
postgresql_proc.user,
postgresql_proc.options,
postgresql_proc.dbname,
)
ver = retry(
lambda: postgresql_noproc.version, # type: ignore[no-any-return]
possible_exception=psycopg.OperationalError,
)
with postgresql_proc.stopped():
assert ver == postgresql_noproc.version