OLD | NEW |
| (Empty) |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 """Runs the Python tests (relies on using the Java test runner).""" | |
6 | |
7 import logging | |
8 import os | |
9 import sys | |
10 import types | |
11 | |
12 from pylib import android_commands | |
13 from pylib.base import base_test_result | |
14 from pylib.instrumentation import test_options | |
15 from pylib.instrumentation import test_package | |
16 from pylib.instrumentation import test_runner | |
17 from pylib.utils import report_results | |
18 | |
19 import python_test_base | |
20 from python_test_sharder import PythonTestSharder | |
21 from test_info_collection import TestInfoCollection | |
22 | |
23 | |
24 def _GetPythonFiles(root, files): | |
25 """Returns all files from |files| that end in 'Test.py'. | |
26 | |
27 Args: | |
28 root: A directory name with python files. | |
29 files: A list of file names. | |
30 | |
31 Returns: | |
32 A list with all Python driven test file paths. | |
33 """ | |
34 return [os.path.join(root, f) for f in files if f.endswith('Test.py')] | |
35 | |
36 | |
37 def _InferImportNameFromFile(python_file): | |
38 """Given a file, infer the import name for that file. | |
39 | |
40 Example: /usr/foo/bar/baz.py -> baz. | |
41 | |
42 Args: | |
43 python_file: path to the Python file, ostensibly to import later. | |
44 | |
45 Returns: | |
46 The module name for the given file. | |
47 """ | |
48 return os.path.splitext(os.path.basename(python_file))[0] | |
49 | |
50 | |
51 def DispatchPythonTests(options): | |
52 """Dispatches the Python tests. If there are multiple devices, use sharding. | |
53 | |
54 Args: | |
55 options: command line options. | |
56 | |
57 Returns: | |
58 A tuple of (base_test_result.TestRunResults object, exit code) | |
59 | |
60 Raises: | |
61 Exception: If there are no attached devices. | |
62 """ | |
63 | |
64 attached_devices = android_commands.GetAttachedDevices() | |
65 if not attached_devices: | |
66 raise Exception('You have no devices attached or visible!') | |
67 if options.test_device: | |
68 attached_devices = [options.test_device] | |
69 | |
70 test_collection = TestInfoCollection() | |
71 all_tests = _GetAllTests(options.python_test_root, options.official_build) | |
72 test_collection.AddTests(all_tests) | |
73 test_names = [t.qualified_name for t in all_tests] | |
74 logging.debug('All available tests: ' + str(test_names)) | |
75 | |
76 available_tests = test_collection.GetAvailableTests( | |
77 options.annotations, options.exclude_annotations, options.test_filter) | |
78 | |
79 if not available_tests: | |
80 logging.warning('No Python tests to run with current args.') | |
81 return (base_test_result.TestRunResults(), 0) | |
82 | |
83 test_names = [t.qualified_name for t in available_tests] | |
84 logging.debug('Final list of tests to run: ' + str(test_names)) | |
85 | |
86 # Copy files to each device before running any tests. | |
87 for device_id in attached_devices: | |
88 logging.debug('Pushing files to device %s', device_id) | |
89 test_pkg = test_package.TestPackage(options.test_apk_path, | |
90 options.test_apk_jar_path) | |
91 instrumentation_options = test_options.InstrumentationOptions( | |
92 options.build_type, | |
93 options.tool, | |
94 options.cleanup_test_files, | |
95 options.push_deps, | |
96 options.annotations, | |
97 options.exclude_annotations, | |
98 options.test_filter, | |
99 options.test_data, | |
100 options.save_perf_json, | |
101 options.screenshot_failures, | |
102 options.disable_assertions, | |
103 options.wait_for_debugger, | |
104 options.test_apk, | |
105 options.test_apk_path, | |
106 options.test_apk_jar_path) | |
107 test_files_copier = test_runner.TestRunner(instrumentation_options, | |
108 device_id, 0, test_pkg, []) | |
109 test_files_copier.InstallTestPackage() | |
110 if options.push_deps: | |
111 logging.info('Pushing data deps to device.') | |
112 test_files_copier.PushDataDeps() | |
113 else: | |
114 logging.warning('Skipping pushing data deps to device.') | |
115 | |
116 # Actually run the tests. | |
117 if len(attached_devices) > 1 and options.wait_for_debugger: | |
118 logging.warning('Debugger can not be sharded, ' | |
119 'using first available device') | |
120 attached_devices = attached_devices[:1] | |
121 logging.debug('Running Python tests') | |
122 sharder = PythonTestSharder(attached_devices, available_tests, options) | |
123 test_results = sharder.RunShardedTests() | |
124 | |
125 if not test_results.DidRunPass(): | |
126 return (test_results, 1) | |
127 | |
128 return (test_results, 0) | |
129 | |
130 | |
131 def _GetTestModules(python_test_root, is_official_build): | |
132 """Retrieve a sorted list of pythonDrivenTests. | |
133 | |
134 Walks the location of pythonDrivenTests, imports them, and provides the list | |
135 of imported modules to the caller. | |
136 | |
137 Args: | |
138 python_test_root: the path to walk, looking for pythonDrivenTests | |
139 is_official_build: whether to run only those tests marked 'official' | |
140 | |
141 Returns: | |
142 A list of Python modules which may have zero or more tests. | |
143 """ | |
144 # By default run all python tests under pythonDrivenTests. | |
145 python_test_file_list = [] | |
146 for root, _, files in os.walk(python_test_root): | |
147 if (root.endswith('host_driven_tests') or | |
148 root.endswith('pythonDrivenTests') or | |
149 (is_official_build and root.endswith('pythonDrivenTests/official'))): | |
150 python_test_file_list += _GetPythonFiles(root, files) | |
151 python_test_file_list.sort() | |
152 | |
153 test_module_list = [_GetModuleFromFile(test_file) | |
154 for test_file in python_test_file_list] | |
155 return test_module_list | |
156 | |
157 | |
158 def _GetModuleFromFile(python_file): | |
159 """Gets the module associated with a file by importing it. | |
160 | |
161 Args: | |
162 python_file: file to import | |
163 | |
164 Returns: | |
165 The module object. | |
166 """ | |
167 sys.path.append(os.path.dirname(python_file)) | |
168 import_name = _InferImportNameFromFile(python_file) | |
169 return __import__(import_name) | |
170 | |
171 | |
172 def _GetTestsFromClass(test_class): | |
173 """Create a list of test objects for each test method on this class. | |
174 | |
175 Test methods are methods on the class which begin with 'test'. | |
176 | |
177 Args: | |
178 test_class: class object which contains zero or more test methods. | |
179 | |
180 Returns: | |
181 A list of test objects, each of which is bound to one test. | |
182 """ | |
183 test_names = [m for m in dir(test_class) | |
184 if _IsTestMethod(m, test_class)] | |
185 return map(test_class, test_names) | |
186 | |
187 | |
188 def _GetTestClassesFromModule(test_module): | |
189 tests = [] | |
190 for name in dir(test_module): | |
191 attr = getattr(test_module, name) | |
192 if _IsTestClass(attr): | |
193 tests.extend(_GetTestsFromClass(attr)) | |
194 return tests | |
195 | |
196 | |
197 def _IsTestClass(test_class): | |
198 return (type(test_class) is types.TypeType and | |
199 issubclass(test_class, python_test_base.PythonTestBase) and | |
200 test_class is not python_test_base.PythonTestBase) | |
201 | |
202 | |
203 def _IsTestMethod(attrname, test_case_class): | |
204 """Checks whether this is a valid test method. | |
205 | |
206 Args: | |
207 attrname: the method name. | |
208 test_case_class: the test case class. | |
209 | |
210 Returns: | |
211 True if test_case_class.'attrname' is callable and it starts with 'test'; | |
212 False otherwise. | |
213 """ | |
214 attr = getattr(test_case_class, attrname) | |
215 return callable(attr) and attrname.startswith('test') | |
216 | |
217 | |
218 def _GetAllTests(test_root, is_official_build): | |
219 """Retrieve a list of Python test modules and their respective methods. | |
220 | |
221 Args: | |
222 test_root: path which contains Python-driven test files | |
223 is_official_build: whether this is an official build | |
224 | |
225 Returns: | |
226 List of test case objects for all available test methods. | |
227 """ | |
228 if not test_root: | |
229 return [] | |
230 all_tests = [] | |
231 test_module_list = _GetTestModules(test_root, is_official_build) | |
232 for module in test_module_list: | |
233 all_tests.extend(_GetTestClassesFromModule(module)) | |
234 return all_tests | |
OLD | NEW |