| # Copyright 2014 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| """Run specific test on specific environment.""" |
| |
| import logging |
| import os |
| import sys |
| |
| from pylib import constants |
| from pylib.base import base_test_result |
| from pylib.remote.device import appurify_sanitized |
| from pylib.remote.device import remote_device_test_run |
| from pylib.remote.device import remote_device_helper |
| |
| |
| class RemoteDeviceGtestRun(remote_device_test_run.RemoteDeviceTestRun): |
| """Run gtests and uirobot tests on a remote device.""" |
| |
| DEFAULT_RUNNER_TYPE = 'robotium' |
| DEFAULT_RUNNER_PACKAGE = ( |
| 'org.chromium.native_test.ChromiumNativeTestInstrumentationTestRunner') |
| |
| #override |
| def TestPackage(self): |
| return self._test_instance.suite |
| |
| #override |
| def _TriggerSetUp(self): |
| """Set up the triggering of a test run.""" |
| logging.info('Triggering test run.') |
| self._app_id = self._UploadAppToDevice(self._test_instance.apk) |
| |
| if not self._env.runner_type: |
| runner_type = self.DEFAULT_RUNNER_TYPE |
| logging.info('Using default runner type: %s', self.DEFAULT_RUNNER_TYPE) |
| else: |
| runner_type = self._env.runner_type |
| |
| if not self._env.runner_package: |
| runner_package = self.DEFAULT_RUNNER_PACKAGE |
| logging.info('Using default runner package: %s', |
| self.DEFAULT_RUNNER_TYPE) |
| else: |
| runner_package = self._env.runner_package |
| |
| self._test_id = self._UploadTestToDevice(runner_type) |
| config_body = {'runner': runner_package} |
| self._SetTestConfig(runner_type, config_body) |
| |
| _INSTRUMENTATION_STREAM_LEADER = 'INSTRUMENTATION_STATUS: stream=' |
| |
| #override |
| def _ParseTestResults(self): |
| logging.info('Parsing results from stdout.') |
| output = self._results['results']['output'].splitlines() |
| output = (l[len(self._INSTRUMENTATION_STREAM_LEADER):] for l in output |
| if l.startswith(self._INSTRUMENTATION_STREAM_LEADER)) |
| results_list = self._test_instance.ParseGTestOutput(output) |
| results = base_test_result.TestRunResults() |
| results.AddResults(results_list) |
| return results |