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

Unified Diff: components/metrics/metrics_reporting_scheduler_unittest.cc

Issue 2770853002: Create Ukm ReportingService implementation. (Closed)
Patch Set: Also revert datatracker unittest change Created 3 years, 9 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/metrics/metrics_reporting_scheduler.cc ('k') | components/metrics/metrics_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/metrics/metrics_reporting_scheduler_unittest.cc
diff --git a/components/metrics/metrics_reporting_scheduler_unittest.cc b/components/metrics/metrics_reporting_scheduler_unittest.cc
deleted file mode 100644
index f5b9b5b0180585728b7bae382236d84d483a4ae1..0000000000000000000000000000000000000000
--- a/components/metrics/metrics_reporting_scheduler_unittest.cc
+++ /dev/null
@@ -1,71 +0,0 @@
-// Copyright 2014 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 "components/metrics/metrics_reporting_scheduler.h"
-
-#include "base/bind.h"
-#include "base/macros.h"
-#include "base/message_loop/message_loop.h"
-#include "base/run_loop.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace metrics {
-
-class MetricsReportingSchedulerTest : public testing::Test {
- public:
- MetricsReportingSchedulerTest() : callback_call_count_(0) {}
- ~MetricsReportingSchedulerTest() override {}
-
- base::Closure GetCallback() {
- return base::Bind(&MetricsReportingSchedulerTest::SchedulerCallback,
- base::Unretained(this));
- }
-
- base::Callback<base::TimeDelta(void)> GetConnectionCallback() {
- return base::Bind(&MetricsReportingSchedulerTest::GetStandardUploadInterval,
- base::Unretained(this));
- }
-
- int callback_call_count() const { return callback_call_count_; }
-
- private:
- void SchedulerCallback() {
- ++callback_call_count_;
- }
-
- base::TimeDelta GetStandardUploadInterval() {
- return base::TimeDelta::FromMinutes(5);
- }
-
- int callback_call_count_;
-
- base::MessageLoopForUI message_loop_;
-
- DISALLOW_COPY_AND_ASSIGN(MetricsReportingSchedulerTest);
-};
-
-
-TEST_F(MetricsReportingSchedulerTest, InitTaskCompleteBeforeTimer) {
- MetricsReportingScheduler scheduler(GetCallback(), GetConnectionCallback());
- scheduler.SetUploadIntervalForTesting(base::TimeDelta());
- scheduler.InitTaskComplete();
- scheduler.Start();
- EXPECT_EQ(0, callback_call_count());
-
- base::RunLoop().RunUntilIdle();
- EXPECT_EQ(1, callback_call_count());
-}
-
-TEST_F(MetricsReportingSchedulerTest, InitTaskCompleteAfterTimer) {
- MetricsReportingScheduler scheduler(GetCallback(), GetConnectionCallback());
- scheduler.SetUploadIntervalForTesting(base::TimeDelta());
- scheduler.Start();
- base::RunLoop().RunUntilIdle();
- EXPECT_EQ(0, callback_call_count());
-
- scheduler.InitTaskComplete();
- EXPECT_EQ(1, callback_call_count());
-}
-
-} // namespace metrics
« no previous file with comments | « components/metrics/metrics_reporting_scheduler.cc ('k') | components/metrics/metrics_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698