| OLD | NEW |
| 1 # coding: utf-8 | 1 # coding: utf-8 |
| 2 # Copyright 2014 The LUCI Authors. All rights reserved. | 2 # Copyright 2014 The LUCI Authors. All rights reserved. |
| 3 # Use of this source code is governed under the Apache License, Version 2.0 | 3 # Use of this source code is governed under the Apache License, Version 2.0 |
| 4 # that can be found in the LICENSE file. | 4 # that can be found in the LICENSE file. |
| 5 | 5 |
| 6 """Base class for handlers_*_test.py""" | 6 """Base class for handlers_*_test.py""" |
| 7 | 7 |
| 8 import base64 | 8 import base64 |
| 9 import json | 9 import json |
| 10 import os | 10 import os |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 def _client_create_task(self, properties=None, **kwargs): | 208 def _client_create_task(self, properties=None, **kwargs): |
| 209 """Creates an isolated command TaskRequest via the Cloud Endpoints API.""" | 209 """Creates an isolated command TaskRequest via the Cloud Endpoints API.""" |
| 210 props = { | 210 props = { |
| 211 'cipd_input': { | 211 'cipd_input': { |
| 212 'client_package': { | 212 'client_package': { |
| 213 'package_name': 'infra/tools/cipd/${platform}', | 213 'package_name': 'infra/tools/cipd/${platform}', |
| 214 'version': 'git_revision:deadbeef', | 214 'version': 'git_revision:deadbeef', |
| 215 }, | 215 }, |
| 216 'packages': [{ | 216 'packages': [{ |
| 217 'package_name': 'rm', | 217 'package_name': 'rm', |
| 218 'path': 'bin', |
| 218 'version': 'git_revision:deadbeef', | 219 'version': 'git_revision:deadbeef', |
| 219 }], | 220 }], |
| 220 'server': 'https://chrome-infra-packages.appspot.com', | 221 'server': 'https://chrome-infra-packages.appspot.com', |
| 221 }, | 222 }, |
| 222 'dimensions': [ | 223 'dimensions': [ |
| 223 {'key': 'os', 'value': 'Amiga'}, | 224 {'key': 'os', 'value': 'Amiga'}, |
| 224 {'key': 'pool', 'value': 'default'}, | 225 {'key': 'pool', 'value': 'default'}, |
| 225 ], | 226 ], |
| 226 'env': [], | 227 'env': [], |
| 227 'execution_timeout_secs': 3600, | 228 'execution_timeout_secs': 3600, |
| (...skipping 28 matching lines...) Expand all Loading... |
| 256 | 257 |
| 257 def client_create_task_raw(self, properties=None, **kwargs): | 258 def client_create_task_raw(self, properties=None, **kwargs): |
| 258 """Creates a raw command TaskRequest via the Cloud Endpoints API.""" | 259 """Creates a raw command TaskRequest via the Cloud Endpoints API.""" |
| 259 properties = (properties or {}).copy() | 260 properties = (properties or {}).copy() |
| 260 properties['command'] = ['python', 'run_test.py'] | 261 properties['command'] = ['python', 'run_test.py'] |
| 261 return self._client_create_task(properties, **kwargs) | 262 return self._client_create_task(properties, **kwargs) |
| 262 | 263 |
| 263 def client_get_results(self, task_id): | 264 def client_get_results(self, task_id): |
| 264 api = test_case.Endpoints(handlers_endpoints.SwarmingTaskService) | 265 api = test_case.Endpoints(handlers_endpoints.SwarmingTaskService) |
| 265 return api.call_api('result', body={'task_id': task_id}).json | 266 return api.call_api('result', body={'task_id': task_id}).json |
| OLD | NEW |