runtktests.py 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. """
  2. Use this module to get and run all tk tests.
  3. Tkinter tests should live in a package inside the directory where this file
  4. lives, like test_tkinter.
  5. Extensions also should live in packages following the same rule as above.
  6. """
  7. import os
  8. import sys
  9. import unittest
  10. import importlib
  11. import test.test_support
  12. this_dir_path = os.path.abspath(os.path.dirname(__file__))
  13. def is_package(path):
  14. for name in os.listdir(path):
  15. if name in ('__init__.py', '__init__.pyc', '__init.pyo'):
  16. return True
  17. return False
  18. def get_tests_modules(basepath=this_dir_path, gui=True, packages=None):
  19. """This will import and yield modules whose names start with test_
  20. and are inside packages found in the path starting at basepath.
  21. If packages is specified it should contain package names that want
  22. their tests collected.
  23. """
  24. py_ext = '.py'
  25. for dirpath, dirnames, filenames in os.walk(basepath):
  26. for dirname in list(dirnames):
  27. if dirname[0] == '.':
  28. dirnames.remove(dirname)
  29. if is_package(dirpath) and filenames:
  30. pkg_name = dirpath[len(basepath) + len(os.sep):].replace('/', '.')
  31. if packages and pkg_name not in packages:
  32. continue
  33. filenames = filter(
  34. lambda x: x.startswith('test_') and x.endswith(py_ext),
  35. filenames)
  36. for name in filenames:
  37. try:
  38. yield importlib.import_module(
  39. ".%s" % name[:-len(py_ext)], pkg_name)
  40. except test.test_support.ResourceDenied:
  41. if gui:
  42. raise
  43. def get_tests(text=True, gui=True, packages=None):
  44. """Yield all the tests in the modules found by get_tests_modules.
  45. If nogui is True, only tests that do not require a GUI will be
  46. returned."""
  47. attrs = []
  48. if text:
  49. attrs.append('tests_nogui')
  50. if gui:
  51. attrs.append('tests_gui')
  52. for module in get_tests_modules(gui=gui, packages=packages):
  53. for attr in attrs:
  54. for test in getattr(module, attr, ()):
  55. yield test
  56. if __name__ == "__main__":
  57. test.test_support.run_unittest(*get_tests())