OLD | NEW |
1 # Copyright 2013-2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import collections | 5 import collections |
6 import contextlib | 6 import contextlib |
7 import imp | 7 import imp |
8 import inspect | 8 import inspect |
9 import os | 9 import os |
10 import sys | 10 import sys |
11 | 11 |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 for path in self.package.recipe_dirs: | 252 for path in self.package.recipe_dirs: |
253 for recipe in scan_directory( | 253 for recipe in scan_directory( |
254 path, lambda f: f.endswith('.py') and f[0] != '_'): | 254 path, lambda f: f.endswith('.py') and f[0] != '_'): |
255 yield recipe, recipe[len(path)+1:-len('.py')] | 255 yield recipe, recipe[len(path)+1:-len('.py')] |
256 for path in self.package.module_dirs: | 256 for path in self.package.module_dirs: |
257 for recipe in scan_directory( | 257 for recipe in scan_directory( |
258 path, lambda f: f.endswith('example.py')): | 258 path, lambda f: f.endswith('example.py')): |
259 module_name = os.path.dirname(recipe)[len(path)+1:] | 259 module_name = os.path.dirname(recipe)[len(path)+1:] |
260 yield recipe, '%s:example' % module_name | 260 yield recipe, '%s:example' % module_name |
261 | 261 |
| 262 def loop_over_recipe_modules(self): |
| 263 """Yields the paths to all the modules that this view can see.""" |
| 264 for path in self.package.module_dirs: |
| 265 if os.path.isdir(path): |
| 266 for item in os.listdir(path): |
| 267 subpath = os.path.join(path, item) |
| 268 if _is_recipe_module_dir(subpath): |
| 269 yield os.path.basename(subpath) |
| 270 |
262 | 271 |
263 def _amend_exception(e, amendment): | 272 def _amend_exception(e, amendment): |
264 """Re-raise an exception e, appending amendment to the end of the message.""" | 273 """Re-raise an exception e, appending amendment to the end of the message.""" |
265 raise type(e), type(e)(e.message + '\n' + amendment), sys.exc_info()[2] | 274 raise type(e), type(e)(e.message + '\n' + amendment), sys.exc_info()[2] |
266 | 275 |
267 | 276 |
268 def _is_recipe_module_dir(path): | 277 def _is_recipe_module_dir(path): |
269 return (os.path.isdir(path) and | 278 return (os.path.isdir(path) and |
270 os.path.isfile(os.path.join(path, '__init__.py'))) | 279 os.path.isfile(os.path.join(path, '__init__.py'))) |
271 | 280 |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 modapi = (getattr(mod, 'TEST_API', None) or RecipeTestApi)(module=mod) | 552 modapi = (getattr(mod, 'TEST_API', None) or RecipeTestApi)(module=mod) |
544 for k,v in deps.iteritems(): | 553 for k,v in deps.iteritems(): |
545 setattr(modapi.m, k, v) | 554 setattr(modapi.m, k, v) |
546 return modapi | 555 return modapi |
547 | 556 |
548 mapper = DependencyMapper(instantiator) | 557 mapper = DependencyMapper(instantiator) |
549 api = RecipeTestApi(module=None) | 558 api = RecipeTestApi(module=None) |
550 for k,v in toplevel_deps.iteritems(): | 559 for k,v in toplevel_deps.iteritems(): |
551 setattr(api, k, mapper.instantiate(v)) | 560 setattr(api, k, mapper.instantiate(v)) |
552 return api | 561 return api |
OLD | NEW |