| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import os | 4 import os |
| 5 | 5 |
| 6 from telemetry import test as test_module | 6 from telemetry import benchmark as benchmark_module |
| 7 from telemetry.core import exceptions | 7 from telemetry.core import exceptions |
| 8 from telemetry.core import util | 8 from telemetry.core import util |
| 9 from telemetry.page import page | 9 from telemetry.page import page |
| 10 from telemetry.page import page_set | 10 from telemetry.page import page_set |
| 11 # pylint: disable=W0401,W0614 | 11 # pylint: disable=W0401,W0614 |
| 12 from telemetry.page import page_test | 12 from telemetry.page import page_test |
| 13 from telemetry.page.actions.all_page_actions import * | 13 from telemetry.page.actions.all_page_actions import * |
| 14 | 14 |
| 15 data_path = os.path.join( | 15 data_path = os.path.join( |
| 16 util.GetChromiumSrcDir(), 'content', 'test', 'data', 'gpu') | 16 util.GetChromiumSrcDir(), 'content', 'test', 'data', 'gpu') |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 name='ContextLost.WebGLContextLostFromQuantity') | 167 name='ContextLost.WebGLContextLostFromQuantity') |
| 168 self.script_to_evaluate_on_commit = harness_script | 168 self.script_to_evaluate_on_commit = harness_script |
| 169 self.kill_gpu_process = False | 169 self.kill_gpu_process = False |
| 170 self.force_garbage_collection = True | 170 self.force_garbage_collection = True |
| 171 | 171 |
| 172 def RunNavigateSteps(self, action_runner): | 172 def RunNavigateSteps(self, action_runner): |
| 173 action_runner.NavigateToPage(self) | 173 action_runner.NavigateToPage(self) |
| 174 action_runner.WaitForJavaScriptCondition( | 174 action_runner.WaitForJavaScriptCondition( |
| 175 'window.domAutomationController._loaded') | 175 'window.domAutomationController._loaded') |
| 176 | 176 |
| 177 class ContextLost(test_module.Test): | 177 class ContextLost(benchmark_module.Benchmark): |
| 178 enabled = True | 178 enabled = True |
| 179 test = _ContextLostValidator | 179 test = _ContextLostValidator |
| 180 # For the record, this would have been another way to get the pages | 180 # For the record, this would have been another way to get the pages |
| 181 # to repeat. pageset_repeat would be another option. | 181 # to repeat. pageset_repeat would be another option. |
| 182 # options = {'page_repeat': 5} | 182 # options = {'page_repeat': 5} |
| 183 def CreatePageSet(self, options): | 183 def CreatePageSet(self, options): |
| 184 ps = page_set.PageSet( | 184 ps = page_set.PageSet( |
| 185 file_path=data_path, | 185 file_path=data_path, |
| 186 user_agent_type='desktop', | 186 user_agent_type='desktop', |
| 187 serving_dirs=set([''])) | 187 serving_dirs=set([''])) |
| 188 ps.AddPage(WebGLContextLostFromGPUProcessExitPage(ps, ps.base_dir)) | 188 ps.AddPage(WebGLContextLostFromGPUProcessExitPage(ps, ps.base_dir)) |
| 189 ps.AddPage(WebGLContextLostFromLoseContextExtensionPage(ps, ps.base_dir)) | 189 ps.AddPage(WebGLContextLostFromLoseContextExtensionPage(ps, ps.base_dir)) |
| 190 ps.AddPage(WebGLContextLostFromQuantityPage(ps, ps.base_dir)) | 190 ps.AddPage(WebGLContextLostFromQuantityPage(ps, ps.base_dir)) |
| 191 return ps | 191 return ps |
| OLD | NEW |