SQLAlchemy 2.0.47__cp313-cp313t-win32.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sqlalchemy/__init__.py +283 -0
- sqlalchemy/connectors/__init__.py +18 -0
- sqlalchemy/connectors/aioodbc.py +184 -0
- sqlalchemy/connectors/asyncio.py +429 -0
- sqlalchemy/connectors/pyodbc.py +250 -0
- sqlalchemy/cyextension/__init__.py +6 -0
- sqlalchemy/cyextension/collections.cp313t-win32.pyd +0 -0
- sqlalchemy/cyextension/collections.pyx +409 -0
- sqlalchemy/cyextension/immutabledict.cp313t-win32.pyd +0 -0
- sqlalchemy/cyextension/immutabledict.pxd +8 -0
- sqlalchemy/cyextension/immutabledict.pyx +133 -0
- sqlalchemy/cyextension/processors.cp313t-win32.pyd +0 -0
- sqlalchemy/cyextension/processors.pyx +68 -0
- sqlalchemy/cyextension/resultproxy.cp313t-win32.pyd +0 -0
- sqlalchemy/cyextension/resultproxy.pyx +102 -0
- sqlalchemy/cyextension/util.cp313t-win32.pyd +0 -0
- sqlalchemy/cyextension/util.pyx +90 -0
- sqlalchemy/dialects/__init__.py +62 -0
- sqlalchemy/dialects/_typing.py +30 -0
- sqlalchemy/dialects/mssql/__init__.py +88 -0
- sqlalchemy/dialects/mssql/aioodbc.py +63 -0
- sqlalchemy/dialects/mssql/base.py +4093 -0
- sqlalchemy/dialects/mssql/information_schema.py +285 -0
- sqlalchemy/dialects/mssql/json.py +129 -0
- sqlalchemy/dialects/mssql/provision.py +185 -0
- sqlalchemy/dialects/mssql/pymssql.py +126 -0
- sqlalchemy/dialects/mssql/pyodbc.py +760 -0
- sqlalchemy/dialects/mysql/__init__.py +104 -0
- sqlalchemy/dialects/mysql/aiomysql.py +250 -0
- sqlalchemy/dialects/mysql/asyncmy.py +231 -0
- sqlalchemy/dialects/mysql/base.py +3949 -0
- sqlalchemy/dialects/mysql/cymysql.py +106 -0
- sqlalchemy/dialects/mysql/dml.py +225 -0
- sqlalchemy/dialects/mysql/enumerated.py +282 -0
- sqlalchemy/dialects/mysql/expression.py +146 -0
- sqlalchemy/dialects/mysql/json.py +91 -0
- sqlalchemy/dialects/mysql/mariadb.py +72 -0
- sqlalchemy/dialects/mysql/mariadbconnector.py +322 -0
- sqlalchemy/dialects/mysql/mysqlconnector.py +302 -0
- sqlalchemy/dialects/mysql/mysqldb.py +314 -0
- sqlalchemy/dialects/mysql/provision.py +153 -0
- sqlalchemy/dialects/mysql/pymysql.py +158 -0
- sqlalchemy/dialects/mysql/pyodbc.py +157 -0
- sqlalchemy/dialects/mysql/reflection.py +727 -0
- sqlalchemy/dialects/mysql/reserved_words.py +570 -0
- sqlalchemy/dialects/mysql/types.py +835 -0
- sqlalchemy/dialects/oracle/__init__.py +81 -0
- sqlalchemy/dialects/oracle/base.py +3802 -0
- sqlalchemy/dialects/oracle/cx_oracle.py +1555 -0
- sqlalchemy/dialects/oracle/dictionary.py +507 -0
- sqlalchemy/dialects/oracle/oracledb.py +941 -0
- sqlalchemy/dialects/oracle/provision.py +297 -0
- sqlalchemy/dialects/oracle/types.py +316 -0
- sqlalchemy/dialects/oracle/vector.py +365 -0
- sqlalchemy/dialects/postgresql/__init__.py +167 -0
- sqlalchemy/dialects/postgresql/_psycopg_common.py +189 -0
- sqlalchemy/dialects/postgresql/array.py +519 -0
- sqlalchemy/dialects/postgresql/asyncpg.py +1284 -0
- sqlalchemy/dialects/postgresql/base.py +5378 -0
- sqlalchemy/dialects/postgresql/dml.py +339 -0
- sqlalchemy/dialects/postgresql/ext.py +540 -0
- sqlalchemy/dialects/postgresql/hstore.py +406 -0
- sqlalchemy/dialects/postgresql/json.py +404 -0
- sqlalchemy/dialects/postgresql/named_types.py +524 -0
- sqlalchemy/dialects/postgresql/operators.py +129 -0
- sqlalchemy/dialects/postgresql/pg8000.py +669 -0
- sqlalchemy/dialects/postgresql/pg_catalog.py +326 -0
- sqlalchemy/dialects/postgresql/provision.py +183 -0
- sqlalchemy/dialects/postgresql/psycopg.py +862 -0
- sqlalchemy/dialects/postgresql/psycopg2.py +892 -0
- sqlalchemy/dialects/postgresql/psycopg2cffi.py +61 -0
- sqlalchemy/dialects/postgresql/ranges.py +1031 -0
- sqlalchemy/dialects/postgresql/types.py +313 -0
- sqlalchemy/dialects/sqlite/__init__.py +57 -0
- sqlalchemy/dialects/sqlite/aiosqlite.py +482 -0
- sqlalchemy/dialects/sqlite/base.py +3056 -0
- sqlalchemy/dialects/sqlite/dml.py +263 -0
- sqlalchemy/dialects/sqlite/json.py +92 -0
- sqlalchemy/dialects/sqlite/provision.py +229 -0
- sqlalchemy/dialects/sqlite/pysqlcipher.py +157 -0
- sqlalchemy/dialects/sqlite/pysqlite.py +756 -0
- sqlalchemy/dialects/type_migration_guidelines.txt +145 -0
- sqlalchemy/engine/__init__.py +62 -0
- sqlalchemy/engine/_py_processors.py +136 -0
- sqlalchemy/engine/_py_row.py +128 -0
- sqlalchemy/engine/_py_util.py +74 -0
- sqlalchemy/engine/base.py +3390 -0
- sqlalchemy/engine/characteristics.py +155 -0
- sqlalchemy/engine/create.py +893 -0
- sqlalchemy/engine/cursor.py +2298 -0
- sqlalchemy/engine/default.py +2394 -0
- sqlalchemy/engine/events.py +965 -0
- sqlalchemy/engine/interfaces.py +3471 -0
- sqlalchemy/engine/mock.py +134 -0
- sqlalchemy/engine/processors.py +61 -0
- sqlalchemy/engine/reflection.py +2102 -0
- sqlalchemy/engine/result.py +2399 -0
- sqlalchemy/engine/row.py +400 -0
- sqlalchemy/engine/strategies.py +16 -0
- sqlalchemy/engine/url.py +924 -0
- sqlalchemy/engine/util.py +167 -0
- sqlalchemy/event/__init__.py +26 -0
- sqlalchemy/event/api.py +220 -0
- sqlalchemy/event/attr.py +676 -0
- sqlalchemy/event/base.py +472 -0
- sqlalchemy/event/legacy.py +258 -0
- sqlalchemy/event/registry.py +390 -0
- sqlalchemy/events.py +17 -0
- sqlalchemy/exc.py +832 -0
- sqlalchemy/ext/__init__.py +11 -0
- sqlalchemy/ext/associationproxy.py +2027 -0
- sqlalchemy/ext/asyncio/__init__.py +25 -0
- sqlalchemy/ext/asyncio/base.py +281 -0
- sqlalchemy/ext/asyncio/engine.py +1471 -0
- sqlalchemy/ext/asyncio/exc.py +21 -0
- sqlalchemy/ext/asyncio/result.py +965 -0
- sqlalchemy/ext/asyncio/scoping.py +1599 -0
- sqlalchemy/ext/asyncio/session.py +1947 -0
- sqlalchemy/ext/automap.py +1701 -0
- sqlalchemy/ext/baked.py +570 -0
- sqlalchemy/ext/compiler.py +600 -0
- sqlalchemy/ext/declarative/__init__.py +65 -0
- sqlalchemy/ext/declarative/extensions.py +564 -0
- sqlalchemy/ext/horizontal_shard.py +478 -0
- sqlalchemy/ext/hybrid.py +1535 -0
- sqlalchemy/ext/indexable.py +364 -0
- sqlalchemy/ext/instrumentation.py +450 -0
- sqlalchemy/ext/mutable.py +1085 -0
- sqlalchemy/ext/mypy/__init__.py +6 -0
- sqlalchemy/ext/mypy/apply.py +324 -0
- sqlalchemy/ext/mypy/decl_class.py +515 -0
- sqlalchemy/ext/mypy/infer.py +590 -0
- sqlalchemy/ext/mypy/names.py +335 -0
- sqlalchemy/ext/mypy/plugin.py +303 -0
- sqlalchemy/ext/mypy/util.py +357 -0
- sqlalchemy/ext/orderinglist.py +439 -0
- sqlalchemy/ext/serializer.py +185 -0
- sqlalchemy/future/__init__.py +16 -0
- sqlalchemy/future/engine.py +15 -0
- sqlalchemy/inspection.py +174 -0
- sqlalchemy/log.py +288 -0
- sqlalchemy/orm/__init__.py +171 -0
- sqlalchemy/orm/_orm_constructors.py +2661 -0
- sqlalchemy/orm/_typing.py +179 -0
- sqlalchemy/orm/attributes.py +2845 -0
- sqlalchemy/orm/base.py +971 -0
- sqlalchemy/orm/bulk_persistence.py +2135 -0
- sqlalchemy/orm/clsregistry.py +571 -0
- sqlalchemy/orm/collections.py +1627 -0
- sqlalchemy/orm/context.py +3334 -0
- sqlalchemy/orm/decl_api.py +2004 -0
- sqlalchemy/orm/decl_base.py +2192 -0
- sqlalchemy/orm/dependency.py +1302 -0
- sqlalchemy/orm/descriptor_props.py +1092 -0
- sqlalchemy/orm/dynamic.py +300 -0
- sqlalchemy/orm/evaluator.py +379 -0
- sqlalchemy/orm/events.py +3252 -0
- sqlalchemy/orm/exc.py +237 -0
- sqlalchemy/orm/identity.py +302 -0
- sqlalchemy/orm/instrumentation.py +754 -0
- sqlalchemy/orm/interfaces.py +1496 -0
- sqlalchemy/orm/loading.py +1686 -0
- sqlalchemy/orm/mapped_collection.py +557 -0
- sqlalchemy/orm/mapper.py +4444 -0
- sqlalchemy/orm/path_registry.py +809 -0
- sqlalchemy/orm/persistence.py +1788 -0
- sqlalchemy/orm/properties.py +935 -0
- sqlalchemy/orm/query.py +3459 -0
- sqlalchemy/orm/relationships.py +3508 -0
- sqlalchemy/orm/scoping.py +2148 -0
- sqlalchemy/orm/session.py +5280 -0
- sqlalchemy/orm/state.py +1168 -0
- sqlalchemy/orm/state_changes.py +196 -0
- sqlalchemy/orm/strategies.py +3470 -0
- sqlalchemy/orm/strategy_options.py +2568 -0
- sqlalchemy/orm/sync.py +164 -0
- sqlalchemy/orm/unitofwork.py +796 -0
- sqlalchemy/orm/util.py +2403 -0
- sqlalchemy/orm/writeonly.py +674 -0
- sqlalchemy/pool/__init__.py +44 -0
- sqlalchemy/pool/base.py +1524 -0
- sqlalchemy/pool/events.py +375 -0
- sqlalchemy/pool/impl.py +588 -0
- sqlalchemy/py.typed +0 -0
- sqlalchemy/schema.py +69 -0
- sqlalchemy/sql/__init__.py +145 -0
- sqlalchemy/sql/_dml_constructors.py +132 -0
- sqlalchemy/sql/_elements_constructors.py +1872 -0
- sqlalchemy/sql/_orm_types.py +20 -0
- sqlalchemy/sql/_py_util.py +75 -0
- sqlalchemy/sql/_selectable_constructors.py +763 -0
- sqlalchemy/sql/_typing.py +482 -0
- sqlalchemy/sql/annotation.py +587 -0
- sqlalchemy/sql/base.py +2293 -0
- sqlalchemy/sql/cache_key.py +1057 -0
- sqlalchemy/sql/coercions.py +1404 -0
- sqlalchemy/sql/compiler.py +8081 -0
- sqlalchemy/sql/crud.py +1752 -0
- sqlalchemy/sql/ddl.py +1444 -0
- sqlalchemy/sql/default_comparator.py +551 -0
- sqlalchemy/sql/dml.py +1850 -0
- sqlalchemy/sql/elements.py +5589 -0
- sqlalchemy/sql/events.py +458 -0
- sqlalchemy/sql/expression.py +159 -0
- sqlalchemy/sql/functions.py +2158 -0
- sqlalchemy/sql/lambdas.py +1442 -0
- sqlalchemy/sql/naming.py +209 -0
- sqlalchemy/sql/operators.py +2623 -0
- sqlalchemy/sql/roles.py +323 -0
- sqlalchemy/sql/schema.py +6222 -0
- sqlalchemy/sql/selectable.py +7265 -0
- sqlalchemy/sql/sqltypes.py +3930 -0
- sqlalchemy/sql/traversals.py +1024 -0
- sqlalchemy/sql/type_api.py +2368 -0
- sqlalchemy/sql/util.py +1485 -0
- sqlalchemy/sql/visitors.py +1164 -0
- sqlalchemy/testing/__init__.py +96 -0
- sqlalchemy/testing/assertions.py +994 -0
- sqlalchemy/testing/assertsql.py +520 -0
- sqlalchemy/testing/asyncio.py +135 -0
- sqlalchemy/testing/config.py +434 -0
- sqlalchemy/testing/engines.py +483 -0
- sqlalchemy/testing/entities.py +117 -0
- sqlalchemy/testing/exclusions.py +476 -0
- sqlalchemy/testing/fixtures/__init__.py +28 -0
- sqlalchemy/testing/fixtures/base.py +384 -0
- sqlalchemy/testing/fixtures/mypy.py +332 -0
- sqlalchemy/testing/fixtures/orm.py +227 -0
- sqlalchemy/testing/fixtures/sql.py +482 -0
- sqlalchemy/testing/pickleable.py +155 -0
- sqlalchemy/testing/plugin/__init__.py +6 -0
- sqlalchemy/testing/plugin/bootstrap.py +51 -0
- sqlalchemy/testing/plugin/plugin_base.py +828 -0
- sqlalchemy/testing/plugin/pytestplugin.py +892 -0
- sqlalchemy/testing/profiling.py +329 -0
- sqlalchemy/testing/provision.py +603 -0
- sqlalchemy/testing/requirements.py +1945 -0
- sqlalchemy/testing/schema.py +198 -0
- sqlalchemy/testing/suite/__init__.py +19 -0
- sqlalchemy/testing/suite/test_cte.py +237 -0
- sqlalchemy/testing/suite/test_ddl.py +389 -0
- sqlalchemy/testing/suite/test_deprecations.py +153 -0
- sqlalchemy/testing/suite/test_dialect.py +776 -0
- sqlalchemy/testing/suite/test_insert.py +630 -0
- sqlalchemy/testing/suite/test_reflection.py +3557 -0
- sqlalchemy/testing/suite/test_results.py +504 -0
- sqlalchemy/testing/suite/test_rowcount.py +258 -0
- sqlalchemy/testing/suite/test_select.py +2010 -0
- sqlalchemy/testing/suite/test_sequence.py +317 -0
- sqlalchemy/testing/suite/test_types.py +2147 -0
- sqlalchemy/testing/suite/test_unicode_ddl.py +189 -0
- sqlalchemy/testing/suite/test_update_delete.py +139 -0
- sqlalchemy/testing/util.py +535 -0
- sqlalchemy/testing/warnings.py +52 -0
- sqlalchemy/types.py +74 -0
- sqlalchemy/util/__init__.py +162 -0
- sqlalchemy/util/_collections.py +712 -0
- sqlalchemy/util/_concurrency_py3k.py +288 -0
- sqlalchemy/util/_has_cy.py +40 -0
- sqlalchemy/util/_py_collections.py +541 -0
- sqlalchemy/util/compat.py +421 -0
- sqlalchemy/util/concurrency.py +110 -0
- sqlalchemy/util/deprecations.py +401 -0
- sqlalchemy/util/langhelpers.py +2203 -0
- sqlalchemy/util/preloaded.py +150 -0
- sqlalchemy/util/queue.py +322 -0
- sqlalchemy/util/tool_support.py +201 -0
- sqlalchemy/util/topological.py +120 -0
- sqlalchemy/util/typing.py +734 -0
- sqlalchemy-2.0.47.dist-info/METADATA +243 -0
- sqlalchemy-2.0.47.dist-info/RECORD +274 -0
- sqlalchemy-2.0.47.dist-info/WHEEL +5 -0
- sqlalchemy-2.0.47.dist-info/licenses/LICENSE +19 -0
- sqlalchemy-2.0.47.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,329 @@
|
|
|
1
|
+
# testing/profiling.py
|
|
2
|
+
# Copyright (C) 2005-2026 the SQLAlchemy authors and contributors
|
|
3
|
+
# <see AUTHORS file>
|
|
4
|
+
#
|
|
5
|
+
# This module is part of SQLAlchemy and is released under
|
|
6
|
+
# the MIT License: https://www.opensource.org/licenses/mit-license.php
|
|
7
|
+
# mypy: ignore-errors
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
"""Profiling support for unit and performance tests.
|
|
11
|
+
|
|
12
|
+
These are special purpose profiling methods which operate
|
|
13
|
+
in a more fine-grained way than nose's profiling plugin.
|
|
14
|
+
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
19
|
+
import collections
|
|
20
|
+
import contextlib
|
|
21
|
+
import os
|
|
22
|
+
import platform
|
|
23
|
+
import pstats
|
|
24
|
+
import re
|
|
25
|
+
import sys
|
|
26
|
+
|
|
27
|
+
from . import config
|
|
28
|
+
from .util import gc_collect
|
|
29
|
+
from ..util import freethreading
|
|
30
|
+
from ..util import has_compiled_ext
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
try:
|
|
34
|
+
import cProfile
|
|
35
|
+
except ImportError:
|
|
36
|
+
cProfile = None
|
|
37
|
+
|
|
38
|
+
_profile_stats = None
|
|
39
|
+
"""global ProfileStatsFileInstance.
|
|
40
|
+
|
|
41
|
+
plugin_base assigns this at the start of all tests.
|
|
42
|
+
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
_current_test = None
|
|
47
|
+
"""String id of current test.
|
|
48
|
+
|
|
49
|
+
plugin_base assigns this at the start of each test using
|
|
50
|
+
_start_current_test.
|
|
51
|
+
|
|
52
|
+
"""
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
def _start_current_test(id_):
|
|
56
|
+
global _current_test
|
|
57
|
+
_current_test = id_
|
|
58
|
+
|
|
59
|
+
if _profile_stats.force_write:
|
|
60
|
+
_profile_stats.reset_count()
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
class ProfileStatsFile:
|
|
64
|
+
"""Store per-platform/fn profiling results in a file.
|
|
65
|
+
|
|
66
|
+
There was no json module available when this was written, but now
|
|
67
|
+
the file format which is very deterministically line oriented is kind of
|
|
68
|
+
handy in any case for diffs and merges.
|
|
69
|
+
|
|
70
|
+
"""
|
|
71
|
+
|
|
72
|
+
def __init__(self, filename, sort="cumulative", dump=None):
|
|
73
|
+
self.force_write = (
|
|
74
|
+
config.options is not None and config.options.force_write_profiles
|
|
75
|
+
)
|
|
76
|
+
self.write = self.force_write or (
|
|
77
|
+
config.options is not None and config.options.write_profiles
|
|
78
|
+
)
|
|
79
|
+
self.fname = os.path.abspath(filename)
|
|
80
|
+
self.short_fname = os.path.split(self.fname)[-1]
|
|
81
|
+
self.data = collections.defaultdict(
|
|
82
|
+
lambda: collections.defaultdict(dict)
|
|
83
|
+
)
|
|
84
|
+
self.dump = dump
|
|
85
|
+
self.sort = sort
|
|
86
|
+
self._read()
|
|
87
|
+
if self.write:
|
|
88
|
+
# rewrite for the case where features changed,
|
|
89
|
+
# etc.
|
|
90
|
+
self._write()
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
def platform_key(self):
|
|
94
|
+
dbapi_key = config.db.name + "_" + config.db.driver
|
|
95
|
+
if config.db.dialect.is_async:
|
|
96
|
+
dbapi_key += "_async"
|
|
97
|
+
|
|
98
|
+
if config.db.name == "sqlite" and config.db.dialect._is_url_file_db(
|
|
99
|
+
config.db.url
|
|
100
|
+
):
|
|
101
|
+
dbapi_key += "_file"
|
|
102
|
+
|
|
103
|
+
# keep it at 2.7, 3.1, 3.2, etc. for now.
|
|
104
|
+
py_version = ".".join([str(v) for v in sys.version_info[0:2]])
|
|
105
|
+
if freethreading:
|
|
106
|
+
py_version += "t"
|
|
107
|
+
|
|
108
|
+
platform_tokens = [
|
|
109
|
+
platform.machine(),
|
|
110
|
+
platform.system().lower(),
|
|
111
|
+
platform.python_implementation().lower(),
|
|
112
|
+
py_version,
|
|
113
|
+
dbapi_key,
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
platform_tokens.append("dbapiunicode")
|
|
117
|
+
_has_cext = has_compiled_ext()
|
|
118
|
+
platform_tokens.append(_has_cext and "cextensions" or "nocextensions")
|
|
119
|
+
return "_".join(platform_tokens)
|
|
120
|
+
|
|
121
|
+
def has_stats(self):
|
|
122
|
+
test_key = _current_test
|
|
123
|
+
return (
|
|
124
|
+
test_key in self.data and self.platform_key in self.data[test_key]
|
|
125
|
+
)
|
|
126
|
+
|
|
127
|
+
def result(self, callcount):
|
|
128
|
+
test_key = _current_test
|
|
129
|
+
per_fn = self.data[test_key]
|
|
130
|
+
per_platform = per_fn[self.platform_key]
|
|
131
|
+
|
|
132
|
+
if "counts" not in per_platform:
|
|
133
|
+
per_platform["counts"] = counts = []
|
|
134
|
+
else:
|
|
135
|
+
counts = per_platform["counts"]
|
|
136
|
+
|
|
137
|
+
if "current_count" not in per_platform:
|
|
138
|
+
per_platform["current_count"] = current_count = 0
|
|
139
|
+
else:
|
|
140
|
+
current_count = per_platform["current_count"]
|
|
141
|
+
|
|
142
|
+
has_count = len(counts) > current_count
|
|
143
|
+
|
|
144
|
+
if not has_count:
|
|
145
|
+
counts.append(callcount)
|
|
146
|
+
if self.write:
|
|
147
|
+
self._write()
|
|
148
|
+
result = None
|
|
149
|
+
else:
|
|
150
|
+
result = per_platform["lineno"], counts[current_count]
|
|
151
|
+
per_platform["current_count"] += 1
|
|
152
|
+
return result
|
|
153
|
+
|
|
154
|
+
def reset_count(self):
|
|
155
|
+
test_key = _current_test
|
|
156
|
+
# since self.data is a defaultdict, don't access a key
|
|
157
|
+
# if we don't know it's there first.
|
|
158
|
+
if test_key not in self.data:
|
|
159
|
+
return
|
|
160
|
+
per_fn = self.data[test_key]
|
|
161
|
+
if self.platform_key not in per_fn:
|
|
162
|
+
return
|
|
163
|
+
per_platform = per_fn[self.platform_key]
|
|
164
|
+
if "counts" in per_platform:
|
|
165
|
+
per_platform["counts"][:] = []
|
|
166
|
+
|
|
167
|
+
def replace(self, callcount):
|
|
168
|
+
test_key = _current_test
|
|
169
|
+
per_fn = self.data[test_key]
|
|
170
|
+
per_platform = per_fn[self.platform_key]
|
|
171
|
+
counts = per_platform["counts"]
|
|
172
|
+
current_count = per_platform["current_count"]
|
|
173
|
+
if current_count < len(counts):
|
|
174
|
+
counts[current_count - 1] = callcount
|
|
175
|
+
else:
|
|
176
|
+
counts[-1] = callcount
|
|
177
|
+
if self.write:
|
|
178
|
+
self._write()
|
|
179
|
+
|
|
180
|
+
def _header(self):
|
|
181
|
+
return (
|
|
182
|
+
"# %s\n"
|
|
183
|
+
"# This file is written out on a per-environment basis.\n"
|
|
184
|
+
"# For each test in aaa_profiling, the corresponding "
|
|
185
|
+
"function and \n"
|
|
186
|
+
"# environment is located within this file. "
|
|
187
|
+
"If it doesn't exist,\n"
|
|
188
|
+
"# the test is skipped.\n"
|
|
189
|
+
"# If a callcount does exist, it is compared "
|
|
190
|
+
"to what we received. \n"
|
|
191
|
+
"# assertions are raised if the counts do not match.\n"
|
|
192
|
+
"# \n"
|
|
193
|
+
"# To add a new callcount test, apply the function_call_count \n"
|
|
194
|
+
"# decorator and re-run the tests using the --write-profiles \n"
|
|
195
|
+
"# option - this file will be rewritten including the new count.\n"
|
|
196
|
+
"# \n"
|
|
197
|
+
) % (self.fname)
|
|
198
|
+
|
|
199
|
+
def _read(self):
|
|
200
|
+
try:
|
|
201
|
+
profile_f = open(self.fname)
|
|
202
|
+
except OSError:
|
|
203
|
+
return
|
|
204
|
+
for lineno, line in enumerate(profile_f):
|
|
205
|
+
line = line.strip()
|
|
206
|
+
if not line or line.startswith("#"):
|
|
207
|
+
continue
|
|
208
|
+
|
|
209
|
+
test_key, platform_key, counts = line.split()
|
|
210
|
+
per_fn = self.data[test_key]
|
|
211
|
+
per_platform = per_fn[platform_key]
|
|
212
|
+
c = [int(count) for count in counts.split(",")]
|
|
213
|
+
per_platform["counts"] = c
|
|
214
|
+
per_platform["lineno"] = lineno + 1
|
|
215
|
+
per_platform["current_count"] = 0
|
|
216
|
+
profile_f.close()
|
|
217
|
+
|
|
218
|
+
def _write(self):
|
|
219
|
+
print("Writing profile file %s" % self.fname)
|
|
220
|
+
profile_f = open(self.fname, "w")
|
|
221
|
+
profile_f.write(self._header())
|
|
222
|
+
for test_key in sorted(self.data):
|
|
223
|
+
per_fn = self.data[test_key]
|
|
224
|
+
profile_f.write("\n# TEST: %s\n\n" % test_key)
|
|
225
|
+
for platform_key in sorted(per_fn):
|
|
226
|
+
per_platform = per_fn[platform_key]
|
|
227
|
+
c = ",".join(str(count) for count in per_platform["counts"])
|
|
228
|
+
profile_f.write("%s %s %s\n" % (test_key, platform_key, c))
|
|
229
|
+
profile_f.close()
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
def function_call_count(variance=0.05, times=1, warmup=0):
|
|
233
|
+
"""Assert a target for a test case's function call count.
|
|
234
|
+
|
|
235
|
+
The main purpose of this assertion is to detect changes in
|
|
236
|
+
callcounts for various functions - the actual number is not as important.
|
|
237
|
+
Callcounts are stored in a file keyed to Python version and OS platform
|
|
238
|
+
information. This file is generated automatically for new tests,
|
|
239
|
+
and versioned so that unexpected changes in callcounts will be detected.
|
|
240
|
+
|
|
241
|
+
"""
|
|
242
|
+
|
|
243
|
+
# use signature-rewriting decorator function so that pytest fixtures
|
|
244
|
+
# still work on py27. In Py3, update_wrapper() alone is good enough,
|
|
245
|
+
# likely due to the introduction of __signature__.
|
|
246
|
+
|
|
247
|
+
from sqlalchemy.util import decorator
|
|
248
|
+
|
|
249
|
+
@decorator
|
|
250
|
+
def wrap(fn, *args, **kw):
|
|
251
|
+
for warm in range(warmup):
|
|
252
|
+
fn(*args, **kw)
|
|
253
|
+
|
|
254
|
+
timerange = range(times)
|
|
255
|
+
with count_functions(variance=variance):
|
|
256
|
+
for time in timerange:
|
|
257
|
+
rv = fn(*args, **kw)
|
|
258
|
+
return rv
|
|
259
|
+
|
|
260
|
+
return wrap
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
@contextlib.contextmanager
|
|
264
|
+
def count_functions(variance=0.05):
|
|
265
|
+
if cProfile is None:
|
|
266
|
+
raise config._skip_test_exception("cProfile is not installed")
|
|
267
|
+
|
|
268
|
+
if not _profile_stats.has_stats() and not _profile_stats.write:
|
|
269
|
+
config.skip_test(
|
|
270
|
+
"No profiling stats available on this "
|
|
271
|
+
"platform for this function. Run tests with "
|
|
272
|
+
"--write-profiles to add statistics to %s for "
|
|
273
|
+
"this platform." % _profile_stats.short_fname
|
|
274
|
+
)
|
|
275
|
+
|
|
276
|
+
gc_collect()
|
|
277
|
+
|
|
278
|
+
pr = cProfile.Profile()
|
|
279
|
+
pr.enable()
|
|
280
|
+
# began = time.time()
|
|
281
|
+
yield
|
|
282
|
+
# ended = time.time()
|
|
283
|
+
pr.disable()
|
|
284
|
+
|
|
285
|
+
# s = StringIO()
|
|
286
|
+
stats = pstats.Stats(pr, stream=sys.stdout)
|
|
287
|
+
|
|
288
|
+
# timespent = ended - began
|
|
289
|
+
callcount = stats.total_calls
|
|
290
|
+
|
|
291
|
+
expected = _profile_stats.result(callcount)
|
|
292
|
+
|
|
293
|
+
if expected is None:
|
|
294
|
+
expected_count = None
|
|
295
|
+
else:
|
|
296
|
+
line_no, expected_count = expected
|
|
297
|
+
|
|
298
|
+
print("Pstats calls: %d Expected %s" % (callcount, expected_count))
|
|
299
|
+
stats.sort_stats(*re.split(r"[, ]", _profile_stats.sort))
|
|
300
|
+
stats.print_stats()
|
|
301
|
+
if _profile_stats.dump:
|
|
302
|
+
base, ext = os.path.splitext(_profile_stats.dump)
|
|
303
|
+
test_name = _current_test.split(".")[-1]
|
|
304
|
+
dumpfile = "%s_%s%s" % (base, test_name, ext or ".profile")
|
|
305
|
+
stats.dump_stats(dumpfile)
|
|
306
|
+
print("Dumped stats to file %s" % dumpfile)
|
|
307
|
+
# stats.print_callers()
|
|
308
|
+
if _profile_stats.force_write:
|
|
309
|
+
_profile_stats.replace(callcount)
|
|
310
|
+
elif expected_count:
|
|
311
|
+
deviance = int(callcount * variance)
|
|
312
|
+
failed = abs(callcount - expected_count) > deviance
|
|
313
|
+
|
|
314
|
+
if failed:
|
|
315
|
+
if _profile_stats.write:
|
|
316
|
+
_profile_stats.replace(callcount)
|
|
317
|
+
else:
|
|
318
|
+
raise AssertionError(
|
|
319
|
+
"Adjusted function call count %s not within %s%% "
|
|
320
|
+
"of expected %s, platform %s. Rerun with "
|
|
321
|
+
"--write-profiles to "
|
|
322
|
+
"regenerate this callcount."
|
|
323
|
+
% (
|
|
324
|
+
callcount,
|
|
325
|
+
(variance * 100),
|
|
326
|
+
expected_count,
|
|
327
|
+
_profile_stats.platform_key,
|
|
328
|
+
)
|
|
329
|
+
)
|