-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathtest_transaction.py
265 lines (203 loc) · 8.56 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
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
import pytest
from .models import db, User, qsize
pytestmark = pytest.mark.asyncio
async def _init(bind):
from .test_crud import test_create
u = await test_create(bind)
def get_name():
return User.select("nickname").where(User.id == u.id).gino.scalar()
return u, get_name
async def test_connection_ctx(bind, mocker):
init_size = qsize(bind)
u, get_name = await _init(bind)
assert await get_name() != "commit"
async with bind.acquire() as conn:
async with conn.transaction():
await u.update(nickname="commit").apply()
assert await get_name() == "commit"
with pytest.raises(ZeroDivisionError):
async with bind.acquire() as conn:
async with conn.transaction():
await u.update(nickname="rollback").apply()
assert await get_name() == "rollback"
raise ZeroDivisionError
assert await get_name() == "commit"
async with bind.acquire() as conn:
tx = await conn.transaction().__aenter__()
await u.update(nickname="rollback").apply()
assert await get_name() == "rollback"
mocker.patch("aiomysql.connection.Connection.commit").side_effect = IndexError
with pytest.raises(IndexError):
await tx.__aexit__(None, None, None)
# clean up, and to simulate commit failed
mocker.stopall()
await tx._tx.rollback()
assert await get_name() == "commit"
assert await get_name() == "commit"
assert init_size == qsize(bind)
async def test_connection_await(bind):
init_size = qsize(bind)
u, get_name = await _init(bind)
assert await get_name() != "commit"
async with bind.acquire() as conn:
tx = await conn.transaction()
await u.update(nickname="commit").apply()
await tx.commit()
assert await get_name() == "commit"
async with bind.acquire() as conn:
tx = await conn.transaction()
await u.update(nickname="rollback").apply()
assert await get_name() == "rollback"
await tx.rollback()
assert await get_name() == "commit"
# Neither commit nor rollback, should rollback
async with bind.acquire() as conn:
await conn.transaction()
await u.update(nickname="rollback").apply()
assert await get_name() == "rollback"
assert await get_name() == "commit"
assert init_size == qsize(bind)
async def test_engine(bind):
init_size = qsize(bind)
u, get_name = await _init(bind)
assert await get_name() != "commit"
async with bind.transaction():
await u.update(nickname="commit").apply()
assert await get_name() == "commit"
with pytest.raises(ZeroDivisionError):
async with bind.transaction():
await u.update(nickname="rollback").apply()
raise ZeroDivisionError
assert await get_name() == "commit"
assert init_size == qsize(bind)
async def test_begin_failed(bind, mocker):
from aiomysql.connection import Connection
init_size = qsize(bind)
mocker.patch("aiomysql.connection.Connection.begin")
Connection.begin.side_effect = ZeroDivisionError
with pytest.raises(ZeroDivisionError):
async with bind.transaction():
pass # pragma: no cover
assert init_size == qsize(bind)
async def test_commit_failed(bind, mocker):
from aiomysql.connection import Connection
init_size = qsize(bind)
mocker.patch("aiomysql.connection.Connection.begin")
# noinspection PyUnresolvedReferences,PyProtectedMember
Connection.begin.side_effect = ZeroDivisionError
with pytest.raises(ZeroDivisionError):
async with bind.transaction():
pass
assert init_size == qsize(bind)
async def test_reuse(bind):
from aiomysql.connection import Connection
init_size = qsize(bind)
async with db.acquire() as conn:
async with db.transaction() as tx:
assert tx.connection.raw_connection is conn.raw_connection
assert isinstance(tx.raw_transaction, Connection)
async with db.transaction() as tx2:
assert tx2.connection.raw_connection is conn.raw_connection
async with db.transaction(reuse=False) as tx2:
assert tx2.connection.raw_connection is not conn.raw_connection
async with db.transaction(reuse=False) as tx:
assert tx.connection.raw_connection is not conn.raw_connection
async with db.transaction() as tx2:
assert tx2.connection.raw_connection is tx.connection.raw_connection
async with db.transaction(reuse=False) as tx2:
assert tx2.connection.raw_connection is not conn.raw_connection
assert tx2.connection.raw_connection is not tx.connection.raw_connection
with pytest.raises(ValueError, match="already released"):
await conn.release()
assert init_size == qsize(bind)
async def test_nested(bind):
init_size = qsize(bind)
u, get_name = await _init(bind)
name = await get_name()
assert u.nickname == name
async with bind.transaction():
await u.update(nickname="first").apply()
async with bind.transaction():
pass
assert init_size == qsize(bind)
# noinspection PyUnreachableCode,PyUnusedLocal
async def test_early_end(bind):
init_size = qsize(bind)
u, get_name = await _init(bind)
assert await get_name() != "ininin"
async with bind.transaction() as tx:
async with bind.transaction():
async with bind.transaction():
await u.update(nickname="ininin").apply()
tx.raise_commit()
assert False, "Should not reach here"
assert False, "Should not reach here"
assert False, "Should not reach here"
assert await get_name() == "ininin"
assert init_size == qsize(bind)
async with bind.transaction() as tx:
async with bind.transaction():
async with bind.transaction():
await u.update(nickname="nonono").apply()
assert await get_name() == "nonono"
tx.raise_rollback()
assert False, "Should not reach here"
assert False, "Should not reach here"
assert False, "Should not reach here"
assert await get_name() == "ininin"
assert init_size == qsize(bind)
reached = 0
async with bind.transaction():
async with bind.transaction() as tx:
async with bind.transaction():
await u.update(nickname="nonono").apply()
assert await get_name() == "nonono"
tx.raise_rollback()
assert False, "Should not reach here"
assert False, "Should not reach here"
reached += 1
assert await get_name() == "ininin"
assert await get_name() == "ininin"
assert init_size == qsize(bind)
assert reached == 1
async with bind.transaction():
async with bind.transaction() as tx:
async with bind.transaction():
await u.update(nickname="nonono").apply()
assert await get_name() == "nonono"
tx.raise_commit()
assert False, "Should not reach here"
assert False, "Should not reach here"
reached += 1
assert await get_name() == "nonono"
assert await get_name() == "nonono"
assert init_size == qsize(bind)
assert reached == 2
# noinspection PyUnreachableCode
async def test_end_raises_in_with(engine):
async with engine.transaction() as tx:
with pytest.raises(AssertionError, match="Illegal in managed mode"):
await tx.commit()
await tx.raise_commit()
assert False, "Should not reach here"
async with engine.transaction() as tx:
with pytest.raises(AssertionError, match="Illegal in managed mode"):
await tx.rollback()
await tx.raise_rollback()
assert False, "Should not reach here"
async def test_base_exception(engine):
async with engine.transaction() as tx:
# noinspection PyBroadException
try:
await tx.raise_commit()
except Exception:
assert False, "Should not reach here"
assert False, "Should not reach here"
async def test_no_rollback_on_commit_fail(engine, mocker):
mocker.patch("aiomysql.connection.Connection.commit").side_effect = IndexError
async with engine.acquire() as conn:
tx = await conn.transaction().__aenter__()
rollback = mocker.patch.object(tx._tx, "rollback")
with pytest.raises(IndexError):
await tx.__aexit__(None, None, None)
assert not rollback.called