-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtest_SQLRelatedJoin.py
More file actions
58 lines (53 loc) · 1.71 KB
/
test_SQLRelatedJoin.py
File metadata and controls
58 lines (53 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from sqlobject import *
from sqlobject.tests.dbtest import *
class Fighter(SQLObject):
class sqlmeta:
idName='fighter_id' # test on a non-standard way
name = StringCol()
tourtments = RelatedJoin('Tourtment')
class Tourtment(SQLObject):
class sqlmeta:
table='competition' # test on a non-standard way
name = StringCol()
fightersAsList = RelatedJoin('Fighter')
fightersAsSResult = SQLRelatedJoin('Fighter')
def createAllTables():
setupClass(Fighter)
setupClass(Tourtment)
def test_1():
createAllTables()
# create some tourtments
t1=Tourtment(name='Tourtment #1')
t2=Tourtment(name='Tourtment #2')
t3=Tourtment(name='Tourtment #3')
# create some fighters
gokou=Fighter(name='gokou')
vegeta=Fighter(name='vegeta')
gohan=Fighter(name='gohan')
trunks=Fighter(name='trunks')
# relating them
t1.addFighter(gokou)
t1.addFighter(vegeta)
t1.addFighter(gohan)
t2.addFighter(gokou)
t2.addFighter(vegeta)
t2.addFighter(trunks)
t3.addFighter(gohan)
t3.addFighter(trunks)
# do some selects
for i, j in zip(t1.fightersAsList, t1.fightersAsSResult):
assert i is j
assert len(t2.fightersAsList) == t2.fightersAsSResult.count()
def test_related_join_transaction():
if not supports('transactions'):
return
createAllTables()
trans = Tourtment._connection.transaction()
try:
t1=Tourtment(name='Tourtment #1', connection=trans)
t1.addFighter(Fighter(name='Jim', connection=trans))
assert t1.fightersAsSResult.count() == 1
assert t1.fightersAsSResult[0]._connection == trans
finally:
trans.commit(True)
Tourtment._connection.autoCommit = True