Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(470)

Side by Side Diff: content/test/gpu/gpu_tests/context_lost.py

Issue 277143003: Add NavigateToPage API for action_runner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/test/gpu/gpu_tests/maps.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 test as test_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
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 url='file://webgl.html?query=kill_after_notification', 130 url='file://webgl.html?query=kill_after_notification',
131 page_set=page_set, 131 page_set=page_set,
132 base_dir=base_dir, 132 base_dir=base_dir,
133 name='ContextLost.WebGLContextLostFromGPUProcessExit') 133 name='ContextLost.WebGLContextLostFromGPUProcessExit')
134 self.script_to_evaluate_on_commit = harness_script 134 self.script_to_evaluate_on_commit = harness_script
135 self.kill_gpu_process = True 135 self.kill_gpu_process = True
136 self.number_of_gpu_process_kills = 1 136 self.number_of_gpu_process_kills = 1
137 self.force_garbage_collection = False 137 self.force_garbage_collection = False
138 138
139 def RunNavigateSteps(self, action_runner): 139 def RunNavigateSteps(self, action_runner):
140 action_runner.RunAction(NavigateAction()) 140 action_runner.NavigateToPage(self)
141 action_runner.RunAction(WaitAction( 141 action_runner.RunAction(WaitAction(
142 {'javascript': 'window.domAutomationController._loaded'})) 142 {'javascript': 'window.domAutomationController._loaded'}))
143 143
144 144
145 class WebGLContextLostFromLoseContextExtensionPage(page.Page): 145 class WebGLContextLostFromLoseContextExtensionPage(page.Page):
146 def __init__(self, page_set, base_dir): 146 def __init__(self, page_set, base_dir):
147 super(WebGLContextLostFromLoseContextExtensionPage, self).__init__( 147 super(WebGLContextLostFromLoseContextExtensionPage, self).__init__(
148 url='file://webgl.html?query=WEBGL_lose_context', 148 url='file://webgl.html?query=WEBGL_lose_context',
149 page_set=page_set, 149 page_set=page_set,
150 base_dir=base_dir, 150 base_dir=base_dir,
151 name='ContextLost.WebGLContextLostFromLoseContextExtension') 151 name='ContextLost.WebGLContextLostFromLoseContextExtension')
152 self.script_to_evaluate_on_commit = harness_script 152 self.script_to_evaluate_on_commit = harness_script
153 self.kill_gpu_process = False 153 self.kill_gpu_process = False
154 self.force_garbage_collection = False 154 self.force_garbage_collection = False
155 155
156 def RunNavigateSteps(self, action_runner): 156 def RunNavigateSteps(self, action_runner):
157 action_runner.RunAction(NavigateAction()) 157 action_runner.NavigateToPage(self)
158 action_runner.RunAction(WaitAction( 158 action_runner.RunAction(WaitAction(
159 {'javascript': 'window.domAutomationController._finished'})) 159 {'javascript': 'window.domAutomationController._finished'}))
160 160
161 class WebGLContextLostFromQuantityPage(page.Page): 161 class WebGLContextLostFromQuantityPage(page.Page):
162 def __init__(self, page_set, base_dir): 162 def __init__(self, page_set, base_dir):
163 super(WebGLContextLostFromQuantityPage, self).__init__( 163 super(WebGLContextLostFromQuantityPage, self).__init__(
164 url='file://webgl.html?query=forced_quantity_loss', 164 url='file://webgl.html?query=forced_quantity_loss',
165 page_set=page_set, 165 page_set=page_set,
166 base_dir=base_dir, 166 base_dir=base_dir,
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.RunAction(NavigateAction()) 173 action_runner.NavigateToPage(self)
174 action_runner.RunAction(WaitAction( 174 action_runner.RunAction(WaitAction(
175 {'javascript': 'window.domAutomationController._loaded'})) 175 {'javascript': 'window.domAutomationController._loaded'}))
176 176
177 class ContextLost(test_module.Test): 177 class ContextLost(test_module.Test):
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 description='Test cases for real and synthetic context lost events', 186 description='Test cases for real and synthetic context lost events',
187 user_agent_type='desktop', 187 user_agent_type='desktop',
188 serving_dirs=set([''])) 188 serving_dirs=set(['']))
189 ps.AddPage(WebGLContextLostFromGPUProcessExitPage(ps, ps.base_dir)) 189 ps.AddPage(WebGLContextLostFromGPUProcessExitPage(ps, ps.base_dir))
190 ps.AddPage(WebGLContextLostFromLoseContextExtensionPage(ps, ps.base_dir)) 190 ps.AddPage(WebGLContextLostFromLoseContextExtensionPage(ps, ps.base_dir))
191 ps.AddPage(WebGLContextLostFromQuantityPage(ps, ps.base_dir)) 191 ps.AddPage(WebGLContextLostFromQuantityPage(ps, ps.base_dir))
192 return ps 192 return ps
193 193
194 194
OLDNEW
« no previous file with comments | « no previous file | content/test/gpu/gpu_tests/maps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698