mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-31 12:58:45 -04:00
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
from sqlalchemy import *
|
|
from test.lib import *
|
|
from sqlalchemy.pool import QueuePool
|
|
|
|
|
|
class QueuePoolTest(TestBase, AssertsExecutionResults):
|
|
class Connection(object):
|
|
def rollback(self):
|
|
pass
|
|
|
|
def close(self):
|
|
pass
|
|
|
|
def setup(self):
|
|
global pool
|
|
pool = QueuePool(creator=self.Connection,
|
|
pool_size=3, max_overflow=-1,
|
|
use_threadlocal=True)
|
|
|
|
|
|
@profiling.function_call_count(72, {'2.4': 63, '2.7':67,
|
|
'2.7+cextension':67,
|
|
'3.0':73, '3.1':73},
|
|
variance=.10)
|
|
def test_first_connect(self):
|
|
conn = pool.connect()
|
|
|
|
def test_second_connect(self):
|
|
conn = pool.connect()
|
|
conn.close()
|
|
|
|
@profiling.function_call_count(32, {'2.4': 21, '2.7':29,
|
|
'2.7+cextension':29},
|
|
variance=.10)
|
|
def go():
|
|
conn2 = pool.connect()
|
|
return conn2
|
|
c2 = go()
|
|
|
|
def test_second_samethread_connect(self):
|
|
conn = pool.connect()
|
|
|
|
@profiling.function_call_count(6, {'2.4': 4, '3.0':7, '3.1':7})
|
|
def go():
|
|
return pool.connect()
|
|
c2 = go()
|
|
|
|
|