Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Side by Side Diff: recipe_engine/loader.py

Issue 2814873002: Revert of Enable strict coverage for step module (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | recipe_engine/unittests/run_test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The LUCI Authors. All rights reserved. 1 # Copyright 2016 The LUCI Authors. All rights reserved.
2 # Use of this source code is governed under the Apache License, Version 2.0 2 # Use of this source code is governed under the Apache License, Version 2.0
3 # that can be found in the LICENSE file. 3 # that can be found in the LICENSE file.
4 4
5 import collections 5 import collections
6 import imp 6 import imp
7 import inspect 7 import inspect
8 import os 8 import os
9 import sys 9 import sys
10 10
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 } 228 }
229 """ 229 """
230 return { 230 return {
231 local_name: self.universe.load(pkg, name) 231 local_name: self.universe.load(pkg, name)
232 for local_name, (pkg, name) in self.normalize_deps_spec(spec).iteritems() 232 for local_name, (pkg, name) in self.normalize_deps_spec(spec).iteritems()
233 } 233 }
234 234
235 235
236 def find_recipe(self, recipe): 236 def find_recipe(self, recipe):
237 if ':' in recipe: 237 if ':' in recipe:
238 module_name, recipe_name = recipe.split(':') 238 module_name, example = recipe.split(':')
239 module_dir = os.path.join(self.package.module_dir, module_name) 239 #TODO(martinis) change to example == 'example' ? Technically a bug...
240 if _is_recipe_module_dir(module_dir): 240 assert example.endswith('example')
241 if recipe_name.endswith('example'): 241 subpath = os.path.join(self.package.module_dir, module_name)
242 # TODO(martinis) change to example == 'example' ? Technically a bug... 242 if _is_recipe_module_dir(subpath):
243 recipe_path = os.path.join(module_dir, 'example.py') 243 recipe_path = os.path.join(subpath, 'example.py')
244 elif recipe_name.startswith('tests/'):
245 recipe_path = os.path.join(
246 module_dir, 'tests', recipe_name[len('tests/'):] + '.py')
247 else:
248 raise NoSuchRecipe(recipe)
249 else: 244 else:
250 recipe_path = os.path.join(self.package.recipe_dir, recipe)+".py" 245 recipe_path = os.path.join(self.package.recipe_dir, recipe)+".py"
251 246
252 if os.path.exists(recipe_path): 247 if os.path.exists(recipe_path):
253 return recipe_path 248 return recipe_path
254 249
255 raise NoSuchRecipe(recipe) 250 raise NoSuchRecipe(recipe)
256 251
257 def load_recipe(self, recipe, engine=None): 252 def load_recipe(self, recipe, engine=None):
258 """Given name of a recipe, loads and returns it as RecipeScript instance. 253 """Given name of a recipe, loads and returns it as RecipeScript instance.
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 if not x.endswith(('.expected', '.resources'))] 305 if not x.endswith(('.expected', '.resources'))]
311 for file_name in (f for f in files if predicate(f)): 306 for file_name in (f for f in files if predicate(f)):
312 file_path = os.path.join(root, file_name) 307 file_path = os.path.join(root, file_name)
313 yield file_path 308 yield file_path
314 309
315 path = self.package.recipe_dir 310 path = self.package.recipe_dir
316 for recipe in scan_directory( 311 for recipe in scan_directory(
317 path, lambda f: f.endswith('.py') and f[0] != '_'): 312 path, lambda f: f.endswith('.py') and f[0] != '_'):
318 yield recipe, recipe[len(path)+1:-len('.py')] 313 yield recipe, recipe[len(path)+1:-len('.py')]
319 314
320 for module_name in self.loop_over_recipe_modules(): 315 path = self.package.module_dir
321 module_dir = os.path.join(self.package.module_dir, module_name) 316 for recipe in scan_directory(
322 317 path, lambda f: f.endswith('example.py')):
323 example_path = os.path.join(module_dir, 'example.py') 318 module_name = os.path.dirname(recipe)[len(path)+1:]
324 if os.path.exists(example_path): 319 yield recipe, '%s:example' % module_name
325 yield example_path, '%s:example' % module_name
326
327 test_dir = os.path.join(module_dir, 'tests')
328 if os.path.exists(test_dir):
329 for recipe in scan_directory(test_dir, lambda f: f.endswith('.py')):
330 yield recipe, '%s:tests/%s' % (
331 module_name, recipe[len(test_dir)+1:-len('.py')])
332 320
333 def loop_over_recipe_modules(self): 321 def loop_over_recipe_modules(self):
334 """Yields the paths to all the modules that this view can see.""" 322 """Yields the paths to all the modules that this view can see."""
335 path = self.package.module_dir 323 path = self.package.module_dir
336 if os.path.isdir(path): 324 if os.path.isdir(path):
337 for item in os.listdir(path): 325 for item in os.listdir(path):
338 subpath = os.path.join(path, item) 326 subpath = os.path.join(path, item)
339 if _is_recipe_module_dir(subpath): 327 if _is_recipe_module_dir(subpath):
340 yield os.path.basename(subpath) 328 yield os.path.basename(subpath)
341 329
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 for k,v in toplevel_deps.iteritems(): 658 for k,v in toplevel_deps.iteritems():
671 setattr(api, k, mapper.instantiate(v)) 659 setattr(api, k, mapper.instantiate(v))
672 return api 660 return api
673 661
674 662
675 def _resolve_requirement(req, engine): 663 def _resolve_requirement(req, engine):
676 if req._typ == 'client': 664 if req._typ == 'client':
677 return engine._get_client(req._name) 665 return engine._get_client(req._name)
678 else: 666 else:
679 raise ValueError('Unknown requirement type [%s]' % (req._typ,)) 667 raise ValueError('Unknown requirement type [%s]' % (req._typ,))
OLDNEW
« no previous file with comments | « no previous file | recipe_engine/unittests/run_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698