OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/metrics/metrics_reporting_scheduler.h" | 5 #include "components/metrics/metrics_reporting_scheduler.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
10 #include "base/run_loop.h" | 10 #include "base/run_loop.h" |
11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
12 | 12 |
13 namespace metrics { | 13 namespace metrics { |
14 | 14 |
15 class MetricsReportingSchedulerTest : public testing::Test { | 15 class MetricsReportingSchedulerTest : public testing::Test { |
16 public: | 16 public: |
17 MetricsReportingSchedulerTest() : callback_call_count_(0) {} | 17 MetricsReportingSchedulerTest() : callback_call_count_(0) {} |
18 ~MetricsReportingSchedulerTest() override {} | 18 ~MetricsReportingSchedulerTest() override {} |
19 | 19 |
20 base::Closure GetCallback() { | 20 base::Closure GetCallback() { |
21 return base::Bind(&MetricsReportingSchedulerTest::SchedulerCallback, | 21 return base::Bind(&MetricsReportingSchedulerTest::SchedulerCallback, |
22 base::Unretained(this)); | 22 base::Unretained(this)); |
23 } | 23 } |
24 | 24 |
25 base::Callback<void(bool*)> GetConnectionCallback() { | 25 base::Callback<base::TimeDelta(void)> GetConnectionCallback() { |
26 return base::Bind(&MetricsReportingSchedulerTest::SetConnectionTypeCallback, | 26 return base::Bind(&MetricsReportingSchedulerTest::GetStandardUploadInterval, |
27 base::Unretained(this)); | 27 base::Unretained(this)); |
28 } | 28 } |
29 | 29 |
30 int callback_call_count() const { return callback_call_count_; } | 30 int callback_call_count() const { return callback_call_count_; } |
31 | 31 |
32 private: | 32 private: |
33 void SchedulerCallback() { | 33 void SchedulerCallback() { |
34 ++callback_call_count_; | 34 ++callback_call_count_; |
35 } | 35 } |
36 | 36 |
37 void SetConnectionTypeCallback(bool* is_cellular_out) { | 37 base::TimeDelta GetStandardUploadInterval() { |
38 *is_cellular_out = false; | 38 return base::TimeDelta::FromMinutes(5); |
39 } | 39 } |
40 | 40 |
41 int callback_call_count_; | 41 int callback_call_count_; |
42 | 42 |
43 base::MessageLoopForUI message_loop_; | 43 base::MessageLoopForUI message_loop_; |
44 | 44 |
45 DISALLOW_COPY_AND_ASSIGN(MetricsReportingSchedulerTest); | 45 DISALLOW_COPY_AND_ASSIGN(MetricsReportingSchedulerTest); |
46 }; | 46 }; |
47 | 47 |
48 | 48 |
(...skipping 13 matching lines...) Expand all Loading... |
62 scheduler.SetUploadIntervalForTesting(base::TimeDelta()); | 62 scheduler.SetUploadIntervalForTesting(base::TimeDelta()); |
63 scheduler.Start(); | 63 scheduler.Start(); |
64 base::RunLoop().RunUntilIdle(); | 64 base::RunLoop().RunUntilIdle(); |
65 EXPECT_EQ(0, callback_call_count()); | 65 EXPECT_EQ(0, callback_call_count()); |
66 | 66 |
67 scheduler.InitTaskComplete(); | 67 scheduler.InitTaskComplete(); |
68 EXPECT_EQ(1, callback_call_count()); | 68 EXPECT_EQ(1, callback_call_count()); |
69 } | 69 } |
70 | 70 |
71 } // namespace metrics | 71 } // namespace metrics |
OLD | NEW |