(root)/
Python-3.11.7/
Lib/
test/
test_tools/
__init__.py
       1  """Support functions for testing scripts in the Tools directory."""
       2  import contextlib
       3  import importlib
       4  import os.path
       5  import unittest
       6  from test import support
       7  from test.support import import_helper
       8  
       9  
      10  if support.check_sanitizer(address=True, memory=True):
      11      # bpo-46633: Skip the test because it is too slow when Python is built
      12      # with ASAN/MSAN: between 5 and 20 minutes on GitHub Actions.
      13      raise unittest.SkipTest("test too slow on ASAN/MSAN build")
      14  
      15  
      16  if not support.has_subprocess_support:
      17      raise unittest.SkipTest("test module requires subprocess")
      18  
      19  
      20  basepath = os.path.normpath(
      21          os.path.dirname(                 # <src/install dir>
      22              os.path.dirname(                # Lib
      23                  os.path.dirname(                # test
      24                      os.path.dirname(__file__)))))    # test_tools
      25  
      26  toolsdir = os.path.join(basepath, 'Tools')
      27  scriptsdir = os.path.join(toolsdir, 'scripts')
      28  
      29  def skip_if_missing(tool=None):
      30      if tool:
      31          tooldir = os.path.join(toolsdir, tool)
      32      else:
      33          tool = 'scripts'
      34          tooldir = scriptsdir
      35      if not os.path.isdir(tooldir):
      36          raise unittest.SkipTest(f'{tool} directory could not be found')
      37  
      38  @contextlib.contextmanager
      39  def imports_under_tool(name, *subdirs):
      40      tooldir = os.path.join(toolsdir, name, *subdirs)
      41      with import_helper.DirsOnSysPath(tooldir) as cm:
      42          yield cm
      43  
      44  def import_tool(toolname):
      45      with import_helper.DirsOnSysPath(scriptsdir):
      46          return importlib.import_module(toolname)
      47  
      48  def load_tests(*args):
      49      return support.load_package_tests(os.path.dirname(__file__), *args)