test_module_names.py 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. # -*- coding: utf-8 -*-
  2. '''
  3. tests.unit.test_test_module_name
  4. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  5. '''
  6. # Import Python libs
  7. from __future__ import absolute_import
  8. import fnmatch
  9. import os
  10. # Import Salt libs
  11. import salt.utils.path
  12. import salt.utils.stringutils
  13. # Import Salt Testing libs
  14. from tests.support.unit import TestCase
  15. from tests.support.paths import list_test_mods
  16. from tests.support.runtests import RUNTIME_VARS
  17. EXCLUDED_DIRS = [
  18. os.path.join('tests', 'pkg'),
  19. os.path.join('tests', 'perf'),
  20. os.path.join('tests', 'support'),
  21. os.path.join('tests', 'unit', 'utils', 'cache_mods'),
  22. os.path.join('tests', 'unit', 'modules', 'inspectlib'),
  23. os.path.join('tests', 'unit', 'modules', 'zypp'),
  24. os.path.join('tests', 'unit', 'templates', 'files'),
  25. os.path.join('tests', 'integration', 'files'),
  26. os.path.join('tests', 'unit', 'files'),
  27. os.path.join('tests', 'integration', 'cloud', 'helpers'),
  28. os.path.join('tests', 'kitchen', 'tests'),
  29. os.path.join('tests', 'unit', 'modules', 'nxos'),
  30. ]
  31. INCLUDED_DIRS = [
  32. os.path.join('tests', 'kitchen', 'tests', '*', 'tests', '*'),
  33. ]
  34. EXCLUDED_FILES = [
  35. os.path.join('tests', 'eventlisten.py'),
  36. os.path.join('tests', 'buildpackage.py'),
  37. os.path.join('tests', 'saltsh.py'),
  38. os.path.join('tests', 'minionswarm.py'),
  39. os.path.join('tests', 'wheeltest.py'),
  40. os.path.join('tests', 'runtests.py'),
  41. os.path.join('tests', 'jenkins.py'),
  42. os.path.join('tests', 'salt-tcpdump.py'),
  43. os.path.join('tests', 'packdump.py'),
  44. os.path.join('tests', 'consist.py'),
  45. os.path.join('tests', 'modparser.py'),
  46. os.path.join('tests', 'virtualname.py'),
  47. os.path.join('tests', 'committer_parser.py'),
  48. os.path.join('tests', 'zypp_plugin.py'),
  49. os.path.join('tests', 'tox-helper.py'),
  50. os.path.join('tests', 'unit', 'transport', 'mixins.py'),
  51. os.path.join('tests', 'integration', 'utils', 'testprogram.py'),
  52. ]
  53. class BadTestModuleNamesTestCase(TestCase):
  54. '''
  55. Unit test case for testing bad names for test modules
  56. '''
  57. maxDiff = None
  58. def _match_dirs(self, reldir, matchdirs):
  59. return any(fnmatch.fnmatchcase(reldir, mdir) for mdir in matchdirs)
  60. def test_module_name(self):
  61. '''
  62. Make sure all test modules conform to the test_*.py naming scheme
  63. '''
  64. excluded_dirs, included_dirs = tuple(EXCLUDED_DIRS), tuple(INCLUDED_DIRS)
  65. tests_dir = os.path.join(RUNTIME_VARS.CODE_DIR, 'tests')
  66. bad_names = []
  67. for root, _, files in salt.utils.path.os_walk(tests_dir):
  68. reldir = os.path.relpath(root, RUNTIME_VARS.CODE_DIR)
  69. if (reldir.startswith(excluded_dirs) and not self._match_dirs(reldir, included_dirs)) \
  70. or reldir.endswith('__pycache__'):
  71. continue
  72. for fname in files:
  73. if fname in ('__init__.py', 'conftest.py') or not fname.endswith('.py'):
  74. continue
  75. relpath = os.path.join(reldir, fname)
  76. if relpath in EXCLUDED_FILES:
  77. continue
  78. if not fname.startswith('test_'):
  79. bad_names.append(relpath)
  80. error_msg = '\n\nPlease rename the following files:\n'
  81. for path in bad_names:
  82. directory, filename = path.rsplit(os.sep, 1)
  83. filename, _ = os.path.splitext(filename)
  84. error_msg += ' {} -> {}/test_{}.py\n'.format(path, directory, filename.split('_test')[0])
  85. error_msg += '\nIf you believe one of the entries above should be ignored, please add it to either\n'
  86. error_msg += '\'EXCLUDED_DIRS\' or \'EXCLUDED_FILES\' in \'tests/unit/test_module_names.py\'.\n'
  87. error_msg += 'If it is a tests module, then please rename as suggested.'
  88. self.assertEqual([], bad_names, error_msg)
  89. def test_module_name_source_match(self):
  90. '''
  91. Check all the test mods and check if they correspond to actual files in
  92. the codebase. If this test fails, then a test module is likely not
  93. named correctly, and should be adjusted.
  94. If a test module doesn't have a natural name match (as does this very
  95. file), then its should be included in the "ignore" tuple below.
  96. However, if there is no matching source code file, then you should
  97. consider mapping it to files manually via tests/filename_map.yml.
  98. '''
  99. ignore = (
  100. 'unit.test_doc',
  101. 'unit.test_mock',
  102. 'unit.test_module_names',
  103. 'unit.test_virtualname',
  104. 'unit.test_simple',
  105. 'unit.test_zypp_plugins',
  106. 'unit.cache.test_cache',
  107. 'unit.serializers.test_serializers',
  108. 'unit.states.test_postgres',
  109. 'integration.cli.test_custom_module',
  110. 'integration.cli.test_grains',
  111. 'integration.client.test_kwarg',
  112. 'integration.client.test_runner',
  113. 'integration.client.test_standard',
  114. 'integration.client.test_syndic',
  115. 'integration.cloud.test_cloud',
  116. 'integration.doc.test_man',
  117. 'integration.externalapi.test_venafiapi',
  118. 'integration.grains.test_custom',
  119. 'integration.loader.test_ext_grains',
  120. 'integration.loader.test_ext_modules',
  121. 'integration.logging.test_jid_logging',
  122. 'integration.minion.test_blackout',
  123. 'integration.minion.test_pillar',
  124. 'integration.minion.test_executor',
  125. 'integration.minion.test_timeout',
  126. 'integration.modules.test_decorators',
  127. 'integration.modules.test_pkg',
  128. 'integration.modules.test_state_jinja_filters',
  129. 'integration.modules.test_sysctl',
  130. 'integration.netapi.test_client',
  131. 'integration.netapi.rest_tornado.test_app',
  132. 'integration.netapi.rest_cherrypy.test_app_pam',
  133. 'integration.output.test_output',
  134. 'integration.pillar.test_pillar_include',
  135. 'integration.proxy.test_shell',
  136. 'integration.proxy.test_simple',
  137. 'integration.reactor.test_reactor',
  138. 'integration.runners.test_runner_returns',
  139. 'integration.scheduler.test_error',
  140. 'integration.scheduler.test_eval',
  141. 'integration.scheduler.test_postpone',
  142. 'integration.scheduler.test_skip',
  143. 'integration.scheduler.test_maxrunning',
  144. 'integration.scheduler.test_helpers',
  145. 'integration.shell.test_spm',
  146. 'integration.shell.test_cp',
  147. 'integration.shell.test_syndic',
  148. 'integration.shell.test_proxy',
  149. 'integration.shell.test_auth',
  150. 'integration.shell.test_call',
  151. 'integration.shell.test_arguments',
  152. 'integration.shell.test_matcher',
  153. 'integration.shell.test_master_tops',
  154. 'integration.shell.test_saltcli',
  155. 'integration.shell.test_master',
  156. 'integration.shell.test_key',
  157. 'integration.shell.test_runner',
  158. 'integration.shell.test_cloud',
  159. 'integration.shell.test_enabled',
  160. 'integration.shell.test_minion',
  161. 'integration.spm.test_build',
  162. 'integration.spm.test_files',
  163. 'integration.spm.test_info',
  164. 'integration.spm.test_install',
  165. 'integration.spm.test_remove',
  166. 'integration.spm.test_repo',
  167. 'integration.ssh.test_deploy',
  168. 'integration.ssh.test_grains',
  169. 'integration.ssh.test_jinja_filters',
  170. 'integration.ssh.test_master',
  171. 'integration.ssh.test_mine',
  172. 'integration.ssh.test_pillar',
  173. 'integration.ssh.test_raw',
  174. 'integration.ssh.test_state',
  175. 'integration.states.test_compiler',
  176. 'integration.states.test_handle_error',
  177. 'integration.states.test_handle_iorder',
  178. 'integration.states.test_match',
  179. 'integration.states.test_renderers',
  180. 'integration.wheel.test_client',
  181. )
  182. errors = []
  183. def _format_errors(errors):
  184. msg = (
  185. 'The following {0} test module(s) could not be matched to a '
  186. 'source code file:\n\n'.format(len(errors))
  187. )
  188. msg += ''.join(errors)
  189. return msg
  190. for mod_name in list_test_mods():
  191. if mod_name in ignore:
  192. # Test module is being ignored, skip it
  193. continue
  194. # Separate the test_foo away from the rest of the mod name, because
  195. # we'll need to remove the "test_" from the beginning and add .py
  196. stem, flower = mod_name.rsplit('.', 1)
  197. # Lop off the integration/unit from the beginning of the mod name
  198. try:
  199. stem = stem.split('.', 1)[1]
  200. except IndexError:
  201. # This test mod was in the root of the unit/integration dir
  202. stem = ''
  203. # The path from the root of the repo
  204. relpath = salt.utils.path.join(
  205. 'salt',
  206. stem.replace('.', os.sep),
  207. '.'.join((flower[5:], 'py')))
  208. # The full path to the file we expect to find
  209. abspath = salt.utils.path.join(RUNTIME_VARS.CODE_DIR, relpath)
  210. if not os.path.isfile(abspath):
  211. # Maybe this is in a dunder init?
  212. alt_relpath = salt.utils.path.join(relpath[:-3], '__init__.py')
  213. alt_abspath = salt.utils.path.join(abspath[:-3], '__init__.py')
  214. if os.path.isfile(alt_abspath):
  215. # Yep, it is. Carry on!
  216. continue
  217. errors.append(
  218. '{0} (expected: {1})\n'.format(mod_name, relpath)
  219. )
  220. assert not errors, _format_errors(errors)