コード例 #1
0
ファイル: setup.py プロジェクト: MyAOSP/external_chromium_org
def Setup(test_options):
    """Create and return the test runner factory and tests.

  Args:
    test_options: An InstrumentationOptions object.

  Returns:
    A tuple of (TestRunnerFactory, tests).
  """
    if (test_options.coverage_dir
            and not os.path.exists(test_options.coverage_dir)):
        os.makedirs(test_options.coverage_dir)

    test_pkg = test_package.TestPackage(test_options.test_apk_path,
                                        test_options.test_apk_jar_path)
    tests = test_pkg._GetAllMatchingTests(test_options.annotations,
                                          test_options.exclude_annotations,
                                          test_options.test_filter)
    if not tests:
        logging.error('No instrumentation tests to run with current args.')

    def TestRunnerFactory(device, shard_index):
        return test_runner.TestRunner(test_options, device, shard_index,
                                      test_pkg)

    return (TestRunnerFactory, tests)
コード例 #2
0
def Dispatch(options):
    """Dispatches instrumentation tests onto connected device(s).

  If possible, this method will attempt to shard the tests to
  all connected devices. Otherwise, dispatch and run tests on one device.

  Args:
    options: Command line options.

  Returns:
    A TestRunResults object holding the results of the Java tests.

  Raises:
    Exception: when there are no attached devices.
  """
    test_pkg = test_package.TestPackage(options.test_apk_path,
                                        options.test_apk_jar_path)
    tests = test_pkg._GetAllMatchingTests(options.annotations,
                                          options.exclude_annotations,
                                          options.test_filter)
    if not tests:
        logging.warning('No instrumentation tests to run with current args.')
        return base_test_result.TestRunResults()

    attached_devices = android_commands.GetAttachedDevices()
    if not attached_devices:
        raise Exception('There are no devices online.')

    if options.device:
        assert options.device in attached_devices
        attached_devices = [options.device]

    if len(attached_devices) > 1 and options.wait_for_debugger:
        logging.warning(
            'Debugger can not be sharded, using first available device')
        attached_devices = attached_devices[:1]

    def TestRunnerFactory(device, shard_index):
        return test_runner.TestRunner(options, device, shard_index, test_pkg,
                                      [])

    return shard.ShardAndRunTests(TestRunnerFactory,
                                  attached_devices,
                                  tests,
                                  options.build_type,
                                  test_timeout=None,
                                  num_retries=options.num_retries)
コード例 #3
0
def Dispatch(options):
    """Dispatches uiautomator tests onto connected device(s).

  If possible, this method will attempt to shard the tests to
  all connected devices. Otherwise, dispatch and run tests on one device.

  Args:
    options: Command line options.

  Returns:
    A TestRunResults object holding the results of the Java tests.

  Raises:
    Exception: when there are no attached devices.
  """
    test_pkg = test_package.TestPackage(options.uiautomator_jar,
                                        options.uiautomator_info_jar)
    tests = test_pkg._GetAllMatchingTests(options.annotations,
                                          options.exclude_annotations,
                                          options.test_filter)
    if not tests:
        logging.warning('No uiautomator tests to run with current args.')
        return base_test_result.TestRunResults()

    attached_devices = android_commands.GetAttachedDevices()
    if not attached_devices:
        raise Exception('There are no devices online.')

    if options.device:
        assert options.device in attached_devices
        attached_devices = [options.device]

    def TestRunnerFactory(device, shard_index):
        return test_runner.TestRunner(options, device, shard_index, test_pkg,
                                      [])

    return shard.ShardAndRunTests(TestRunnerFactory, attached_devices, tests,
                                  options.build_type)
コード例 #4
0
ファイル: setup.py プロジェクト: MyAOSP/external_chromium_org
def Setup(test_options):
  """Runs uiautomator tests on connected device(s).

  Args:
    test_options: A UIAutomatorOptions object.

  Returns:
    A tuple of (TestRunnerFactory, tests).
  """
  test_pkg = test_package.TestPackage(test_options.uiautomator_jar,
                                      test_options.uiautomator_info_jar)
  tests = test_pkg._GetAllMatchingTests(test_options.annotations,
                                        test_options.exclude_annotations,
                                        test_options.test_filter)

  if not tests:
    logging.error('No uiautomator tests to run with current args.')

  def TestRunnerFactory(device, shard_index):
    return test_runner.TestRunner(
        test_options, device, shard_index, test_pkg)

  return (TestRunnerFactory, tests)
コード例 #5
0
def Dispatch(options):
  """Dispatches instrumentation tests onto connected device(s).

  If possible, this method will attempt to shard the tests to
  all connected devices. Otherwise, dispatch and run tests on one device.

  Args:
    options: Command line options.

  Returns:
    A TestRunResults object holding the results of the Java tests.

  Raises:
    Exception: when there are no attached devices.
  """
  is_uiautomator_test = False
  if hasattr(options, 'uiautomator_jar'):
    test_pkg = uiautomator_package.TestPackage(
        options.uiautomator_jar, options.uiautomator_info_jar)
    is_uiautomator_test = True
  else:
    test_pkg = test_package.TestPackage(options.test_apk_path,
                                        options.test_apk_jar_path)
  # The default annotation for tests which do not have any sizes annotation.
  default_size_annotation = 'SmallTest'

  def _GetTestsMissingAnnotation(test_pkg):
    test_size_annotations = frozenset(['Smoke', 'SmallTest', 'MediumTest',
                                       'LargeTest', 'EnormousTest', 'FlakyTest',
                                       'DisabledTest', 'Manual', 'PerfTest'])
    tests_missing_annotations = []
    for test_method in test_pkg.GetTestMethods():
      annotations = frozenset(test_pkg.GetTestAnnotations(test_method))
      if (annotations.isdisjoint(test_size_annotations) and
          not test_pkg.IsPythonDrivenTest(test_method)):
        tests_missing_annotations.append(test_method)
    return sorted(tests_missing_annotations)

  if options.annotation:
    available_tests = test_pkg.GetAnnotatedTests(options.annotation)
    if options.annotation.count(default_size_annotation) > 0:
      tests_missing_annotations = _GetTestsMissingAnnotation(test_pkg)
      if tests_missing_annotations:
        logging.warning('The following tests do not contain any annotation. '
                        'Assuming "%s":\n%s',
                        default_size_annotation,
                        '\n'.join(tests_missing_annotations))
        available_tests += tests_missing_annotations
  else:
    available_tests = [m for m in test_pkg.GetTestMethods()
                       if not test_pkg.IsPythonDrivenTest(m)]

  tests = []
  if options.test_filter:
    # |available_tests| are in adb instrument format: package.path.class#test.
    filter_without_hash = options.test_filter.replace('#', '.')
    tests = [t for t in available_tests
             if filter_without_hash in t.replace('#', '.')]
  else:
    tests = available_tests

  if not tests:
    logging.warning('No instrumentation tests to run with current args.')
    return base_test_result.TestRunResults()

  tests *= options.number_of_runs

  attached_devices = android_commands.GetAttachedDevices()

  if not attached_devices:
    raise Exception('There are no devices online.')
  if options.device:
    attached_devices = [options.device]

  logging.info('Will run: %s', str(tests))

  if len(attached_devices) > 1 and options.wait_for_debugger:
    logging.warning('Debugger can not be sharded, using first available device')
    attached_devices = attached_devices[:1]

  def TestRunnerFactory(device, shard_index):
    return test_runner.TestRunner(
        options, device, shard_index, test_pkg, [], is_uiautomator_test)

  return shard.ShardAndRunTests(TestRunnerFactory, attached_devices, tests,
                                options.build_type)