| OLD | NEW |
| 1 # coding: utf-8 | 1 # coding: utf-8 |
| 2 # Copyright 2014 The Swarming Authors. All rights reserved. | 2 # Copyright 2014 The LUCI Authors. All rights reserved. |
| 3 # Use of this source code is governed by the Apache v2.0 license that can be | 3 # Use of this source code is governed by the Apache v2.0 license that can be |
| 4 # found in the LICENSE file. | 4 # 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 |
| 11 | 11 |
| 12 import test_env | 12 import test_env |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 | 230 |
| 231 def client_create_task_raw(self, properties=None, **kwargs): | 231 def client_create_task_raw(self, properties=None, **kwargs): |
| 232 """Creates a raw command TaskRequest via the Cloud Endpoints API.""" | 232 """Creates a raw command TaskRequest via the Cloud Endpoints API.""" |
| 233 properties = (properties or {}).copy() | 233 properties = (properties or {}).copy() |
| 234 properties['command'] = ['python', 'run_test.py'] | 234 properties['command'] = ['python', 'run_test.py'] |
| 235 return self._client_create_task(properties, **kwargs) | 235 return self._client_create_task(properties, **kwargs) |
| 236 | 236 |
| 237 def client_get_results(self, task_id): | 237 def client_get_results(self, task_id): |
| 238 api = test_case.Endpoints(handlers_endpoints.SwarmingTaskService) | 238 api = test_case.Endpoints(handlers_endpoints.SwarmingTaskService) |
| 239 return api.call_api('result', body={'task_id': task_id}).json | 239 return api.call_api('result', body={'task_id': task_id}).json |
| OLD | NEW |