Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/usr/bin/env python | |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. | |
| 3 # Use of this source code is governed by a BSD-style license that can be | |
| 4 # found in the LICENSE file. | |
| 5 | |
| 6 """Provides simulator test coverage for individual recipes.""" | |
|
agable
2014/04/03 00:38:00
Make sure you update recipes docs (both gdoc desig
iannucci
2014/04/03 02:30:58
Done.
| |
| 7 | |
| 8 import os | |
| 9 | |
| 10 # Importing for side effects on sys.path? Yes... yes we are :( | |
| 11 import test_env # pylint: disable=unused-import | |
| 12 | |
| 13 from common import annotator | |
| 14 from slave import annotated_run | |
| 15 from slave import recipe_config_types | |
| 16 from slave import recipe_loader | |
| 17 from slave import recipe_util | |
| 18 | |
| 19 import expect_tests | |
| 20 | |
| 21 | |
| 22 def RunRecipe(test_data): | |
| 23 stream = annotator.StructuredAnnotationStream(stream=open(os.devnull, 'w')) | |
| 24 recipe_config_types.ResetTostringFns() | |
| 25 # TODO(iannucci): Only pass test_data once. | |
| 26 result = annotated_run.run_steps(stream, test_data.properties, | |
| 27 test_data.properties, test_data) | |
| 28 return expect_tests.Result([s.step for s in result.steps_ran.itervalues()]) | |
| 29 | |
| 30 | |
| 31 def GenerateTests(): | |
| 32 mods = recipe_loader.load_recipe_modules(recipe_loader.MODULE_DIRS()) | |
| 33 | |
| 34 for recipe_path, recipe_name in recipe_loader.loop_over_recipes(): | |
| 35 recipe = recipe_loader.load_recipe(recipe_name) | |
| 36 test_api = recipe_loader.create_test_api(recipe.DEPS) | |
| 37 for test_data in recipe.GenTests(test_api): | |
| 38 root, name = os.path.split(recipe_path) | |
| 39 name = os.path.splitext(name)[0] | |
| 40 expect_path = os.path.join(root, '%s.expected' % name) | |
| 41 | |
| 42 test_data.properties['recipe'] = recipe_name | |
| 43 yield expect_tests.Test( | |
| 44 '%s.%s' % (recipe_name, test_data.name), | |
| 45 RunRecipe, args=(test_data,), | |
| 46 expect_dir=expect_path, | |
| 47 expect_base=test_data.name, | |
| 48 break_funcs=(mods.step.API.__call__, | |
| 49 recipe.GenSteps) | |
|
agable
2014/04/03 00:38:00
Move up a line.
iannucci
2014/04/03 02:30:58
Done.
| |
| 50 ) | |
| 51 | |
| 52 | |
| 53 if __name__ == '__main__': | |
| 54 expect_tests.main(GenerateTests, ( | |
| 55 [os.path.join(x, '*') for x in recipe_util.RECIPE_DIRS()] + | |
| 56 [os.path.join(x, '*', '*api.py') for x in recipe_util.MODULE_DIRS()] | |
| 57 ), ( | |
| 58 [os.path.join(x, '*', '*config.py') for x in recipe_util.MODULE_DIRS()] | |
| 59 )) | |
| OLD | NEW |