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
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
|
#
# Copyright (c) 2006, 2007 Canonical
#
# Written by Gustavo Niemeyer <gustavo@niemeyer.net>
#
# This file is part of Storm Object Relational Mapper.
#
# Storm is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation; either version 2.1 of
# the License, or (at your option) any later version.
#
# Storm is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import datetime
import operator
from storm.database import create_database
from storm.exceptions import NoneError
from storm.sqlobject import *
from storm.store import Store
from storm.expr import Asc, Like
from storm.tz import tzutc
from tests.helper import TestHelper
class SQLObjectTest(TestHelper):
def setUp(self):
TestHelper.setUp(self)
# Allow classes with the same name in different tests to resolve
# property path strings properly.
SQLObjectBase._storm_property_registry.clear()
self.store = Store(create_database("sqlite:"))
class SQLObject(SQLObjectBase):
@staticmethod
def _get_store():
return self.store
self.SQLObject = SQLObject
self.store.execute("CREATE TABLE person "
"(id INTEGER PRIMARY KEY, name TEXT, age INTEGER,"
" ts TIMESTAMP, delta INTERVAL,"
" address_id INTEGER)")
self.store.execute("INSERT INTO person VALUES "
"(1, 'John Joe', 20, '2007-02-05 19:53:15',"
" '1 day, 12:34:56', 1)")
self.store.execute("INSERT INTO person VALUES "
"(2, 'John Doe', 20, '2007-02-05 20:53:15',"
" '42 days 12:34:56.78', 2)")
self.store.execute("CREATE TABLE address "
"(id INTEGER PRIMARY KEY, city TEXT)")
self.store.execute("INSERT INTO address VALUES (1, 'Curitiba')")
self.store.execute("INSERT INTO address VALUES (2, 'Sao Carlos')")
self.store.execute("CREATE TABLE phone "
"(id INTEGER PRIMARY KEY, person_id INTEGER,"
"number TEXT)")
self.store.execute("INSERT INTO phone VALUES (1, 2, '1234-5678')")
self.store.execute("INSERT INTO phone VALUES (2, 1, '8765-4321')")
self.store.execute("INSERT INTO phone VALUES (3, 2, '8765-5678')")
self.store.execute("CREATE TABLE person_phone "
"(id INTEGER PRIMARY KEY, person_id INTEGER, "
"phone_id INTEGER)")
self.store.execute("INSERT INTO person_phone VALUES (1, 2, 1)")
self.store.execute("INSERT INTO person_phone VALUES (2, 2, 2)")
self.store.execute("INSERT INTO person_phone VALUES (3, 1, 1)")
class Person(self.SQLObject):
_defaultOrder = "-Person.name"
name = StringCol()
age = IntCol()
ts = UtcDateTimeCol()
self.Person = Person
def test_get(self):
person = self.Person.get(2)
self.assertTrue(person)
self.assertEquals(person.name, "John Doe")
def test_get_not_found(self):
self.assertRaises(SQLObjectNotFound, self.Person.get, 1000)
def test_get_typecast(self):
person = self.Person.get("2")
self.assertTrue(person)
self.assertEquals(person.name, "John Doe")
def test_destroySelf(self):
person = self.Person.get(2)
person.destroySelf()
self.assertRaises(SQLObjectNotFound, self.Person.get, 2)
def test_delete(self):
self.Person.delete(2)
self.assertRaises(SQLObjectNotFound, self.Person.get, 2)
def test_custom_table_name(self):
class MyPerson(self.Person):
_table = "person"
person = MyPerson.get(2)
self.assertTrue(person)
self.assertEquals(person.name, "John Doe")
def test_custom_id_name(self):
class MyPerson(self.SQLObject):
_defaultOrder = "-Person.name"
_table = "person"
_idName = "name"
_idType = unicode
age = IntCol()
ts = UtcDateTimeCol()
person = MyPerson.get("John Doe")
self.assertTrue(person)
self.assertEquals(person.id, "John Doe")
def test_create(self):
person = self.Person(name="John Joe")
self.assertTrue(Store.of(person) is self.store)
self.assertEquals(type(person.id), int)
self.assertEquals(person.name, "John Joe")
def test_SO_creating(self):
test = self
class Person(self.Person):
def set(self, **args):
test.assertEquals(self._SO_creating, True)
test.assertEquals(args, {"name": "John Joe"})
person = Person(name="John Joe")
self.assertEquals(person._SO_creating, False)
def test_object_not_added_if__create_fails(self):
objects = []
class Person(self.Person):
def _create(self, id, **kwargs):
objects.append(self)
raise RuntimeError
self.assertRaises(RuntimeError, Person, name="John Joe")
self.assertEquals(len(objects), 1)
person = objects[0]
self.assertEquals(Store.of(person), None)
def test_init_hook(self):
called = []
class Person(self.Person):
def _init(self, *args, **kwargs):
called.append(True)
person = Person(name="John Joe")
self.assertEquals(called, [True])
Person.get(2)
self.assertEquals(called, [True, True])
def test_alternateID(self):
class Person(self.SQLObject):
name = StringCol(alternateID=True)
person = Person.byName("John Doe")
self.assertTrue(person)
self.assertEquals(person.name, "John Doe")
def test_alternateMethodName(self):
class Person(self.SQLObject):
name = StringCol(alternateMethodName="byFoo")
person = Person.byFoo("John Doe")
self.assertTrue(person)
self.assertEquals(person.name, "John Doe")
self.assertRaises(SQLObjectNotFound, Person.byFoo, "John None")
def test_select(self):
result = self.Person.select("name = 'John Joe'")
self.assertEquals(result[0].name, "John Joe")
def test_select_sqlbuilder(self):
result = self.Person.select(self.Person.q.name == "John Joe")
self.assertEqual(result[0].name, "John Joe")
def test_select_orderBy(self):
result = self.Person.select("name LIKE 'John%'", orderBy=("name","id"))
self.assertEquals(result[0].name, "John Doe")
def test_select_orderBy_expr(self):
result = self.Person.select("name LIKE 'John%'",
orderBy=self.Person.name)
self.assertEquals(result[0].name, "John Doe")
def test_select_all(self):
result = self.Person.select()
self.assertEquals(result[0].name, "John Joe")
def test_select_empty_string(self):
result = self.Person.select('')
self.assertEquals(result[0].name, "John Joe")
def test_select_limit(self):
result = self.Person.select(limit=1)
self.assertEquals(len(list(result)), 1)
def test_select_negative_offset(self):
result = self.Person.select(orderBy="name")
self.assertEquals(result[-1].name, "John Joe")
def test_select_slice_negative_offset(self):
result = self.Person.select(orderBy="name")[-1:]
self.assertEquals(result[0].name, "John Joe")
def test_select_distinct(self):
result = self.Person.select("person.name = 'John Joe'",
clauseTables=["phone"], distinct=True)
self.assertEquals(len(list(result)), 1)
def test_select_selectAlso(self):
# Since John Doe has two phone numbers, this would return him
# twice without the distinct=True bit.
result = self.Person.select(
"person.id = phone.person_id",
clauseTables=["phone"],
selectAlso="LOWER(name) AS lower_name",
orderBy="lower_name",
distinct=True)
people = list(result)
self.assertEquals(len(people), 2)
self.assertEquals(people[0].name, "John Doe")
self.assertEquals(people[1].name, "John Joe")
def test_select_selectAlso_with_prejoin(self):
class Person(self.Person):
address = ForeignKey(foreignKey="Address", dbName="address_id",
notNull=True)
class Address(self.SQLObject):
city = StringCol()
result = Person.select(
prejoins=["address"],
selectAlso="LOWER(person.name) AS lower_name",
orderBy="lower_name")
people = list(result)
self.assertEquals(len(people), 2)
self.assertEquals([(person.name, person.address.city)
for person in people],
[("John Doe", "Sao Carlos"),
("John Joe", "Curitiba")])
def test_select_clauseTables_simple(self):
result = self.Person.select("name = 'John Joe'", ["person"])
self.assertEquals(result[0].name, "John Joe")
def test_select_clauseTables_implicit_join(self):
result = self.Person.select("person.name = 'John Joe' and "
"phone.person_id = person.id",
["person", "phone"])
self.assertEquals(result[0].name, "John Joe")
def test_select_clauseTables_no_cls_table(self):
result = self.Person.select("person.name = 'John Joe' and "
"phone.person_id = person.id",
["phone"])
self.assertEquals(result[0].name, "John Joe")
def test_selectBy(self):
result = self.Person.selectBy(name="John Joe")
self.assertEquals(result[0].name, "John Joe")
def test_selectBy_orderBy(self):
result = self.Person.selectBy(age=20, orderBy="name")
self.assertEquals(result[0].name, "John Doe")
result = self.Person.selectBy(age=20, orderBy="-name")
self.assertEquals(result[0].name, "John Joe")
def test_selectOne(self):
person = self.Person.selectOne("name = 'John Joe'")
self.assertTrue(person)
self.assertEquals(person.name, "John Joe")
nobody = self.Person.selectOne("name = 'John None'")
self.assertEquals(nobody, None)
# SQLBuilder style expression:
person = self.Person.selectOne(self.Person.q.name == "John Joe")
self.assertNotEqual(person, None)
self.assertEqual(person.name, "John Joe")
def test_selectOne_multiple_results(self):
self.assertRaises(SQLObjectMoreThanOneResultError,
self.Person.selectOne)
def test_selectOne_clauseTables(self):
person = self.Person.selectOne("person.name = 'John Joe' and "
"phone.person_id = person.id",
["phone"])
self.assertEquals(person.name, "John Joe")
def test_selectOneBy(self):
person = self.Person.selectOneBy(name="John Joe")
self.assertTrue(person)
self.assertEquals(person.name, "John Joe")
nobody = self.Person.selectOneBy(name="John None")
self.assertEquals(nobody, None)
def test_selectOneBy_multiple_results(self):
self.assertRaises(SQLObjectMoreThanOneResultError,
self.Person.selectOneBy)
def test_selectFirst(self):
person = self.Person.selectFirst("name LIKE 'John%'", orderBy="name")
self.assertTrue(person)
self.assertEquals(person.name, "John Doe")
person = self.Person.selectFirst("name LIKE 'John%'", orderBy="-name")
self.assertTrue(person)
self.assertEquals(person.name, "John Joe")
nobody = self.Person.selectFirst("name = 'John None'", orderBy="name")
self.assertEquals(nobody, None)
# SQLBuilder style expression:
person = self.Person.selectFirst(LIKE(self.Person.q.name, "John%"),
orderBy="name")
self.assertNotEqual(person, None)
self.assertEqual(person.name, "John Doe")
def test_selectFirst_default_order(self):
person = self.Person.selectFirst("name LIKE 'John%'")
self.assertTrue(person)
self.assertEquals(person.name, "John Joe")
def test_selectFirst_default_order_list(self):
class Person(self.Person):
_defaultOrder = ["name"]
person = Person.selectFirst("name LIKE 'John%'")
self.assertTrue(person)
self.assertEquals(person.name, "John Doe")
def test_selectFirst_default_order_expr(self):
class Person(self.Person):
_defaultOrder = [SQLConstant("name")]
person = Person.selectFirst("name LIKE 'John%'")
self.assertTrue(person)
self.assertEquals(person.name, "John Doe")
def test_selectFirst_default_order_fully_qualified(self):
class Person(self.Person):
_defaultOrder = ["person.name"]
person = Person.selectFirst("name LIKE 'John%'")
self.assertTrue(person)
self.assertEquals(person.name, "John Doe")
def test_selectFirstBy(self):
person = self.Person.selectFirstBy(age=20, orderBy="name")
self.assertTrue(person)
self.assertEquals(person.name, "John Doe")
person = self.Person.selectFirstBy(age=20, orderBy="-name")
self.assertTrue(person)
self.assertEquals(person.name, "John Joe")
nobody = self.Person.selectFirstBy(age=1000, orderBy="name")
self.assertEquals(nobody, None)
def test_selectFirstBy_default_order(self):
person = self.Person.selectFirstBy(age=20)
self.assertTrue(person)
self.assertEquals(person.name, "John Joe")
def test_syncUpdate(self):
"""syncUpdate() flushes pending changes to the database."""
person = self.Person.get(id=1)
person.name = "John Smith"
person.syncUpdate()
name = self.store.execute(
"SELECT name FROM person WHERE id = 1").get_one()[0]
self.assertEquals(name, "John Smith")
def test_sync(self):
"""sync() flushes pending changes and invalidates the cache."""
person = self.Person.get(id=1)
person.name = "John Smith"
person.sync()
name = self.store.execute(
"SELECT name FROM person WHERE id = 1").get_one()[0]
self.assertEquals(name, "John Smith")
# Now make a change behind Storm's back and show that sync()
# makes the new value from the database visible.
self.store.execute("UPDATE person SET name = 'Jane Smith' "
"WHERE id = 1", noresult=True)
person.sync()
self.assertEquals(person.name, "Jane Smith")
def test_col_name(self):
class Person(self.SQLObject):
foo = StringCol(dbName="name")
person = Person.get(2)
self.assertEquals(person.foo, "John Doe")
class Person(self.SQLObject):
foo = StringCol("name")
person = Person.get(2)
self.assertEquals(person.foo, "John Doe")
def test_col_default(self):
class Person(self.SQLObject):
name = StringCol(default="Johny")
person = Person()
self.assertEquals(person.name, "Johny")
def test_col_default_factory(self):
class Person(self.SQLObject):
name = StringCol(default=lambda: "Johny")
person = Person()
self.assertEquals(person.name, "Johny")
def test_col_not_null(self):
class Person(self.SQLObject):
name = StringCol(notNull=True)
person = Person.get(2)
self.assertRaises(NoneError, setattr, person, "name", None)
def test_col_storm_validator(self):
calls = []
def validator(obj, attr, value):
calls.append((obj, attr, value))
return value
class Person(self.SQLObject):
name = StringCol(storm_validator=validator)
person = Person.get(2)
person.name = u'foo'
self.assertEquals(calls, [(person, 'name', u'foo')])
def test_string_col(self):
class Person(self.SQLObject):
name = StringCol()
person = Person.get(2)
self.assertEquals(person.name, "John Doe")
def test_int_col(self):
class Person(self.SQLObject):
age = IntCol()
person = Person.get(2)
self.assertEquals(person.age, 20)
def test_bool_col(self):
class Person(self.SQLObject):
age = BoolCol()
person = Person.get(2)
self.assertEquals(person.age, True)
def test_float_col(self):
class Person(self.SQLObject):
age = FloatCol()
person = Person.get(2)
self.assertTrue(abs(person.age - 20.0) < 1e-6)
def test_utcdatetime_col(self):
class Person(self.SQLObject):
ts = UtcDateTimeCol()
person = Person.get(2)
self.assertEquals(person.ts,
datetime.datetime(2007, 2, 5, 20, 53, 15,
tzinfo=tzutc()))
def test_date_col(self):
class Person(self.SQLObject):
ts = DateCol()
person = Person.get(2)
self.assertEquals(person.ts, datetime.date(2007, 2, 5))
def test_interval_col(self):
class Person(self.SQLObject):
delta = IntervalCol()
person = Person.get(2)
self.assertEquals(person.delta, datetime.timedelta(42, 45296, 780000))
def test_foreign_key(self):
class Person(self.Person):
address = ForeignKey(foreignKey="Address", dbName="address_id",
notNull=True)
class Address(self.SQLObject):
city = StringCol()
person = Person.get(2)
self.assertEquals(person.addressID, 2)
self.assertEquals(person.address.city, "Sao Carlos")
def test_foreign_key_no_dbname(self):
self.store.execute("CREATE TABLE another_person "
"(id INTEGER PRIMARY KEY, name TEXT, age INTEGER,"
" ts TIMESTAMP, address INTEGER)")
self.store.execute("INSERT INTO another_person VALUES "
"(2, 'John Doe', 20, '2007-02-05 20:53:15', 2)")
class AnotherPerson(self.Person):
address = ForeignKey(foreignKey="Address", notNull=True)
class Address(self.SQLObject):
city = StringCol()
person = AnotherPerson.get(2)
self.assertEquals(person.addressID, 2)
self.assertEquals(person.address.city, "Sao Carlos")
def test_foreign_key_orderBy(self):
class Person(self.Person):
_defaultOrder = "address"
address = ForeignKey(foreignKey="Address", dbName="address_id",
notNull=True)
class Address(self.SQLObject):
city = StringCol()
person = Person.selectFirst()
self.assertEquals(person.addressID, 1)
def test_foreign_key_storm_validator(self):
calls = []
def validator(obj, attr, value):
calls.append((obj, attr, value))
return value
class Person(self.SQLObject):
address = ForeignKey(foreignKey="Address", dbName="address_id",
storm_validator=validator)
class Address(self.SQLObject):
city = StringCol()
person = Person.get(2)
address = Address.get(1)
person.address = address
self.assertEquals(calls, [(person, 'addressID', 1)])
def test_multiple_join(self):
class AnotherPerson(self.Person):
_table = "person"
phones = SQLMultipleJoin("Phone", joinColumn="person")
class Phone(self.SQLObject):
person = ForeignKey("AnotherPerson", dbName="person_id")
number = StringCol()
person = AnotherPerson.get(2)
# Make sure that the result is wrapped.
result = person.phones.orderBy("-number")
self.assertEquals([phone.number for phone in result],
["8765-5678", "1234-5678"])
# Test add/remove methods.
number = Phone.selectOneBy(number="1234-5678")
person.removePhone(number)
self.assertEquals(sorted(phone.number for phone in person.phones),
["8765-5678"])
person.addPhone(number)
self.assertEquals(sorted(phone.number for phone in person.phones),
["1234-5678", "8765-5678"])
def test_multiple_join_prejoins(self):
self.store.execute("ALTER TABLE phone ADD COLUMN address_id INT")
self.store.execute("UPDATE phone SET address_id = 1")
self.store.execute("UPDATE phone SET address_id = 2 WHERE id = 3")
class AnotherPerson(self.Person):
_table = "person"
phones = SQLMultipleJoin("Phone", joinColumn="person",
orderBy="number", prejoins=["address"])
class Phone(self.SQLObject):
person = ForeignKey("AnotherPerson", dbName="person_id")
address = ForeignKey("Address", dbName="address_id")
number = StringCol()
class Address(self.SQLObject):
city = StringCol()
person = AnotherPerson.get(2)
[phone1, phone2] = person.phones
# Delete addresses behind Storm's back to show that the
# addresses have been loaded.
self.store.execute("DELETE FROM address")
self.assertEquals(phone1.number, "1234-5678")
self.assertEquals(phone1.address.city, "Curitiba")
self.assertEquals(phone2.number, "8765-5678")
self.assertEquals(phone2.address.city, "Sao Carlos")
def test_related_join(self):
class AnotherPerson(self.Person):
_table = "person"
phones = SQLRelatedJoin("Phone", otherColumn="phone_id",
intermediateTable="PersonPhone",
joinColumn="person_id", orderBy="id")
class PersonPhone(self.Person):
person_id = IntCol()
phone_id = IntCol()
class Phone(self.SQLObject):
number = StringCol()
person = AnotherPerson.get(2)
self.assertEquals([phone.number for phone in person.phones],
["1234-5678", "8765-4321"])
# Make sure that the result is wrapped.
result = person.phones.orderBy("-number")
self.assertEquals([phone.number for phone in result],
["8765-4321", "1234-5678"])
# Test add/remove methods.
number = Phone.selectOneBy(number="1234-5678")
person.removePhone(number)
self.assertEquals(sorted(phone.number for phone in person.phones),
["8765-4321"])
person.addPhone(number)
self.assertEquals(sorted(phone.number for phone in person.phones),
["1234-5678", "8765-4321"])
def test_related_join_prejoins(self):
self.store.execute("ALTER TABLE phone ADD COLUMN address_id INT")
self.store.execute("UPDATE phone SET address_id = 1")
self.store.execute("UPDATE phone SET address_id = 2 WHERE id = 2")
class AnotherPerson(self.Person):
_table = "person"
phones = SQLRelatedJoin("Phone", otherColumn="phone_id",
intermediateTable="PersonPhone",
joinColumn="person_id", orderBy="id",
prejoins=["address"])
class PersonPhone(self.Person):
person_id = IntCol()
phone_id = IntCol()
class Phone(self.SQLObject):
number = StringCol()
address = ForeignKey("Address", dbName="address_id")
class Address(self.SQLObject):
city = StringCol()
person = AnotherPerson.get(2)
[phone1, phone2] = person.phones
# Delete addresses behind Storm's back to show that the
# addresses have been loaded.
self.store.execute("DELETE FROM address")
self.assertEquals(phone1.number, "1234-5678")
self.assertEquals(phone1.address.city, "Curitiba")
self.assertEquals(phone2.number, "8765-4321")
self.assertEquals(phone2.address.city, "Sao Carlos")
def test_single_join(self):
self.store.execute("CREATE TABLE office "
"(id INTEGER PRIMARY KEY, phone_id INTEGER,"
"name TEXT)")
self.store.execute("INSERT INTO office VALUES (1, 1, 'An office')")
class Phone(self.SQLObject):
office = SingleJoin("Office", joinColumn="phoneID")
class Office(self.SQLObject):
phone = ForeignKey(foreignKey="Phone", dbName="phone_id",
notNull=True)
name = StringCol()
office = Office.get(1)
self.assertEqual(office.name, "An office")
phone = Phone.get(1)
self.assertEqual(phone.office, office)
# The single join returns None for a phone with no office
phone = Phone.get(2)
self.assertEqual(phone.office, None)
def test_result_set_orderBy(self):
result = self.Person.select()
result = result.orderBy("-name")
self.assertEquals([person.name for person in result],
["John Joe", "John Doe"])
result = result.orderBy("name")
self.assertEquals([person.name for person in result],
["John Doe", "John Joe"])
def test_result_set_orderBy_fully_qualified(self):
result = self.Person.select()
result = result.orderBy("-person.name")
self.assertEquals([person.name for person in result],
["John Joe", "John Doe"])
result = result.orderBy("person.name")
self.assertEquals([person.name for person in result],
["John Doe", "John Joe"])
def test_result_set_count(self):
result = self.Person.select()
self.assertEquals(result.count(), 2)
def test_result_set_count_limit(self):
result = self.Person.select(limit=1)
self.assertEquals(len(list(result)), 1)
self.assertEquals(result.count(), 1)
def test_result_set_count_sliced(self):
result = self.Person.select()
sliced_result = result[1:]
self.assertEquals(len(list(sliced_result)), 1)
self.assertEquals(sliced_result.count(), 1)
def test_result_set_count_distinct(self):
result = self.Person.select(
"person.id = phone.person_id",
clauseTables=["phone"],
distinct=True)
self.assertEquals(result.count(), 2)
def test_result_set_count_union_distinct(self):
result1 = self.Person.select("person.id = 1", distinct=True)
result2 = self.Person.select("person.id = 2", distinct=True)
self.assertEquals(result1.union(result2).count(), 2)
def test_result_set_count_with_joins(self):
result = self.Person.select(
"person.address_id = address.id",
clauseTables=["address"])
self.assertEquals(result.count(), 2)
def test_result_set__getitem__(self):
result = self.Person.select()
self.assertEquals(result[0].name, "John Joe")
def test_result_set__iter__(self):
result = self.Person.select()
self.assertEquals(list(result.__iter__())[0].name, "John Joe")
def test_result_set__nonzero__(self):
result = self.Person.select()
self.assertEquals(result.__nonzero__(), True)
result = self.Person.select(self.Person.q.name == "No Person")
self.assertEquals(result.__nonzero__(), False)
def test_result_set_distinct(self):
result = self.Person.select("person.name = 'John Joe'",
clauseTables=["phone"])
self.assertEquals(len(list(result.distinct())), 1)
def test_result_set_limit(self):
result = self.Person.select()
self.assertEquals(len(list(result.limit(1))), 1)
def test_result_set_union(self):
result1 = self.Person.selectBy(id=1)
result2 = self.Person.selectBy(id=2)
result3 = result1.union(result2, orderBy="name")
self.assertEquals([person.name for person in result3],
["John Doe", "John Joe"])
def test_result_set_union_all(self):
result1 = self.Person.selectBy(id=1)
result2 = result1.union(result1, unionAll=True)
self.assertEquals([person.name for person in result2],
["John Joe", "John Joe"])
def test_result_set_except_(self):
person = self.Person(id=3, name="John Moe")
result1 = self.Person.select()
result2 = self.Person.selectBy(id=2)
result3 = result1.except_(result2, orderBy="name")
self.assertEquals([person.name for person in result3],
["John Joe", "John Moe"])
def test_result_set_intersect(self):
person = self.Person(id=3, name="John Moe")
result1 = self.Person.select()
result2 = self.Person.select(self.Person.id.is_in((2, 3)))
result3 = result1.intersect(result2, orderBy="name")
self.assertEquals([person.name for person in result3],
["John Doe", "John Moe"])
def test_result_set_prejoin(self):
self.store.execute("ALTER TABLE person ADD COLUMN phone_id INTEGER")
self.store.execute("UPDATE person SET phone_id=1 WHERE name='John Doe'")
class Person(self.Person):
address = ForeignKey(foreignKey="Address", dbName="address_id")
phone = ForeignKey(foreignKey="Phone", dbName="phone_id")
class Address(self.SQLObject):
city = StringCol()
class Phone(self.SQLObject):
number = StringCol()
result = Person.select("person.name = 'John Doe'")
result = result.prejoin(["address", "phone"])
people = list(result)
# Remove rows behind its back.
self.store.execute("DELETE FROM address")
self.store.execute("DELETE FROM phone")
# They were prefetched, so it should work even then.
self.assertEquals([person.address.city for person in people],
["Sao Carlos"])
self.assertEquals([person.phone.number for person in people],
["1234-5678"])
def test_result_set_prejoin_getitem(self):
"""Ensure that detuplelizing is used on getitem."""
class Person(self.Person):
address = ForeignKey(foreignKey="Address", dbName="address_id")
class Address(self.SQLObject):
city = StringCol()
result = Person.select("person.name = 'John Doe'", prejoins=["address"])
person = result[0]
# Remove the row behind its back.
self.store.execute("DELETE FROM address")
# They were prefetched, so it should work even then.
self.assertEquals(person.address.city, "Sao Carlos")
def test_result_set_prejoin_one(self):
"""Ensure that detuplelizing is used on selectOne()."""
class Person(self.Person):
address = ForeignKey(foreignKey="Address", dbName="address_id")
class Address(self.SQLObject):
city = StringCol()
person = Person.selectOne("person.name = 'John Doe'",
prejoins=["address"])
# Remove the row behind its back.
self.store.execute("DELETE FROM address")
# They were prefetched, so it should work even then.
self.assertEquals(person.address.city, "Sao Carlos")
def test_result_set_prejoin_first(self):
"""Ensure that detuplelizing is used on selectFirst()."""
class Person(self.Person):
address = ForeignKey(foreignKey="Address", dbName="address_id")
class Address(self.SQLObject):
city = StringCol()
person = Person.selectFirst("person.name = 'John Doe'",
prejoins=["address"], orderBy="name")
# Remove the row behind Storm's back.
self.store.execute("DELETE FROM address")
# They were prefetched, so it should work even then.
self.assertEquals(person.address.city, "Sao Carlos")
def test_result_set_prejoin_by(self):
"""Ensure that prejoins work with selectBy() queries."""
class Person(self.Person):
address = ForeignKey(foreignKey="Address", dbName="address_id")
class Address(self.SQLObject):
city = StringCol()
result = Person.selectBy(name="John Doe").prejoin(["address"])
person = result[0]
# Remove the row behind Storm's back.
self.store.execute("DELETE FROM address")
# They were prefetched, so it should work even then.
self.assertEquals(person.address.city, "Sao Carlos")
def test_result_set_prejoin_related(self):
"""Dotted prejoins are used to prejoin through another table."""
class Phone(self.SQLObject):
person = ForeignKey(foreignKey="AnotherPerson", dbName="person_id")
number = StringCol()
class AnotherPerson(self.Person):
_table = "person"
address = ForeignKey(foreignKey="Address", dbName="address_id")
class Address(self.SQLObject):
city = StringCol()
phone = Phone.selectOne("phone.number = '1234-5678'",
prejoins=["person.address"])
# Remove the rows behind Storm's back.
self.store.execute("DELETE FROM address")
self.store.execute("DELETE FROM person")
# They were prefetched, so it should work even then.
self.assertEquals(phone.person.name, "John Doe")
self.assertEquals(phone.person.address.city, "Sao Carlos")
def test_result_set_prejoin_table_twice(self):
"""A single table can be prejoined multiple times."""
self.store.execute("CREATE TABLE lease "
"(id INTEGER PRIMARY KEY,"
" landlord_id INTEGER, tenant_id INTEGER)")
self.store.execute("INSERT INTO lease VALUES (1, 1, 2)")
class Address(self.SQLObject):
city = StringCol()
class AnotherPerson(self.Person):
_table = "person"
address = ForeignKey(foreignKey="Address", dbName="address_id")
class Lease(self.SQLObject):
landlord = ForeignKey(foreignKey="AnotherPerson",
dbName="landlord_id")
tenant = ForeignKey(foreignKey="AnotherPerson",
dbName="tenant_id")
lease = Lease.select(prejoins=["landlord", "landlord.address",
"tenant", "tenant.address"])[0]
# Remove the person rows behind Storm's back.
self.store.execute("DELETE FROM address")
self.store.execute("DELETE FROM person")
self.assertEquals(lease.landlord.name, "John Joe")
self.assertEquals(lease.landlord.address.city, "Curitiba")
self.assertEquals(lease.tenant.name, "John Doe")
self.assertEquals(lease.tenant.address.city, "Sao Carlos")
def test_result_set_prejoin_count(self):
"""Prejoins do not affect the result of aggregates like COUNT()."""
class Person(self.Person):
address = ForeignKey(foreignKey="Address", dbName="address_id")
class Address(self.SQLObject):
city = StringCol()
result = Person.select("name = 'John Doe'", prejoins=["address"])
self.assertEquals(result.count(), 1)
def test_result_set_prejoin_mismatch_union(self):
"""Prejoins do not cause UNION incompatibilities. """
class Person(self.Person):
address = ForeignKey(foreignKey="Address", dbName="address_id")
class Address(self.SQLObject):
city = StringCol()
# The prejoin should not prevent the union from working. At
# the moment this is done by unconditionally stripping the
# prejoins (which is what our SQLObject patch did), but could
# be smarter.
result1 = Person.select("name = 'John Doe'", prejoins=["address"])
result2 = Person.select("name = 'John Joe'")
result = result1.union(result2)
names = sorted(person.name for person in result)
self.assertEquals(names, ["John Doe", "John Joe"])
def test_result_set_prejoin_mismatch_except(self):
"""Prejoins do not cause EXCEPT incompatibilities. """
class Person(self.Person):
address = ForeignKey(foreignKey="Address", dbName="address_id")
class Address(self.SQLObject):
city = StringCol()
# The prejoin should not prevent the union from working. At
# the moment this is done by unconditionally stripping the
# prejoins (which is what our SQLObject patch did), but could
# be smarter.
result1 = Person.select("name = 'John Doe'", prejoins=["address"])
result2 = Person.select("name = 'John Joe'")
result = result1.except_(result2)
names = sorted(person.name for person in result)
self.assertEquals(names, ["John Doe"])
def test_result_set_prejoin_mismatch_intersect(self):
"""Prejoins do not cause INTERSECT incompatibilities. """
class Person(self.Person):
address = ForeignKey(foreignKey="Address", dbName="address_id")
class Address(self.SQLObject):
city = StringCol()
# The prejoin should not prevent the union from working. At
# the moment this is done by unconditionally stripping the
# prejoins (which is what our SQLObject patch did), but could
# be smarter.
result1 = Person.select("name = 'John Doe'", prejoins=["address"])
result2 = Person.select("name = 'John Doe'")
result = result1.intersect(result2)
names = sorted(person.name for person in result)
self.assertEquals(names, ["John Doe"])
def test_result_set_prejoinClauseTables(self):
self.store.execute("ALTER TABLE person ADD COLUMN phone_id INTEGER")
self.store.execute("UPDATE person SET phone_id=1 WHERE name='John Doe'")
class Person(self.Person):
address = ForeignKey(foreignKey="AddressClass", dbName="address_id")
phone = ForeignKey(foreignKey="PhoneClass", dbName="phone_id")
# Name the class so that it doesn't match the table name, to ensure
# that the prejoin is actually using table names, rather than class
# names.
class AddressClass(self.SQLObject):
_table = "address"
city = StringCol()
class PhoneClass(self.SQLObject):
_table = "phone"
number = StringCol()
result = Person.select("person.name = 'John Doe' and "
"person.phone_id = phone.id and "
"person.address_id = address.id",
clauseTables=["address", "phone"])
result = result.prejoinClauseTables(["address", "phone"])
people = list(result)
# Remove rows behind its back.
self.store.execute("DELETE FROM address")
self.store.execute("DELETE FROM phone")
# They were prefetched, so it should work even then.
self.assertEquals([person.address.city for person in people],
["Sao Carlos"])
self.assertEquals([person.phone.number for person in people],
["1234-5678"])
def test_result_set_sum_string(self):
result = self.Person.select()
self.assertEquals(result.sum('age'), 40)
def test_result_set_sum_expr(self):
result = self.Person.select()
self.assertEquals(result.sum(self.Person.q.age), 40)
def test_result_set_contains(self):
john = self.Person.selectOneBy(name="John Doe")
self.assertTrue(john in self.Person.select())
self.assertFalse(john in self.Person.selectBy(name="John Joe"))
self.assertFalse(john in self.Person.select(
"Person.name = 'John Joe'"))
def test_result_set_contains_does_not_use_iter(self):
"""Calling 'item in result_set' does not iterate over the set. """
def no_iter(self):
raise RuntimeError
real_iter = SQLObjectResultSet.__iter__
SQLObjectResultSet.__iter__ = no_iter
try:
john = self.Person.selectOneBy(name="John Doe")
self.assertTrue(john in self.Person.select())
finally:
SQLObjectResultSet.__iter__ = real_iter
def test_result_set_contains_wrong_type(self):
class Address(self.SQLObject):
city = StringCol()
address = Address.get(1)
result_set = self.Person.select()
self.assertRaises(TypeError, operator.contains, result_set, address)
def test_result_set_contains_with_prejoins(self):
class Person(self.Person):
address = ForeignKey(foreignKey="Address", dbName="address_id")
class Address(self.SQLObject):
city = StringCol()
john = Person.selectOneBy(name="John Doe")
result_set = Person.select("name = 'John Doe'", prejoins=["address"])
self.assertTrue(john in result_set)
def test_table_dot_q(self):
# Table.q.fieldname is a syntax used in SQLObject for
# sqlbuilder expressions. Storm can use the main properties
# for this, so the Table.q syntax just returns those
# properties:
class Person(self.SQLObject):
_idName = "name"
_idType = unicode
address = ForeignKey(foreignKey="Phone", dbName="address_id",
notNull=True)
self.assertEquals(id(Person.q.id), id(Person.id))
self.assertEquals(id(Person.q.address), id(Person.address))
self.assertEquals(id(Person.q.addressID), id(Person.addressID))
person = Person.get("John Joe")
self.assertEquals(id(person.q.id), id(Person.id))
self.assertEquals(id(person.q.address), id(Person.address))
self.assertEquals(id(person.q.addressID), id(Person.addressID))
def test_set(self):
class Person(self.Person):
def set(self, **kw):
kw["id"] += 1
super(Person, self).set(**kw)
person = Person(id=3, name="John Moe")
self.assertEquals(person.id, 4)
self.assertEquals(person.name, "John Moe")
def test_CONTAINSSTRING(self):
expr = CONTAINSSTRING(self.Person.q.name, "Do")
result = self.Person.select(expr)
self.assertEquals([person.name for person in result],
["John Doe"])
person.name = "Funny !%_ Name"
expr = NOT(CONTAINSSTRING(self.Person.q.name, "!%_"))
result = self.Person.select(expr)
self.assertEquals([person.name for person in result],
["John Joe"])
|