forked from coleifer/peewee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprefetch_tests.py
495 lines (427 loc) · 18.1 KB
/
prefetch_tests.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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
from peewee import *
from .base import get_in_memory_db
from .base import requires_models
from .base import ModelTestCase
from .base import TestModel
class Person(TestModel):
name = TextField()
class Relationship(TestModel):
from_person = ForeignKeyField(Person, backref='relationships')
to_person = ForeignKeyField(Person, backref='related_to')
class Note(TestModel):
person = ForeignKeyField(Person, backref='notes')
content = TextField()
class NoteItem(TestModel):
note = ForeignKeyField(Note, backref='items')
content = TextField()
class Like(TestModel):
person = ForeignKeyField(Person, backref='likes')
note = ForeignKeyField(Note, backref='likes')
class Flag(TestModel):
note = ForeignKeyField(Note, backref='flags')
is_spam = BooleanField()
class Category(TestModel):
name = TextField()
parent = ForeignKeyField('self', backref='children', null=True)
class Package(TestModel):
barcode = TextField(unique=True)
class PackageItem(TestModel):
name = TextField()
package = ForeignKeyField(Package, backref='items', field=Package.barcode)
class TestPrefetch(ModelTestCase):
database = get_in_memory_db()
requires = [Person, Note, NoteItem, Like, Flag]
def create_test_data(self):
data = {
'huey': (
('meow', ('meow-1', 'meow-2', 'meow-3')),
('purr', ()),
('hiss', ('hiss-1', 'hiss-2'))),
'mickey': (
('woof', ()),
('bark', ('bark-1', 'bark-2'))),
'zaizee': (),
}
for name, notes in sorted(data.items()):
person = Person.create(name=name)
for note, items in notes:
note = Note.create(person=person, content=note)
for item in items:
NoteItem.create(note=note, content=item)
Flag.create(note=Note.get(Note.content == 'purr'), is_spam=True)
Flag.create(note=Note.get(Note.content == 'woof'), is_spam=True)
Like.create(note=Note.get(Note.content == 'meow'),
person=Person.get(Person.name == 'mickey'))
Like.create(note=Note.get(Note.content == 'woof'),
person=Person.get(Person.name == 'huey'))
def setUp(self):
super(TestPrefetch, self).setUp()
self.create_test_data()
def accumulate_results(self, query, sort_items=False):
accum = []
for person in query:
notes = []
for note in person.notes:
items = []
for item in note.items:
items.append(item.content)
if sort_items:
items.sort()
notes.append((note.content, items))
if sort_items:
notes.sort()
accum.append((person.name, notes))
return accum
def test_prefetch_simple(self):
with self.assertQueryCount(3):
people = Person.select().order_by(Person.name)
query = people.prefetch(Note, NoteItem)
accum = self.accumulate_results(query, sort_items=True)
self.assertEqual(accum, [
('huey', [
('hiss', ['hiss-1', 'hiss-2']),
('meow', ['meow-1', 'meow-2', 'meow-3']),
('purr', [])]),
('mickey', [
('bark', ['bark-1', 'bark-2']),
('woof', [])]),
('zaizee', []),
])
def test_prefetch_filter(self):
with self.assertQueryCount(3):
people = Person.select().order_by(Person.name)
notes = (Note
.select()
.where(Note.content.not_in(('hiss', 'meow', 'woof')))
.order_by(Note.content.desc()))
items = NoteItem.select().where(~NoteItem.content.endswith('-2'))
query = prefetch(people, notes, items)
self.assertEqual(self.accumulate_results(query), [
('huey', [('purr', [])]),
('mickey', [('bark', ['bark-1'])]),
('zaizee', []),
])
def test_prefetch_reverse(self):
with self.assertQueryCount(2):
people = Person.select().order_by(Person.name)
notes = Note.select().order_by(Note.content)
query = prefetch(notes, people)
accum = [(note.content, note.person.name) for note in query]
self.assertEqual(accum, [
('bark', 'mickey'),
('hiss', 'huey'),
('meow', 'huey'),
('purr', 'huey'),
('woof', 'mickey')])
def test_prefetch_reverse_with_parent_join(self):
with self.assertQueryCount(2):
notes = (Note
.select(Note, Person)
.join(Person)
.order_by(Note.content))
items = NoteItem.select().order_by(NoteItem.content.desc())
query = prefetch(notes, items)
accum = [(note.person.name,
note.content,
[item.content for item in note.items]) for note in query]
self.assertEqual(accum, [
('mickey', 'bark', ['bark-2', 'bark-1']),
('huey', 'hiss', ['hiss-2', 'hiss-1']),
('huey', 'meow', ['meow-3', 'meow-2', 'meow-1']),
('huey', 'purr', []),
('mickey', 'woof', []),
])
def test_prefetch_multi_depth(self):
people = Person.select().order_by(Person.name)
notes = Note.select().order_by(Note.content)
items = NoteItem.select().order_by(NoteItem.content)
flags = Flag.select().order_by(Flag.id)
LikePerson = Person.alias('lp')
likes = (Like
.select(Like, LikePerson.name)
.join(LikePerson, on=(Like.person == LikePerson.id)))
# Five queries:
# - person (outermost query)
# - notes for people
# - items for notes
# - flags for notes
# - likes for notes (includes join to person)
with self.assertQueryCount(5):
query = prefetch(people, notes, items, flags, likes)
accum = []
for person in query:
notes = []
for note in person.notes:
items = [item.content for item in note.items]
likes = [like.person.name for like in note.likes]
flags = [flag.is_spam for flag in note.flags]
notes.append((note.content, items, likes, flags))
accum.append((person.name, notes))
self.assertEqual(accum, [
('huey', [
('hiss', ['hiss-1', 'hiss-2'], [], []),
('meow', ['meow-1', 'meow-2', 'meow-3'], ['mickey'], []),
('purr', [], [], [True])]),
('mickey', [
('bark', ['bark-1', 'bark-2'], [], []),
('woof', [], ['huey'], [True])]),
(u'zaizee', []),
])
def test_prefetch_multi_depth_no_join(self):
LikePerson = Person.alias()
people = Person.select().order_by(Person.name)
notes = Note.select().order_by(Note.content)
items = NoteItem.select().order_by(NoteItem.content)
flags = Flag.select().order_by(Flag.id)
with self.assertQueryCount(6):
query = prefetch(people, notes, items, flags, Like, LikePerson)
accum = []
for person in query:
notes = []
for note in person.notes:
items = [item.content for item in note.items]
likes = [like.person.name for like in note.likes]
flags = [flag.is_spam for flag in note.flags]
notes.append((note.content, items, likes, flags))
accum.append((person.name, notes))
self.assertEqual(accum, [
('huey', [
('hiss', ['hiss-1', 'hiss-2'], [], []),
('meow', ['meow-1', 'meow-2', 'meow-3'], ['mickey'], []),
('purr', [], [], [True])]),
('mickey', [
('bark', ['bark-1', 'bark-2'], [], []),
('woof', [], ['huey'], [True])]),
(u'zaizee', []),
])
def test_prefetch_with_group_by(self):
people = (Person
.select(Person, fn.COUNT(Note.id).alias('note_count'))
.join(Note, JOIN.LEFT_OUTER)
.group_by(Person)
.order_by(Person.name))
notes = Note.select().order_by(Note.content)
items = NoteItem.select().order_by(NoteItem.content)
with self.assertQueryCount(3):
query = prefetch(people, notes, items)
self.assertEqual(self.accumulate_results(query), [
('huey', [
('hiss', ['hiss-1', 'hiss-2']),
('meow', ['meow-1', 'meow-2', 'meow-3']),
('purr', [])]),
('mickey', [
('bark', ['bark-1', 'bark-2']),
('woof', [])]),
('zaizee', []),
])
huey, mickey, zaizee = query
self.assertEqual(huey.note_count, 3)
self.assertEqual(mickey.note_count, 2)
self.assertEqual(zaizee.note_count, 0)
@requires_models(Category)
def test_prefetch_self_join(self):
def cc(name, parent=None):
return Category.create(name=name, parent=parent)
root = cc('root')
p1 = cc('p1', root)
p2 = cc('p2', root)
for p in (p1, p2):
for i in range(2):
cc('%s-%s' % (p.name, i + 1), p)
Child = Category.alias('child')
with self.assertQueryCount(2):
query = prefetch(Category.select().order_by(Category.id), Child)
names_and_children = [
(cat.name, [child.name for child in cat.children])
for cat in query]
self.assertEqual(names_and_children, [
('root', ['p1', 'p2']),
('p1', ['p1-1', 'p1-2']),
('p2', ['p2-1', 'p2-2']),
('p1-1', []),
('p1-2', []),
('p2-1', []),
('p2-2', []),
])
@requires_models(Category)
def test_prefetch_adjacency_list(self):
def cc(name, parent=None):
return Category.create(name=name, parent=parent)
tree = ('root', (
('n1', (
('c11', ()),
('c12', ()))),
('n2', (
('c21', ()),
('c22', (
('g221', ()),
('g222', ()))),
('c23', ()),
('c24', (
('g241', ()),
('g242', ()),
('g243', ())))))))
stack = [(None, tree)]
while stack:
parent, (name, children) = stack.pop()
node = cc(name, parent)
for child_tree in children:
stack.insert(0, (node, child_tree))
C = Category.alias('c')
G = Category.alias('g')
GG = Category.alias('gg')
GGG = Category.alias('ggg')
query = Category.select().where(Category.name == 'root')
with self.assertQueryCount(5):
pf = prefetch(query, C, (G, C), (GG, G), (GGG, GG))
def gather(c):
children = sorted([gather(ch) for ch in c.children])
return (c.name, tuple(children))
nodes = list(pf)
self.assertEqual(len(nodes), 1)
pf_tree = gather(nodes[0])
self.assertEqual(tree, pf_tree)
def test_prefetch_specific_model(self):
# Person -> Note
# -> Like (has fks to both person and note)
Like.create(note=Note.get(Note.content == 'woof'),
person=Person.get(Person.name == 'zaizee'))
NoteAlias = Note.alias('na')
with self.assertQueryCount(3):
people = Person.select().order_by(Person.name)
notes = Note.select().order_by(Note.content)
likes = (Like
.select(Like, NoteAlias.content)
.join(NoteAlias, on=(Like.note == NoteAlias.id))
.order_by(NoteAlias.content))
query = prefetch(people, notes, (likes, Person))
accum = []
for person in query:
likes = []
notes = []
for note in person.notes:
notes.append(note.content)
for like in person.likes:
likes.append(like.note.content)
accum.append((person.name, notes, likes))
self.assertEqual(accum, [
('huey', ['hiss', 'meow', 'purr'], ['woof']),
('mickey', ['bark', 'woof'], ['meow']),
('zaizee', [], ['woof']),
])
@requires_models(Relationship)
def test_multiple_foreign_keys(self):
self.database.pragma('foreign_keys', 0)
Person.delete().execute()
c, h, z = [Person.create(name=name) for name in
('charlie', 'huey', 'zaizee')]
RC = lambda f, t: Relationship.create(from_person=f, to_person=t)
r1 = RC(c, h)
r2 = RC(c, z)
r3 = RC(h, c)
r4 = RC(z, c)
def assertRelationships(attr, values):
for relationship, value in zip(attr, values):
self.assertEqual(relationship.__data__, value)
with self.assertQueryCount(2):
people = Person.select().order_by(Person.name)
relationships = Relationship.select().order_by(Relationship.id)
query = prefetch(people, relationships)
cp, hp, zp = list(query)
assertRelationships(cp.relationships, [
{'id': r1.id, 'from_person': c.id, 'to_person': h.id},
{'id': r2.id, 'from_person': c.id, 'to_person': z.id}])
assertRelationships(cp.related_to, [
{'id': r3.id, 'from_person': h.id, 'to_person': c.id},
{'id': r4.id, 'from_person': z.id, 'to_person': c.id}])
assertRelationships(hp.relationships, [
{'id': r3.id, 'from_person': h.id, 'to_person': c.id}])
assertRelationships(hp.related_to, [
{'id': r1.id, 'from_person': c.id, 'to_person': h.id}])
assertRelationships(zp.relationships, [
{'id': r4.id, 'from_person': z.id, 'to_person': c.id}])
assertRelationships(zp.related_to, [
{'id': r2.id, 'from_person': c.id, 'to_person': z.id}])
with self.assertQueryCount(2):
query = prefetch(relationships, people)
accum = []
for row in query:
accum.append((row.from_person.name, row.to_person.name))
self.assertEqual(accum, [
('charlie', 'huey'),
('charlie', 'zaizee'),
('huey', 'charlie'),
('zaizee', 'charlie')])
m = Person.create(name='mickey')
RC(h, m)
def assertNames(p, ns):
self.assertEqual([r.to_person.name for r in p.relationships], ns)
# Use prefetch to go Person -> Relationship <- Person (PA).
with self.assertQueryCount(3):
people = (Person
.select()
.where(Person.name != 'mickey')
.order_by(Person.name))
relationships = Relationship.select().order_by(Relationship.id)
PA = Person.alias()
query = prefetch(people, relationships, PA)
cp, hp, zp = list(query)
assertNames(cp, ['huey', 'zaizee'])
assertNames(hp, ['charlie', 'mickey'])
assertNames(zp, ['charlie'])
# User prefetch to go Person -> Relationship+Person (PA).
with self.assertQueryCount(2):
people = (Person
.select()
.where(Person.name != 'mickey')
.order_by(Person.name))
rels = (Relationship
.select(Relationship, PA)
.join(PA, on=(Relationship.to_person == PA.id))
.order_by(Relationship.id))
query = prefetch(people, rels)
cp, hp, zp = list(query)
assertNames(cp, ['huey', 'zaizee'])
assertNames(hp, ['charlie', 'mickey'])
assertNames(zp, ['charlie'])
def test_prefetch_through_manytomany(self):
Like.create(note=Note.get(Note.content == 'meow'),
person=Person.get(Person.name == 'zaizee'))
Like.create(note=Note.get(Note.content == 'woof'),
person=Person.get(Person.name == 'zaizee'))
with self.assertQueryCount(3):
people = Person.select().order_by(Person.name)
notes = Note.select().order_by(Note.content)
likes = Like.select().order_by(Like.id)
query = prefetch(people, likes, notes)
accum = []
for person in query:
liked_notes = []
for like in person.likes:
liked_notes.append(like.note.content)
accum.append((person.name, liked_notes))
self.assertEqual(accum, [
('huey', ['woof']),
('mickey', ['meow']),
('zaizee', ['meow', 'woof']),
])
@requires_models(Package, PackageItem)
def test_prefetch_non_pk_fk(self):
data = (
('101', ('a', 'b')),
('102', ('a', 'b')),
('103', ()),
('104', ('a', 'b', 'c', 'd', 'e')),
)
for barcode, items in data:
Package.create(barcode=barcode)
for item in items:
PackageItem.create(package=barcode, name=item)
packages = Package.select().order_by(Package.barcode)
items = PackageItem.select().order_by(PackageItem.name)
with self.assertQueryCount(2):
query = prefetch(packages, items)
for package, (barcode, items) in zip(query, data):
self.assertEqual(package.barcode, barcode)
self.assertEqual([item.name for item in package.items],
list(items))