-
Notifications
You must be signed in to change notification settings - Fork 498
Expand file tree
/
Copy pathtest_writer.py
More file actions
541 lines (480 loc) · 18 KB
/
Copy pathtest_writer.py
File metadata and controls
541 lines (480 loc) · 18 KB
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
from __future__ import annotations
import functools
import textwrap
from enum import Enum, IntEnum
from pathlib import Path
import pytest
from tortoise import fields
from tortoise.indexes import Index, PartialIndex
from tortoise.migrations.constraints import UniqueConstraint
from tortoise.migrations.operations import (
AddConstraint,
AddIndex,
AlterField,
CreateModel,
RenameField,
RunPython,
)
from tortoise.migrations.writer import MigrationWriter
class Status(IntEnum):
"""Status enum for testing IntEnumField."""
ACTIVE = 1
INACTIVE = 2
class Role(str, Enum):
"""Role enum for testing CharEnumField."""
ADMIN = "admin"
USER = "user"
def _prepare_migration_package(tmp_path: Path, app_label: str) -> str:
package_dir = tmp_path / app_label
migrations_dir = package_dir / "migrations"
migrations_dir.mkdir(parents=True)
(package_dir / "__init__.py").write_text("", encoding="ascii")
(migrations_dir / "__init__.py").write_text("", encoding="ascii")
return f"{app_label}.migrations"
def _write_migration(
tmp_path: Path,
monkeypatch,
name: str,
operations,
expected: str,
) -> None:
module_path = _prepare_migration_package(tmp_path, "app")
monkeypatch.syspath_prepend(str(tmp_path))
writer = MigrationWriter(
name,
"app",
operations,
migrations_module=module_path,
)
migration_path = writer.write()
content = migration_path.read_text(encoding="ascii")
assert content == expected
def test_writer_format_create_model_basic(tmp_path: Path, monkeypatch) -> None:
operations = [
CreateModel(
name="Widget",
fields=[
("id", fields.IntField(primary_key=True)),
("name", fields.CharField(max_length=100)),
],
)
]
expected = textwrap.dedent(
"""\
from tortoise import fields, migrations
from tortoise.migrations import operations as ops
class Migration(migrations.Migration):
operations = [
ops.CreateModel(
name='Widget',
fields=[
('id', fields.IntField(generated=True, primary_key=True, unique=True, db_index=True)),
('name', fields.CharField(max_length=100)),
],
),
]
"""
)
_write_migration(tmp_path, monkeypatch, "0001_initial", operations, expected)
def test_writer_format_rename_and_alter(tmp_path: Path, monkeypatch) -> None:
operations = [
RenameField(model_name="Widget", old_name="title", new_name="name"),
AlterField(
model_name="Widget",
name="name",
field=fields.CharField(max_length=120, null=True),
),
]
expected = textwrap.dedent(
"""\
from tortoise import fields, migrations
from tortoise.migrations import operations as ops
class Migration(migrations.Migration):
operations = [
ops.RenameField(
model_name='Widget',
old_name='title',
new_name='name',
),
ops.AlterField(
model_name='Widget',
name='name',
field=fields.CharField(null=True, max_length=120),
),
]
"""
)
_write_migration(tmp_path, monkeypatch, "0002_rename_alter", operations, expected)
def test_writer_format_options_indexes_constraints(tmp_path: Path, monkeypatch) -> None:
operations = [
CreateModel(
name="Widget",
fields=[
("id", fields.IntField(primary_key=True)),
("name", fields.CharField(max_length=100)),
("status", fields.CharField(max_length=20)),
],
options={
"unique_together": (("name",),),
"indexes": [
Index(fields=("name",), name="idx_widget_name"),
PartialIndex(
fields=("status",), name="idx_widget_status", condition={"active": True}
),
],
"constraints": [
UniqueConstraint(fields=("name", "status"), name="uniq_widget_name_status"),
],
},
),
AddIndex("Widget", Index(fields=("name",), name="idx_widget_name")),
AddConstraint("Widget", UniqueConstraint(fields=("name",), name="uniq_widget_name")),
]
expected = textwrap.dedent(
"""\
from tortoise import fields, migrations
from tortoise.indexes import Index, PartialIndex
from tortoise.migrations import operations as ops
from tortoise.migrations.constraints import UniqueConstraint
class Migration(migrations.Migration):
operations = [
ops.CreateModel(
name='Widget',
fields=[
('id', fields.IntField(generated=True, primary_key=True, unique=True, db_index=True)),
('name', fields.CharField(max_length=100)),
('status', fields.CharField(max_length=20)),
],
options={'unique_together': (('name',),), 'indexes': [Index(fields=['name'], name='idx_widget_name'), PartialIndex(fields=['status'], name='idx_widget_status', condition={'active': True})], 'constraints': [UniqueConstraint(fields=('name', 'status'), name='uniq_widget_name_status')]},
),
ops.AddIndex(
model_name='Widget',
index=Index(fields=['name'], name='idx_widget_name'),
),
ops.AddConstraint(
model_name='Widget',
constraint=UniqueConstraint(fields=('name',), name='uniq_widget_name'),
),
]
"""
)
_write_migration(tmp_path, monkeypatch, "0003_options", operations, expected)
def test_writer_handles_tuple_indexes_in_options(tmp_path: Path, monkeypatch) -> None:
"""Tuple-style indexes in options should be normalised to Index objects without crashing."""
operations = [
CreateModel(
name="Token",
fields=[
("id", fields.IntField(primary_key=True)),
("user_id", fields.IntField()),
("revoked_at", fields.DatetimeField(null=True)),
],
options={
"indexes": [
("user_id", "revoked_at"),
],
},
),
]
module_path = _prepare_migration_package(tmp_path, "app")
monkeypatch.syspath_prepend(str(tmp_path))
writer = MigrationWriter(
"0001_initial",
"app",
operations,
migrations_module=module_path,
)
content = writer.as_string()
assert "Index(fields=['user_id', 'revoked_at'])" in content
assert "from tortoise.indexes import Index" in content
def test_writer_renders_fk_field(tmp_path: Path, monkeypatch) -> None:
operations = [
CreateModel(
name="Author",
fields=[("id", fields.IntField(primary_key=True))],
),
CreateModel(
name="Post",
fields=[
("id", fields.IntField(primary_key=True)),
("author", fields.ForeignKeyField("app.Author", related_name="posts")),
],
),
]
expected = textwrap.dedent(
"""\
from tortoise import fields, migrations
from tortoise.fields.base import OnDelete
from tortoise.migrations import operations as ops
class Migration(migrations.Migration):
operations = [
ops.CreateModel(
name='Author',
fields=[
('id', fields.IntField(generated=True, primary_key=True, unique=True, db_index=True)),
],
),
ops.CreateModel(
name='Post',
fields=[
('id', fields.IntField(generated=True, primary_key=True, unique=True, db_index=True)),
('author', fields.ForeignKeyField('app.Author', db_constraint=True, related_name='posts', on_delete=OnDelete.CASCADE)),
],
),
]
"""
)
_write_migration(tmp_path, monkeypatch, "0004_fk", operations, expected)
def test_writer_excludes_fk_source_field(tmp_path: Path, monkeypatch) -> None:
operations = [
CreateModel(
name="Post",
fields=[
("id", fields.IntField(primary_key=True)),
("author", fields.ForeignKeyField("app.Author", related_name="posts")),
("author_id", fields.IntField(source_field="author_id")),
],
)
]
expected = textwrap.dedent(
"""\
from tortoise import fields, migrations
from tortoise.fields.base import OnDelete
from tortoise.migrations import operations as ops
class Migration(migrations.Migration):
operations = [
ops.CreateModel(
name='Post',
fields=[
('id', fields.IntField(generated=True, primary_key=True, unique=True, db_index=True)),
('author', fields.ForeignKeyField('app.Author', db_constraint=True, related_name='posts', on_delete=OnDelete.CASCADE)),
],
),
]
"""
)
_write_migration(tmp_path, monkeypatch, "0005_fk_source", operations, expected)
def test_writer_serializes_on_delete_enum(tmp_path: Path, monkeypatch) -> None:
operations = [
CreateModel(
name="Post",
fields=[
("id", fields.IntField(primary_key=True)),
(
"author",
fields.ForeignKeyField(
"app.Author",
related_name="posts",
on_delete=fields.OnDelete.SET_NULL,
null=True,
),
),
],
)
]
expected = textwrap.dedent(
"""\
from tortoise import fields, migrations
from tortoise.fields.base import OnDelete
from tortoise.migrations import operations as ops
class Migration(migrations.Migration):
operations = [
ops.CreateModel(
name='Post',
fields=[
('id', fields.IntField(generated=True, primary_key=True, unique=True, db_index=True)),
('author', fields.ForeignKeyField('app.Author', null=True, db_constraint=True, related_name='posts', on_delete=OnDelete.SET_NULL)),
],
),
]
"""
)
_write_migration(tmp_path, monkeypatch, "0006_enum", operations, expected)
def test_writer_skips_missing_db_index(tmp_path: Path, monkeypatch) -> None:
operations = [
CreateModel(
name="Message",
fields=[("body", fields.TextField())],
)
]
expected = textwrap.dedent(
"""\
from tortoise import fields, migrations
from tortoise.migrations import operations as ops
class Migration(migrations.Migration):
operations = [
ops.CreateModel(
name='Message',
fields=[
('body', fields.TextField(unique=False)),
],
),
]
"""
)
_write_migration(tmp_path, monkeypatch, "0007_textfield", operations, expected)
def test_writer_rejects_lambda_default(tmp_path: Path, monkeypatch) -> None:
operations = [
AlterField(
model_name="Widget",
name="name",
field=fields.CharField(max_length=120, default=lambda: "x"),
)
]
module_path = _prepare_migration_package(tmp_path, "app")
monkeypatch.syspath_prepend(str(tmp_path))
writer = MigrationWriter(
"0004_lambda",
"app",
operations,
migrations_module=module_path,
)
with pytest.raises(ValueError, match="Cannot serialize lambda"):
writer.as_string()
def _default_value() -> str:
return "ok"
def test_writer_allows_partial_default(tmp_path: Path, monkeypatch) -> None:
operations = [
AlterField(
model_name="Widget",
name="name",
field=fields.CharField(max_length=120, default=functools.partial(_default_value)),
)
]
module_path = _prepare_migration_package(tmp_path, "app")
monkeypatch.syspath_prepend(str(tmp_path))
writer = MigrationWriter(
"0005_partial",
"app",
operations,
migrations_module=module_path,
)
content = writer.as_string()
assert "functools.partial" in content
def test_writer_rejects_partial_lambda(tmp_path: Path, monkeypatch) -> None:
operations = [
AlterField(
model_name="Widget",
name="name",
field=fields.CharField(max_length=120, default=functools.partial(lambda: "x")),
)
]
module_path = _prepare_migration_package(tmp_path, "app")
monkeypatch.syspath_prepend(str(tmp_path))
writer = MigrationWriter(
"0006_partial_lambda",
"app",
operations,
migrations_module=module_path,
)
with pytest.raises(ValueError, match="lambda"):
writer.as_string()
def test_writer_rejects_local_function_default(tmp_path: Path, monkeypatch) -> None:
def _local_default() -> str:
return "local"
operations = [
AlterField(
model_name="Widget",
name="name",
field=fields.CharField(max_length=120, default=_local_default),
)
]
module_path = _prepare_migration_package(tmp_path, "app")
monkeypatch.syspath_prepend(str(tmp_path))
writer = MigrationWriter(
"0007_local_default",
"app",
operations,
migrations_module=module_path,
)
with pytest.raises(ValueError, match="local function"):
writer.as_string()
def test_writer_handles_one_to_one_field(tmp_path: Path, monkeypatch) -> None:
"""Test that OneToOneField is rendered without unique=True (it's implicit)."""
operations = [
CreateModel(
name="Profile",
fields=[
("id", fields.IntField(pk=True)),
(
"user",
fields.OneToOneField(
"app.User", related_name="profile", on_delete=fields.CASCADE
),
),
],
),
]
expected = textwrap.dedent(
"""\
from tortoise import fields, migrations
from tortoise.fields.base import OnDelete
from tortoise.migrations import operations as ops
class Migration(migrations.Migration):
operations = [
ops.CreateModel(
name='Profile',
fields=[
('id', fields.IntField(generated=True, primary_key=True, unique=True, db_index=True)),
('user', fields.OneToOneField('app.User', db_constraint=True, related_name='profile', on_delete=OnDelete.CASCADE)),
],
),
]
"""
)
_write_migration(tmp_path, monkeypatch, "0009_one_to_one", operations, expected)
def test_writer_handles_enum_fields(tmp_path: Path, monkeypatch) -> None:
"""Test that IntEnumField and CharEnumField are rendered correctly (not as FieldInstance)."""
operations = [
CreateModel(
name="Entity",
fields=[
("id", fields.IntField(pk=True)),
("status", fields.IntEnumField(Status, default=Status.ACTIVE)), # type: ignore[list-item]
("role", fields.CharEnumField(Role)), # type: ignore[list-item]
],
),
]
# The migration should use fields.IntEnumField and fields.CharEnumField
# NOT fields.IntEnumFieldInstance or fields.CharEnumFieldInstance
expected = textwrap.dedent(
"""\
from tests.migrations.test_writer import Role, Status
from tortoise import fields, migrations
from tortoise.migrations import operations as ops
class Migration(migrations.Migration):
operations = [
ops.CreateModel(
name='Entity',
fields=[
('id', fields.IntField(generated=True, primary_key=True, unique=True, db_index=True)),
('status', fields.IntEnumField(default=Status.ACTIVE, description='ACTIVE: 1\\nINACTIVE: 2', enum_type=Status, generated=False)),
('role', fields.CharEnumField(description='ADMIN: admin\\nUSER: user', enum_type=Role, max_length=5)),
],
),
]
"""
)
_write_migration(tmp_path, monkeypatch, "0010_enum_fields", operations, expected)
def _runpython_forward(apps, schema_editor) -> None:
_ = (apps, schema_editor)
def _runpython_reverse(apps, schema_editor) -> None:
_ = (apps, schema_editor)
def test_writer_format_runpython(tmp_path: Path, monkeypatch) -> None:
operations = [RunPython(_runpython_forward, reverse_code=_runpython_reverse, atomic=False)]
expected = textwrap.dedent(
"""\
from tests.migrations.test_writer import _runpython_forward, _runpython_reverse
from tortoise import migrations
from tortoise.migrations import operations as ops
class Migration(migrations.Migration):
operations = [
ops.RunPython(
code=_runpython_forward,
reverse_code=_runpython_reverse,
atomic=False,
),
]
"""
)
_write_migration(tmp_path, monkeypatch, "0008_runpython", operations, expected)