forked from dbfixtures/pytest-postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_janitor.py
63 lines (52 loc) · 2.25 KB
/
test_janitor.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
"""Database Janitor tests."""
import sys
from unittest.mock import patch, MagicMock
from typing import Any
import pytest
from pkg_resources import parse_version
from pytest_postgresql.janitor import DatabaseJanitor
VERSION = parse_version("10")
@pytest.mark.parametrize("version", (VERSION, 10, "10"))
def test_version_cast(version: Any) -> None:
"""Test that version is cast to Version object."""
janitor = DatabaseJanitor("user", "host", "1234", "database_name", version)
assert janitor.version == VERSION
@patch("pytest_postgresql.janitor.psycopg.connect")
def test_cursor_selects_postgres_database(connect_mock: MagicMock) -> None:
"""Test that the cursor requests the postgres database."""
janitor = DatabaseJanitor("user", "host", "1234", "database_name", 10)
with janitor.cursor():
connect_mock.assert_called_once_with(
dbname="postgres", user="user", password=None, host="host", port="1234"
)
@patch("pytest_postgresql.janitor.psycopg.connect")
def test_cursor_connects_with_password(connect_mock: MagicMock) -> None:
"""Test that the cursor requests the postgres database."""
janitor = DatabaseJanitor("user", "host", "1234", "database_name", 10, "some_password")
with janitor.cursor():
connect_mock.assert_called_once_with(
dbname="postgres", user="user", password="some_password", host="host", port="1234"
)
@pytest.mark.skipif(
sys.version_info < (3, 8), reason="Unittest call_args.kwargs was introduced since python 3.8"
)
@pytest.mark.parametrize(
"load_database", ("tests.loader.load_database", "tests.loader:load_database")
)
@patch("pytest_postgresql.janitor.psycopg.connect")
def test_janitor_populate(connect_mock: MagicMock, load_database: str) -> None:
"""
Test that the cursor requests the postgres database.
load_database tries to connect to database, which triggers mocks.
"""
call_kwargs = {
"host": "host",
"port": "1234",
"user": "user",
"dbname": "database_name",
"password": "some_password",
}
janitor = DatabaseJanitor(version=10, **call_kwargs) # type: ignore[arg-type]
janitor.load(load_database)
assert connect_mock.called
assert connect_mock.call_args.kwargs == call_kwargs