FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythoncapi-compat/tests/test_pythoncapi_compat.py at main · python/pythoncapi-compat · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
pythoncapi-compat
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
39
Star
109
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pythoncapi-compat
/
tests
/
test_pythoncapi_compat.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
239 lines (190 loc) · 5.74 KB
Breadcrumbs
pythoncapi-compat
/
tests
/
test_pythoncapi_compat.py
Copy path
File metadata and controls
239 lines (190 loc) · 5.74 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#!/usr/bin/python3
"""
Run the test suite.
Usage::
python3 run_tests.py
python3 run_tests.py -v # verbose mode
"""
from
__future__
import
absolute_import
from
__future__
import
print_function
import
gc
import
os
.
path
import
shutil
import
subprocess
import
sys
try
:
import
faulthandler
except
ImportError
:
# Python 2
faulthandler
=
None
try
:
import
sysconfig
except
ImportError
:
# Python 3.1 and older
sysconfig
=
None
# test.utils
from
utils
import
run_command
,
command_stdout
# Windows uses MSVC compiler
MSVC
=
(
os
.
name
==
"nt"
)
# C++ is only supported on Python 3.6 and newer
TEST_CXX
=
(
sys
.
version_info
>=
(
3
,
6
))
if
not
MSVC
:
C_TESTS
=
[
(
"test_pythoncapi_compat_cext_c99"
,
"C99"
),
(
"test_pythoncapi_compat_cext_c11"
,
"C11"
),
]
CXX_TESTS
=
[
(
"test_pythoncapi_compat_cpp03ext"
,
"C++03"
),
(
"test_pythoncapi_compat_cpp11ext"
,
"C++11"
),
(
"test_pythoncapi_compat_cpp14ext"
,
"C++14"
),
(
"test_pythoncapi_compat_cpp17ext"
,
"C++17"
),
(
"test_pythoncapi_compat_cpp20ext"
,
"C++20"
),
]
else
:
C_TESTS
=
[
(
"test_pythoncapi_compat_cext_c11"
,
"C11"
),
]
CXX_TESTS
=
[
(
"test_pythoncapi_compat_cppext"
,
"C++"
),
(
"test_pythoncapi_compat_cpp14ext"
,
"C++14"
),
]
VERBOSE
=
False
def
display_title
(
title
):
if
not
VERBOSE
:
return
title
=
"%s: %s"
%
(
python_version
(),
title
)
print
(
title
)
print
(
"="
*
len
(
title
))
print
()
sys
.
stdout
.
flush
()
def
build_ext
():
display_title
(
"Build test extensions"
)
if
os
.
path
.
exists
(
"build"
):
shutil
.
rmtree
(
"build"
)
cmd
=
[
sys
.
executable
,
"setup.py"
,
"build"
]
if
VERBOSE
:
run_command
(
cmd
)
print
()
else
:
exitcode
,
stdout
=
command_stdout
(
cmd
,
stderr
=
subprocess
.
STDOUT
)
if
exitcode
:
print
(
stdout
.
rstrip
())
sys
.
exit
(
exitcode
)
def
import_tests
(
module_name
):
pythonpath
=
None
for
name
in
os
.
listdir
(
"build"
):
if
name
.
startswith
(
'lib.'
):
pythonpath
=
os
.
path
.
join
(
"build"
,
name
)
if
not
pythonpath
:
raise
Exception
(
"Failed to find the build directory"
)
old_sys_path
=
list
(
sys
.
path
)
try
:
sys
.
path
.
append
(
pythonpath
)
return
__import__
(
module_name
)
finally
:
sys
.
path
[:]
=
old_sys_path
def
_run_tests
(
tests
,
verbose
):
for
name
,
test_func
in
tests
:
if
verbose
:
print
(
"%s()"
%
name
)
sys
.
stdout
.
flush
()
test_func
()
_HAS_CLEAR_INTERNAL_CACHES
=
hasattr
(
sys
,
'_clear_internal_caches'
)
_HAS_CLEAR_TYPE_CACHE
=
hasattr
(
sys
,
'_clear_type_cache'
)
def
_refleak_cleanup
():
if
_HAS_CLEAR_INTERNAL_CACHES
:
sys
.
_clear_internal_caches
()
elif
_HAS_CLEAR_TYPE_CACHE
:
sys
.
_clear_type_cache
()
gc
.
collect
()
def
_check_refleak
(
test_func
,
verbose
):
nrun
=
6
for
i
in
range
(
1
,
nrun
+
1
):
if
verbose
:
if
i
>
1
:
print
()
print
(
"Run %s/%s:"
%
(
i
,
nrun
))
sys
.
stdout
.
flush
()
init_refcnt
=
sys
.
gettotalrefcount
()
test_func
()
_refleak_cleanup
()
diff
=
sys
.
gettotalrefcount
()
-
init_refcnt
if
i
>
3
and
diff
:
raise
AssertionError
(
"refcnt leak, diff: %s"
%
diff
)
def
python_version
():
ver
=
sys
.
version_info
build
=
'debug'
if
hasattr
(
sys
,
'gettotalrefcount'
)
else
'release'
if
hasattr
(
sys
,
'implementation'
):
python_impl
=
sys
.
implementation
.
name
if
python_impl
==
'cpython'
:
python_impl
=
'CPython'
elif
python_impl
==
'pypy'
:
python_impl
=
'PyPy'
else
:
if
"PyPy"
in
sys
.
version
:
python_impl
=
"PyPy"
else
:
python_impl
=
'Python'
pyver
=
"%s.%s"
%
(
ver
.
major
,
ver
.
minor
)
if
ver
>=
(
3
,
13
):
if
sysconfig
.
get_config_var
(
'Py_GIL_DISABLED'
):
# Free-threaded build
pyver
+=
"t"
return
"%s %s (%s build)"
%
(
python_impl
,
pyver
,
build
)
def
run_tests
(
module_name
,
lang
):
if
VERBOSE
:
print
(
""
)
title
=
"Test %s (%s)"
%
(
module_name
,
lang
)
display_title
(
title
)
testmod
=
import_tests
(
module_name
)
if
VERBOSE
:
empty_line
=
False
for
attr
in
(
'__cplusplus'
,
'PY_VERSION'
,
'PY_VERSION_HEX'
,
'PYPY_VERSION'
,
'PYPY_VERSION_NUM'
):
try
:
value
=
getattr
(
testmod
,
attr
)
except
AttributeError
:
pass
else
:
if
attr
in
(
"PY_VERSION_HEX"
,
"PYPY_VERSION_NUM"
):
value
=
"0x%x"
%
value
print
(
"%s: %s"
%
(
attr
,
value
))
empty_line
=
True
if
empty_line
:
print
()
check_refleak
=
hasattr
(
sys
,
'gettotalrefcount'
)
tests
=
[(
name
,
getattr
(
testmod
,
name
))
for
name
in
dir
(
testmod
)
if
name
.
startswith
(
"test"
)]
def
test_func
():
_run_tests
(
tests
,
VERBOSE
)
if
check_refleak
:
_check_refleak
(
test_func
,
VERBOSE
)
else
:
test_func
()
if
VERBOSE
:
print
()
msg
=
"%s %s tests succeeded!"
%
(
len
(
tests
),
lang
)
msg
=
"%s: %s"
%
(
python_version
(),
msg
)
if
check_refleak
:
msg
=
"%s (no reference leak detected)"
%
msg
print
(
msg
)
def
main
():
global
VERBOSE
VERBOSE
=
(
"-v"
in
sys
.
argv
[
1
:]
or
"--verbose"
in
sys
.
argv
[
1
:])
if
(
3
,
13
)
<=
sys
.
version_info
<=
(
3
,
13
,
0
,
'alpha'
,
4
):
print
(
"SKIP Python 3.13 alpha 1..4: not supported!"
)
return
if
faulthandler
is
not
None
:
faulthandler
.
enable
()
src_dir
=
os
.
path
.
dirname
(
__file__
)
if
src_dir
:
os
.
chdir
(
src_dir
)
build_ext
()
tests
=
list
(
C_TESTS
)
if
TEST_CXX
:
tests
+=
CXX_TESTS
for
module_name
,
lang
in
tests
:
run_tests
(
module_name
,
lang
)
if
__name__
==
"__main__"
:
main
()
Back
|
FazBrowse Home
|
New Git URL