forked from piccolo-orm/piccolo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.py
475 lines (404 loc) · 13 KB
/
base.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
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
from __future__ import annotations
import asyncio
import sys
import typing as t
from unittest import TestCase
from unittest.mock import MagicMock
import pytest
from piccolo.apps.schema.commands.generate import RowMeta
from piccolo.engine.cockroach import CockroachEngine
from piccolo.engine.finder import engine_finder
from piccolo.engine.postgres import PostgresEngine
from piccolo.engine.sqlite import SQLiteEngine
from piccolo.table import (
Table,
create_db_tables_sync,
create_table_class,
drop_db_tables_sync,
)
from piccolo.utils.sync import run_sync
ENGINE = engine_finder()
def engine_version_lt(version: float) -> bool:
return ENGINE is not None and run_sync(ENGINE.get_version()) < version
def is_running_postgres() -> bool:
return type(ENGINE) is PostgresEngine
def is_running_sqlite() -> bool:
return type(ENGINE) is SQLiteEngine
def is_running_cockroach() -> bool:
return type(ENGINE) is CockroachEngine
postgres_only = pytest.mark.skipif(
not is_running_postgres(), reason="Only running for Postgres"
)
sqlite_only = pytest.mark.skipif(
not is_running_sqlite(), reason="Only running for SQLite"
)
cockroach_only = pytest.mark.skipif(
not is_running_cockroach(), reason="Only running for Cockroach"
)
unix_only = pytest.mark.skipif(
sys.platform.startswith("win"), reason="Only running on a Unix system"
)
def engines_only(*engine_names: str):
"""
Test decorator. Choose what engines can run a test.
For example::
@engines_only('cockroach', 'postgres')
def test_unknown_column_type(...):
self.assertTrue(...)
"""
if ENGINE:
current_engine_name = ENGINE.engine_type
if current_engine_name not in engine_names:
def wrapper(func):
return pytest.mark.skip(
f"Not running for {current_engine_name}"
)(func)
return wrapper
else:
def wrapper(func):
return func
return wrapper
else:
raise ValueError("Engine not found")
def engines_skip(*engine_names: str):
"""
Test decorator. Choose what engines can run a test.
For example::
@engines_skip('cockroach', 'postgres')
def test_unknown_column_type(...):
self.assertTrue(...)
"""
if ENGINE:
current_engine_name = ENGINE.engine_type
if current_engine_name in engine_names:
def wrapper(func):
return pytest.mark.skip(
f"Not yet available for {current_engine_name}"
)(func)
return wrapper
else:
def wrapper(func):
return func
return wrapper
else:
raise ValueError("Engine not found")
def engine_is(*engine_names: str):
"""
Assert branching. Choose what engines can run an assert.
If branching becomes too complex, make a new test with
@engines_only() or engines_skip()
Example
def test_unknown_column_type(...):
if engine_is('cockroach', 'sqlite'):
self.assertTrue(...)
"""
if ENGINE:
current_engine_name = ENGINE.engine_type
if current_engine_name not in engine_names:
return False
else:
return True
else:
raise ValueError("Engine not found")
class AsyncMock(MagicMock):
"""
Async MagicMock for python 3.7+.
This is a workaround for the fact that MagicMock is not async compatible in
Python 3.7.
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# this makes asyncio.iscoroutinefunction(AsyncMock()) return True
self._is_coroutine = asyncio.coroutines._is_coroutine
async def __call__(self, *args, **kwargs):
return super(AsyncMock, self).__call__(*args, **kwargs)
class DBTestCase(TestCase):
"""
Using raw SQL where possible, otherwise the tests are too reliant on other
Piccolo code.
"""
def run_sync(self, query):
_Table = create_table_class(class_name="_Table")
return _Table.raw(query).run_sync()
def table_exists(self, tablename: str) -> bool:
_Table: t.Type[Table] = create_table_class(
class_name=tablename.upper(), class_kwargs={"tablename": tablename}
)
return _Table.table_exists().run_sync()
###########################################################################
# Postgres specific utils
def get_postgres_column_definition(
self, tablename: str, column_name: str, schema: str = "public"
) -> RowMeta:
query = """
SELECT {columns} FROM information_schema.columns
WHERE table_name = '{tablename}'
AND table_catalog = 'piccolo'
AND table_schema = '{schema}'
AND column_name = '{column_name}'
""".format(
columns=RowMeta.get_column_name_str(),
tablename=tablename,
schema=schema,
column_name=column_name,
)
response = self.run_sync(query)
if len(response) > 0:
return RowMeta(**response[0])
else:
raise ValueError("No such column")
def get_postgres_column_type(
self, tablename: str, column_name: str
) -> str:
"""
Fetches the column type as a string, from the database.
"""
return self.get_postgres_column_definition(
tablename=tablename, column_name=column_name
).data_type.upper()
def get_postgres_is_nullable(self, tablename, column_name: str) -> bool:
"""
Fetches whether the column is defined as nullable, from the database.
"""
return (
self.get_postgres_column_definition(
tablename=tablename, column_name=column_name
).is_nullable.upper()
== "YES"
)
def get_postgres_varchar_length(
self, tablename, column_name: str
) -> t.Optional[int]:
"""
Fetches whether the column is defined as nullable, from the database.
"""
return self.get_postgres_column_definition(
tablename=tablename, column_name=column_name
).character_maximum_length
###########################################################################
def create_tables(self):
assert ENGINE is not None
if ENGINE.engine_type in ("postgres", "cockroach"):
self.run_sync(
"""
CREATE TABLE manager (
id SERIAL PRIMARY KEY,
name VARCHAR(50)
);"""
)
self.run_sync(
"""
CREATE TABLE band (
id SERIAL PRIMARY KEY,
name VARCHAR(50),
manager INTEGER REFERENCES manager,
popularity SMALLINT
);"""
)
self.run_sync(
"""
CREATE TABLE ticket (
id SERIAL PRIMARY KEY,
price NUMERIC(5,2)
);"""
)
self.run_sync(
"""
CREATE TABLE poster (
id SERIAL PRIMARY KEY,
content TEXT
);"""
)
self.run_sync(
"""
CREATE TABLE shirt (
id SERIAL PRIMARY KEY,
size VARCHAR(1)
);"""
)
elif ENGINE.engine_type == "sqlite":
self.run_sync(
"""
CREATE TABLE manager (
id INTEGER PRIMARY KEY,
name VARCHAR(50)
);"""
)
self.run_sync(
"""
CREATE TABLE band (
id INTEGER PRIMARY KEY,
name VARCHAR(50),
manager INTEGER REFERENCES manager,
popularity SMALLINT
);"""
)
self.run_sync(
"""
CREATE TABLE ticket (
id SERIAL PRIMARY KEY,
price NUMERIC(5,2)
);"""
)
self.run_sync(
"""
CREATE TABLE poster (
id SERIAL PRIMARY KEY,
content TEXT
);"""
)
self.run_sync(
"""
CREATE TABLE shirt (
id SERIAL PRIMARY KEY,
size VARCHAR(1)
);"""
)
else:
raise Exception("Unrecognised engine")
def insert_row(self):
assert ENGINE is not None
if ENGINE.engine_type == "cockroach":
id = self.run_sync(
"""
INSERT INTO manager (
name
) VALUES (
'Guido'
) RETURNING id;"""
)
self.run_sync(
f"""
INSERT INTO band (
name,
manager,
popularity
) VALUES (
'Pythonistas',
{id[0]["id"]},
1000
);"""
)
else:
self.run_sync(
"""
INSERT INTO manager (
name
) VALUES (
'Guido'
);"""
)
self.run_sync(
"""
INSERT INTO band (
name,
manager,
popularity
) VALUES (
'Pythonistas',
1,
1000
);"""
)
def insert_rows(self):
assert ENGINE is not None
if ENGINE.engine_type == "cockroach":
id = self.run_sync(
"""
INSERT INTO manager (
name
) VALUES (
'Guido'
),(
'Graydon'
),(
'Mads'
) RETURNING id;"""
)
self.run_sync(
f"""
INSERT INTO band (
name,
manager,
popularity
) VALUES (
'Pythonistas',
{id[0]["id"]},
1000
),(
'Rustaceans',
{id[1]["id"]},
2000
),(
'CSharps',
{id[2]["id"]},
10
);"""
)
else:
self.run_sync(
"""
INSERT INTO manager (
name
) VALUES (
'Guido'
),(
'Graydon'
),(
'Mads'
);"""
)
self.run_sync(
"""
INSERT INTO band (
name,
manager,
popularity
) VALUES (
'Pythonistas',
1,
1000
),(
'Rustaceans',
2,
2000
),(
'CSharps',
3,
10
);"""
)
def insert_many_rows(self, row_count=10000):
"""
Insert lots of data - for testing retrieval of large numbers of rows.
"""
values = ["('name_{}')".format(i) for i in range(row_count)]
values_string = ",".join(values)
self.run_sync(f"INSERT INTO manager (name) VALUES {values_string};")
def drop_tables(self):
assert ENGINE is not None
if ENGINE.engine_type in ("postgres", "cockroach"):
self.run_sync("DROP TABLE IF EXISTS band CASCADE;")
self.run_sync("DROP TABLE IF EXISTS manager CASCADE;")
self.run_sync("DROP TABLE IF EXISTS ticket CASCADE;")
self.run_sync("DROP TABLE IF EXISTS poster CASCADE;")
self.run_sync("DROP TABLE IF EXISTS shirt CASCADE;")
elif ENGINE.engine_type == "sqlite":
self.run_sync("DROP TABLE IF EXISTS band;")
self.run_sync("DROP TABLE IF EXISTS manager;")
self.run_sync("DROP TABLE IF EXISTS ticket;")
self.run_sync("DROP TABLE IF EXISTS poster;")
self.run_sync("DROP TABLE IF EXISTS shirt;")
def setUp(self):
self.create_tables()
def tearDown(self):
self.drop_tables()
class TableTest(TestCase):
"""
Used for tests where we need to create Piccolo tables.
"""
tables: t.List[t.Type[Table]]
def setUp(self) -> None:
create_db_tables_sync(*self.tables)
def tearDown(self) -> None:
drop_db_tables_sync(*self.tables)