forked from absent1706/sqlalchemy-mixins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_smartquery.py
915 lines (744 loc) · 30.7 KB
/
test_smartquery.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
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
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
import unittest
import datetime
import nose
import sqlalchemy as sa
from sqlalchemy import create_engine
from sqlalchemy import event
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.ext.hybrid import hybrid_property, hybrid_method
from sqlalchemy.orm import Session
from sqlalchemy_mixins import SmartQueryMixin, smart_query
from sqlalchemy_mixins.eagerload import JOINED, SUBQUERY
Base = declarative_base()
engine = create_engine('sqlite:///:memory:', echo=False)
sess = Session(engine)
# sess = scoped_session(sessionmaker(bind=engine))
class BaseModel(Base, SmartQueryMixin):
__abstract__ = True
pass
class User(BaseModel):
__tablename__ = 'user'
__repr_attrs__ = ['name']
id = sa.Column(sa.Integer, primary_key=True)
name = sa.Column(sa.String)
# to smart query relationship, it should be explicitly set,
# not to be a backref
posts = sa.orm.relationship('Post')
comments = sa.orm.relationship('Comment')
# below relationship will just return query (without executing)
# this query can be customized
# see http://docs.sqlalchemy.org/en/latest/orm/collections.html#dynamic-relationship
#
# we will use this relationship for demonstrating real-life example
# of how smart_query() function works (see 3.2.2)
comments_ = sa.orm.relationship('Comment', lazy="dynamic") # this will return query
class Post(BaseModel):
__tablename__ = 'post'
id = sa.Column(sa.Integer, primary_key=True)
body = sa.Column(sa.String)
user_id = sa.Column(sa.Integer, sa.ForeignKey('user.id'))
archived = sa.Column(sa.Boolean, default=False)
# to smart query relationship, it should be explicitly set,
# not to be a backref
user = sa.orm.relationship('User')
comments = sa.orm.relationship('Comment')
@hybrid_property
def public(self):
return not self.archived
@public.expression
def public(cls):
return ~cls.archived
@hybrid_method
def is_commented_by_user(cls, user, mapper=None):
# in real apps, Comment class can be obtained from relation
# to avoid cyclic imports like so:
# Comment = cls.comments.property.argument()
mapper = mapper or cls
# from sqlalchemy import exists
# return exists().where((Comment.post_id == mapper.id) & \
# (Comment.user_id == user.id))
return mapper.comments.any(Comment.user_id == user.id)
@hybrid_method
def is_public(cls, value, mapper=None):
# in real apps, Comment class can be obtained from relation
# to avoid cyclic imports like so:
# Comment = cls.comments.property.argument()
mapper = mapper or cls
return mapper.public == value
class Comment(BaseModel):
__tablename__ = 'comment'
__repr_attrs__ = ['body']
id = sa.Column(sa.Integer, primary_key=True)
body = sa.Column(sa.String)
user_id = sa.Column(sa.Integer, sa.ForeignKey('user.id'))
post_id = sa.Column(sa.Integer, sa.ForeignKey('post.id'))
rating = sa.Column(sa.Integer)
created_at = sa.Column(sa.DateTime)
# to smart query relationship, it should be explicitly set,
# not to be a backref
user = sa.orm.relationship('User')
post = sa.orm.relationship('Post')
class BaseTest(unittest.TestCase):
def setUp(self):
sess.rollback()
BaseModel.set_session(None)
Base.metadata.drop_all(engine)
Base.metadata.create_all(engine)
BaseModel.set_session(sess)
def _seed(self):
u1 = User(name='Bill u1')
sess.add(u1)
sess.flush()
u2 = User(name='Alex u2')
sess.add(u2)
sess.flush()
u3 = User(name='Bishop u3')
sess.add(u3)
sess.flush()
sess.flush()
p11 = Post(
id=11,
body='1234567890123',
archived=True,
user=u1
)
sess.add(p11)
sess.flush()
p12 = Post(
id=12,
body='1234567890',
user=u1
)
sess.add(p12)
sess.flush()
p21 = Post(
id=21,
body='p21 by u2',
user=u2
)
sess.add(p21)
sess.flush()
p22 = Post(
id=22,
body='p22 by u2',
user=u2
)
sess.add(p22)
sess.flush()
cm11 = Comment(
id=11,
body='cm11 to p11',
user=u1,
post=p11,
rating=1,
created_at=datetime.datetime(2014, 1, 1)
)
sess.add(cm11)
sess.flush()
cm12 = Comment(
id=12,
body='cm12 to p12',
user=u2,
post=p12,
rating=2,
created_at=datetime.datetime(2015, 10, 20)
)
sess.add(cm12)
sess.flush()
cm21 = Comment(
id=21,
body='cm21 to p21',
user=u1,
post=p21,
rating=1,
created_at=datetime.datetime(2015, 11, 21)
)
sess.add(cm21)
sess.flush()
cm22 = Comment(
id=22,
body='cm22 to p22',
user=u3,
post=p22,
rating=3,
created_at=datetime.datetime(2016, 11, 20)
)
sess.add(cm22)
sess.flush()
cm_empty = Comment(
id=29,
# no body
# no user
# no post
# no rating
)
sess.add(cm_empty)
sess.flush()
return u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty
# noinspection PyUnusedLocal
class TestFilterExpr(BaseTest):
# def setUp(self):
# Base.metadata.create_all(engine)
def test_filterable_attributes(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
self.assertEqual(set(User.filterable_attributes),
{'id', 'name', # normal columns
'posts', 'comments', 'comments_' # relations
})
self.assertNotIn('posts_viewonly', set(User.filterable_attributes))
self.assertEqual(set(Post.filterable_attributes),
{'id', 'body', 'user_id', 'archived',
# normal columns
'user', 'comments', # relations
'public', # hybrid attributes
'is_public', 'is_commented_by_user' # hybrid methods
})
self.assertEqual(set(Comment.filterable_attributes),
{ # normal columns
'id', 'body', 'post_id', 'user_id', 'rating',
'created_at',
'user', 'post' # hybrid attributes
})
def test_incorrect_expr(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
with self.assertRaises(KeyError):
_ = sess.query(Post).filter(
*Post.filter_expr(INCORRECT_ATTR='nomatter')).all()
def test_columns(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
# users having posts which are commented by user 2
res = sess.query(Post).filter(
*Post.filter_expr(user=u1)).all()
self.assertEqual(set(res), {p11, p12})
res = sess.query(Post).filter(
*Post.filter_expr(user=u1, archived=False)).all()
self.assertEqual(set(res), {p12})
def test_hybrid_properties(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
self.assertEqual(
sess.query(Post).filter(*Post.filter_expr(public=True)).all(),
sess.query(Post).filter(*Post.filter_expr(archived=False)).all()
)
res = sess.query(Post).filter(*Post.filter_expr(public=True)).all()
self.assertEqual(set(res), {p12, p21, p22})
res = sess.query(Post).filter(*Post.filter_expr(archived=False)).all()
self.assertEqual(set(res), {p12, p21, p22})
def test_hybrid_methods(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
# posts which are commented by user 1
res = sess.query(Post).filter(
*Post.filter_expr(is_commented_by_user=u1)
).all()
self.assertEqual(set(res), {p11, p21})
# posts which are commented by user 2
res = sess.query(Post).filter(
*Post.filter_expr(is_commented_by_user=u2)
).all()
self.assertEqual(set(res), {p12})
def test_combinations(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
# non-public posts commented by user 1
res = sess.query(Post).filter(
*Post.filter_expr(public=False, is_commented_by_user=u1)
).all()
self.assertEqual(set(res), {p11})
def test_operators(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
def test(filters, expected_result):
res = sess.query(Comment).filter(
*Comment.filter_expr(**filters)
).all()
self.assertEqual(set(res), expected_result)
# test incorrect attribute
with self.assertRaises(KeyError):
test(dict(rating__INCORRECT_OPERATOR='nomatter'), {'nomatter'})
# rating == None
test(dict(rating=None), {cm_empty})
test(dict(rating__isnull=2), {cm_empty})
# rating == 2
test(dict(rating=2), {cm12}) # when no operator, 'exact' is assumed
test(dict(rating__exact=2), {cm12})
# rating != 2
test(dict(rating__ne=2), {cm11, cm21, cm22})
# rating > 2
test(dict(rating__gt=2), {cm22})
# rating >= 2
test(dict(rating__ge=2), {cm12, cm22})
# rating < 2
test(dict(rating__lt=2), {cm11, cm21})
# rating <= 2
test(dict(rating__le=2), {cm11, cm12, cm21})
# rating in [1,3]
test(dict(rating__in=[1, 3]), {cm11, cm21, cm22}) # list
test(dict(rating__in=(1, 3)), {cm11, cm21, cm22}) # tuple
test(dict(rating__in={1, 3}), {cm11, cm21, cm22}) # set
# rating not in [1,3]
test(dict(rating__notin=[1, 3]), {cm12}) # list
test(dict(rating__notin=(1, 3)), {cm12}) # tuple
test(dict(rating__notin={1, 3}), {cm12}) # set
# rating between 2 and 3
test(dict(rating__between=[2, 3]), {cm12, cm22}) # list
test(dict(rating__between=(2, 3)), {cm12, cm22}) # set
# likes
test(dict(body__like='cm12 to p12'), {cm12})
test(dict(body__like='%cm12%'), {cm12})
test(dict(body__ilike='%CM12%'), {cm12})
test(dict(body__startswith='cm1'), {cm11, cm12})
test(dict(body__istartswith='CM1'), {cm11, cm12})
test(dict(body__endswith='to p12'), {cm12})
test(dict(body__iendswith='TO P12'), {cm12})
# dates
# year
test(dict(created_at__year=2014), {cm11})
test(dict(created_at__year=2015), {cm12, cm21})
# month
test(dict(created_at__month=1), {cm11})
test(dict(created_at__month=11), {cm21, cm22})
# day
test(dict(created_at__day=1), {cm11})
test(dict(created_at__day=20), {cm12, cm22})
# whole date
test(dict(created_at__year=2014, created_at__month=1,
created_at__day=1), {cm11})
test(dict(created_at=datetime.datetime(2014, 1, 1)), {cm11})
# date comparisons
test(dict(created_at__year_ge=2014), {cm11, cm12, cm21, cm22})
test(dict(created_at__year_gt=2014), {cm12, cm21, cm22})
test(dict(created_at__year_le=2015), {cm11, cm12, cm21})
test(dict(created_at__month_lt=10), {cm11})
# noinspection PyUnusedLocal
class TestOrderExpr(BaseTest):
def test_incorrect_expr(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
with self.assertRaises(KeyError):
_ = sess.query(Post).filter(
*Post.order_expr('INCORRECT_ATTR')).all()
with self.assertRaises(KeyError):
_ = sess.query(Post).filter(
*Post.order_expr('*body')).all()
def test_asc(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
res = sess.query(Comment).order_by(*Comment.order_expr('rating')).all()
self.assertEqual(res[0], cm_empty)
# cm11 and cm21 have equal ratings, so they can occur in any order
self.assertEqual(set(res[1:3]), {cm11, cm21})
self.assertEqual(res[3:], [cm12, cm22])
def test_desc(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
res = sess.query(Comment).order_by(*Comment.order_expr('-rating'))\
.all()
self.assertEqual(res[:2], [cm22, cm12])
# cm11 and cm21 have equal ratings, so they can occur in any order
self.assertEqual(set(res[2:4]), {cm11, cm21})
self.assertEqual(res[-1], cm_empty)
def test_hybrid_properties(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
res = sess.query(Post).order_by(*Post.order_expr('public')).all()
self.assertEqual(res[0], p11)
res = sess.query(Post).order_by(*Post.order_expr('-public')).all()
self.assertEqual(res[-1], p11)
def test_combinations(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
""" test various combinations """
# 1. rating ASC, created_at ASC
res = sess.query(Comment).order_by(
*Comment.order_expr('rating', 'created_at')).all()
# cm11 and cm21 have equal rating, but not equal created_at
# we sort 'rating ASC, created_at ASC', so cm11 will be first
self.assertEqual(res, [cm_empty, cm11, cm21, cm12, cm22])
# 2. rating ASC, created_at DESC
res = sess.query(Comment).order_by(
*Comment.order_expr('rating', '-created_at')).all()
# cm11 and cm21 have equal rating, but not equal created_at
# we sort 'rating ASC, created_at DESC', so cm21 will be first
self.assertEqual(res, [cm_empty, cm21, cm11, cm12, cm22])
# 3. rating DESC, created_at ASC
res = sess.query(Comment).order_by(
*Comment.order_expr('-rating', 'created_at')).all()
# cm11 and cm21 have equal rating, but not equal created_at
# we sort 'rating DESC, created_at ASC', so cm11 will be first
self.assertEqual(res, [cm22, cm12, cm11, cm21, cm_empty])
# 4. rating DESC, created_at DESC
res = sess.query(Comment).order_by(
*Comment.order_expr('-rating', '-created_at')).all()
# cm11 and cm21 have equal rating, but not equal created_at
# we sort 'rating DESC, created_at DESC', so cm21 will be first
self.assertEqual(res, [cm22, cm12, cm21, cm11, cm_empty])
# noinspection PyUnusedLocal
class TestSmartQueryFilters(BaseTest):
def test_incorrect_expr(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
with self.assertRaises(KeyError):
_ = User.where(INCORRECT_ATTR='nomatter').all()
def test_is_a_shortcut_to_filter_expr_in_simple_cases(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
"""when have no joins, where() is a shortcut for filter_expr """
res = sess.query(Comment).filter(
*Comment.filter_expr(rating__gt=2, body__startswith='cm1')).all()
self.assertEqual(
res,
Comment.where(rating__gt=2, body__startswith='cm1').all())
def test_is_a_shortcut_to_smart_query(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
"""test that where() is just a shortcut for smart_query()"""
self.assertEqual(Comment.where(rating__gt=2).all(),
Comment.smart_query(filters=dict(rating__gt=2)).all())
def test_incorrect_relation_name(self):
with self.assertRaises(KeyError):
_ = User.where(INCORRECT_RELATION='nomatter').all()
with self.assertRaises(KeyError):
_ = User.where(post___INCORRECT_RELATION='nomatter').all()
def test_relations(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
# users having posts which are commented by user 2
res = User.where(posts___comments___user_id=u2.id).all()
self.assertEqual(set(res), {u1})
# comments where user name starts with 'Bi'
res = Comment.where(user___name__startswith='Bi').all()
self.assertEqual(set(res), {cm11, cm21, cm22})
# comments on posts where author name starts with 'Bi'
# !! ATTENTION !!
# about Comment.post:
# although we have Post.comments relationship,
# it's important to **add relationship Comment.post** too,
# not just use backref !!!
res = Comment.where(post___user___name__startswith='Bi').all()
self.assertEqual(set(res), {cm11, cm12})
def test_combinations(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
# non-public posts commented by user 1
res = Post.where(public=False, is_commented_by_user=u1).all()
self.assertEqual(set(res), {p11})
def test_simple_expressions(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
res = Post.smart_query(filters={sa.or_: {'archived': True, 'is_commented_by_user': u3}}).all()
self.assertEqual(set(res), {p11, p22})
def test_nested_expressions(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
# Archived posts, or (has 2016 comment rating != 1)
res = Post.smart_query(filters={sa.or_: {
'public': False,
sa.and_: {
sa.not_: {'comments___rating': 1},
'comments___created_at__year': 2016
}
}
})
self.assertEqual(set(res), {p11, p22})
def test_lists_in_filters_using_explicit_and(self):
# Check for users with (post OR comment) AND (name like 'B%' OR id>10)
# This cannot be expressed without a list in the filter structure
# (would require duplicated or_ keys)
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
res = User.smart_query(filters={
sa.and_: [
{ sa.or_: {
'comments__isnull': False,
'posts__isnull': False
}},
{sa.or_: {'name__like': 'B%', 'id__gt':10}}
]
})
self.assertEqual(set(res), {u1, u3})
def test_top_level_list_in_expression(self):
# Check for users with (post OR comment) AND (name like 'B%'),
# As above, but implicit AND
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
res = User.smart_query(filters=[
{ sa.or_: {
'comments__isnull': False,
'posts__isnull': False
}},
{sa.or_: {'name__like': 'B%', 'id__gt':10}}
])
self.assertEqual(set(res), {u1, u3})
# noinspection PyUnusedLocal
class TestSmartQuerySort(BaseTest):
def test_incorrect_expr(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
with self.assertRaises(KeyError):
_ = Post.sort('INCORRECT_ATTR').all()
with self.assertRaises(KeyError):
_ = Post.sort('*body').all()
def test_is_a_shortcut_to_order_expr_in_simple_cases(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
"""when have no joins, sort() is a shortcut for order_expr """
res = sess.query(Comment).order_by(*Comment.order_expr('rating')).all()
self.assertEqual(res, Comment.sort('rating').all())
res = sess.query(Comment).order_by(
*Comment.order_expr('rating', 'created_at')).all()
self.assertEqual(res, Comment.sort('rating', 'created_at').all())
# hybrid properties
res = sess.query(Post).order_by(*Post.order_expr('public')).all()
self.assertEqual(res, Post.sort('public').all())
def test_is_a_shortcut_to_smart_query(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
"""test that sort() is just a shortcut for smart_query() """
self.assertEqual(Comment.sort('rating').all(),
Comment.smart_query(sort_attrs=['rating']).all())
def test_incorrect_relation_name(self):
with self.assertRaises(KeyError):
_ = User.sort('INCORRECT_RELATION').all()
with self.assertRaises(KeyError):
_ = User.sort('post___INCORRECT_RELATION').all()
def test_relations(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
"""test that sort() is just a shortcut for smart_query() """
res = Comment.sort('user___name').all()
self.assertEqual(res[:2], [cm_empty, cm12])
# cm11 and cm21 were commented by u1, so they can occur in any order
self.assertEqual(set(res[2:4]), {cm11, cm21})
self.assertEqual(res[4], cm22)
res = Comment.sort('user___name', '-created_at').all()
self.assertEqual(res, [cm_empty, cm12, cm21, cm11, cm22])
# hybrid_property
res = Comment.sort('-post___public', 'post___user___name').all()
self.assertEqual(set(res[:2]), {cm21, cm22}) # posts by same user
self.assertEqual(res[2:], [cm12, cm11, cm_empty])
# noinspection PyUnusedLocal
class TestFullSmartQuery(BaseTest):
def test_schema_with_strings(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
# standalone function
query = Comment.query
res = smart_query(query,
filters={
'post___public': True,
'user__isnull': False
},
sort_attrs=['user___name', '-created_at'],
schema={
'post': {
'user': JOINED
}
}).all()
self.assertEqual(res, [cm12, cm21, cm22])
# class method
res = Comment.smart_query(
filters={
'post___public': True,
'user__isnull': False
},
sort_attrs=['user___name', '-created_at'],
schema={
'post': {
'user': JOINED
}
}).all()
self.assertEqual(res, [cm12, cm21, cm22])
def test_schema_with_class_properties(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
# standalone function
query = Comment.query
res = smart_query(query,
filters={
'post___public': True,
'user__isnull': False
},
sort_attrs=['user___name', '-created_at'],
schema={
Comment.post: {
Post.user: JOINED
}
}).all()
self.assertEqual(res, [cm12, cm21, cm22])
# class method
res = Comment.smart_query(
filters={
'post___public': True,
'user__isnull': False
},
sort_attrs=['user___name', '-created_at'],
schema={
Comment.post: {
Post.user: JOINED
}
}).all()
self.assertEqual(res, [cm12, cm21, cm22])
# noinspection PyUnusedLocal
class TestSmartQueryAutoEagerLoad(BaseTest):
"""
Smart_query does auto-joins for filtering/sorting,
so there's a sense to tell sqlalchemy that we alreeady joined that relation
So we test that relations are set to be joinedload
if they were used in smart_query()
"""
def _seed(self):
result = BaseTest._seed(self)
self.query_count = 0
@event.listens_for(sess.connection(), 'before_cursor_execute')
def before_cursor_execute(conn, cursor, statement, parameters,
context, executemany):
self.query_count += 1
return result
def test_sort(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
self.query_count = 0
res = Comment.sort('-post___public', 'post___user___name').all()
self.assertEqual(self.query_count, 1)
_ = res[0].post
# no additional query needed: we used 'post' relation in smart_query()
self.assertEqual(self.query_count, 1)
_ = res[0].post.user
# no additional query needed: we used 'post' relation in smart_query()
self.assertEqual(self.query_count, 1)
_ = res[0].post.comments
# we didn't use post___comments, so additional query is needed
self.assertEqual(self.query_count, 2)
def test_where(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
self.query_count = 0
res = Comment.where(post___public=True,
post___user___name__like='Bi%').all()
self.assertEqual(self.query_count, 1)
_ = res[0].post
# no additional query needed: we used 'post' relation in smart_query()
self.assertEqual(self.query_count, 1)
_ = res[0].post.user
# no additional query needed: we used 'post' relation in smart_query()
self.assertEqual(self.query_count, 1)
_ = res[0].post.comments
# we didn't use post___comments, so additional query is needed
self.assertEqual(self.query_count, 2)
def test_explicitly_set_in_schema_joinedload(self):
"""
here we explicitly set in schema that we additionally want to load
post___comments
"""
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
self.query_count = 0
res = Comment.smart_query(
filters=dict(post___public=True, post___user___name__like='Bi%'),
schema={
'post': {
'comments': JOINED
}
}
)
res = res.all()
self.assertEqual(self.query_count, 1)
_ = res[0].post
# no additional query needed: we used 'post' relation in smart_query()
self.assertEqual(self.query_count, 1)
_ = res[0].post.user
# no additional query needed: we used 'post' relation in smart_query()
self.assertEqual(self.query_count, 1)
# we didn't use post___comments,
# BUT we explicitly set it in schema!
# so additional query is NOT needed
_ = res[0].post.comments
self.assertEqual(self.query_count, 1)
def test_explicitly_set_in_schema_subqueryload(self):
"""
here we explicitly set in schema that we additionally want to load
post___comments
"""
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
self.query_count = 0
res = Comment.smart_query(
filters=dict(post___public=True, post___user___name__like='Bi%'),
schema={
'post': {
'comments': SUBQUERY
}
}
).all()
self.assertEqual(self.query_count, 2)
_ = res[0].post
# no additional query needed: we used 'post' relation in smart_query()
self.assertEqual(self.query_count, 2)
_ = res[0].post.user
# no additional query needed: we used 'post' relation in smart_query()
self.assertEqual(self.query_count, 2)
# we didn't use post___comments,
# BUT we explicitly set it in schema!
# so additional query is NOT needed
_ = res[0].post.comments
self.assertEqual(self.query_count, 2)
def test_lazy_dynamic(self):
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
schema = {
'post': {
'user': JOINED
}
}
user = sess.query(User).first()
# and we have initial query for his/her comments
# (see User.comments_ relationship)
query = user.comments_
# now we just smartly apply all filters, sorts and eagerload. Perfect!
res = smart_query(query,
filters={
'post___public': True,
'user__isnull': False
},
sort_attrs=['user___name', '-created_at'],
schema=schema).all()
assert res[0] == cm21
def test_override_eagerload_method_in_schema(self):
"""
here we use 'post' relation in filters,
but we want to load 'post' relation in SEPARATE QUERY (subqueryload)
so we set load method in schema
"""
u1, u2, u3, p11, p12, p21, p22, cm11, cm12, cm21, cm22, cm_empty = \
self._seed()
self.query_count = 0
res = Comment.smart_query(
filters=dict(post___public=True, post___user___name__like='Bi%'),
schema={
'post': SUBQUERY
}
).all()
self.assertEqual(self.query_count, 2)
_ = res[0].post
# no additional query needed: we used 'post' relation in smart_query()
self.assertEqual(self.query_count, 2)
# Test nested schemas
self.query_count = 0
res = Comment.smart_query(
filters=dict(post___public=True, post___user___name__like='Bi%'),
schema={
'post': (SUBQUERY, { # This should load in a separate query
'user': SUBQUERY # This should also load in a separate query
})
}
).all()
self.assertEqual(self.query_count, 3)
_ = res[0].post
# no additional query needed: we used 'post' relation in smart_query()
self.assertEqual(self.query_count, 3)
if __name__ == '__main__': # pragma: no cover
unittest.main()