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
|
# This file is part of Hypothesis, which may be found at
# https://github.com/HypothesisWorks/hypothesis/
#
# Copyright the Hypothesis Authors.
# Individual contributors are listed in AUTHORS.rst and the git log.
#
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at https://mozilla.org/MPL/2.0/.
"""Try running `hypothesis write ...` on all available modules.
Prints a list of module names which caused some kind of internal error.
The idea here is to check that we at least don't crash on anything that
people actually ship, or at least only on the cases we know and don't
really care about - there are a lot of strange things in a python install.
Some have import-time side effects or errors so we skip them; others
just have such weird semantics that we don't _want_ to support them.
"""
import multiprocessing
import os
import subprocess
import sysconfig
skip = (
"idlelib curses antigravity pip prompt_toolkit IPython .popen_ django. .test. "
"execnet.script lib2to3.pgen2.conv tests. Cython. ~ - ._ libcst.codemod. "
"modernize flask. sphinx. pyasn1 dbm.ndbm doctest"
).split()
def getmodules():
std_lib = sysconfig.get_python_lib(standard_lib=True)
for top, _, files in os.walk(std_lib):
for nm in files:
if nm.endswith(".py") and nm not in ("__init__.py", "__main__.py"):
modname = (
os.path.join(top, nm)[len(std_lib) + 1 : -3]
.replace(os.sep, ".")
.replace("site-packages.", "")
)
if not any(bad in modname for bad in skip):
yield modname
def write_for(mod):
try:
subprocess.run(
["hypothesis", "write", mod],
check=True,
capture_output=True,
timeout=10,
text=True,
encoding="utf-8",
)
except subprocess.SubprocessError as e:
# Only report the error if we could load _but not process_ the module
if (
"Error: Found the '" not in e.stderr
and "Error: Failed to import" not in e.stderr
):
return mod
if __name__ == "__main__":
print("# prints the names of modules for which `hypothesis write` errors out")
with multiprocessing.Pool() as pool:
for name in pool.imap(write_for, getmodules()):
if name is not None:
print(name, flush=True)
|