-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_transaction.py
executable file
·159 lines (135 loc) · 4.55 KB
/
test_transaction.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
#!/usr/bin/python3.2
from bson import ObjectId
import mago
import mago.transaction as tran
import unittest
class Bar(object):
bar = "open bar"
def __init__(self):
self.close = "almost a model"
class Foo(mago.Model):
field = mago.Field()
class MagoModelTest(unittest.TestCase):
def setUp(self):
super().setUp()
# self._mongo_connection.drop_database("__test_model")
self._mongo_connection = mago.connect("__test_model")
Foo.collection().remove({})
tran.Transaction.collection().remove({})
# def tearDown(self):
# super().tearDown()
# self._mongo_connection.drop_database("__test_model")
# self._mongo_connection.disconnect()
def test_insert(self):
foo = Foo()
foo["hola"] = "mundo"
# test insert initial
t = tran.Transaction()
t.insert(foo)
t.save()
tran.recovery()
same_foo = Foo(**Foo.collection().find({"_id" : foo.id})[0])
self.assertEqual(foo, same_foo)
foo.delete()
self.assertRaises(IndexError, lambda : \
tran.Transaction.collection().find()[0])
# test insert pending
t = tran.Transaction()
t.insert(foo)
t.save()
t._to_pending()
tran.recovery()
same_foo = Foo(**Foo.collection().find({"_id" : foo.id})[0])
self.assertEqual(foo, same_foo)
foo.delete()
self.assertRaises(IndexError, lambda : \
tran.Transaction.collection().find()[0])
# test insert commit
t = tran.Transaction()
t.insert(foo)
t.save()
t._to_pending()
t._to_commit()
tran.recovery()
same_foo = Foo(**Foo.collection().find({"_id" : foo.id})[0])
self.assertEqual(foo, same_foo)
foo.delete()
self.assertRaises(IndexError, lambda : \
tran.Transaction.collection().find()[0])
def test_update(self):
foo = Foo()
foo["hola"] = "mundo"
foo.save()
foo["hola"] = "world"
# test initial
t = tran.Transaction()
t.update(foo)
t.save()
tran.recovery()
same_foo = Foo(**Foo.collection().find({"hola" : "world"})[0])
self.assertEqual(foo, same_foo)
self.assertRaises(IndexError, lambda : \
tran.Transaction.collection().find()[0])
# test pending
foo["hola"] = "monde"
t = tran.Transaction()
t.update(foo)
t.save()
t._to_pending()
tran.recovery()
same_foo = Foo(**Foo.collection().find({"hola" : "monde"})[0])
self.assertEqual(foo, same_foo)
self.assertRaises(IndexError, lambda : \
tran.Transaction.collection().find()[0])
# test commit
foo["hola"] = "mondo"
t = tran.Transaction()
t.update(foo)
t.save()
t._to_pending()
t._to_commit()
tran.recovery()
same_foo = Foo(**Foo.collection().find({"hola" : "mondo"})[0])
self.assertEqual(foo, same_foo)
self.assertRaises(IndexError, lambda : \
tran.Transaction.collection().find()[0])
def test_remove(self):
foo = Foo()
foo["hola"] = "mundo"
foo.save()
# test initial
t = tran.Transaction()
t.remove(foo)
t.save()
tran.recovery()
self.assertRaises(IndexError, lambda : \
Foo.collection().find({"hola" : "mundo"})[0])
self.assertRaises(IndexError, lambda : \
tran.Transaction.collection().find()[0])
# test pending
foo["hola"] = "monde"
foo.save()
t = tran.Transaction()
t.remove(foo)
t.save()
t._to_pending()
tran.recovery()
self.assertRaises(IndexError, lambda : \
Foo.collection().find({"hola" : "monde"})[0])
self.assertRaises(IndexError, lambda : \
tran.Transaction.collection().find()[0])
# test commit
foo["hola"] = "mondo"
foo.save()
t = tran.Transaction()
t.remove(foo)
t.save()
t._to_pending()
t._to_commit()
tran.recovery()
self.assertRaises(IndexError, lambda : \
Foo.collection().find({"hola" : "mondo"})[0])
self.assertRaises(IndexError, lambda : \
tran.Transaction.collection().find()[0])
if __name__ == "__main__":
unittest.main()