-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathtest_5500_pool_async.py
635 lines (564 loc) · 24.2 KB
/
test_5500_pool_async.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
# -----------------------------------------------------------------------------
# Copyright (c) 2023, 2025, Oracle and/or its affiliates.
#
# This software is dual-licensed to you under the Universal Permissive License
# (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl and Apache License
# 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose
# either license.
#
# If you elect to accept the software under the Apache License, Version 2.0,
# the following applies:
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# -----------------------------------------------------------------------------
"""
5500 - Module for testing pools with asyncio
"""
import asyncio
import unittest
import oracledb
import test_env
@unittest.skipUnless(
test_env.get_is_thin(), "asyncio not supported in thick mode"
)
class TestCase(test_env.BaseAsyncTestCase):
require_connection = False
async def __connect_and_drop(self, pool):
async with pool.acquire() as conn:
cursor = conn.cursor()
await cursor.execute("select count(*) from TestNumbers")
(count,) = await cursor.fetchone()
self.assertEqual(count, 10)
async def __connect_and_generate_error(self, pool):
async with pool.acquire() as conn:
cursor = conn.cursor()
with self.assertRaisesFullCode("ORA-01476"):
await cursor.execute("select 1 / 0 from dual")
async def __verify_connection(
self, connection, expected_user, expected_proxy_user=None
):
cursor = connection.cursor()
await cursor.execute(
"""
select
sys_context('userenv', 'session_user'),
sys_context('userenv', 'proxy_user')
from dual
"""
)
actual_user, actual_proxy_user = await cursor.fetchone()
self.assertEqual(actual_user, expected_user.upper())
self.assertEqual(
actual_proxy_user,
expected_proxy_user and expected_proxy_user.upper(),
)
await connection.close()
async def __verify_create_arg(self, arg_name, arg_value, sql):
args = {}
args[arg_name] = arg_value
pool = test_env.get_pool_async(**args)
async with pool.acquire() as conn:
cursor = conn.cursor()
await cursor.execute(sql)
(fetched_value,) = await cursor.fetchone()
self.assertEqual(fetched_value, arg_value)
await pool.close()
async def test_5500(self):
"5500 - test getting default pool parameters"
pool = test_env.get_pool_async()
try:
self.assertEqual(pool.busy, 0)
self.assertEqual(pool.dsn, test_env.get_connect_string())
self.assertEqual(pool.getmode, oracledb.POOL_GETMODE_WAIT)
self.assertTrue(pool.homogeneous)
self.assertEqual(pool.increment, 1)
self.assertEqual(pool.max, 2)
self.assertEqual(pool.max_lifetime_session, 0)
self.assertEqual(pool.min, 1)
self.assertEqual(pool.ping_interval, 60)
self.assertEqual(
pool.stmtcachesize, oracledb.defaults.stmtcachesize
)
self.assertEqual(pool.thin, True)
self.assertEqual(pool.timeout, 0)
self.assertEqual(pool.username, test_env.get_main_user())
finally:
await pool.close(force=True)
async def test_5501(self):
"5501 - test setting pool attributes"
pool = test_env.get_pool_async()
test_values = [
((11, 2), "ping_interval", 30),
((11, 2), "stmtcachesize", 100),
((11, 2), "timeout", 10),
((12, 2), "getmode", oracledb.POOL_GETMODE_TIMEDWAIT),
((12, 1), "max_lifetime_session", 3),
]
try:
for version, attr_name, value in test_values:
if test_env.get_client_version() >= version:
setattr(pool, attr_name, value)
self.assertEqual(getattr(pool, attr_name), value)
self.assertRaises(
TypeError, setattr, pool, attr_name, "invalid value"
)
finally:
await pool.close(force=True)
async def test_5502(self):
"5502 - connection rolls back before released back to the pool"
pool = test_env.get_pool_async()
conn = await pool.acquire()
cursor = conn.cursor()
await cursor.execute("truncate table TestTempTable")
await cursor.execute("insert into TestTempTable (IntCol) values (1)")
cursor.close()
await pool.release(conn)
pool = test_env.get_pool_async()
conn = await pool.acquire()
cursor = conn.cursor()
await cursor.execute("select count(*) from TestTempTable")
(count,) = await cursor.fetchone()
self.assertEqual(count, 0)
await conn.close()
async def test_5503(self):
"5503 - test session pool with multiple coroutines"
pool = test_env.get_pool_async(min=5, max=20, increment=2)
try:
coroutines = [self.__connect_and_drop(pool) for i in range(20)]
await asyncio.gather(*coroutines)
finally:
await pool.close(force=True)
async def test_5504(self):
"5504 - test session pool with multiple coroutines (with errors)"
pool = test_env.get_pool_async(min=5, max=20, increment=2)
try:
coroutines = [
self.__connect_and_generate_error(pool) for i in range(20)
]
await asyncio.gather(*coroutines)
finally:
await pool.close(force=True)
@unittest.skipIf(test_env.get_is_drcp(), "not supported with DRCP")
async def test_5505(self):
"5505 - test session pool with various types of purity"
pool = test_env.get_pool_async(min=1, max=8, increment=1)
# get connection and set the action
action = "TEST_ACTION"
conn = await pool.acquire()
conn.action = action
cursor = conn.cursor()
await cursor.execute("select 1 from dual")
cursor.close()
await pool.release(conn)
self.assertEqual(pool.opened, 1, "opened (1)")
# verify that the connection still has the action set on it
conn = await pool.acquire()
cursor = conn.cursor()
await cursor.execute(
"select sys_context('userenv', 'action') from dual"
)
(result,) = await cursor.fetchone()
self.assertEqual(result, action)
cursor.close()
await pool.release(conn)
self.assertEqual(pool.opened, 1, "opened (2)")
# get a new connection with new purity (should not have state)
conn = await pool.acquire(purity=oracledb.PURITY_NEW)
cursor = conn.cursor()
await cursor.execute(
"select sys_context('userenv', 'action') from dual"
)
(result,) = await cursor.fetchone()
self.assertIsNone(result)
cursor.close()
await pool.release(conn)
async def test_5506(self):
"5506 - test dropping/closing a connection from the pool"
pool = test_env.get_pool_async(min=1, max=5, increment=2)
try:
conns1 = [await pool.acquire() for _ in range(2)]
conns2 = [
await oracledb.connect_async(pool=pool) for _ in range(3)
]
self.assertEqual(pool.busy, 5)
self.assertEqual(pool.opened, 5)
for conn in conns1:
await pool.drop(conn)
self.assertEqual(pool.busy, 3)
self.assertEqual(pool.opened, 3)
for conn in conns2:
await conn.close()
self.assertEqual(pool.busy, 0)
self.assertEqual(pool.opened, 3)
finally:
await pool.close(force=True)
async def test_5507(self):
"5507 - test to ensure pure connections are being created correctly"
pool = test_env.get_pool_async(min=1, max=2, increment=1)
try:
conn1 = await pool.acquire()
conn2 = await pool.acquire()
self.assertEqual(pool.opened, 2, "opened (1)")
await pool.release(conn1)
await pool.release(conn2)
conn3 = await pool.acquire(purity=oracledb.PURITY_NEW)
self.assertEqual(pool.opened, 2, "opened (2)")
await pool.release(conn3)
finally:
await pool.close(force=True)
async def test_5508(self):
"5508 - test closing a pool normally with no connections checked out"
pool = test_env.get_pool_async(min=1, max=8, increment=1)
await pool.close()
async def test_5509(self):
"5509 - test closing a pool normally with connections checked out"
pool = test_env.get_pool_async(min=1, max=8, increment=1)
closed = False
try:
async with pool.acquire():
with self.assertRaisesFullCode("DPY-1005"):
await pool.close()
closed = True
finally:
if not closed:
await pool.close(force=True)
async def test_5510(self):
"5510 - test closing a pool forcibly"
pool = test_env.get_pool_async(min=1, max=8, increment=1)
async with pool.acquire():
await pool.close(force=True)
async def test_5511(self):
"5511 - using the pool after it is closed raises an exception"
pool = test_env.get_pool_async(min=1, max=8, increment=1)
await pool.close()
with self.assertRaisesFullCode("DPY-1002"):
await pool.acquire()
async def test_5512(self):
"5512 - using the pool beyond max limit raises an error"
pool = test_env.get_pool_async(min=1, max=2, increment=1)
try:
async with pool.acquire(), pool.acquire():
pool.getmode = oracledb.POOL_GETMODE_NOWAIT
with self.assertRaisesFullCode("DPY-4005"):
await pool.acquire()
finally:
await pool.close(force=True)
async def test_5513(self):
"5513 - callable session callback is executed for new connections"
class Counter:
num_calls = 0
@classmethod
async def session_callback(cls, conn, requested_tag):
cls.num_calls += 1
pool = test_env.get_pool_async(
min=1,
max=2,
increment=1,
session_callback=Counter.session_callback,
)
try:
async with pool.acquire(), pool.acquire():
pass
async with pool.acquire(), pool.acquire():
pass
self.assertEqual(Counter.num_calls, 2)
finally:
await pool.close(force=True)
@unittest.skipIf(test_env.get_is_drcp(), "not supported with DRCP")
async def test_5514(self):
"5514 - drop the pooled connection on receiving dead connection error"
admin_conn = await test_env.get_admin_connection_async()
pool = test_env.get_pool_async(min=2, max=2, increment=2)
try:
# acquire connections from the pool and kill all the sessions
with admin_conn.cursor() as admin_cursor:
for conn in [await pool.acquire() for i in range(2)]:
sid, serial = await self.get_sid_serial(conn)
sql = f"alter system kill session '{sid},{serial}'"
await admin_cursor.execute(sql)
await conn.close()
self.assertEqual(pool.opened, 2)
# when try to re-use the killed sessions error will be raised;
# release all such connections
for conn in [await pool.acquire() for i in range(2)]:
with conn.cursor() as cursor:
with self.assertRaisesFullCode("DPY-4011"):
await cursor.execute("select user from dual")
await conn.close()
# if a free connection is available, it can be used; otherwise a
# new connection will be created
for conn in [await pool.acquire() for i in range(2)]:
with conn.cursor() as cursor:
await cursor.execute("select user from dual")
(user,) = await cursor.fetchone()
self.assertEqual(user, test_env.get_main_user().upper())
await conn.close()
self.assertEqual(pool.opened, 2)
finally:
await pool.close(force=True)
async def test_5515(self):
"5515 - acquire a connection from an empty pool (min=0)"
pool = test_env.get_pool_async(min=0, max=2, increment=2)
try:
async with pool.acquire() as conn:
with conn.cursor() as cursor:
await cursor.execute("select user from dual")
(result,) = await cursor.fetchone()
self.assertEqual(result, test_env.get_main_user().upper())
finally:
await pool.close(force=True)
async def test_5516(self):
"5516 - get different object types from different connections"
pool = test_env.get_pool_async(min=1, max=2, increment=1)
try:
async with pool.acquire() as conn:
typ = await conn.gettype("UDT_SUBOBJECT")
self.assertEqual(typ.name, "UDT_SUBOBJECT")
async with pool.acquire() as conn:
typ = await conn.gettype("UDT_OBJECTARRAY")
self.assertEqual(typ.name, "UDT_OBJECTARRAY")
finally:
await pool.close(force=True)
async def test_5517(self):
"5517 - test creating a pool using a proxy user"
user_str = f"{test_env.get_main_user()}[{test_env.get_proxy_user()}]"
pool = test_env.get_pool_async(user=user_str)
try:
await self.__verify_connection(
await pool.acquire(),
test_env.get_proxy_user(),
test_env.get_main_user(),
)
finally:
await pool.close(force=True)
@unittest.skipIf(test_env.get_is_drcp(), "not supported with DRCP")
async def test_5518(self):
"5518 - test acquiring conn from pool in LIFO order"
pool = test_env.get_pool_async(min=5, max=10, increment=1)
try:
sql = "select sys_context('userenv', 'sid') from dual"
conns = [await pool.acquire() for i in range(3)]
sids = []
for conn in conns:
with conn.cursor() as cursor:
await cursor.execute(sql)
(sid,) = await cursor.fetchone()
sids.append(sid)
await conns[1].close()
await conns[2].close()
await conns[0].close()
async with pool.acquire() as conn:
with conn.cursor() as cursor:
await cursor.execute(sql)
(sid,) = await cursor.fetchone()
self.assertEqual(sid, sids[0], "not LIFO")
finally:
await pool.close(force=True)
async def test_5519(self):
"5519 - verify that dynamic pool cannot have an increment of zero"
pool = test_env.get_pool_async(min=1, max=3, increment=0)
try:
self.assertEqual(pool.increment, 1)
async with pool.acquire(), pool.acquire():
pass
finally:
await pool.close(force=True)
async def test_5520(self):
"5520 - verify that static pool can have an increment of zero"
pool = test_env.get_pool_async(min=1, max=1, increment=0)
try:
self.assertEqual(pool.increment, 0)
async with pool.acquire():
pass
finally:
await pool.close(force=True)
async def test_5521(self):
"5521 - verify that connection with different cclass is reused"
cclass = "cclass2431"
pool = test_env.get_pool_async(min=1, max=1)
# ignore the first acquire which, depending on the speed with which the
# minimum connections are created, may create a connection that is
# discarded; instead, use the second acquire which should remain in the
# pool
try:
async with pool.acquire(cclass=cclass) as conn:
pass
async with pool.acquire(cclass=cclass) as conn:
sid_serial = await self.get_sid_serial(conn)
async with pool.acquire(cclass=cclass) as conn:
next_sid_serial = await self.get_sid_serial(conn)
self.assertEqual(next_sid_serial, sid_serial)
self.assertEqual(pool.opened, 1)
finally:
await pool.close(force=True)
async def test_5522(self):
"5522 - test creating a pool invalid params"
with self.assertRaisesFullCode("DPY-2027"):
oracledb.create_pool_async(params="bad params")
async def test_5523(self):
"5523 - test releasing and dropping an invalid connection"
pool = test_env.get_pool_async()
try:
with self.assertRaises(TypeError):
await pool.release("invalid connection")
with self.assertRaises(TypeError):
await pool.drop("invalid connection")
finally:
await pool.close(force=True)
async def test_5524(self):
"5524 - test creating a pool with invalid pool_class"
with self.assertRaisesFullCode("DPY-2026"):
oracledb.create_pool_async(pool_class=int)
async def test_5525(self):
"5525 - test creating a pool with a subclassed connection type"
class MyConnection(oracledb.AsyncConnection):
pass
pool = test_env.get_pool_async(connectiontype=MyConnection)
async with pool.acquire() as conn:
self.assertIsInstance(conn, MyConnection)
async def test_5526(self):
"5526 - test creating a pool with a subclassed pool type"
class MyPool(oracledb.AsyncConnectionPool):
pass
pool = test_env.get_pool_async(pool_class=MyPool)
try:
self.assertIsInstance(pool, MyPool)
finally:
await pool.close(force=True)
async def test_5527(self):
"5527 - test connectiontype with an invalid connection class"
with self.assertRaisesFullCode("DPY-2023"):
test_env.get_pool_async(connectiontype=oracledb.Connection)
with self.assertRaisesFullCode("DPY-2023"):
test_env.get_pool_async(connectiontype=int)
@unittest.skipIf(
test_env.get_server_version() < (12, 2), "not supported on this server"
)
async def test_5528(self):
"5528 - ensure that timed wait times out with appropriate exception"
pool = test_env.get_pool_async(
getmode=oracledb.POOL_GETMODE_TIMEDWAIT, min=0, wait_timeout=1
)
with self.assertRaisesFullCode("DPY-4005"):
await pool.acquire()
async def test_5529(self):
"5529 - ensure call timeout is reset on connections returned by pool"
pool = test_env.get_pool_async(ping_timeout=1000, ping_interval=0)
async with pool.acquire() as conn:
self.assertEqual(conn.call_timeout, 0)
async with pool.acquire() as conn:
self.assertEqual(conn.call_timeout, 0)
async def test_5530(self):
"5530 - test passing program when creating a pool"
sql = (
"select program from v$session "
"where sid = sys_context('userenv', 'sid')"
)
await self.__verify_create_arg("program", "newprogram", sql)
async def test_5531(self):
"5531 - test passing machine when creating a pool"
sql = (
"select machine from v$session "
"where sid = sys_context('userenv', 'sid')"
)
await self.__verify_create_arg("machine", "newmachine", sql)
async def test_5532(self):
"5532 - test passing terminal when creating a pool"
sql = (
"select terminal from v$session "
"where sid = sys_context('userenv', 'sid')"
)
await self.__verify_create_arg("terminal", "newterminal", sql)
async def test_5533(self):
"5533 - test passing osuser when creating a pool"
sql = (
"select osuser from v$session "
"where sid = sys_context('userenv', 'sid')"
)
await self.__verify_create_arg("osuser", "newosuser", sql)
async def test_5534(self):
"5534 - test passing driver_name when creating a pool"
sql = (
"select distinct client_driver from v$session_connect_info "
"where sid = sys_context('userenv', 'sid')"
)
await self.__verify_create_arg("driver_name", "newdriver", sql)
async def test_5535(self):
"5535 - test register_parameter with pooled connection"
sdu = 4096
params = test_env.get_pool_params()
protocol = "proto-test"
orig_connect_string = test_env.get_connect_string()
connect_string = f"{protocol}://{orig_connect_string}"
def hook(passed_protocol, passed_protocol_arg, passed_params):
self.assertEqual(passed_protocol, protocol)
self.assertEqual(passed_protocol_arg, orig_connect_string)
passed_params.parse_connect_string(passed_protocol_arg)
passed_params.set(sdu=sdu)
try:
oracledb.register_protocol(protocol, hook)
pool = oracledb.create_pool_async(
dsn=connect_string, params=params
)
self.assertEqual(params.sdu, sdu)
async with pool.acquire():
pass
await pool.close()
finally:
oracledb.register_protocol(protocol, None)
async def test_5536(self):
"5536 - test create_pool() with edition"
edition = test_env.get_edition_name()
pool = test_env.get_pool_async(edition=edition)
async with pool.acquire() as conn:
self.assertEqual(conn.edition, edition)
await pool.close()
async def test_5537(self):
"5537 - test create_pool() and get_pool() with alias"
alias = "pool_alias_5537"
pool = test_env.get_pool_async(pool_alias=alias)
self.assertIs(pool, oracledb.get_pool(alias))
await pool.close()
async def test_5538(self):
"5538 - test create_pool() twice with the same alias"
alias = "pool_alias_5538"
pool = test_env.get_pool_async(pool_alias=alias)
with self.assertRaisesFullCode("DPY-2055"):
test_env.get_pool_async(pool_alias=alias)
await pool.close()
self.assertIsNone(oracledb.get_pool(alias))
async def test_5539(self):
"5539 - test acquire() with pool alias and stmtcachesize"
alias = "pool_5539"
stmtcachesize = 35
test_env.get_pool_async(pool_alias=alias, stmtcachesize=stmtcachesize)
async with oracledb.connect_async(pool_alias=alias) as conn:
self.assertEqual(conn.stmtcachesize, stmtcachesize)
await oracledb.get_pool(alias).close()
async def test_5540(self):
"5540 - test pool alias is case sensitive"
alias = "pool_5540"
test_env.get_pool_async(pool_alias=alias)
self.assertIsNone(oracledb.get_pool(alias.upper()))
with self.assertRaisesFullCode("DPY-2054"):
await test_env.get_connection_async(pool_alias=alias.upper())
await oracledb.get_pool(alias).close()
async def test_5541(self):
"5541 - test pool alias with invalid types"
aliases = [5, set(), dict(), bytearray(1)]
for alias in aliases:
with self.subTest(alias=alias):
with self.assertRaises(TypeError):
test_env.get_pool_async(pool_alias=alias)
if __name__ == "__main__":
test_env.run_test_cases()