| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """Run specific test on specific environment.""" | 5 """Run specific test on specific environment.""" |
| 6 | 6 |
| 7 import logging | 7 import logging |
| 8 import os | 8 import os |
| 9 import sys | 9 import sys |
| 10 | 10 |
| 11 from pylib import constants | 11 from pylib import constants |
| 12 from pylib.base import base_test_result | 12 from pylib.base import base_test_result |
| 13 from pylib.remote.device import appurify_sanitized |
| 13 from pylib.remote.device import remote_device_test_run | 14 from pylib.remote.device import remote_device_test_run |
| 14 from pylib.remote.device import remote_device_helper | 15 from pylib.remote.device import remote_device_helper |
| 15 | 16 |
| 16 sys.path.append(os.path.join( | |
| 17 constants.DIR_SOURCE_ROOT, 'third_party', 'requests', 'src')) | |
| 18 sys.path.append(os.path.join( | |
| 19 constants.DIR_SOURCE_ROOT, 'third_party', 'appurify-python', 'src')) | |
| 20 import appurify.api | |
| 21 import appurify.utils | |
| 22 | 17 |
| 23 class RemoteDeviceUirobotRun(remote_device_test_run.RemoteDeviceTestRun): | 18 class RemoteDeviceUirobotRun(remote_device_test_run.RemoteDeviceTestRun): |
| 24 """Run uirobot tests on a remote device.""" | 19 """Run uirobot tests on a remote device.""" |
| 25 | 20 |
| 26 DEFAULT_RUNNER_TYPE = 'android_robot' | 21 DEFAULT_RUNNER_TYPE = 'android_robot' |
| 27 | 22 |
| 28 def __init__(self, env, test_instance): | 23 def __init__(self, env, test_instance): |
| 29 """Constructor. | 24 """Constructor. |
| 30 | 25 |
| 31 Args: | 26 Args: |
| 32 env: Environment the tests will run in. | 27 env: Environment the tests will run in. |
| 33 test_instance: The test that will be run. | 28 test_instance: The test that will be run. |
| 34 """ | 29 """ |
| 35 super(RemoteDeviceUirobotRun, self).__init__(env, test_instance) | 30 super(RemoteDeviceUirobotRun, self).__init__(env, test_instance) |
| 36 | 31 |
| 32 #override |
| 37 def TestPackage(self): | 33 def TestPackage(self): |
| 38 pass | 34 return self._test_instance.package_name |
| 39 | 35 |
| 40 #override | 36 #override |
| 41 def _TriggerSetUp(self): | 37 def _TriggerSetUp(self): |
| 42 """Set up the triggering of a test run.""" | 38 """Set up the triggering of a test run.""" |
| 39 logging.info('Triggering test run.') |
| 43 self._app_id = self._UploadAppToDevice(self._test_instance.apk_under_test) | 40 self._app_id = self._UploadAppToDevice(self._test_instance.apk_under_test) |
| 44 if not self._env.runner_type: | 41 if not self._env.runner_type: |
| 45 runner_type = self.DEFAULT_RUNNER_TYPE | 42 runner_type = self.DEFAULT_RUNNER_TYPE |
| 46 logging.info('Using default runner type: %s', self.DEFAULT_RUNNER_TYPE) | 43 logging.info('Using default runner type: %s', self.DEFAULT_RUNNER_TYPE) |
| 47 else: | 44 else: |
| 48 runner_type = self._env.runner_type | 45 runner_type = self._env.runner_type |
| 49 self._test_id = self._GetTestByName(runner_type) | 46 self._test_id = self._GetTestByName(runner_type) |
| 50 config_body = {'duration': self._test_instance.minutes} | 47 config_body = {'duration': self._test_instance.minutes} |
| 51 self._SetTestConfig(runner_type, config_body) | 48 self._SetTestConfig(runner_type, config_body) |
| 52 | 49 |
| 53 #override | 50 #override |
| 54 def _ParseTestResults(self): | 51 def _ParseTestResults(self): |
| 55 # TODO(rnephew): Populate test results object. | 52 logging.info('Parsing results from remote service.') |
| 56 results = remote_device_test_run.TestRunResults() | 53 results = base_test_result.TestRunResults() |
| 54 if self._results['results']['pass']: |
| 55 result_type = base_test_result.ResultType.PASS |
| 56 else: |
| 57 result_type = base_test_result.ResultType.FAIL |
| 58 results.AddResult(base_test_result.BaseTestResult('uirobot', result_type)) |
| 57 return results | 59 return results |
| 58 | |
| OLD | NEW |