1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from core import perf_benchmark
from benchmarks import silk_flags
from measurements import power
import page_sets
from telemetry import benchmark
@benchmark.Enabled('android')
class PowerAndroidAcceptance(perf_benchmark.PerfBenchmark):
"""Android power acceptance test."""
test = power.Power
page_set = page_sets.AndroidAcceptancePageSet
def SetExtraBrowserOptions(self, options):
options.full_performance_mode = False
@classmethod
def Name(cls):
return 'power.android_acceptance'
@benchmark.Enabled('android')
class PowerTypical10Mobile(perf_benchmark.PerfBenchmark):
"""Android typical 10 mobile power test."""
test = power.Power
page_set = page_sets.Typical10MobilePageSet
def SetExtraBrowserOptions(self, options):
options.full_performance_mode = False
@classmethod
def Name(cls):
return 'power.typical_10_mobile'
@benchmark.Enabled('android')
@benchmark.Disabled
class PowerTypical10MobileReload(perf_benchmark.PerfBenchmark):
"""Android typical 10 mobile power reload test."""
test = power.LoadPower
page_set = page_sets.Typical10MobileReloadPageSet
def SetExtraBrowserOptions(self, options):
options.full_performance_mode = False
@classmethod
def Name(cls):
return 'power.typical_10_mobile_reload'
@benchmark.Enabled('android')
class PowerGpuRasterizationTypical10Mobile(perf_benchmark.PerfBenchmark):
"""Measures power on key mobile sites with GPU rasterization."""
tag = 'gpu_rasterization'
test = power.Power
page_set = page_sets.Typical10MobilePageSet
def SetExtraBrowserOptions(self, options):
silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
options.full_performance_mode = False
@classmethod
def Name(cls):
return 'power.gpu_rasterization.typical_10_mobile'
@benchmark.Enabled('mac')
class PowerTop10(perf_benchmark.PerfBenchmark):
"""Top 10 quiescent power test."""
test = power.QuiescentPower
page_set = page_sets.Top10PageSet
def SetExtraBrowserOptions(self, options):
options.full_performance_mode = False
@classmethod
def Name(cls):
return 'power.top_10'
@benchmark.Enabled('mac')
class PowerTop25(perf_benchmark.PerfBenchmark):
"""Top 25 quiescent power test."""
test = power.QuiescentPower
page_set = page_sets.Top25PageSet
def SetExtraBrowserOptions(self, options):
options.full_performance_mode = False
@classmethod
def Name(cls):
return 'power.top_25'
def CreateStorySet(self, _):
# Exclude techcrunch.com. It is not suitable for this benchmark because it
# does not consistently become quiescent within 60 seconds.
stories = self.page_set()
found = next((x for x in stories if 'techcrunch.com' in x.url), None)
if found:
stories.RemoveStory(found)
return stories
@benchmark.Enabled('linux', 'mac', 'win', 'chromeos')
class PowerPPSControlDisabled(perf_benchmark.PerfBenchmark):
"""A single page with a small-ish non-essential plugin. In this test, Plugin
Power Saver (PPS) is disabled, so the plugin should continue animating and
taking power."""
test = power.QuiescentPower
page_set = page_sets.PluginPowerSaverPageSet
options = {'pageset_repeat': 5}
def SetExtraBrowserOptions(self, options):
options.AppendExtraBrowserArgs(['--disable-plugin-power-saver'])
options.full_performance_mode = False
@classmethod
def Name(cls):
return 'power.pps_control_disabled'
@benchmark.Enabled('linux', 'mac', 'win', 'chromeos')
class PowerPPSControlEnabled(perf_benchmark.PerfBenchmark):
"""A single page with a small-ish non-essential plugin. In this test, Plugin
Power Saver (PPS) is enabled, so the plugin should be throttled (idle with a
"Click to play" button)."""
test = power.QuiescentPower
page_set = page_sets.PluginPowerSaverPageSet
options = {'pageset_repeat': 5}
def SetExtraBrowserOptions(self, options):
options.AppendExtraBrowserArgs(['--enable-plugin-power-saver'])
options.full_performance_mode = False
@classmethod
def Name(cls):
return 'power.pps_control_enabled'
@benchmark.Enabled('linux', 'mac', 'win', 'chromeos')
class PowerThrottledPlugins(perf_benchmark.PerfBenchmark):
"""Tests that pages with flash ads take more power without Plugin Power Saver
(PPS) throttling them."""
test = power.QuiescentPower
page_set = page_sets.ThrottledPluginsPageSet
options = {'pageset_repeat': 5}
def SetExtraBrowserOptions(self, options):
options.AppendExtraBrowserArgs(['--disable-plugin-power-saver'])
options.full_performance_mode = False
@classmethod
def Name(cls):
return 'power.throttled_plugins_pps_disabled'
@benchmark.Enabled('linux', 'mac', 'win', 'chromeos')
class PowerThrottledPluginsPPS(perf_benchmark.PerfBenchmark):
"""Tests that pages with flash ads take less power with Plugin Power Saver
(PPS) enabled to throttle them."""
test = power.QuiescentPower
page_set = page_sets.ThrottledPluginsPageSet
options = {'pageset_repeat': 5}
def SetExtraBrowserOptions(self, options):
options.AppendExtraBrowserArgs(['--enable-plugin-power-saver'])
options.full_performance_mode = False
@classmethod
def Name(cls):
return 'power.throttled_plugins_pps_enabled'
|