File: weekly_interval_timer_unittest.cc

package info (click to toggle)
chromium 138.0.7204.183-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 6,080,960 kB
  • sloc: cpp: 34,937,079; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,954; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,811; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (288 lines) | stat: -rw-r--r-- 10,862 bytes parent folder | download | duplicates (6)
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ash/app_mode/auto_sleep/weekly_interval_timer.h"

#include <cstddef>
#include <functional>
#include <memory>
#include <optional>

#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/test/task_environment.h"
#include "base/test/test_future.h"
#include "base/time/time.h"
#include "chrome/browser/ash/app_mode/auto_sleep/device_weekly_scheduled_suspend_test_policy_builder.h"
#include "chromeos/ash/components/policy/weekly_time/weekly_time.h"
#include "chromeos/ash/components/policy/weekly_time/weekly_time_interval.h"
#include "chromeos/ash/components/settings/scoped_timezone_settings.h"
#include "chromeos/dbus/power/fake_power_manager_client.h"
#include "chromeos/dbus/power/power_manager_client.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace ash {

using DayOfWeek = DeviceWeeklyScheduledSuspendTestPolicyBuilder::DayOfWeek;

namespace {

policy::WeeklyTimeInterval CreateWeeklyTimeInterval(
    DayOfWeek start_day_of_week,
    const base::TimeDelta& start_time_of_day,
    DayOfWeek end_day_of_week,
    const base::TimeDelta& end_time_of_day) {
  policy::WeeklyTime start{start_day_of_week,
                           static_cast<int>(start_time_of_day.InMilliseconds()),
                           std::nullopt};
  policy::WeeklyTime end{end_day_of_week,
                         static_cast<int>(end_time_of_day.InMilliseconds()),
                         std::nullopt};
  policy::WeeklyTimeInterval interval{start, end};

  return interval;
}

WeeklyTimeInterval AnyInterval() {
  return CreateWeeklyTimeInterval(DayOfWeek::FRIDAY, base::Hours(21),
                                  DayOfWeek::SATURDAY, base::Hours(6));
}

base::TimeDelta GetDuration(const policy::WeeklyTimeInterval& interval) {
  return interval.start().GetDurationTo(interval.end());
}

}  // namespace

class WeeklyIntervalTimerTest : public testing::Test {
 public:
  WeeklyIntervalTimerTest() = default;

  WeeklyIntervalTimerTest(WeeklyIntervalTimerTest&) = delete;
  WeeklyIntervalTimerTest& operator=(WeeklyIntervalTimerTest&) = delete;

  ~WeeklyIntervalTimerTest() override = default;

  // testing::Test:
  void SetUp() override {
    chromeos::PowerManagerClient::InitializeFake();
    chromeos::FakePowerManagerClient::Get()->set_tick_clock(
        task_environment_.GetMockTickClock());
  }

  void TearDown() override { chromeos::PowerManagerClient::Shutdown(); }

  void FastForwardTimeTo(const policy::WeeklyTime& weekly_time,
                         base::TimeDelta delta = base::TimeDelta()) {
    base::Time current_time = task_environment().GetMockClock()->Now();
    policy::WeeklyTime current_weekly_time =
        policy::WeeklyTime::GetLocalWeeklyTime(current_time);

    base::TimeDelta duration = current_weekly_time.GetDurationTo(weekly_time);
    task_environment().FastForwardBy(duration + delta);
  }

  std::unique_ptr<WeeklyIntervalTimer> CreateWeeklyIntervalTimer(
      const policy::WeeklyTimeInterval& interval,
      base::RepeatingCallback<void(base::TimeDelta)>
          on_interval_start_callback) {
    auto result =
        WeeklyIntervalTimer::Factory(task_environment().GetMockClock(),
                                     task_environment().GetMockTickClock())
            .Create(interval, on_interval_start_callback);

    // The timer could immediately schedule an async call to the callback,
    // so give this a chance to happen.
    task_environment().RunUntilIdle();
    return result;
  }

  base::test::TaskEnvironment& task_environment() { return task_environment_; }

 private:
  base::test::TaskEnvironment task_environment_{
      base::test::TaskEnvironment::MainThreadType::IO,
      base::test::TaskEnvironment::TimeSource::MOCK_TIME};
};

TEST_F(WeeklyIntervalTimerTest, TimerWorksWhenTimeFallsInCurrentInterval) {
  base::test::TestFuture<base::TimeDelta> interval_start_future;
  const auto interval = AnyInterval();

  // Confirm that interval start callback is executed when the timer is created
  // at the start of the interval.
  FastForwardTimeTo(interval.start());
  auto timer = CreateWeeklyIntervalTimer(
      interval, interval_start_future.GetRepeatingCallback());
  EXPECT_EQ(interval_start_future.Take(), GetDuration(interval));
}

TEST_F(WeeklyIntervalTimerTest, TimerWorksWhenTimeFallsInsideInterval) {
  base::test::TestFuture<base::TimeDelta> interval_start_future;
  const auto interval = AnyInterval();

  // Confirm that interval start callback is executed when the timer is created
  // during the interval.
  const auto delta = GetDuration(interval) / 2;

  FastForwardTimeTo(interval.start(), /*delta=*/delta);
  auto timer = CreateWeeklyIntervalTimer(
      interval, interval_start_future.GetRepeatingCallback());

  const auto remaining_time_in_interval = GetDuration(interval) - delta;
  EXPECT_EQ(interval_start_future.Take(), remaining_time_in_interval);
}

TEST_F(WeeklyIntervalTimerTest, TimerRunsInTheFuture) {
  base::test::TestFuture<base::TimeDelta> interval_start_future;
  const auto interval = AnyInterval();

  // Confirm that when you're outside an interval and then start the
  // timer, it schedules the timer for the future.
  FastForwardTimeTo(interval.start(), -base::Minutes(5));

  auto timer = CreateWeeklyIntervalTimer(
      interval, interval_start_future.GetRepeatingCallback());

  EXPECT_FALSE(interval_start_future.IsReady());

  FastForwardTimeTo(interval.start());
  EXPECT_EQ(interval_start_future.Take(), GetDuration(interval));
}

TEST_F(WeeklyIntervalTimerTest, ShouldNotRunCallbackWhenCreatedAtIntervalEnd) {
  base::test::TestFuture<base::TimeDelta> interval_start_future;
  const auto interval = AnyInterval();

  // Start the test exactly at the end of the interval.
  FastForwardTimeTo(interval.end());

  auto timer = CreateWeeklyIntervalTimer(
      interval, interval_start_future.GetRepeatingCallback());

  // Timer should not trigger immediately.
  EXPECT_FALSE(interval_start_future.IsReady());

  // Timer should not trigger as long as we don't hit the interval start.
  FastForwardTimeTo(interval.start(), -base::Seconds(1));
  EXPECT_FALSE(interval_start_future.IsReady());

  // Timer should trigger when we hit the interval start.
  FastForwardTimeTo(interval.start());
  EXPECT_TRUE(interval_start_future.IsReady());
}

TEST_F(WeeklyIntervalTimerTest, TimerRunsEveryWeek) {
  base::test::TestFuture<base::TimeDelta> interval_start_future;
  const auto interval = AnyInterval();

  // The test starts before the interval.
  FastForwardTimeTo(interval.start(), -base::Minutes(5));

  auto timer = CreateWeeklyIntervalTimer(
      interval, interval_start_future.GetRepeatingCallback());

  for (size_t i = 0; i < 3; i++) {
    FastForwardTimeTo(interval.start());
    EXPECT_EQ(interval_start_future.Take(), GetDuration(interval));
  }
}

TEST_F(WeeklyIntervalTimerTest, TwoTimersWorkConcurrently) {
  base::test::TestFuture<base::TimeDelta> interval_1_start_future;
  base::test::TestFuture<base::TimeDelta> interval_2_start_future;

  const auto interval_1 =
      CreateWeeklyTimeInterval(DayOfWeek::WEDNESDAY, base::Hours(7),
                               DayOfWeek::WEDNESDAY, base::Hours(21));
  const auto interval_2 =
      CreateWeeklyTimeInterval(DayOfWeek::FRIDAY, base::Hours(7),  //
                               DayOfWeek::FRIDAY, base::Hours(21));

  // The test starts before the first interval.
  FastForwardTimeTo(interval_1.start(), -base::Minutes(5));

  auto timer_1 = CreateWeeklyIntervalTimer(
      interval_1, interval_1_start_future.GetRepeatingCallback());
  auto timer_2 = CreateWeeklyIntervalTimer(
      interval_2, interval_2_start_future.GetRepeatingCallback());

  // Moving into the first interval should trigger the first callback.
  FastForwardTimeTo(interval_1.start());
  EXPECT_EQ(interval_1_start_future.Take(), GetDuration(interval_1));
  EXPECT_FALSE(interval_2_start_future.IsReady());

  // Moving into the second interval should trigger the second callback.
  FastForwardTimeTo(interval_2.start());
  EXPECT_FALSE(interval_1_start_future.IsReady());
  EXPECT_EQ(interval_2_start_future.Take(), GetDuration(interval_2));
}

TEST_F(WeeklyIntervalTimerTest, TimezoneChangesReprogramTimer) {
  base::test::TestFuture<base::TimeDelta> interval_start_future;
  const auto interval = AnyInterval();

  auto scoped_timezone_settings =
      std::make_unique<system::ScopedTimezoneSettings>(u"PST");

  FastForwardTimeTo(interval.start(), -base::Hours(8));

  auto timer = CreateWeeklyIntervalTimer(
      interval, interval_start_future.GetRepeatingCallback());

  // Change the time zone to CET which is 8 hours ahead of PST and confirm that
  // interval should start immediately as the timer should have been
  // reprogrammed.
  scoped_timezone_settings->SetTimezoneFromID(u"CET");
  EXPECT_EQ(interval_start_future.Take(), GetDuration(interval));
}

TEST_F(WeeklyIntervalTimerTest, TimezoneChangesRestartTimer) {
  base::test::TestFuture<base::TimeDelta> interval_start_future;
  const auto interval = AnyInterval();

  auto scoped_timezone_settings =
      std::make_unique<system::ScopedTimezoneSettings>(u"GMT");

  FastForwardTimeTo(interval.start());
  auto timer = CreateWeeklyIntervalTimer(
      interval, interval_start_future.GetRepeatingCallback());

  EXPECT_EQ(interval_start_future.Take(), GetDuration(interval));
  // Change the time zone to GMT+1 and confirm that
  // interval should start immediately as the timer should have been
  // reprogrammed.
  scoped_timezone_settings->SetTimezoneFromID(u"GMT+1");
  EXPECT_EQ(interval_start_future.Take(), GetDuration(interval));
}

TEST_F(WeeklyIntervalTimerTest,
       TimezoneChangeToSameTimezoneDoesNotRetriggerCallback) {
  auto scoped_timezone_settings =
      std::make_unique<system::ScopedTimezoneSettings>(u"GMT");
  const auto interval = AnyInterval();

  int interval_start_callback_count = 0;
  base::RepeatingCallback<void(base::TimeDelta)> interval_start_callback =
      base::BindRepeating(
          [](int& interval_start_callback_count, base::TimeDelta delta) {
            interval_start_callback_count++;
          },
          std::ref(interval_start_callback_count));

  FastForwardTimeTo(interval.start());

  auto timer = CreateWeeklyIntervalTimer(interval, interval_start_callback);
  EXPECT_EQ(interval_start_callback_count, 1);
  scoped_timezone_settings->SetTimezoneFromID(u"GMT");
  task_environment().RunUntilIdle();

  // Confirm that the interval doesn't start again when the callback is called
  // for the same timezone.
  EXPECT_EQ(interval_start_callback_count, 1);
  FastForwardTimeTo(interval.end());
  EXPECT_EQ(interval_start_callback_count, 1);
}

}  // namespace ash