* automatically detect if emma is on device * build emma into libcore if necessary * stop runtime before adb sync and restart afterwards Change-Id: I6f1beacdd266310c481351165a054dca8f8657b2
199 lines
6.5 KiB
Python
199 lines
6.5 KiB
Python
#!/usr/bin/python2.4
|
|
#
|
|
#
|
|
# Copyright 2008, The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
"""TestSuite definition for Android instrumentation tests."""
|
|
|
|
# python imports
|
|
import os
|
|
|
|
# local imports
|
|
import coverage
|
|
import errors
|
|
import logger
|
|
import test_suite
|
|
|
|
|
|
class InstrumentationTestSuite(test_suite.AbstractTestSuite):
|
|
"""Represents a java instrumentation test suite definition run on device."""
|
|
|
|
DEFAULT_RUNNER = "android.test.InstrumentationTestRunner"
|
|
|
|
# dependency on libcore (used for Emma)
|
|
_LIBCORE_BUILD_PATH = os.path.join("dalvik", "libcore")
|
|
|
|
def __init__(self):
|
|
test_suite.AbstractTestSuite.__init__(self)
|
|
self._package_name = None
|
|
self._runner_name = self.DEFAULT_RUNNER
|
|
self._class_name = None
|
|
self._target_name = None
|
|
self._java_package = None
|
|
|
|
def GetPackageName(self):
|
|
return self._package_name
|
|
|
|
def SetPackageName(self, package_name):
|
|
self._package_name = package_name
|
|
return self
|
|
|
|
def GetRunnerName(self):
|
|
return self._runner_name
|
|
|
|
def SetRunnerName(self, runner_name):
|
|
self._runner_name = runner_name
|
|
return self
|
|
|
|
def GetClassName(self):
|
|
return self._class_name
|
|
|
|
def SetClassName(self, class_name):
|
|
self._class_name = class_name
|
|
return self
|
|
|
|
def GetJavaPackageFilter(self):
|
|
return self._java_package
|
|
|
|
def SetJavaPackageFilter(self, java_package_name):
|
|
"""Configure the suite to only run tests in given java package."""
|
|
self._java_package = java_package_name
|
|
return self
|
|
|
|
def GetTargetName(self):
|
|
"""Retrieve module that this test is targeting.
|
|
|
|
Used for generating code coverage metrics.
|
|
Returns:
|
|
the module target name
|
|
"""
|
|
return self._target_name
|
|
|
|
def SetTargetName(self, target_name):
|
|
self._target_name = target_name
|
|
return self
|
|
|
|
def GetBuildDependencies(self, options):
|
|
if options.coverage:
|
|
return [self._LIBCORE_BUILD_PATH]
|
|
return []
|
|
|
|
def Run(self, options, adb):
|
|
"""Run the provided test suite.
|
|
|
|
Builds up an adb instrument command using provided input arguments.
|
|
|
|
Args:
|
|
options: command line options to provide to test run
|
|
adb: adb_interface to device under test
|
|
|
|
Raises:
|
|
errors.AbortError: if fatal error occurs
|
|
"""
|
|
|
|
test_class = self.GetClassName()
|
|
if options.test_class is not None:
|
|
test_class = options.test_class.lstrip()
|
|
if test_class.startswith("."):
|
|
test_class = self.GetPackageName() + test_class
|
|
if options.test_method is not None:
|
|
test_class = "%s#%s" % (test_class, options.test_method)
|
|
|
|
test_package = self.GetJavaPackageFilter()
|
|
if options.test_package:
|
|
test_package = options.test_package
|
|
|
|
if test_class and test_package:
|
|
logger.Log('Error: both class and java package options are specified')
|
|
|
|
instrumentation_args = {}
|
|
if test_class is not None:
|
|
instrumentation_args["class"] = test_class
|
|
if test_package:
|
|
instrumentation_args["package"] = test_package
|
|
if options.test_size:
|
|
instrumentation_args["size"] = options.test_size
|
|
if options.wait_for_debugger:
|
|
instrumentation_args["debug"] = "true"
|
|
if options.suite_assign_mode:
|
|
instrumentation_args["suiteAssignment"] = "true"
|
|
if options.coverage:
|
|
instrumentation_args["coverage"] = "true"
|
|
if options.test_annotation:
|
|
instrumentation_args["annotation"] = options.test_annotation
|
|
if options.test_not_annotation:
|
|
instrumentation_args["notAnnotation"] = options.test_not_annotation
|
|
if options.preview:
|
|
adb_cmd = adb.PreviewInstrumentationCommand(
|
|
package_name=self.GetPackageName(),
|
|
runner_name=self.GetRunnerName(),
|
|
raw_mode=options.raw_mode,
|
|
instrumentation_args=instrumentation_args)
|
|
logger.Log(adb_cmd)
|
|
elif options.coverage:
|
|
coverage_gen = coverage.CoverageGenerator(adb)
|
|
adb.WaitForInstrumentation(self.GetPackageName(),
|
|
self.GetRunnerName())
|
|
# need to parse test output to determine path to coverage file
|
|
logger.Log("Running in coverage mode, suppressing test output")
|
|
try:
|
|
(test_results, status_map) = adb.StartInstrumentationForPackage(
|
|
package_name=self.GetPackageName(),
|
|
runner_name=self.GetRunnerName(),
|
|
timeout_time=60*60,
|
|
instrumentation_args=instrumentation_args)
|
|
except errors.InstrumentationError, errors.DeviceUnresponsiveError:
|
|
return
|
|
self._PrintTestResults(test_results)
|
|
device_coverage_path = status_map.get("coverageFilePath", None)
|
|
if device_coverage_path is None:
|
|
logger.Log("Error: could not find coverage data on device")
|
|
return
|
|
|
|
coverage_file = coverage_gen.ExtractReport(
|
|
self, device_coverage_path, test_qualifier=options.test_size)
|
|
if coverage_file is not None:
|
|
logger.Log("Coverage report generated at %s" % coverage_file)
|
|
else:
|
|
adb.WaitForInstrumentation(self.GetPackageName(),
|
|
self.GetRunnerName())
|
|
adb.StartInstrumentationNoResults(
|
|
package_name=self.GetPackageName(),
|
|
runner_name=self.GetRunnerName(),
|
|
raw_mode=options.raw_mode,
|
|
instrumentation_args=instrumentation_args)
|
|
|
|
def _PrintTestResults(self, test_results):
|
|
"""Prints a summary of test result data to stdout.
|
|
|
|
Args:
|
|
test_results: a list of am_instrument_parser.TestResult
|
|
"""
|
|
total_count = 0
|
|
error_count = 0
|
|
fail_count = 0
|
|
for test_result in test_results:
|
|
if test_result.GetStatusCode() == -1: # error
|
|
logger.Log("Error in %s: %s" % (test_result.GetTestName(),
|
|
test_result.GetFailureReason()))
|
|
error_count+=1
|
|
elif test_result.GetStatusCode() == -2: # failure
|
|
logger.Log("Failure in %s: %s" % (test_result.GetTestName(),
|
|
test_result.GetFailureReason()))
|
|
fail_count+=1
|
|
total_count+=1
|
|
logger.Log("Tests run: %d, Failures: %d, Errors: %d" %
|
|
(total_count, fail_count, error_count))
|