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
|
import sys
sys.path.insert(0, './lib/')
import os
import unittest
import StringIO
import sqlalchemy.ext.proxy as proxy
import re
import sqlalchemy
from sqlalchemy import sql, engine, pool
import optparse
from sqlalchemy.schema import BoundMetaData
from sqlalchemy.orm import clear_mappers
db = None
metadata = None
db_uri = None
echo = True
# redefine sys.stdout so all those print statements go to the echo func
local_stdout = sys.stdout
class Logger(object):
def write(self, msg):
if echo:
local_stdout.write(msg)
def flush(self):
pass
def echo_text(text):
print text
def parse_argv():
# we are using the unittest main runner, so we are just popping out the
# arguments we need instead of using our own getopt type of thing
global db, db_uri, metadata
DBTYPE = 'sqlite'
PROXY = False
parser = optparse.OptionParser(usage = "usage: %prog [options] [tests...]")
parser.add_option("--dburi", action="store", dest="dburi", help="database uri (overrides --db)")
parser.add_option("--db", action="store", dest="db", default="sqlite", help="prefab database uri (sqlite, sqlite_file, postgres, mysql, oracle, oracle8, mssql, firebird)")
parser.add_option("--mockpool", action="store_true", dest="mockpool", help="use mock pool (asserts only one connection used)")
parser.add_option("--verbose", action="store_true", dest="verbose", help="enable stdout echoing/printing")
parser.add_option("--quiet", action="store_true", dest="quiet", help="suppress unittest output")
parser.add_option("--log-info", action="append", dest="log_info", help="turn on info logging for <LOG> (multiple OK)")
parser.add_option("--log-debug", action="append", dest="log_debug", help="turn on debug logging for <LOG> (multiple OK)")
parser.add_option("--nothreadlocal", action="store_true", dest="nothreadlocal", help="dont use thread-local mod")
parser.add_option("--enginestrategy", action="store", default=None, dest="enginestrategy", help="engine strategy (plain or threadlocal, defaults to plain)")
parser.add_option("--coverage", action="store_true", dest="coverage", help="Dump a full coverage report after running")
parser.add_option("--reversetop", action="store_true", dest="topological", help="Reverse the collection ordering for topological sorts (helps reveal dependency issues)")
(options, args) = parser.parse_args()
sys.argv[1:] = args
if options.dburi:
db_uri = param = options.dburi
DBTYPE = db_uri[:db_uri.index(':')]
elif options.db:
DBTYPE = param = options.db
opts = {}
if (None == db_uri):
if DBTYPE == 'sqlite':
db_uri = 'sqlite:///:memory:'
elif DBTYPE == 'sqlite_file':
db_uri = 'sqlite:///querytest.db'
elif DBTYPE == 'postgres':
db_uri = 'postgres://scott:tiger@127.0.0.1:5432/test'
elif DBTYPE == 'mysql':
db_uri = 'mysql://scott:tiger@127.0.0.1:3306/test'
elif DBTYPE == 'oracle':
db_uri = 'oracle://scott:tiger@127.0.0.1:1521'
elif DBTYPE == 'oracle8':
db_uri = 'oracle://scott:tiger@127.0.0.1:1521'
opts = {'use_ansi':False}
elif DBTYPE == 'mssql':
db_uri = 'mssql://scott:tiger@SQUAWK\\SQLEXPRESS/test'
elif DBTYPE == 'firebird':
db_uri = 'firebird://sysdba:s@localhost/tmp/test.fdb'
if not db_uri:
raise "Could not create engine. specify --db <sqlite|sqlite_file|postgres|mysql|oracle|oracle8|mssql|firebird> to test runner."
if not options.nothreadlocal:
__import__('sqlalchemy.mods.threadlocal')
sqlalchemy.mods.threadlocal.uninstall_plugin()
global echo
echo = options.verbose and not options.quiet
global quiet
quiet = options.quiet
global with_coverage
with_coverage = options.coverage
if options.enginestrategy is not None:
opts['strategy'] = options.enginestrategy
if options.mockpool:
db = engine.create_engine(db_uri, poolclass=pool.AssertionPool, **opts)
else:
db = engine.create_engine(db_uri, **opts)
db = EngineAssert(db)
if options.topological:
from sqlalchemy.orm import unitofwork
from sqlalchemy import topological
class RevQueueDepSort(topological.QueueDependencySorter):
def __init__(self, tuples, allitems):
self.tuples = list(tuples)
self.allitems = list(allitems)
self.tuples.reverse()
self.allitems.reverse()
topological.QueueDependencySorter = RevQueueDepSort
unitofwork.DependencySorter = RevQueueDepSort
import logging
logging.basicConfig()
if options.log_info is not None:
for elem in options.log_info:
logging.getLogger(elem).setLevel(logging.INFO)
if options.log_debug is not None:
for elem in options.log_debug:
logging.getLogger(elem).setLevel(logging.DEBUG)
metadata = sqlalchemy.BoundMetaData(db)
def unsupported(*dbs):
"""a decorator that marks a test as unsupported by one or more database implementations"""
def decorate(func):
name = db.name
for d in dbs:
if d == name:
def lala(self):
echo_text("'" + func.__name__ + "' unsupported on DB implementation '" + name + "'")
lala.__name__ = func.__name__
return lala
else:
return func
return decorate
def supported(*dbs):
"""a decorator that marks a test as supported by one or more database implementations"""
def decorate(func):
name = db.name
for d in dbs:
if d == name:
return func
else:
def lala(self):
echo_text("'" + func.__name__ + "' unsupported on DB implementation '" + name + "'")
lala.__name__ = func.__name__
return lala
return decorate
class PersistTest(unittest.TestCase):
"""persist base class, provides default setUpAll, tearDownAll and echo functionality"""
def __init__(self, *args, **params):
unittest.TestCase.__init__(self, *args, **params)
def echo(self, text):
echo_text(text)
def install_threadlocal(self):
sqlalchemy.mods.threadlocal.install_plugin()
def uninstall_threadlocal(self):
sqlalchemy.mods.threadlocal.uninstall_plugin()
def setUpAll(self):
pass
def tearDownAll(self):
pass
def shortDescription(self):
"""overridden to not return docstrings"""
return None
class AssertMixin(PersistTest):
"""given a list-based structure of keys/properties which represent information within an object structure, and
a list of actual objects, asserts that the list of objects corresponds to the structure."""
def assert_result(self, result, class_, *objects):
result = list(result)
if echo:
print repr(result)
self.assert_list(result, class_, objects)
def assert_list(self, result, class_, list):
self.assert_(len(result) == len(list), "result list is not the same size as test list, for class " + class_.__name__)
for i in range(0, len(list)):
self.assert_row(class_, result[i], list[i])
def assert_row(self, class_, rowobj, desc):
self.assert_(rowobj.__class__ is class_, "item class is not " + repr(class_))
for key, value in desc.iteritems():
if isinstance(value, tuple):
if isinstance(value[1], list):
self.assert_list(getattr(rowobj, key), value[0], value[1])
else:
self.assert_row(value[0], getattr(rowobj, key), value[1])
else:
self.assert_(getattr(rowobj, key) == value, "attribute %s value %s does not match %s" % (key, getattr(rowobj, key), value))
def assert_sql(self, db, callable_, list, with_sequences=None):
if with_sequences is not None and (db.engine.name == 'postgres' or db.engine.name == 'oracle'):
db.set_assert_list(self, with_sequences)
else:
db.set_assert_list(self, list)
try:
callable_()
finally:
db.set_assert_list(None, None)
def assert_sql_count(self, db, callable_, count):
db.sql_count = 0
try:
callable_()
finally:
self.assert_(db.sql_count == count, "desired statement count %d does not match %d" % (count, db.sql_count))
class ORMTest(AssertMixin):
keep_mappers = False
keep_data = False
def setUpAll(self):
global metadata
metadata = BoundMetaData(db)
self.define_tables(metadata)
metadata.create_all()
def define_tables(self, metadata):
raise NotImplementedError()
def get_metadata(self):
return metadata
def tearDownAll(self):
metadata.drop_all()
def tearDown(self):
if not self.keep_mappers:
clear_mappers()
if not self.keep_data:
for t in metadata.table_iterator(reverse=True):
t.delete().execute().close()
class EngineAssert(proxy.BaseProxyEngine):
"""decorates a SQLEngine object to match the incoming queries against a set of assertions."""
def __init__(self, engine):
self._engine = engine
self.real_execution_context = engine.dialect.create_execution_context
engine.dialect.create_execution_context = self.execution_context
self.logger = engine.logger
self.set_assert_list(None, None)
self.sql_count = 0
def get_engine(self):
return self._engine
def set_engine(self, e):
self._engine = e
def set_assert_list(self, unittest, list):
self.unittest = unittest
self.assert_list = list
if list is not None:
self.assert_list.reverse()
def _set_echo(self, echo):
self.engine.echo = echo
echo = property(lambda s: s.engine.echo, _set_echo)
def execution_context(self):
def post_exec(engine, proxy, compiled, parameters, **kwargs):
ctx = e
self.engine.logger = self.logger
statement = unicode(compiled)
statement = re.sub(r'\n', '', statement)
if self.assert_list is not None:
item = self.assert_list[-1]
if not isinstance(item, dict):
item = self.assert_list.pop()
else:
# asserting a dictionary of statements->parameters
# this is to specify query assertions where the queries can be in
# multiple orderings
if not item.has_key('_converted'):
for key in item.keys():
ckey = self.convert_statement(key)
item[ckey] = item[key]
if ckey != key:
del item[key]
item['_converted'] = True
try:
entry = item.pop(statement)
if len(item) == 1:
self.assert_list.pop()
item = (statement, entry)
except KeyError:
self.unittest.assert_(False, "Testing for one of the following queries: %s, received '%s'" % (repr([k for k in item.keys()]), statement))
(query, params) = item
if callable(params):
params = params(ctx)
if params is not None and isinstance(params, list) and len(params) == 1:
params = params[0]
if isinstance(parameters, sql.ClauseParameters):
parameters = parameters.get_original_dict()
elif isinstance(parameters, list):
parameters = [p.get_original_dict() for p in parameters]
query = self.convert_statement(query)
self.unittest.assert_(statement == query and (params is None or params == parameters), "Testing for query '%s' params %s, received '%s' with params %s" % (query, repr(params), statement, repr(parameters)))
self.sql_count += 1
return realexec(ctx, proxy, compiled, parameters, **kwargs)
e = self.real_execution_context()
realexec = e.post_exec
realexec.im_self.post_exec = post_exec
return e
def convert_statement(self, query):
paramstyle = self.engine.dialect.paramstyle
if paramstyle == 'named':
pass
elif paramstyle =='pyformat':
query = re.sub(r':([\w_]+)', r"%(\1)s", query)
else:
# positional params
repl = None
if paramstyle=='qmark':
repl = "?"
elif paramstyle=='format':
repl = r"%s"
elif paramstyle=='numeric':
repl = None
query = re.sub(r':([\w_]+)', repl, query)
return query
class TTestSuite(unittest.TestSuite):
"""override unittest.TestSuite to provide per-TestCase class setUpAll() and tearDownAll() functionality"""
def __init__(self, tests=()):
if len(tests) >0 and isinstance(tests[0], PersistTest):
self._initTest = tests[0]
else:
self._initTest = None
unittest.TestSuite.__init__(self, tests)
def do_run(self, result):
"""nice job unittest ! you switched __call__ and run() between py2.3 and 2.4 thereby
making straight subclassing impossible !"""
for test in self._tests:
if result.shouldStop:
break
test(result)
return result
def run(self, result):
return self(result)
def __call__(self, result):
try:
if self._initTest is not None:
self._initTest.setUpAll()
except:
result.addError(self._initTest, self.__exc_info())
pass
try:
return self.do_run(result)
finally:
try:
if self._initTest is not None:
self._initTest.tearDownAll()
except:
result.addError(self._initTest, self.__exc_info())
pass
def __exc_info(self):
"""Return a version of sys.exc_info() with the traceback frame
minimised; usually the top level of the traceback frame is not
needed.
ripped off out of unittest module since its double __
"""
exctype, excvalue, tb = sys.exc_info()
if sys.platform[:4] == 'java': ## tracebacks look different in Jython
return (exctype, excvalue, tb)
return (exctype, excvalue, tb)
unittest.TestLoader.suiteClass = TTestSuite
parse_argv()
def runTests(suite):
sys.stdout = Logger()
runner = unittest.TextTestRunner(verbosity = quiet and 1 or 2)
if with_coverage:
return cover(lambda:runner.run(suite))
else:
return runner.run(suite)
def covered_files():
for rec in os.walk(os.path.dirname(sqlalchemy.__file__)):
for x in rec[2]:
if x.endswith('.py'):
yield os.path.join(rec[0], x)
def cover(callable_):
import coverage
coverage_client = coverage.the_coverage
coverage_client.get_ready()
coverage_client.exclude('#pragma[: ]+[nN][oO] [cC][oO][vV][eE][rR]')
coverage_client.erase()
coverage_client.start()
try:
return callable_()
finally:
global echo
echo=True
coverage_client.stop()
coverage_client.save()
coverage_client.report(list(covered_files()), show_missing=False, ignore_errors=False)
def main(suite=None):
if not suite:
if len(sys.argv[1:]):
suite =unittest.TestLoader().loadTestsFromNames(sys.argv[1:], __import__('__main__'))
else:
suite = unittest.TestLoader().loadTestsFromModule(__import__('__main__'))
result = runTests(suite)
sys.exit(not result.wasSuccessful())
|