blob: bb81a0fc50fb65d57539c5f5d3fdcf41ff280d3a [file] [log] [blame]
Geremy Condra01844b12012-09-11 15:24:25 -07001#!/usr/bin/env python
The Android Open Source Project6ffae012009-03-18 17:39:43 -07002#
3# Copyright 2008, The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
Brett Chabot59b47782009-10-21 17:23:01 -070017"""Command line utility for running Android tests
The Android Open Source Project6ffae012009-03-18 17:39:43 -070018
Brett Chabot59b47782009-10-21 17:23:01 -070019runtest helps automate the instructions for building and running tests
20- It builds the corresponding test package for the code you want to test
21- It pushes the test package to your device or emulator
22- It launches InstrumentationTestRunner (or similar) to run the tests you
23specify.
24
25runtest supports running tests whose attributes have been pre-defined in
26_TEST_FILE_NAME files, (runtest <testname>), or by specifying the file
27system path to the test to run (runtest --path <path>).
28
29Do runtest --help to see full list of options.
The Android Open Source Project6ffae012009-03-18 17:39:43 -070030"""
31
32# Python imports
33import glob
34import optparse
35import os
Brett Chabot74541712012-08-31 18:39:00 -070036import re
The Android Open Source Project6ffae012009-03-18 17:39:43 -070037from sets import Set
38import sys
Brett Chabotcdfaae12011-06-07 10:10:38 -070039import time
The Android Open Source Project6ffae012009-03-18 17:39:43 -070040
41# local imports
42import adb_interface
43import android_build
Brett Chabot8ac51182012-09-19 07:35:35 -070044from coverage import coverage
The Android Open Source Project6ffae012009-03-18 17:39:43 -070045import errors
46import logger
Brett Chabot8ac51182012-09-19 07:35:35 -070047import make_tree
The Android Open Source Project6ffae012009-03-18 17:39:43 -070048import run_command
Brett Chabot764d3fa2009-06-25 17:57:31 -070049from test_defs import test_defs
Brett Chabot59b47782009-10-21 17:23:01 -070050from test_defs import test_walker
The Android Open Source Project6ffae012009-03-18 17:39:43 -070051
52
53class TestRunner(object):
54 """Command line utility class for running pre-defined Android test(s)."""
55
Brett Chabotf61f43e2009-04-02 11:52:48 -070056 _TEST_FILE_NAME = "test_defs.xml"
57
The Android Open Source Project6ffae012009-03-18 17:39:43 -070058 # file path to android core platform tests, relative to android build root
59 # TODO move these test data files to another directory
Nicolas Catania97b24c42009-04-22 11:08:32 -070060 _CORE_TEST_PATH = os.path.join("development", "testrunner",
Brett Chabotf61f43e2009-04-02 11:52:48 -070061 _TEST_FILE_NAME)
The Android Open Source Project6ffae012009-03-18 17:39:43 -070062
63 # vendor glob file path patterns to tests, relative to android
64 # build root
65 _VENDOR_TEST_PATH = os.path.join("vendor", "*", "tests", "testinfo",
Brett Chabotf61f43e2009-04-02 11:52:48 -070066 _TEST_FILE_NAME)
The Android Open Source Project6ffae012009-03-18 17:39:43 -070067
68 _RUNTEST_USAGE = (
69 "usage: runtest.py [options] short-test-name[s]\n\n"
70 "The runtest script works in two ways. You can query it "
71 "for a list of tests, or you can launch one or more tests.")
72
Brett Chabot2477b382009-09-23 18:05:28 -070073 # default value for make -jX
Brett Chabot12db4362012-01-17 16:03:49 -080074 _DEFAULT_JOBS = 16
Brett Chabot2477b382009-09-23 18:05:28 -070075
Igor Murashkina0afc8c2014-01-22 16:22:50 -080076 _DALVIK_VERIFIER_PROP = "dalvik.vm.dexopt-flags"
77 _DALVIK_VERIFIER_OFF_VALUE = "v=n"
78 _DALVIK_VERIFIER_OFF_PROP = "%s = %s" %(_DALVIK_VERIFIER_PROP, _DALVIK_VERIFIER_OFF_VALUE)
Brett Chabotccae47d2010-06-14 15:19:25 -070079
Brett Chabot5f5928c2013-08-20 17:06:03 -070080 # regular expression to match path to artifacts to install in make output
Igor Murashkina0afc8c2014-01-22 16:22:50 -080081 _RE_MAKE_INSTALL = re.compile(r'INSTALL-PATH:\s([^\s]+)\s(.*)$')
Brett Chabot74541712012-08-31 18:39:00 -070082
Brett Chabot72731f32009-03-31 11:14:05 -070083 def __init__(self):
84 # disable logging of timestamp
Niko Catania2e990b92009-04-02 16:52:26 -070085 self._root_path = android_build.GetTop()
JP Abgrallf38107c2013-07-11 17:39:16 -070086 out_base_name = os.path.basename(android_build.GetOutDir())
87 # regular expression to find remote device path from a file path relative
88 # to build root
89 pattern = r'' + out_base_name + r'\/target\/product\/\w+\/(.+)$'
90 self._re_make_install_path = re.compile(pattern)
Nicolas Catania97b24c42009-04-22 11:08:32 -070091 logger.SetTimestampLogging(False)
Brett Chabot3ae5f8a2009-06-28 12:00:47 -070092 self._adb = None
93 self._known_tests = None
94 self._options = None
95 self._test_args = None
Brett Chabot59b47782009-10-21 17:23:01 -070096 self._tests_to_run = None
Brett Chabot72731f32009-03-31 11:14:05 -070097
The Android Open Source Project6ffae012009-03-18 17:39:43 -070098 def _ProcessOptions(self):
99 """Processes command-line options."""
100 # TODO error messages on once-only or mutually-exclusive options.
101 user_test_default = os.path.join(os.environ.get("HOME"), ".android",
Brett Chabotf61f43e2009-04-02 11:52:48 -0700102 self._TEST_FILE_NAME)
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700103
104 parser = optparse.OptionParser(usage=self._RUNTEST_USAGE)
105
106 parser.add_option("-l", "--list-tests", dest="only_list_tests",
107 default=False, action="store_true",
108 help="To view the list of tests")
109 parser.add_option("-b", "--skip-build", dest="skip_build", default=False,
110 action="store_true", help="Skip build - just launch")
Brett Chabot2477b382009-09-23 18:05:28 -0700111 parser.add_option("-j", "--jobs", dest="make_jobs",
112 metavar="X", default=self._DEFAULT_JOBS,
113 help="Number of make jobs to use when building")
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700114 parser.add_option("-n", "--skip_execute", dest="preview", default=False,
115 action="store_true",
116 help="Do not execute, just preview commands")
Igor Murashkin8d703532014-01-23 16:13:29 -0800117 parser.add_option("-i", "--build-install-only", dest="build_install_only", default=False,
118 action="store_true",
119 help="Do not execute, build tests and install to device only")
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700120 parser.add_option("-r", "--raw-mode", dest="raw_mode", default=False,
121 action="store_true",
122 help="Raw mode (for output to other tools)")
123 parser.add_option("-a", "--suite-assign", dest="suite_assign_mode",
124 default=False, action="store_true",
125 help="Suite assignment (for details & usage see "
126 "InstrumentationTestRunner)")
127 parser.add_option("-v", "--verbose", dest="verbose", default=False,
128 action="store_true",
129 help="Increase verbosity of %s" % sys.argv[0])
130 parser.add_option("-w", "--wait-for-debugger", dest="wait_for_debugger",
131 default=False, action="store_true",
132 help="Wait for debugger before launching tests")
133 parser.add_option("-c", "--test-class", dest="test_class",
134 help="Restrict test to a specific class")
135 parser.add_option("-m", "--test-method", dest="test_method",
136 help="Restrict test to a specific method")
Brett Chabot8a101cb2009-05-05 12:56:39 -0700137 parser.add_option("-p", "--test-package", dest="test_package",
138 help="Restrict test to a specific java package")
139 parser.add_option("-z", "--size", dest="test_size",
140 help="Restrict test to a specific test size")
Brett Chabotc0611542010-02-20 20:09:58 -0800141 parser.add_option("--annotation", dest="test_annotation",
142 help="Include only those tests tagged with a specific"
143 " annotation")
144 parser.add_option("--not-annotation", dest="test_not_annotation",
Brett Chabot2e16fbc2010-02-23 12:28:27 -0800145 help="Exclude any tests tagged with a specific"
Brett Chabotc0611542010-02-20 20:09:58 -0800146 " annotation")
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700147 parser.add_option("-u", "--user-tests-file", dest="user_tests_file",
148 metavar="FILE", default=user_test_default,
149 help="Alternate source of user test definitions")
150 parser.add_option("-o", "--coverage", dest="coverage",
151 default=False, action="store_true",
152 help="Generate code coverage metrics for test(s)")
Brett Chabot8ac51182012-09-19 07:35:35 -0700153 parser.add_option("--coverage-target", dest="coverage_target_path",
154 default=None,
155 help="Path to app to collect code coverage target data for.")
Santos Cordon4e0ad8f2015-05-21 12:25:05 -0700156 parser.add_option("-k", "--skip-permissions", dest="skip_permissions",
157 default=False, action="store_true",
158 help="Do not grant runtime permissions during test package"
159 " installation.")
Brett Chabot59b47782009-10-21 17:23:01 -0700160 parser.add_option("-x", "--path", dest="test_path",
161 help="Run test(s) at given file system path")
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700162 parser.add_option("-t", "--all-tests", dest="all_tests",
163 default=False, action="store_true",
164 help="Run all defined tests")
165 parser.add_option("--continuous", dest="continuous_tests",
166 default=False, action="store_true",
167 help="Run all tests defined as part of the continuous "
168 "test set")
Wei-Ta Chen97752d42009-05-21 16:24:04 -0700169 parser.add_option("--timeout", dest="timeout",
170 default=300, help="Set a timeout limit (in sec) for "
171 "running native tests on a device (default: 300 secs)")
Brett Chabot4a5d9f12010-02-18 20:01:11 -0800172 parser.add_option("--suite", dest="suite",
Brett Chabot49b77112009-06-02 11:46:04 -0700173 help="Run all tests defined as part of the "
Brett Chabot4a5d9f12010-02-18 20:01:11 -0800174 "the given test suite")
Xiaohui Chen85586e02015-08-20 09:45:48 -0700175 parser.add_option("--user", dest="user",
176 help="The user that test apks are installing to."
177 " This is the integer user id, e.g. 0 or 10."
178 " If no user is specified, apk will be installed with"
179 " adb's default behavior, which is currently all users.")
Xiaohui Chenfc784a42015-08-21 16:40:35 -0700180 parser.add_option("--install-filter", dest="filter_re",
181 help="Regular expression which generated apks have to"
182 " match to be installed to target device. Default is None"
183 " and will install all packages built. This is"
184 " useful when the test path has a lot of apks but you"
185 " only care about one.")
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700186 group = optparse.OptionGroup(
187 parser, "Targets", "Use these options to direct tests to a specific "
188 "Android target")
189 group.add_option("-e", "--emulator", dest="emulator", default=False,
190 action="store_true", help="use emulator")
191 group.add_option("-d", "--device", dest="device", default=False,
192 action="store_true", help="use device")
193 group.add_option("-s", "--serial", dest="serial",
194 help="use specific serial")
195 parser.add_option_group(group)
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700196 self._options, self._test_args = parser.parse_args()
197
Brett Chabot49b77112009-06-02 11:46:04 -0700198 if (not self._options.only_list_tests
199 and not self._options.all_tests
200 and not self._options.continuous_tests
Brett Chabot4a5d9f12010-02-18 20:01:11 -0800201 and not self._options.suite
Brett Chabot59b47782009-10-21 17:23:01 -0700202 and not self._options.test_path
Brett Chabot49b77112009-06-02 11:46:04 -0700203 and len(self._test_args) < 1):
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700204 parser.print_help()
205 logger.SilentLog("at least one test name must be specified")
206 raise errors.AbortError
207
208 self._adb = adb_interface.AdbInterface()
209 if self._options.emulator:
210 self._adb.SetEmulatorTarget()
211 elif self._options.device:
212 self._adb.SetDeviceTarget()
213 elif self._options.serial is not None:
214 self._adb.SetTargetSerial(self._options.serial)
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700215 if self._options.verbose:
216 logger.SetVerbose(True)
217
Brett Chabot8ac51182012-09-19 07:35:35 -0700218 if self._options.coverage_target_path:
219 self._options.coverage = True
220
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700221 self._known_tests = self._ReadTests()
222
Brett Chabot764d3fa2009-06-25 17:57:31 -0700223 self._options.host_lib_path = android_build.GetHostLibraryPath()
224 self._options.test_data_path = android_build.GetTestAppPath()
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700225
226 def _ReadTests(self):
227 """Parses the set of test definition data.
228
229 Returns:
230 A TestDefinitions object that contains the set of parsed tests.
231 Raises:
232 AbortError: If a fatal error occurred when parsing the tests.
233 """
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700234 try:
235 known_tests = test_defs.TestDefinitions()
Brett Chabot3c9cefc2011-06-06 20:53:56 -0700236 # only read tests when not in path mode
237 if not self._options.test_path:
238 core_test_path = os.path.join(self._root_path, self._CORE_TEST_PATH)
239 if os.path.isfile(core_test_path):
240 known_tests.Parse(core_test_path)
241 # read all <android root>/vendor/*/tests/testinfo/test_defs.xml paths
242 vendor_tests_pattern = os.path.join(self._root_path,
243 self._VENDOR_TEST_PATH)
244 test_file_paths = glob.glob(vendor_tests_pattern)
245 for test_file_path in test_file_paths:
246 known_tests.Parse(test_file_path)
247 if os.path.isfile(self._options.user_tests_file):
248 known_tests.Parse(self._options.user_tests_file)
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700249 return known_tests
250 except errors.ParseError:
251 raise errors.AbortError
252
253 def _DumpTests(self):
254 """Prints out set of defined tests."""
Brett Chabotbe659c02009-09-21 17:48:26 -0700255 print "The following tests are currently defined:\n"
256 print "%-25s %-40s %s" % ("name", "build path", "description")
257 print "-" * 80
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700258 for test in self._known_tests:
Brett Chabotbe659c02009-09-21 17:48:26 -0700259 print "%-25s %-40s %s" % (test.GetName(), test.GetBuildPath(),
260 test.GetDescription())
261 print "\nSee %s for more information" % self._TEST_FILE_NAME
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700262
263 def _DoBuild(self):
264 logger.SilentLog("Building tests...")
Brett Chabot8dc9eb82010-04-15 15:43:04 -0700265 tests = self._GetTestsToRun()
Santos Cordon4e0ad8f2015-05-21 12:25:05 -0700266
267 # Build and install tests that do not get granted permissions
268 self._DoPermissionAwareBuild(tests, False)
269
270 # Build and install tests that require granted permissions
271 self._DoPermissionAwareBuild(tests, True)
272
273 def _DoPermissionAwareBuild(self, tests, test_requires_permissions):
Brett Chabotb1eb5d22010-06-15 11:18:42 -0700274 # turn off dalvik verifier if necessary
Brett Chabot8b538bd2014-04-22 11:46:00 -0700275 # TODO: skip turning off verifier for now, since it puts device in bad
276 # state b/14088982
277 #self._TurnOffVerifier(tests)
Santos Cordon4e0ad8f2015-05-21 12:25:05 -0700278 self._DoFullBuild(tests, test_requires_permissions)
Brett Chabot8dc9eb82010-04-15 15:43:04 -0700279
Brett Chabot8ac51182012-09-19 07:35:35 -0700280 target_tree = make_tree.MakeTree()
Brian Muramatsu95cbc9e2012-01-10 12:06:12 -0800281
282 extra_args_set = []
Brett Chabot2477b382009-09-23 18:05:28 -0700283 for test_suite in tests:
Santos Cordon4e0ad8f2015-05-21 12:25:05 -0700284 if test_suite.IsGrantedPermissions() == test_requires_permissions:
285 self._AddBuildTarget(test_suite, target_tree, extra_args_set)
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700286
Brett Chabotccae47d2010-06-14 15:19:25 -0700287 if not self._options.preview:
288 self._adb.EnableAdbRoot()
289 else:
290 logger.Log("adb root")
Brett Chabot8ac51182012-09-19 07:35:35 -0700291
292 if not target_tree.IsEmpty():
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700293 if self._options.coverage:
Brett Chabot764d3fa2009-06-25 17:57:31 -0700294 coverage.EnableCoverageBuild()
Brett Chabot8ac51182012-09-19 07:35:35 -0700295 target_tree.AddPath("external/emma")
Brett Chabot2477b382009-09-23 18:05:28 -0700296
Brett Chabot8ac51182012-09-19 07:35:35 -0700297 target_list = target_tree.GetPrunedMakeList()
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800298 target_dir_list = [re.sub(r'Android[.]mk$', r'', i) for i in target_list]
Brett Chabot8ac51182012-09-19 07:35:35 -0700299 target_build_string = " ".join(target_list)
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800300 target_dir_build_string = " ".join(target_dir_list)
Brian Muramatsu95cbc9e2012-01-10 12:06:12 -0800301 extra_args_string = " ".join(extra_args_set)
Brett Chabotb1eb5d22010-06-15 11:18:42 -0700302
Brett Chabot764d3fa2009-06-25 17:57:31 -0700303 # mmm cannot be used from python, so perform a similar operation using
Brett Chabot2b6643b2009-04-07 18:35:27 -0700304 # ONE_SHOT_MAKEFILE
Brett Chabot5f5928c2013-08-20 17:06:03 -0700305 cmd = 'ONE_SHOT_MAKEFILE="%s" make -j%s -C "%s" GET-INSTALL-PATH all_modules %s' % (
Brett Chabot2477b382009-09-23 18:05:28 -0700306 target_build_string, self._options.make_jobs, self._root_path,
307 extra_args_string)
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800308 # mmma equivalent, used when regular mmm fails
309 alt_cmd = 'make -j%s -C "%s" -f build/core/main.mk %s all_modules BUILD_MODULES_IN_PATHS="%s"' % (
310 self._options.make_jobs, self._root_path, extra_args_string, target_dir_build_string)
311
Brett Chabot764d3fa2009-06-25 17:57:31 -0700312 logger.Log(cmd)
Brett Chabot74541712012-08-31 18:39:00 -0700313 if not self._options.preview:
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800314 run_command.SetAbortOnError()
315 try:
316 output = run_command.RunCommand(cmd, return_output=True, timeout_time=600)
317 ## Chances are this failed because it didn't build the dependencies
318 except errors.AbortError:
319 logger.Log("make failed. Trying to rebuild all dependencies.")
320 logger.Log("mmma -j%s %s" %(self._options.make_jobs, target_dir_build_string))
321 # Try again with mma equivalent, which will build the dependencies
322 run_command.RunCommand(alt_cmd, return_output=False, timeout_time=600)
323 # Run mmm again to get the install paths only
324 output = run_command.RunCommand(cmd, return_output=True, timeout_time=600)
325 run_command.SetAbortOnError(False)
Brett Chabot5f5928c2013-08-20 17:06:03 -0700326 logger.SilentLog(output)
Xiaohui Chenfc784a42015-08-21 16:40:35 -0700327 filter_re = re.compile(self._options.filter_re) if self._options.filter_re else None
Niko Cataniaa6dc2ab2009-04-03 14:12:46 -0700328
Xiaohui Chenfc784a42015-08-21 16:40:35 -0700329 self._DoInstall(output, test_requires_permissions, filter_re=filter_re)
330
331 def _DoInstall(self, make_output, test_requires_permissions, filter_re=None):
Brett Chabot74541712012-08-31 18:39:00 -0700332 """Install artifacts from build onto device.
333
334 Looks for 'install:' text from make output to find artifacts to install.
335
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800336 Files with the .apk extension get 'adb install'ed, all other files
337 get 'adb push'ed onto the device.
338
Brett Chabot74541712012-08-31 18:39:00 -0700339 Args:
340 make_output: stdout from make command
341 """
342 for line in make_output.split("\n"):
343 m = self._RE_MAKE_INSTALL.match(line)
344 if m:
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800345 # strip the 'INSTALL: <name>' from the left hand side
346 # the remaining string is a space-separated list of build-generated files
347 install_paths = m.group(2)
348 for install_path in re.split(r'\s+', install_paths):
Xiaohui Chenfc784a42015-08-21 16:40:35 -0700349 if filter_re and not filter_re.match(install_path):
350 continue
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800351 if install_path.endswith(".apk"):
352 abs_install_path = os.path.join(self._root_path, install_path)
Santos Cordon4e0ad8f2015-05-21 12:25:05 -0700353 extra_flags = ""
354 if test_requires_permissions and not self._options.skip_permissions:
355 extra_flags = "-g"
Xiaohui Chen85586e02015-08-20 09:45:48 -0700356 if self._options.user:
357 extra_flags += " --user " + self._options.user
Santos Cordon4e0ad8f2015-05-21 12:25:05 -0700358 logger.Log("adb install -r %s %s" % (extra_flags, abs_install_path))
359 logger.Log(self._adb.Install(abs_install_path, extra_flags))
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800360 else:
361 self._PushInstallFileToDevice(install_path)
Brett Chabot74541712012-08-31 18:39:00 -0700362
363 def _PushInstallFileToDevice(self, install_path):
JP Abgrallf38107c2013-07-11 17:39:16 -0700364 m = self._re_make_install_path.match(install_path)
Brett Chabot74541712012-08-31 18:39:00 -0700365 if m:
366 remote_path = m.group(1)
Brett Chabote607d3a2013-05-16 23:00:43 -0700367 remote_dir = os.path.dirname(remote_path)
368 logger.Log("adb shell mkdir -p %s" % remote_dir)
369 self._adb.SendShellCommand("mkdir -p %s" % remote_dir)
Brett Chabot74541712012-08-31 18:39:00 -0700370 abs_install_path = os.path.join(self._root_path, install_path)
Brett Chabot81c475e2012-09-11 12:57:31 -0700371 logger.Log("adb push %s %s" % (abs_install_path, remote_path))
Brett Chabot74541712012-08-31 18:39:00 -0700372 self._adb.Push(abs_install_path, remote_path)
373 else:
374 logger.Log("Error: Failed to recognize path of file to install %s" % install_path)
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700375
Santos Cordon4e0ad8f2015-05-21 12:25:05 -0700376 def _DoFullBuild(self, tests, test_requires_permissions):
Brett Chabot8dc9eb82010-04-15 15:43:04 -0700377 """If necessary, run a full 'make' command for the tests that need it."""
378 extra_args_set = Set()
379
Brett Chabot8dc9eb82010-04-15 15:43:04 -0700380 for test in tests:
Santos Cordon4e0ad8f2015-05-21 12:25:05 -0700381 if test.IsFullMake() and test.IsGrantedPermissions() == test_requires_permissions:
Brett Chabot8dc9eb82010-04-15 15:43:04 -0700382 if test.GetExtraBuildArgs():
383 # extra args contains the args to pass to 'make'
384 extra_args_set.add(test.GetExtraBuildArgs())
385 else:
386 logger.Log("Warning: test %s needs a full build but does not specify"
387 " extra_build_args" % test.GetName())
388
389 # check if there is actually any tests that required a full build
390 if extra_args_set:
391 cmd = ('make -j%s %s' % (self._options.make_jobs,
392 ' '.join(list(extra_args_set))))
393 logger.Log(cmd)
394 if not self._options.preview:
395 old_dir = os.getcwd()
396 os.chdir(self._root_path)
Brett Chabotb0b8c782012-09-19 08:32:56 -0700397 output = run_command.RunCommand(cmd, return_output=True)
Brett Chabot5f5928c2013-08-20 17:06:03 -0700398 logger.SilentLog(output)
Brett Chabot8dc9eb82010-04-15 15:43:04 -0700399 os.chdir(old_dir)
Santos Cordon4e0ad8f2015-05-21 12:25:05 -0700400 self._DoInstall(output, test_requires_permissions)
Brett Chabot8dc9eb82010-04-15 15:43:04 -0700401
Brett Chabot8ac51182012-09-19 07:35:35 -0700402 def _AddBuildTarget(self, test_suite, target_tree, extra_args_set):
Brett Chabot8dc9eb82010-04-15 15:43:04 -0700403 if not test_suite.IsFullMake():
404 build_dir = test_suite.GetBuildPath()
Brett Chabot8ac51182012-09-19 07:35:35 -0700405 if self._AddBuildTargetPath(build_dir, target_tree):
Brian Muramatsu95cbc9e2012-01-10 12:06:12 -0800406 extra_args_set.append(test_suite.GetExtraBuildArgs())
Brett Chabot8dc9eb82010-04-15 15:43:04 -0700407 for path in test_suite.GetBuildDependencies(self._options):
Brett Chabot8ac51182012-09-19 07:35:35 -0700408 self._AddBuildTargetPath(path, target_tree)
Brett Chabot2b6643b2009-04-07 18:35:27 -0700409
Brett Chabot8ac51182012-09-19 07:35:35 -0700410 def _AddBuildTargetPath(self, build_dir, target_tree):
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700411 if build_dir is not None:
Brett Chabot8ac51182012-09-19 07:35:35 -0700412 target_tree.AddPath(build_dir)
413 return True
Brett Chabot2b6643b2009-04-07 18:35:27 -0700414 return False
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700415
416 def _GetTestsToRun(self):
417 """Get a list of TestSuite objects to run, based on command line args."""
Brett Chabot59b47782009-10-21 17:23:01 -0700418 if self._tests_to_run:
419 return self._tests_to_run
420
421 self._tests_to_run = []
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700422 if self._options.all_tests:
Brett Chabot59b47782009-10-21 17:23:01 -0700423 self._tests_to_run = self._known_tests.GetTests()
Brett Chabot49b77112009-06-02 11:46:04 -0700424 elif self._options.continuous_tests:
Brett Chabot59b47782009-10-21 17:23:01 -0700425 self._tests_to_run = self._known_tests.GetContinuousTests()
Brett Chabot4a5d9f12010-02-18 20:01:11 -0800426 elif self._options.suite:
427 self._tests_to_run = \
428 self._known_tests.GetTestsInSuite(self._options.suite)
Brett Chabot59b47782009-10-21 17:23:01 -0700429 elif self._options.test_path:
430 walker = test_walker.TestWalker()
431 self._tests_to_run = walker.FindTests(self._options.test_path)
432
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700433 for name in self._test_args:
434 test = self._known_tests.GetTest(name)
435 if test is None:
436 logger.Log("Error: Could not find test %s" % name)
437 self._DumpTests()
438 raise errors.AbortError
Brett Chabot59b47782009-10-21 17:23:01 -0700439 self._tests_to_run.append(test)
440 return self._tests_to_run
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700441
Brett Chabot2477b382009-09-23 18:05:28 -0700442 def _IsCtsTests(self, test_list):
443 """Check if any cts tests are included in given list of tests to run."""
444 for test in test_list:
Brett Chabot4a5d9f12010-02-18 20:01:11 -0800445 if test.GetSuite() == 'cts':
Brett Chabot2477b382009-09-23 18:05:28 -0700446 return True
447 return False
448
Brett Chabotccae47d2010-06-14 15:19:25 -0700449 def _TurnOffVerifier(self, test_list):
450 """Turn off the dalvik verifier if needed by given tests.
451
452 If one or more tests needs dalvik verifier off, and it is not already off,
453 turns off verifier and reboots device to allow change to take effect.
454 """
Brett Chabot74541712012-08-31 18:39:00 -0700455 # hack to check if these are frameworks/base tests. If so, turn off verifier
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800456 # to allow framework tests to access private/protected/package-private framework api
Brett Chabotccae47d2010-06-14 15:19:25 -0700457 framework_test = False
458 for test in test_list:
459 if os.path.commonprefix([test.GetBuildPath(), "frameworks/base"]):
460 framework_test = True
461 if framework_test:
462 # check if verifier is off already - to avoid the reboot if not
463 # necessary
464 output = self._adb.SendShellCommand("cat /data/local.prop")
465 if not self._DALVIK_VERIFIER_OFF_PROP in output:
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800466
467 # Read the existing dalvik verifier flags.
468 old_prop_value = self._adb.SendShellCommand("getprop %s" \
469 %(self._DALVIK_VERIFIER_PROP))
470 old_prop_value = old_prop_value.strip() if old_prop_value else ""
471
472 # Append our verifier flags to existing flags
473 new_prop_value = "%s %s" %(self._DALVIK_VERIFIER_OFF_VALUE, old_prop_value)
474
475 # Update property now, as /data/local.prop is not read until reboot
476 logger.Log("adb shell setprop %s '%s'" \
477 %(self._DALVIK_VERIFIER_PROP, new_prop_value))
478 if not self._options.preview:
479 self._adb.SendShellCommand("setprop %s '%s'" \
480 %(self._DALVIK_VERIFIER_PROP, new_prop_value))
481
482 # Write prop to /data/local.prop
483 # Every time device is booted, it will pick up this value
484 new_prop_assignment = "%s = %s" %(self._DALVIK_VERIFIER_PROP, new_prop_value)
Brett Chabotccae47d2010-06-14 15:19:25 -0700485 if self._options.preview:
486 logger.Log("adb shell \"echo %s >> /data/local.prop\""
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800487 % new_prop_assignment)
Brett Chabot25dfd792012-02-16 15:51:43 -0800488 logger.Log("adb shell chmod 644 /data/local.prop")
Brett Chabotccae47d2010-06-14 15:19:25 -0700489 else:
490 logger.Log("Turning off dalvik verifier and rebooting")
491 self._adb.SendShellCommand("\"echo %s >> /data/local.prop\""
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800492 % new_prop_assignment)
Brett Chabot25dfd792012-02-16 15:51:43 -0800493
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800494 # Reset runtime so that dalvik picks up new verifier flags from prop
495 self._ChmodRuntimeReset()
Brett Chabot25dfd792012-02-16 15:51:43 -0800496 elif not self._options.preview:
497 # check the permissions on the file
498 permout = self._adb.SendShellCommand("ls -l /data/local.prop")
499 if not "-rw-r--r--" in permout:
500 logger.Log("Fixing permissions on /data/local.prop and rebooting")
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800501 self._ChmodRuntimeReset()
Brett Chabot25dfd792012-02-16 15:51:43 -0800502
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800503 def _ChmodRuntimeReset(self):
504 """Perform a chmod of /data/local.prop and reset the runtime.
Brett Chabot25dfd792012-02-16 15:51:43 -0800505 """
Igor Murashkina0afc8c2014-01-22 16:22:50 -0800506 logger.Log("adb shell chmod 644 /data/local.prop ## u+w,a+r")
507 if not self._options.preview:
508 self._adb.SendShellCommand("chmod 644 /data/local.prop")
509
510 self._adb.RuntimeReset(preview_only=self._options.preview)
511
512 if not self._options.preview:
513 self._adb.EnableAdbRoot()
Brett Chabot25dfd792012-02-16 15:51:43 -0800514
Brett Chabotccae47d2010-06-14 15:19:25 -0700515
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700516 def RunTests(self):
517 """Main entry method - executes the tests according to command line args."""
518 try:
519 run_command.SetAbortOnError()
520 self._ProcessOptions()
521 if self._options.only_list_tests:
522 self._DumpTests()
523 return
524
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700525 if not self._options.skip_build:
526 self._DoBuild()
527
Igor Murashkin8d703532014-01-23 16:13:29 -0800528 if self._options.build_install_only:
529 logger.Log("Skipping test execution (due to --build-install-only flag)")
530 return
531
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700532 for test_suite in self._GetTestsToRun():
Brett Chabot920e9fe2010-01-21 17:30:47 -0800533 try:
534 test_suite.Run(self._options, self._adb)
535 except errors.WaitForResponseTimedOutError:
536 logger.Log("Timed out waiting for response")
Brett Chabot764d3fa2009-06-25 17:57:31 -0700537
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700538 except KeyboardInterrupt:
539 logger.Log("Exiting...")
Brett Chabot3ae5f8a2009-06-28 12:00:47 -0700540 except errors.AbortError, error:
541 logger.Log(error.msg)
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700542 logger.SilentLog("Exiting due to AbortError...")
543 except errors.WaitForResponseTimedOutError:
544 logger.Log("Timed out waiting for response")
545
546
547def RunTests():
548 runner = TestRunner()
549 runner.RunTests()
550
551if __name__ == "__main__":
552 RunTests()