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

Side by Side Diff: tools/perf/perf_tools/loading_benchmark_unittest.py

Issue 11791043: Benchmark to characterize main thread usage during load (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: this_could_land Created 7 years, 11 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 from telemetry import multi_page_benchmark_unittest_base
5 from perf_tools import loading_benchmark
6
7 class SmoothnessBenchmarkUnitTest(
8 multi_page_benchmark_unittest_base.MultiPageBenchmarkUnitTestBase):
9
10 def testBasicFunctionality(self):
11 ps = self.CreatePageSetFromFileInUnittestDataDir('blank.html')
12
13 benchmark = loading_benchmark.LoadingBenchmark()
14 all_results = self.RunBenchmark(benchmark, ps)
15
16 self.assertEqual(0, len(all_results.page_failures))
17 self.assertEqual(1, len(all_results.page_results))
18
19 results0 = all_results.page_results[0]
20 self.assertTrue(results0['Layout'].value > 0)
21 self.assertTrue(results0['Paint'].value > 0)
OLDNEW
« tools/perf/perf_tools/loading_benchmark.py ('K') | « tools/perf/perf_tools/loading_benchmark.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698