test_module_names.py 9.8 KB

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