2001-01-22 19:37:04 -04:00
|
|
|
from test_support import verify, verbose
|
2001-01-20 15:54:20 -04:00
|
|
|
import sys
|
2002-04-11 17:04:12 -03:00
|
|
|
import warnings
|
|
|
|
|
2002-04-15 22:27:44 -03:00
|
|
|
warnings.filterwarnings("ignore", ".* 'pre' .*", DeprecationWarning,
|
|
|
|
r'pre$')
|
|
|
|
warnings.filterwarnings("ignore", ".* regsub .*", DeprecationWarning,
|
|
|
|
r'^regsub$')
|
|
|
|
warnings.filterwarnings("ignore", ".* statcache .*", DeprecationWarning,
|
|
|
|
r'statcache$')
|
2001-01-20 15:54:20 -04:00
|
|
|
|
2001-01-22 19:37:04 -04:00
|
|
|
def check_all(modname):
|
|
|
|
names = {}
|
2001-01-25 11:29:22 -04:00
|
|
|
try:
|
|
|
|
exec "import %s" % modname in names
|
|
|
|
except ImportError:
|
2001-02-11 23:27:31 -04:00
|
|
|
# Silent fail here seems the best route since some modules
|
|
|
|
# may not be available in all environments.
|
|
|
|
# Since an ImportError may leave a partial module object in
|
|
|
|
# sys.modules, get rid of that first. Here's what happens if
|
|
|
|
# you don't: importing pty fails on Windows because pty tries to
|
|
|
|
# import FCNTL, which doesn't exist. That raises an ImportError,
|
|
|
|
# caught here. It also leaves a partial pty module in sys.modules.
|
|
|
|
# So when test_pty is called later, the import of pty succeeds,
|
|
|
|
# but shouldn't. As a result, test_pty crashes with an
|
2001-11-02 17:45:39 -04:00
|
|
|
# AttributeError instead of an ImportError, and regrtest interprets
|
2001-02-11 23:27:31 -04:00
|
|
|
# the latter as a test failure (ImportError is treated as "test
|
|
|
|
# skipped" -- which is what test_pty should say on Windows).
|
|
|
|
try:
|
|
|
|
del sys.modules[modname]
|
|
|
|
except KeyError:
|
|
|
|
pass
|
2001-01-25 11:29:22 -04:00
|
|
|
return
|
2001-01-22 19:37:04 -04:00
|
|
|
verify(hasattr(sys.modules[modname], "__all__"),
|
|
|
|
"%s has no __all__ attribute" % modname)
|
|
|
|
names = {}
|
|
|
|
exec "from %s import *" % modname in names
|
2001-02-07 18:46:55 -04:00
|
|
|
if names.has_key("__builtins__"):
|
|
|
|
del names["__builtins__"]
|
2001-01-22 19:37:04 -04:00
|
|
|
keys = names.keys()
|
|
|
|
keys.sort()
|
|
|
|
all = list(sys.modules[modname].__all__) # in case it's a tuple
|
2001-01-20 15:54:20 -04:00
|
|
|
all.sort()
|
2001-01-22 19:37:04 -04:00
|
|
|
verify(keys==all, "%s != %s" % (keys, all))
|
2001-01-20 15:54:20 -04:00
|
|
|
|
2001-12-07 17:35:42 -04:00
|
|
|
if not sys.platform.startswith('java'):
|
|
|
|
# In case _socket fails to build, make this test fail more gracefully
|
|
|
|
# than an AttributeError somewhere deep in CGIHTTPServer.
|
|
|
|
import _socket
|
2001-08-09 18:40:30 -03:00
|
|
|
|
2001-01-20 15:54:20 -04:00
|
|
|
check_all("BaseHTTPServer")
|
|
|
|
check_all("CGIHTTPServer")
|
|
|
|
check_all("ConfigParser")
|
|
|
|
check_all("Cookie")
|
|
|
|
check_all("MimeWriter")
|
|
|
|
check_all("SimpleHTTPServer")
|
|
|
|
check_all("SocketServer")
|
|
|
|
check_all("StringIO")
|
|
|
|
check_all("UserString")
|
|
|
|
check_all("aifc")
|
|
|
|
check_all("atexit")
|
|
|
|
check_all("audiodev")
|
|
|
|
check_all("base64")
|
|
|
|
check_all("bdb")
|
|
|
|
check_all("binhex")
|
|
|
|
check_all("calendar")
|
|
|
|
check_all("cgi")
|
|
|
|
check_all("cmd")
|
|
|
|
check_all("code")
|
|
|
|
check_all("codecs")
|
|
|
|
check_all("codeop")
|
|
|
|
check_all("colorsys")
|
|
|
|
check_all("commands")
|
|
|
|
check_all("compileall")
|
|
|
|
check_all("copy")
|
|
|
|
check_all("copy_reg")
|
2001-01-25 11:29:22 -04:00
|
|
|
check_all("dbhash")
|
2001-01-20 15:54:20 -04:00
|
|
|
check_all("dircache")
|
|
|
|
check_all("dis")
|
2001-01-20 19:34:12 -04:00
|
|
|
check_all("doctest")
|
|
|
|
check_all("dospath")
|
|
|
|
check_all("filecmp")
|
|
|
|
check_all("fileinput")
|
|
|
|
check_all("fnmatch")
|
|
|
|
check_all("fpformat")
|
|
|
|
check_all("ftplib")
|
|
|
|
check_all("getopt")
|
|
|
|
check_all("getpass")
|
2001-01-23 11:35:05 -04:00
|
|
|
check_all("gettext")
|
2001-01-20 19:34:12 -04:00
|
|
|
check_all("glob")
|
2001-01-24 00:13:02 -04:00
|
|
|
check_all("gopherlib")
|
2001-01-23 11:35:05 -04:00
|
|
|
check_all("gzip")
|
|
|
|
check_all("htmllib")
|
|
|
|
check_all("httplib")
|
|
|
|
check_all("ihooks")
|
|
|
|
check_all("imaplib")
|
2001-01-24 02:27:27 -04:00
|
|
|
check_all("imghdr")
|
|
|
|
check_all("imputil")
|
|
|
|
check_all("keyword")
|
|
|
|
check_all("linecache")
|
|
|
|
check_all("locale")
|
|
|
|
check_all("macpath")
|
|
|
|
check_all("macurl2path")
|
|
|
|
check_all("mailbox")
|
|
|
|
check_all("mhlib")
|
2001-01-25 11:29:22 -04:00
|
|
|
check_all("mimetools")
|
|
|
|
check_all("mimetypes")
|
|
|
|
check_all("mimify")
|
2001-02-05 21:07:02 -04:00
|
|
|
check_all("multifile")
|
|
|
|
check_all("netrc")
|
|
|
|
check_all("nntplib")
|
|
|
|
check_all("ntpath")
|
|
|
|
check_all("os")
|
2001-02-07 19:14:30 -04:00
|
|
|
check_all("pdb")
|
|
|
|
check_all("pickle")
|
|
|
|
check_all("pipes")
|
|
|
|
check_all("popen2")
|
2001-02-11 22:00:42 -04:00
|
|
|
check_all("poplib")
|
|
|
|
check_all("posixpath")
|
|
|
|
check_all("pprint")
|
2002-04-11 17:04:12 -03:00
|
|
|
check_all("pre") # deprecated
|
2001-02-11 22:00:42 -04:00
|
|
|
check_all("profile")
|
|
|
|
check_all("pstats")
|
|
|
|
check_all("pty")
|
|
|
|
check_all("py_compile")
|
|
|
|
check_all("pyclbr")
|
|
|
|
check_all("quopri")
|
2001-02-15 18:15:14 -04:00
|
|
|
check_all("random")
|
|
|
|
check_all("re")
|
|
|
|
check_all("reconvert")
|
|
|
|
check_all("regsub")
|
|
|
|
check_all("repr")
|
|
|
|
check_all("rexec")
|
|
|
|
check_all("rfc822")
|
|
|
|
check_all("rlcompleter")
|
2001-01-20 15:54:20 -04:00
|
|
|
check_all("robotparser")
|
2001-02-15 18:15:14 -04:00
|
|
|
check_all("sched")
|
|
|
|
check_all("sgmllib")
|
|
|
|
check_all("shelve")
|
|
|
|
check_all("shlex")
|
|
|
|
check_all("shutil")
|
|
|
|
check_all("smtpd")
|
|
|
|
check_all("smtplib")
|
|
|
|
check_all("sndhdr")
|
|
|
|
check_all("socket")
|
|
|
|
check_all("sre")
|
|
|
|
check_all("stat_cache")
|
2001-03-01 00:27:19 -04:00
|
|
|
check_all("tabnanny")
|
|
|
|
check_all("telnetlib")
|
|
|
|
check_all("tempfile")
|
|
|
|
check_all("toaiff")
|
|
|
|
check_all("tokenize")
|
|
|
|
check_all("traceback")
|
|
|
|
check_all("tty")
|
|
|
|
check_all("urllib")
|
|
|
|
check_all("urlparse")
|
|
|
|
check_all("uu")
|
|
|
|
check_all("warnings")
|
|
|
|
check_all("wave")
|
|
|
|
check_all("weakref")
|
|
|
|
check_all("webbrowser")
|
|
|
|
check_all("xdrlib")
|
|
|
|
check_all("zipfile")
|