-
Notifications
You must be signed in to change notification settings - Fork 347
/
Copy pathtest_database.py
363 lines (279 loc) · 12 KB
/
test_database.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
import pytest
from django.db import connection, transaction
from pytest_django.lazy_django import get_django_version
from pytest_django_test.app.models import Item, SecondItem
def db_supports_reset_sequences() -> bool:
"""Return if the current db engine supports `reset_sequences`."""
return (
connection.features.supports_transactions
and connection.features.supports_sequence_reset
)
def test_noaccess() -> None:
with pytest.raises(RuntimeError):
Item.objects.create(name="spam")
with pytest.raises(RuntimeError):
Item.objects.count()
@pytest.fixture
def noaccess() -> None:
with pytest.raises(RuntimeError):
Item.objects.create(name="spam")
with pytest.raises(RuntimeError):
Item.objects.count()
def test_noaccess_fixture(noaccess: None) -> None:
# Setup will fail if this test needs to fail
pass
@pytest.fixture
def non_zero_sequences_counter(db: None) -> None:
"""Ensure that the db's internal sequence counter is > 1.
This is used to test the `reset_sequences` feature.
"""
item_1 = Item.objects.create(name="item_1")
item_2 = Item.objects.create(name="item_2")
item_1.delete()
item_2.delete()
class TestDatabaseFixtures:
"""Tests for the different database fixtures."""
@pytest.fixture(params=["db", "transactional_db", "django_db_reset_sequences"])
def all_dbs(self, request) -> None:
if request.param == "django_db_reset_sequences":
return request.getfixturevalue("django_db_reset_sequences")
elif request.param == "transactional_db":
return request.getfixturevalue("transactional_db")
elif request.param == "db":
return request.getfixturevalue("db")
def test_access(self, all_dbs: None) -> None:
Item.objects.create(name="spam")
def test_clean_db(self, all_dbs: None) -> None:
# Relies on the order: test_access created an object
assert Item.objects.count() == 0
def test_transactions_disabled(self, db: None) -> None:
if not connection.features.supports_transactions:
pytest.skip("transactions required for this test")
assert connection.in_atomic_block
def test_transactions_enabled(self, transactional_db: None) -> None:
if not connection.features.supports_transactions:
pytest.skip("transactions required for this test")
assert not connection.in_atomic_block
def test_transactions_enabled_via_reset_seq(
self, django_db_reset_sequences: None,
) -> None:
if not connection.features.supports_transactions:
pytest.skip("transactions required for this test")
assert not connection.in_atomic_block
def test_django_db_reset_sequences_fixture(
self, db: None, django_testdir, non_zero_sequences_counter: None,
) -> None:
if not db_supports_reset_sequences():
pytest.skip(
"transactions and reset_sequences must be supported "
"by the database to run this test"
)
# The test runs on a database that already contains objects, so its
# id counter is > 1. We check for the ids of newly created objects.
django_testdir.create_test_module(
"""
import pytest
from .app.models import Item
def test_django_db_reset_sequences_requested(
django_db_reset_sequences):
item = Item.objects.create(name='new_item')
assert item.id == 1
"""
)
result = django_testdir.runpytest_subprocess("-v", "--reuse-db")
result.stdout.fnmatch_lines(
["*test_django_db_reset_sequences_requested PASSED*"]
)
@pytest.fixture
def mydb(self, all_dbs: None) -> None:
# This fixture must be able to access the database
Item.objects.create(name="spam")
def test_mydb(self, mydb: None) -> None:
if not connection.features.supports_transactions:
pytest.skip("transactions required for this test")
# Check the fixture had access to the db
item = Item.objects.get(name="spam")
assert item
def test_fixture_clean(self, all_dbs: None) -> None:
# Relies on the order: test_mydb created an object
# See https://github.com/pytest-dev/pytest-django/issues/17
assert Item.objects.count() == 0
@pytest.fixture
def fin(self, request, all_dbs: None) -> None:
# This finalizer must be able to access the database
request.addfinalizer(lambda: Item.objects.create(name="spam"))
def test_fin(self, fin: None) -> None:
# Check finalizer has db access (teardown will fail if not)
pass
@pytest.mark.skipif(get_django_version() < (3, 2), reason="Django >= 3.2 required")
def test_durable_transactions(self, all_dbs: None) -> None:
with transaction.atomic(durable=True):
item = Item.objects.create(name="foo")
assert Item.objects.get() == item
class TestDatabaseFixturesAllOrder:
@pytest.fixture
def fixture_with_db(self, db: None) -> None:
Item.objects.create(name="spam")
@pytest.fixture
def fixture_with_transdb(self, transactional_db: None) -> None:
Item.objects.create(name="spam")
@pytest.fixture
def fixture_with_reset_sequences(self, django_db_reset_sequences: None) -> None:
Item.objects.create(name="spam")
def test_trans(self, fixture_with_transdb: None) -> None:
pass
def test_db(self, fixture_with_db: None) -> None:
pass
def test_db_trans(self, fixture_with_db: None, fixture_with_transdb: None) -> None:
pass
def test_trans_db(self, fixture_with_transdb: None, fixture_with_db: None) -> None:
pass
def test_reset_sequences(
self,
fixture_with_reset_sequences: None,
fixture_with_transdb: None,
fixture_with_db: None,
) -> None:
pass
class TestDatabaseMarker:
"Tests for the django_db marker."
@pytest.mark.django_db
def test_access(self) -> None:
Item.objects.create(name="spam")
@pytest.mark.django_db
def test_clean_db(self) -> None:
# Relies on the order: test_access created an object.
assert Item.objects.count() == 0
@pytest.mark.django_db
def test_transactions_disabled(self) -> None:
if not connection.features.supports_transactions:
pytest.skip("transactions required for this test")
assert connection.in_atomic_block
@pytest.mark.django_db(transaction=False)
def test_transactions_disabled_explicit(self) -> None:
if not connection.features.supports_transactions:
pytest.skip("transactions required for this test")
assert connection.in_atomic_block
@pytest.mark.django_db(transaction=True)
def test_transactions_enabled(self) -> None:
if not connection.features.supports_transactions:
pytest.skip("transactions required for this test")
assert not connection.in_atomic_block
@pytest.mark.django_db
def test_reset_sequences_disabled(self, request) -> None:
marker = request.node.get_closest_marker("django_db")
assert not marker.kwargs
@pytest.mark.django_db(transaction=True, reset_sequences=True)
def test_reset_sequences_enabled(self, request) -> None:
marker = request.node.get_closest_marker("django_db")
assert marker.kwargs["reset_sequences"]
@pytest.mark.django_db(databases=['default', 'replica', 'second'])
def test_databases(self, request) -> None:
marker = request.node.get_closest_marker("django_db")
assert marker.kwargs["databases"] == ['default', 'replica', 'second']
@pytest.mark.django_db(databases=['second'])
def test_second_database(self, request) -> None:
SecondItem.objects.create(name="spam")
@pytest.mark.django_db(databases=['default'])
def test_not_allowed_database(self, request) -> None:
with pytest.raises(AssertionError, match='not allowed'):
SecondItem.objects.count()
with pytest.raises(AssertionError, match='not allowed'):
SecondItem.objects.create(name="spam")
@pytest.mark.django_db(databases=['replica'])
def test_replica_database(self, request) -> None:
Item.objects.using('replica').count()
@pytest.mark.django_db(databases=['replica'])
def test_replica_database_not_allowed(self, request) -> None:
with pytest.raises(AssertionError, match='not allowed'):
Item.objects.count()
@pytest.mark.django_db(transaction=True, databases=['default', 'replica'])
def test_replica_mirrors_default_database(self, request) -> None:
Item.objects.create(name='spam')
Item.objects.using('replica').create(name='spam')
assert Item.objects.count() == 2
assert Item.objects.using('replica').count() == 2
@pytest.mark.django_db(databases='__all__')
def test_all_databases(self, request) -> None:
Item.objects.count()
Item.objects.create(name="spam")
SecondItem.objects.count()
SecondItem.objects.create(name="spam")
def test_unittest_interaction(django_testdir) -> None:
"Test that (non-Django) unittests cannot access the DB."
django_testdir.create_test_module(
"""
import pytest
import unittest
from .app.models import Item
class TestCase_setupClass(unittest.TestCase):
@classmethod
def setUpClass(cls):
Item.objects.create(name='foo')
def test_db_access_1(self):
Item.objects.count() == 1
class TestCase_setUp(unittest.TestCase):
@classmethod
def setUp(cls):
Item.objects.create(name='foo')
def test_db_access_2(self):
Item.objects.count() == 1
class TestCase(unittest.TestCase):
def test_db_access_3(self):
Item.objects.count() == 1
"""
)
result = django_testdir.runpytest_subprocess("-v", "--reuse-db")
result.stdout.fnmatch_lines(
[
"*test_db_access_1 ERROR*",
"*test_db_access_2 FAILED*",
"*test_db_access_3 FAILED*",
"*ERROR at setup of TestCase_setupClass.test_db_access_1*",
'*RuntimeError: Database access not allowed, use the "django_db" mark, '
'or the "db" or "transactional_db" fixtures to enable it.',
]
)
class Test_database_blocking:
def test_db_access_in_conftest(self, django_testdir) -> None:
"""Make sure database access in conftest module is prohibited."""
django_testdir.makeconftest(
"""
from tpkg.app.models import Item
Item.objects.get()
"""
)
result = django_testdir.runpytest_subprocess("-v")
result.stderr.fnmatch_lines(
[
'*RuntimeError: Database access not allowed, use the "django_db" mark, '
'or the "db" or "transactional_db" fixtures to enable it.*'
]
)
def test_db_access_in_test_module(self, django_testdir) -> None:
django_testdir.create_test_module(
"""
from tpkg.app.models import Item
Item.objects.get()
"""
)
result = django_testdir.runpytest_subprocess("-v")
result.stdout.fnmatch_lines(
[
'*RuntimeError: Database access not allowed, use the "django_db" mark, '
'or the "db" or "transactional_db" fixtures to enable it.'
]
)
# TODO: If this is omitted, the error is confusing:
# AttributeError: 'TestDatabaseClassAutoCaching' object has no attribute 'item_1'
@pytest.mark.django_db
class TestDatabaseClassAutoCaching:
@classmethod
def setUpTestData(cls):
cls.item_1 = Item.objects.create()
# But it's not idiomatic for pytest:
def test_foo_c(self):
self.item_1.name = 'foo'
self.item_1.save()
def test_bar_c(self):
assert not self.item_1.name