1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/reporting/metrics/metric_rate_controller.h"
#include <memory>
#include <string>
#include "base/test/bind.h"
#include "base/test/task_environment.h"
#include "base/time/time.h"
#include "components/reporting/metrics/fakes/fake_reporting_settings.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace reporting {
namespace {
class MetricRateControllerTest : public ::testing::Test {
public:
void SetUp() override {
settings_ = std::make_unique<test::FakeReportingSettings>();
run_count_ = 0;
run_cb_ = base::BindLambdaForTesting([this]() { ++run_count_; });
}
protected:
const std::string rate_setting_path_ = "rate_path";
std::unique_ptr<test::FakeReportingSettings> settings_;
int run_count_ = 0;
base::RepeatingClosure run_cb_;
base::test::TaskEnvironment task_environment_{
base::test::TaskEnvironment::TimeSource::MOCK_TIME};
};
TEST_F(MetricRateControllerTest, InvalidPath) {
MetricRateController controller(run_cb_, settings_.get(), "invalid_path",
/*default_rate=*/base::Seconds(5));
controller.Start();
EXPECT_EQ(run_count_, 0);
task_environment_.FastForwardBy(base::Seconds(5));
EXPECT_EQ(run_count_, 1);
}
TEST_F(MetricRateControllerTest, TrustedCheck) {
// Set rate setting to 7000 milliseconds.
settings_->SetInteger(rate_setting_path_, 7000);
settings_->SetIsTrusted(false);
MetricRateController controller(run_cb_, settings_.get(), rate_setting_path_,
/*default_rate=*/base::Milliseconds(5000));
controller.Start();
EXPECT_EQ(run_count_, 0);
task_environment_.FastForwardBy(base::Milliseconds(5000));
EXPECT_EQ(run_count_, 1);
// Values are trusted, this won't get picked up until the next run.
settings_->SetIsTrusted(true);
task_environment_.FastForwardBy(base::Milliseconds(5000));
EXPECT_EQ(run_count_, 2);
// Now rate setting should be used since the values are trusted.
// No new runs expected after 5000 milliseconds.
task_environment_.FastForwardBy(base::Milliseconds(5000));
EXPECT_EQ(run_count_, 2);
// A new run is expected after 7000 milliseconds (5000 + 2000).
task_environment_.FastForwardBy(base::Milliseconds(2000));
EXPECT_EQ(run_count_, 3);
}
TEST_F(MetricRateControllerTest, BaseRateSetting) {
// Set rate setting to 10 seconds.
settings_->SetInteger(rate_setting_path_, 10);
MetricRateController controller(run_cb_, settings_.get(), rate_setting_path_,
/*default_rate=*/base::Seconds(5),
/*rate_unit_to_ms=*/1000);
// Start not called, no runs expected.
task_environment_.FastForwardBy(base::Seconds(20));
EXPECT_EQ(run_count_, 0);
controller.Start();
task_environment_.FastForwardBy(base::Seconds(5));
EXPECT_EQ(run_count_, 0);
task_environment_.FastForwardBy(base::Seconds(5));
EXPECT_EQ(run_count_, 1);
task_environment_.FastForwardBy(base::Seconds(10));
EXPECT_EQ(run_count_, 2);
controller.Stop();
// Controller stopped so new runs.
task_environment_.FastForwardBy(base::Seconds(10));
EXPECT_EQ(run_count_, 2);
}
TEST_F(MetricRateControllerTest, UpdateRateSetting) {
// Set rate setting to 9000 milliseconds.
settings_->SetInteger(rate_setting_path_, 9000);
MetricRateController controller(run_cb_, settings_.get(), rate_setting_path_,
/*default_rate=*/base::Milliseconds(5000));
controller.Start();
task_environment_.FastForwardBy(base::Milliseconds(9000));
EXPECT_EQ(run_count_, 1);
// Update rate setting, it won't get picked up until the next run.
settings_->SetInteger(rate_setting_path_, 2000);
task_environment_.FastForwardBy(base::Milliseconds(2000));
EXPECT_EQ(run_count_, 1);
task_environment_.FastForwardBy(base::Milliseconds(7000));
EXPECT_EQ(run_count_, 2);
task_environment_.FastForwardBy(base::Milliseconds(2000));
EXPECT_EQ(run_count_, 3);
}
TEST_F(MetricRateControllerTest, RateSettingZero) {
// Set rate setting to 0.
settings_->SetInteger(rate_setting_path_, 0);
MetricRateController controller(run_cb_, settings_.get(), rate_setting_path_,
/*default_rate=*/base::Milliseconds(5000));
controller.Start();
// Fallback to default rate.
task_environment_.FastForwardBy(base::Milliseconds(5000));
EXPECT_EQ(run_count_, 1);
}
} // namespace
} // namespace reporting
|