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

Unified Diff: tools/perf/contrib/cros_benchmarks/tab_switching_bench.py

Issue 2890333002: Tab Switching Benchmark for ChromeOS (Closed)
Patch Set: Tab Switching Benchmark for ChromeOS Created 3 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 side-by-side diff with in-line comments
Download patch
Index: tools/perf/contrib/cros_benchmarks/tab_switching_bench.py
diff --git a/tools/perf/contrib/cros_benchmarks/tab_switching_bench.py b/tools/perf/contrib/cros_benchmarks/tab_switching_bench.py
new file mode 100644
index 0000000000000000000000000000000000000000..b750c2ea51bd2db1a0db13c66d5d6b7bfdeb5496
--- /dev/null
+++ b/tools/perf/contrib/cros_benchmarks/tab_switching_bench.py
@@ -0,0 +1,54 @@
+# Copyright 2017 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.
+
+import os
+import logging
+
+from core import perf_benchmark
+
+from contrib.cros_benchmarks import tab_switching_measure
+from contrib.cros_benchmarks import tab_switching_stories
+from telemetry import benchmark
+from telemetry import story
+
+
+@benchmark.Owner(emails=['vovoy@chromium.org'],
+ component='OS>Performance')
+@benchmark.Enabled('chromeos')
+class CrosTabSwitchingTypical24(perf_benchmark.PerfBenchmark):
+ """Measures tab switching performance with 24 tabs.
+
+ The script opens 24 pages in 24 different tabs, waits for them to load,
+ and then switches to each tabs and measures the tabs paint time. The 24
+ pages were chosen from Alexa top ranking sites. Tab paint time is the
+ time between tab being requested and the first paint event.
+
+ Benchmark specific option:
+ --tabset-repeat=N: Duplicate tab set for N times.
+ The following usage example opens 120 tabs.
+ $ ./run_benchmark --browser=cros-chrome --remote=DUT_IP
+ cros_tab_switching.typical_24 --tabset-repeat=5
+ """
+ test = tab_switching_measure.CrosTabSwitchingMeasurement
+
+ @classmethod
+ def AddBenchmarkCommandLineArgs(cls, parser):
+ parser.add_option('--tabset-repeat', type='int', default=1,
+ help='repeat tab page set')
+
+ def CreateStorySet(self, options):
+ if not options.cros_remote:
+ # Raise exception here would fail the presubmit check.
+ logging.error('Must specify --remote=DUT_IP to run this test.')
+ story_set = story.StorySet(
+ archive_data_file='data/tab_switching.json',
+ base_dir=os.path.dirname(os.path.abspath(__file__)),
+ cloud_storage_bucket=story.PARTNER_BUCKET)
+ story_set.AddStory(tab_switching_stories.CrosMultiTabTypical24Story(
+ story_set, options.cros_remote, options.tabset_repeat))
+ return story_set
+
+ @classmethod
+ def Name(cls):
+ return 'cros_tab_switching.typical_24'

Powered by Google App Engine
This is Rietveld 408576698