File: checked_util_unittest.cc

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; 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,806; 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 (245 lines) | stat: -rw-r--r-- 8,573 bytes parent folder | download | duplicates (8)
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
// 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 "chromeos/ash/components/policy/weekly_time/checked_util.h"

#include <optional>
#include <vector>

#include "base/scoped_environment_variable_override.h"
#include "base/values.h"
#include "chromeos/ash/components/policy/weekly_time/test_support.h"
#include "chromeos/ash/components/policy/weekly_time/weekly_time_interval_checked.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace policy::weekly_time {

namespace {

constexpr const char* kIntervalsJson = R"([
  {
    "start": {
        "day_of_week": "WEDNESDAY",
        "milliseconds_since_midnight": 43200000
    },
    "end": {
        "day_of_week": "WEDNESDAY",
        "milliseconds_since_midnight": 75600000
    }
  },
  {
    "start": {
        "day_of_week": "FRIDAY",
        "milliseconds_since_midnight": 64800000
    },
    "end": {
        "day_of_week": "MONDAY",
        "milliseconds_since_midnight": 21600000
    }
  }
])";

constexpr const char kTZ[] = "TZ";

using Day = WeeklyTimeChecked::Day;

}  // namespace

TEST(CheckedUtil, ExtractIntervalsFromList) {
  base::Value::List list = BuildList(kIntervalsJson);
  auto result = ExtractIntervalsFromList(list);
  ASSERT_TRUE(result.has_value());
  EXPECT_EQ(result->size(), 2u);
}

TEST(CheckedUtil, ExtractIntervalsFromList_NotADict) {
  base::Value::List list = BuildList(R"([123])");

  auto result = ExtractIntervalsFromList(list);
  EXPECT_FALSE(result.has_value());
}

TEST(CheckedUtil, ExtractIntervalsFromList_InvalidInterval) {
  base::Value::List list = BuildList(R"([
    {
      "foobarbaz": {
          "day_of_week": "WEDNESDAY",
          "milliseconds_since_midnight": 43200000
      },
      "end": {
          "day_of_week": "WEDNESDAY",
          "milliseconds_since_midnight": 75600000
      }
    }
  ])");

  auto result = ExtractIntervalsFromList(list);
  EXPECT_FALSE(result.has_value());
}

TEST(CheckedUtil, IntervalsContainTime_True) {
  std::vector<WeeklyTimeIntervalChecked> intervals =
      BuildIntervals(kIntervalsJson);

  // Saturday is fully included in the second interval.
  WeeklyTimeChecked time(Day::kSaturday, 1234);
  EXPECT_TRUE(IntervalsContainTime(intervals, time));
}

TEST(CheckedUtil, IntervalsContainTime_False) {
  std::vector<WeeklyTimeIntervalChecked> intervals =
      BuildIntervals(kIntervalsJson);

  // Tuesday isn't even partially included in any of the intervals.
  WeeklyTimeChecked time(Day::kTuesday, 1234);
  EXPECT_FALSE(IntervalsContainTime(intervals, time));
}

TEST(CheckedUtil, IntervalsContainTime_Empty) {
  std::vector<WeeklyTimeIntervalChecked> intervals;
  WeeklyTimeChecked time(Day::kMonday, 1234);
  EXPECT_FALSE(IntervalsContainTime(intervals, time));
}

TEST(CheckedUtil, GetNextEvent) {
  const struct TestData {
    Day day;
    int millis;
    WeeklyTimeChecked next_event;
  } kTestData[] = {
      // One day before the start of the first interval.
      {Day::kTuesday, 43200000, WeeklyTimeChecked(Day::kWednesday, 43200000)},
      // Start of the first interval.
      {Day::kWednesday, 43200000, WeeklyTimeChecked(Day::kWednesday, 75600000)},
      // Inside first interval.
      {Day::kWednesday, 57600000, WeeklyTimeChecked(Day::kWednesday, 75600000)},
      // End of first interval.
      {Day::kWednesday, 75600000, WeeklyTimeChecked(Day::kFriday, 64800000)},
      // One hour before the second interval.
      {Day::kFriday, 61200000, WeeklyTimeChecked(Day::kFriday, 64800000)},
  };

  std::vector<WeeklyTimeIntervalChecked> intervals =
      BuildIntervals(kIntervalsJson);

  for (const auto& t : kTestData) {
    WeeklyTimeChecked time(t.day, t.millis);
    std::optional<WeeklyTimeChecked> next_event = GetNextEvent(intervals, time);
    SCOPED_TRACE(testing::Message()
                 << "day: " << DayToString(t.day) << ", millis: " << t.millis);
    ASSERT_TRUE(next_event.has_value());
    EXPECT_EQ(next_event.value(), t.next_event);
  }
}

TEST(CheckedUtil, GetNextEvent_Empty) {
  std::vector<WeeklyTimeIntervalChecked> intervals;
  WeeklyTimeChecked time(Day::kMonday, 1234);
  std::optional<WeeklyTimeChecked> next_event = GetNextEvent(intervals, time);
  EXPECT_FALSE(next_event.has_value());
}

TEST(CheckedUtil, GetDurationToNextEvent) {
  std::vector<WeeklyTimeIntervalChecked> intervals =
      BuildIntervals(kIntervalsJson);

  struct TestData {
    Day day;
    int millis;
    base::TimeDelta duration;
  } test_data[] = {
      // One day before the start of the first interval.
      {Day::kTuesday, 43200000, base::Days(1)},
      // Start of the first interval, returns the duration until the end of the
      // first interval.
      {Day::kWednesday, 43200000, base::Hours(9)},
      // Inside first interval.
      {Day::kWednesday, 57600000, base::Hours(5)},
      // End of first interval.
      {Day::kWednesday, 75600000, base::Days(2) - base::Hours(3)},
      // One hour before the second interval.
      {Day::kFriday, 61200000, base::Hours(1)},
  };

  int i = 0;
  for (const auto& t : test_data) {
    WeeklyTimeChecked time(t.day, t.millis);
    std::optional<base::TimeDelta> duration =
        GetDurationToNextEvent(intervals, time);
    ASSERT_TRUE(duration.has_value()) << "Failed test case #" << i;
    EXPECT_EQ(duration.value(), t.duration) << "Failed test case #" << i;
    i++;
  }
}

TEST(CheckedUtil, GetDurationToNextEvent_Empty) {
  std::vector<WeeklyTimeIntervalChecked> intervals;
  WeeklyTimeChecked time(Day::kMonday, 1234);
  auto duration = GetDurationToNextEvent(intervals, time);
  EXPECT_FALSE(duration.has_value());
}

TEST(CheckedUtil, AddOffsetInLocalTime) {
  // clang-format off
  constexpr const struct TestData {
    const char* time_str;
    base::TimeDelta offset;
    const char* result_str;
  } kTestData[] = {
    // All times are in local time (time zone "Europe/Berlin").
    // DST starts on Sun, 31 Mar 2024 when the clock moves from 2:00 to 3:00.
    // DST ends   on Sun, 27 Oct 2024 when the clock moves from 3:00 to 2:00.

    // Positive offset.
    {"Fri 22 Mar 2024 19:00", base::Seconds(1), "Fri 22 Mar 2024 19:00:01"},
    {"Fri 22 Mar 2024 19:00", base::Minutes(1), "Fri 22 Mar 2024 19:01"},
    {"Fri 22 Mar 2024 19:00", base::Hours(1),   "Fri 22 Mar 2024 20:00"},
    {"Fri 22 Mar 2024 19:00", base::Days(1),    "Sat 23 Mar 2024 19:00"},
    // One year, crosses a double DST-boundary.
    {"Fri 22 Mar 2024 19:00", base::Days(365),  "Sat 22 Mar 2025 19:00"},

    // Negative offset.
    {"Fri 22 Mar 2024 19:00", -base::Seconds(1), "Fri 22 Mar 2024 18:59:59"},
    {"Fri 22 Mar 2024 19:00", -base::Minutes(1), "Fri 22 Mar 2024 18:59"},
    {"Fri 22 Mar 2024 19:00", -base::Hours(1),   "Fri 22 Mar 2024 18:00"},
    {"Fri 22 Mar 2024 19:00", -base::Days(1),    "Thu 21 Mar 2024 19:00"},
    // One (leap) year, crosses a double DST-boundary.
    {"Fri 22 Mar 2024 19:00", -base::Days(366),  "Wed 22 Mar 2023 19:00"},

    // Positive offset crossing DST-boundary Winter -> Summer (2:00 -> 3:00).
    {"Sun 31 Mar 2024 1:00", base::Hours(2), "Sun 31 Mar 2024 3:00"},
    {"Sun 31 Mar 2024 0:00", base::Hours(4), "Sun 31 Mar 2024 4:00"},
    // Normal result time doesn't exist in local time (clock moves 2 -> 3), so
    // the calculation is done in UTC time.
    {"Sun 31 Mar 2024 1:59", base::Minutes(1), "Sun 31 Mar 2024 3:00"},
    {"Sun 31 Mar 2024 1:20", base::Hours(1),   "Sun 31 Mar 2024 3:20"},

    // Negative offset crossing DST-boundary Winter -> Summer (2:00 -> 3:00).
    {"Sun 31 Mar 2024 3:00", -base::Hours(2), "Sun 31 Mar 2024 1:00"},

    // Positive offset crossing DST-boundary Summer -> Winter (3:00 -> 2:00).
    {"Sat 26 Oct 2024 22:00", base::Days(1), "Sun 27 Oct 2024 22:00"},

    // Negative offset crossing DST-boundary Summer -> Winter (3:00 -> 2:00).
    {"Sun 27 Oct 2024 3:30", -base::Hours(2), "Sun 27 Oct 2024 1:30"},
  };
  // clang-format on

  // Override the local time zone to fix the DST transitions.
  base::ScopedEnvironmentVariableOverride scoped_timezone(kTZ, "Europe/Berlin");

  for (const auto& t : kTestData) {
    SCOPED_TRACE(testing::Message()
                 << "time: " << t.time_str << ", offset: " << t.offset
                 << ", result: " << t.result_str);

    const base::Time time = TimeFromString(t.time_str);
    const base::Time result = AddOffsetInLocalTime(time, t.offset);
    const base::Time expected_result = TimeFromString(t.result_str);

    EXPECT_EQ(expected_result, result);
  }
}

}  // namespace policy::weekly_time