Update V8 to version 4.6.62.
[chromium-blink-merge.git] / components / metrics / metrics_reporting_scheduler_unittest.cc
blob630fc5c31e63edbc4df0dc2b988a6e2db9446492
1 // Copyright 2014 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.
5 #include "components/metrics/metrics_reporting_scheduler.h"
7 #include "base/basictypes.h"
8 #include "base/bind.h"
9 #include "base/message_loop/message_loop.h"
10 #include "base/run_loop.h"
11 #include "testing/gtest/include/gtest/gtest.h"
13 namespace metrics {
15 class MetricsReportingSchedulerTest : public testing::Test {
16 public:
17 MetricsReportingSchedulerTest() : callback_call_count_(0) {}
18 ~MetricsReportingSchedulerTest() override {}
20 base::Closure GetCallback() {
21 return base::Bind(&MetricsReportingSchedulerTest::SchedulerCallback,
22 base::Unretained(this));
25 base::Callback<base::TimeDelta(void)> GetConnectionCallback() {
26 return base::Bind(&MetricsReportingSchedulerTest::GetStandardUploadInterval,
27 base::Unretained(this));
30 int callback_call_count() const { return callback_call_count_; }
32 private:
33 void SchedulerCallback() {
34 ++callback_call_count_;
37 base::TimeDelta GetStandardUploadInterval() {
38 return base::TimeDelta::FromMinutes(5);
41 int callback_call_count_;
43 base::MessageLoopForUI message_loop_;
45 DISALLOW_COPY_AND_ASSIGN(MetricsReportingSchedulerTest);
49 TEST_F(MetricsReportingSchedulerTest, InitTaskCompleteBeforeTimer) {
50 MetricsReportingScheduler scheduler(GetCallback(), GetConnectionCallback());
51 scheduler.SetUploadIntervalForTesting(base::TimeDelta());
52 scheduler.InitTaskComplete();
53 scheduler.Start();
54 EXPECT_EQ(0, callback_call_count());
56 base::RunLoop().RunUntilIdle();
57 EXPECT_EQ(1, callback_call_count());
60 TEST_F(MetricsReportingSchedulerTest, InitTaskCompleteAfterTimer) {
61 MetricsReportingScheduler scheduler(GetCallback(), GetConnectionCallback());
62 scheduler.SetUploadIntervalForTesting(base::TimeDelta());
63 scheduler.Start();
64 base::RunLoop().RunUntilIdle();
65 EXPECT_EQ(0, callback_call_count());
67 scheduler.InitTaskComplete();
68 EXPECT_EQ(1, callback_call_count());
71 } // namespace metrics