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

Unified Diff: components/scheduler/renderer/task_cost_estimator_unittest.cc

Issue 1303353003: scheduler: Disable expensive timers during main thread user input (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments. Created 5 years, 4 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
« no previous file with comments | « components/scheduler/renderer/task_cost_estimator.cc ('k') | components/scheduler/scheduler.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/scheduler/renderer/task_cost_estimator_unittest.cc
diff --git a/components/scheduler/renderer/task_cost_estimator_unittest.cc b/components/scheduler/renderer/task_cost_estimator_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7e104edac5ccfe5b9ea1034bd14730ec3e0351e9
--- /dev/null
+++ b/components/scheduler/renderer/task_cost_estimator_unittest.cc
@@ -0,0 +1,65 @@
+// Copyright 2015 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.
+
+#include "base/test/simple_test_tick_clock.h"
+#include "components/scheduler/renderer/task_cost_estimator.h"
+
+#include "testing/gmock/include/gmock/gmock.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace scheduler {
+
+class TaskCostEstimatorTest : public testing::Test {
+ public:
+ TaskCostEstimatorTest() {}
+ ~TaskCostEstimatorTest() override {}
+
+ void SetUp() override {}
+
+ base::SimpleTestTickClock clock_;
+};
+
+class TaskCostEstimatorForTest : public TaskCostEstimator {
+ public:
+ TaskCostEstimatorForTest(base::SimpleTestTickClock* clock,
+ int sample_count,
+ double estimation_percentile)
+ : TaskCostEstimator(sample_count, estimation_percentile), clock_(clock) {}
+
+ protected:
+ base::TimeTicks Now() override { return clock_->NowTicks(); }
+
+ private:
+ base::SimpleTestTickClock* clock_;
+};
+
+TEST_F(TaskCostEstimatorTest, BasicEstimation) {
+ TaskCostEstimatorForTest estimator(&clock_, 1, 100);
+ base::PendingTask task(FROM_HERE, base::Closure());
+
+ estimator.WillProcessTask(task);
+ clock_.Advance(base::TimeDelta::FromMilliseconds(500));
+ estimator.DidProcessTask(task);
+
+ EXPECT_EQ(base::TimeDelta::FromMilliseconds(500),
+ estimator.expected_task_duration());
+};
+
+TEST_F(TaskCostEstimatorTest, NestedRunLoop) {
+ TaskCostEstimatorForTest estimator(&clock_, 1, 100);
+ base::PendingTask task(FROM_HERE, base::Closure());
+
+ // Make sure we ignore the tasks inside the nested run loop.
+ estimator.WillProcessTask(task);
+ estimator.WillProcessTask(task);
+ clock_.Advance(base::TimeDelta::FromMilliseconds(500));
+ estimator.DidProcessTask(task);
+ clock_.Advance(base::TimeDelta::FromMilliseconds(500));
+ estimator.DidProcessTask(task);
+
+ EXPECT_EQ(base::TimeDelta::FromMilliseconds(1000),
+ estimator.expected_task_duration());
+};
+
+} // namespace scheduler
« no previous file with comments | « components/scheduler/renderer/task_cost_estimator.cc ('k') | components/scheduler/scheduler.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698