]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-time-util.c
7bcf0ae7ee313063dd68223806488760c877e17f
[thirdparty/systemd.git] / src / test / test-time-util.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <stdlib.h>
4
5 #include "env-util.h"
6 #include "random-util.h"
7 #include "serialize.h"
8 #include "string-util.h"
9 #include "strv.h"
10 #include "tests.h"
11 #include "time-util.h"
12
13 #define TRIAL 100u
14
15 static void set_timezone(const char *tz) {
16 ASSERT_OK(set_unset_env("TZ", tz, /* overwrite = */ true));
17 tzset();
18 log_info("TZ=%s, tzname[0]=%s, tzname[1]=%s", strna(getenv("TZ")), strempty(tzname[0]), strempty(tzname[1]));
19 }
20
21 TEST(parse_sec) {
22 usec_t u;
23
24 assert_se(parse_sec("5s", &u) >= 0);
25 assert_se(u == 5 * USEC_PER_SEC);
26 assert_se(parse_sec("5s500ms", &u) >= 0);
27 assert_se(u == 5 * USEC_PER_SEC + 500 * USEC_PER_MSEC);
28 assert_se(parse_sec(" 5s 500ms ", &u) >= 0);
29 assert_se(u == 5 * USEC_PER_SEC + 500 * USEC_PER_MSEC);
30 assert_se(parse_sec(" 5.5s ", &u) >= 0);
31 assert_se(u == 5 * USEC_PER_SEC + 500 * USEC_PER_MSEC);
32 assert_se(parse_sec(" 5.5s 0.5ms ", &u) >= 0);
33 assert_se(u == 5 * USEC_PER_SEC + 500 * USEC_PER_MSEC + 500);
34 assert_se(parse_sec(" .22s ", &u) >= 0);
35 assert_se(u == 220 * USEC_PER_MSEC);
36 assert_se(parse_sec(" .50y ", &u) >= 0);
37 assert_se(u == USEC_PER_YEAR / 2);
38 assert_se(parse_sec("2.5", &u) >= 0);
39 assert_se(u == 2500 * USEC_PER_MSEC);
40 assert_se(parse_sec(".7", &u) >= 0);
41 assert_se(u == 700 * USEC_PER_MSEC);
42 assert_se(parse_sec("23us", &u) >= 0);
43 assert_se(u == 23);
44 assert_se(parse_sec("23μs", &u) >= 0); /* greek small letter mu */
45 assert_se(u == 23);
46 assert_se(parse_sec("23µs", &u) >= 0); /* micro symbol */
47 assert_se(u == 23);
48 assert_se(parse_sec("infinity", &u) >= 0);
49 assert_se(u == USEC_INFINITY);
50 assert_se(parse_sec(" infinity ", &u) >= 0);
51 assert_se(u == USEC_INFINITY);
52 assert_se(parse_sec("+3.1s", &u) >= 0);
53 assert_se(u == 3100 * USEC_PER_MSEC);
54 assert_se(parse_sec("3.1s.2", &u) >= 0);
55 assert_se(u == 3300 * USEC_PER_MSEC);
56 assert_se(parse_sec("3.1 .2", &u) >= 0);
57 assert_se(u == 3300 * USEC_PER_MSEC);
58 assert_se(parse_sec("3.1 sec .2 sec", &u) >= 0);
59 assert_se(u == 3300 * USEC_PER_MSEC);
60 assert_se(parse_sec("3.1 sec 1.2 sec", &u) >= 0);
61 assert_se(u == 4300 * USEC_PER_MSEC);
62
63 assert_se(parse_sec(" xyz ", &u) < 0);
64 assert_se(parse_sec("", &u) < 0);
65 assert_se(parse_sec(" . ", &u) < 0);
66 assert_se(parse_sec(" 5. ", &u) < 0);
67 assert_se(parse_sec(".s ", &u) < 0);
68 assert_se(parse_sec("-5s ", &u) < 0);
69 assert_se(parse_sec("-0.3s ", &u) < 0);
70 assert_se(parse_sec("-0.0s ", &u) < 0);
71 assert_se(parse_sec("-0.-0s ", &u) < 0);
72 assert_se(parse_sec("0.-0s ", &u) < 0);
73 assert_se(parse_sec("3.-0s ", &u) < 0);
74 assert_se(parse_sec(" infinity .7", &u) < 0);
75 assert_se(parse_sec(".3 infinity", &u) < 0);
76 assert_se(parse_sec("3.+1s", &u) < 0);
77 assert_se(parse_sec("3. 1s", &u) < 0);
78 assert_se(parse_sec("3.s", &u) < 0);
79 assert_se(parse_sec("12.34.56", &u) < 0);
80 assert_se(parse_sec("12..34", &u) < 0);
81 assert_se(parse_sec("..1234", &u) < 0);
82 assert_se(parse_sec("1234..", &u) < 0);
83 }
84
85 TEST(parse_sec_fix_0) {
86 usec_t u;
87
88 assert_se(parse_sec_fix_0("5s", &u) >= 0);
89 assert_se(u == 5 * USEC_PER_SEC);
90 assert_se(parse_sec_fix_0("0s", &u) >= 0);
91 assert_se(u == USEC_INFINITY);
92 assert_se(parse_sec_fix_0("0", &u) >= 0);
93 assert_se(u == USEC_INFINITY);
94 assert_se(parse_sec_fix_0(" 0", &u) >= 0);
95 assert_se(u == USEC_INFINITY);
96 }
97
98 TEST(parse_sec_def_infinity) {
99 usec_t u;
100
101 assert_se(parse_sec_def_infinity("5s", &u) >= 0);
102 assert_se(u == 5 * USEC_PER_SEC);
103 assert_se(parse_sec_def_infinity("", &u) >= 0);
104 assert_se(u == USEC_INFINITY);
105 assert_se(parse_sec_def_infinity(" ", &u) >= 0);
106 assert_se(u == USEC_INFINITY);
107 assert_se(parse_sec_def_infinity("0s", &u) >= 0);
108 assert_se(u == 0);
109 assert_se(parse_sec_def_infinity("0", &u) >= 0);
110 assert_se(u == 0);
111 assert_se(parse_sec_def_infinity(" 0", &u) >= 0);
112 assert_se(u == 0);
113 assert_se(parse_sec_def_infinity("-5s", &u) < 0);
114 }
115
116 TEST(parse_time) {
117 usec_t u;
118
119 assert_se(parse_time("5", &u, 1) >= 0);
120 assert_se(u == 5);
121
122 assert_se(parse_time("5", &u, USEC_PER_MSEC) >= 0);
123 assert_se(u == 5 * USEC_PER_MSEC);
124
125 assert_se(parse_time("5", &u, USEC_PER_SEC) >= 0);
126 assert_se(u == 5 * USEC_PER_SEC);
127
128 assert_se(parse_time("5s", &u, 1) >= 0);
129 assert_se(u == 5 * USEC_PER_SEC);
130
131 assert_se(parse_time("5s", &u, USEC_PER_SEC) >= 0);
132 assert_se(u == 5 * USEC_PER_SEC);
133
134 assert_se(parse_time("5s", &u, USEC_PER_MSEC) >= 0);
135 assert_se(u == 5 * USEC_PER_SEC);
136
137 assert_se(parse_time("11111111111111y", &u, 1) == -ERANGE);
138 assert_se(parse_time("1.1111111111111y", &u, 1) >= 0);
139 }
140
141 TEST(parse_nsec) {
142 nsec_t u;
143
144 assert_se(parse_nsec("5s", &u) >= 0);
145 assert_se(u == 5 * NSEC_PER_SEC);
146 assert_se(parse_nsec("5s500ms", &u) >= 0);
147 assert_se(u == 5 * NSEC_PER_SEC + 500 * NSEC_PER_MSEC);
148 assert_se(parse_nsec(" 5s 500ms ", &u) >= 0);
149 assert_se(u == 5 * NSEC_PER_SEC + 500 * NSEC_PER_MSEC);
150 assert_se(parse_nsec(" 5.5s ", &u) >= 0);
151 assert_se(u == 5 * NSEC_PER_SEC + 500 * NSEC_PER_MSEC);
152 assert_se(parse_nsec(" 5.5s 0.5ms ", &u) >= 0);
153 assert_se(u == 5 * NSEC_PER_SEC + 500 * NSEC_PER_MSEC + 500 * NSEC_PER_USEC);
154 assert_se(parse_nsec(" .22s ", &u) >= 0);
155 assert_se(u == 220 * NSEC_PER_MSEC);
156 assert_se(parse_nsec(" .50y ", &u) >= 0);
157 assert_se(u == NSEC_PER_YEAR / 2);
158 assert_se(parse_nsec("2.5", &u) >= 0);
159 assert_se(u == 2);
160 assert_se(parse_nsec(".7", &u) >= 0);
161 assert_se(u == 0);
162 assert_se(parse_nsec("infinity", &u) >= 0);
163 assert_se(u == NSEC_INFINITY);
164 assert_se(parse_nsec(" infinity ", &u) >= 0);
165 assert_se(u == NSEC_INFINITY);
166 assert_se(parse_nsec("+3.1s", &u) >= 0);
167 assert_se(u == 3100 * NSEC_PER_MSEC);
168 assert_se(parse_nsec("3.1s.2", &u) >= 0);
169 assert_se(u == 3100 * NSEC_PER_MSEC);
170 assert_se(parse_nsec("3.1 .2s", &u) >= 0);
171 assert_se(u == 200 * NSEC_PER_MSEC + 3);
172 assert_se(parse_nsec("3.1 sec .2 sec", &u) >= 0);
173 assert_se(u == 3300 * NSEC_PER_MSEC);
174 assert_se(parse_nsec("3.1 sec 1.2 sec", &u) >= 0);
175 assert_se(u == 4300 * NSEC_PER_MSEC);
176
177 assert_se(parse_nsec(" xyz ", &u) < 0);
178 assert_se(parse_nsec("", &u) < 0);
179 assert_se(parse_nsec(" . ", &u) < 0);
180 assert_se(parse_nsec(" 5. ", &u) < 0);
181 assert_se(parse_nsec(".s ", &u) < 0);
182 assert_se(parse_nsec(" infinity .7", &u) < 0);
183 assert_se(parse_nsec(".3 infinity", &u) < 0);
184 assert_se(parse_nsec("-5s ", &u) < 0);
185 assert_se(parse_nsec("-0.3s ", &u) < 0);
186 assert_se(parse_nsec("-0.0s ", &u) < 0);
187 assert_se(parse_nsec("-0.-0s ", &u) < 0);
188 assert_se(parse_nsec("0.-0s ", &u) < 0);
189 assert_se(parse_nsec("3.-0s ", &u) < 0);
190 assert_se(parse_nsec(" infinity .7", &u) < 0);
191 assert_se(parse_nsec(".3 infinity", &u) < 0);
192 assert_se(parse_nsec("3.+1s", &u) < 0);
193 assert_se(parse_nsec("3. 1s", &u) < 0);
194 assert_se(parse_nsec("3.s", &u) < 0);
195 assert_se(parse_nsec("12.34.56", &u) < 0);
196 assert_se(parse_nsec("12..34", &u) < 0);
197 assert_se(parse_nsec("..1234", &u) < 0);
198 assert_se(parse_nsec("1234..", &u) < 0);
199 assert_se(parse_nsec("1111111111111y", &u) == -ERANGE);
200 assert_se(parse_nsec("1.111111111111y", &u) >= 0);
201 }
202
203 static void test_format_timespan_one(usec_t x, usec_t accuracy) {
204 char l[FORMAT_TIMESPAN_MAX];
205 const char *t;
206 usec_t y;
207
208 log_debug(USEC_FMT" (at accuracy "USEC_FMT")", x, accuracy);
209
210 assert_se(t = format_timespan(l, sizeof l, x, accuracy));
211 log_debug(" = <%s>", t);
212
213 assert_se(parse_sec(t, &y) >= 0);
214 log_debug(" = "USEC_FMT, y);
215
216 if (accuracy <= 0)
217 accuracy = 1;
218
219 assert_se(x / accuracy == y / accuracy);
220 }
221
222 static void test_format_timespan_accuracy(usec_t accuracy) {
223 log_info("/* %s accuracy="USEC_FMT" */", __func__, accuracy);
224
225 test_format_timespan_one(0, accuracy);
226 test_format_timespan_one(1, accuracy);
227 test_format_timespan_one(1*USEC_PER_SEC, accuracy);
228 test_format_timespan_one(999*USEC_PER_MSEC, accuracy);
229 test_format_timespan_one(1234567, accuracy);
230 test_format_timespan_one(12, accuracy);
231 test_format_timespan_one(123, accuracy);
232 test_format_timespan_one(1234, accuracy);
233 test_format_timespan_one(12345, accuracy);
234 test_format_timespan_one(123456, accuracy);
235 test_format_timespan_one(1234567, accuracy);
236 test_format_timespan_one(12345678, accuracy);
237 test_format_timespan_one(1200000, accuracy);
238 test_format_timespan_one(1230000, accuracy);
239 test_format_timespan_one(1234000, accuracy);
240 test_format_timespan_one(1234500, accuracy);
241 test_format_timespan_one(1234560, accuracy);
242 test_format_timespan_one(1234567, accuracy);
243 test_format_timespan_one(986087, accuracy);
244 test_format_timespan_one(500 * USEC_PER_MSEC, accuracy);
245 test_format_timespan_one(9*USEC_PER_YEAR/5 - 23, accuracy);
246 test_format_timespan_one(USEC_INFINITY, accuracy);
247 }
248
249 TEST(format_timespan) {
250 test_format_timespan_accuracy(1);
251 test_format_timespan_accuracy(USEC_PER_MSEC);
252 test_format_timespan_accuracy(USEC_PER_SEC);
253
254 /* See issue #23928. */
255 _cleanup_free_ char *buf = NULL;
256 assert_se(buf = new(char, 5));
257 assert_se(buf == format_timespan(buf, 5, 100005, 1000));
258 }
259
260 TEST(verify_timezone) {
261 assert_se(verify_timezone("Europe/Berlin", LOG_DEBUG) == 0);
262 assert_se(verify_timezone("Australia/Sydney", LOG_DEBUG) == 0);
263 assert_se(verify_timezone("Europe/Do not exist", LOG_DEBUG) == -EINVAL);
264 assert_se(verify_timezone("Europe/DoNotExist", LOG_DEBUG) == -ENOENT);
265 assert_se(verify_timezone("/DoNotExist", LOG_DEBUG) == -EINVAL);
266 assert_se(verify_timezone("DoNotExist/", LOG_DEBUG) == -EINVAL);
267 }
268
269 TEST(timezone_is_valid) {
270 assert_se(timezone_is_valid("Europe/Berlin", LOG_ERR));
271 assert_se(timezone_is_valid("Australia/Sydney", LOG_ERR));
272 assert_se(!timezone_is_valid("Europe/Do not exist", LOG_ERR));
273 }
274
275 TEST(get_timezones) {
276 _cleanup_strv_free_ char **zones = NULL;
277 int r;
278
279 r = get_timezones(&zones);
280 assert_se(r == 0);
281
282 STRV_FOREACH(zone, zones) {
283 r = verify_timezone(*zone, LOG_ERR);
284 log_debug_errno(r, "verify_timezone(\"%s\"): %m", *zone);
285 assert_se(r >= 0 || r == -ENOENT);
286 }
287 }
288
289 TEST(usec_add) {
290 assert_se(usec_add(0, 0) == 0);
291 assert_se(usec_add(1, 4) == 5);
292 assert_se(usec_add(USEC_INFINITY, 5) == USEC_INFINITY);
293 assert_se(usec_add(5, USEC_INFINITY) == USEC_INFINITY);
294 assert_se(usec_add(USEC_INFINITY-5, 2) == USEC_INFINITY-3);
295 assert_se(usec_add(USEC_INFINITY-2, 2) == USEC_INFINITY);
296 assert_se(usec_add(USEC_INFINITY-1, 2) == USEC_INFINITY);
297 assert_se(usec_add(USEC_INFINITY, 2) == USEC_INFINITY);
298 }
299
300 TEST(usec_sub_unsigned) {
301 assert_se(usec_sub_unsigned(0, 0) == 0);
302 assert_se(usec_sub_unsigned(0, 2) == 0);
303 assert_se(usec_sub_unsigned(0, USEC_INFINITY) == 0);
304 assert_se(usec_sub_unsigned(1, 0) == 1);
305 assert_se(usec_sub_unsigned(1, 1) == 0);
306 assert_se(usec_sub_unsigned(1, 2) == 0);
307 assert_se(usec_sub_unsigned(1, 3) == 0);
308 assert_se(usec_sub_unsigned(1, USEC_INFINITY) == 0);
309 assert_se(usec_sub_unsigned(USEC_INFINITY-1, 0) == USEC_INFINITY-1);
310 assert_se(usec_sub_unsigned(USEC_INFINITY-1, 1) == USEC_INFINITY-2);
311 assert_se(usec_sub_unsigned(USEC_INFINITY-1, 2) == USEC_INFINITY-3);
312 assert_se(usec_sub_unsigned(USEC_INFINITY-1, USEC_INFINITY-2) == 1);
313 assert_se(usec_sub_unsigned(USEC_INFINITY-1, USEC_INFINITY-1) == 0);
314 assert_se(usec_sub_unsigned(USEC_INFINITY-1, USEC_INFINITY) == 0);
315 assert_se(usec_sub_unsigned(USEC_INFINITY, 0) == USEC_INFINITY);
316 assert_se(usec_sub_unsigned(USEC_INFINITY, 1) == USEC_INFINITY);
317 assert_se(usec_sub_unsigned(USEC_INFINITY, 2) == USEC_INFINITY);
318 assert_se(usec_sub_unsigned(USEC_INFINITY, USEC_INFINITY) == USEC_INFINITY);
319 }
320
321 TEST(usec_sub_signed) {
322 assert_se(usec_sub_signed(0, 0) == 0);
323 assert_se(usec_sub_signed(4, 1) == 3);
324 assert_se(usec_sub_signed(4, 4) == 0);
325 assert_se(usec_sub_signed(4, 5) == 0);
326
327 assert_se(usec_sub_signed(USEC_INFINITY-3, -3) == USEC_INFINITY);
328 assert_se(usec_sub_signed(USEC_INFINITY-3, -4) == USEC_INFINITY);
329 assert_se(usec_sub_signed(USEC_INFINITY-3, -5) == USEC_INFINITY);
330 assert_se(usec_sub_signed(USEC_INFINITY, 5) == USEC_INFINITY);
331
332 assert_se(usec_sub_signed(0, INT64_MAX) == 0);
333 assert_se(usec_sub_signed(0, -INT64_MAX) == INT64_MAX);
334 assert_se(usec_sub_signed(0, INT64_MIN) == (usec_t) INT64_MAX + 1);
335 assert_se(usec_sub_signed(0, -(INT64_MIN+1)) == 0);
336
337 assert_se(usec_sub_signed(USEC_INFINITY, INT64_MAX) == USEC_INFINITY);
338 assert_se(usec_sub_signed(USEC_INFINITY, -INT64_MAX) == USEC_INFINITY);
339 assert_se(usec_sub_signed(USEC_INFINITY, INT64_MIN) == USEC_INFINITY);
340 assert_se(usec_sub_signed(USEC_INFINITY, -(INT64_MIN+1)) == USEC_INFINITY);
341
342 assert_se(usec_sub_signed(USEC_INFINITY-1, INT64_MAX) == USEC_INFINITY-1-INT64_MAX);
343 assert_se(usec_sub_signed(USEC_INFINITY-1, -INT64_MAX) == USEC_INFINITY);
344 assert_se(usec_sub_signed(USEC_INFINITY-1, INT64_MIN) == USEC_INFINITY);
345 assert_se(usec_sub_signed(USEC_INFINITY-1, -(INT64_MIN+1)) == USEC_INFINITY-1-((usec_t) (-(INT64_MIN+1))));
346 }
347
348 TEST(format_timestamp) {
349 for (unsigned i = 0; i < TRIAL; i++) {
350 char buf[CONST_MAX(FORMAT_TIMESTAMP_MAX, FORMAT_TIMESPAN_MAX)];
351 usec_t x, y;
352
353 x = random_u64_range(USEC_TIMESTAMP_FORMATTABLE_MAX - USEC_PER_SEC) + USEC_PER_SEC;
354
355 assert_se(format_timestamp(buf, sizeof(buf), x));
356 log_debug("%s", buf);
357 assert_se(parse_timestamp(buf, &y) >= 0);
358 assert_se(x / USEC_PER_SEC == y / USEC_PER_SEC);
359
360 assert_se(format_timestamp_style(buf, sizeof(buf), x, TIMESTAMP_UNIX));
361 log_debug("%s", buf);
362 assert_se(parse_timestamp(buf, &y) >= 0);
363 assert_se(x / USEC_PER_SEC == y / USEC_PER_SEC);
364
365 assert_se(format_timestamp_style(buf, sizeof(buf), x, TIMESTAMP_UTC));
366 log_debug("%s", buf);
367 assert_se(parse_timestamp(buf, &y) >= 0);
368 assert_se(x / USEC_PER_SEC == y / USEC_PER_SEC);
369
370 assert_se(format_timestamp_style(buf, sizeof(buf), x, TIMESTAMP_US));
371 log_debug("%s", buf);
372 assert_se(parse_timestamp(buf, &y) >= 0);
373 assert_se(x == y);
374
375 assert_se(format_timestamp_style(buf, sizeof(buf), x, TIMESTAMP_US_UTC));
376 log_debug("%s", buf);
377 assert_se(parse_timestamp(buf, &y) >= 0);
378 assert_se(x == y);
379
380 if (x > 2 * USEC_PER_DAY) {
381 assert_se(format_timestamp_style(buf, sizeof(buf), x, TIMESTAMP_DATE));
382 log_debug("%s", buf);
383 assert_se(parse_timestamp(buf, &y) >= 0);
384 assert_se(y > usec_sub_unsigned(x, 2 * USEC_PER_DAY) && y < usec_add(x, 2 * USEC_PER_DAY));
385 }
386
387 assert_se(format_timestamp_relative(buf, sizeof(buf), x));
388 log_debug("%s", buf);
389 assert_se(parse_timestamp(buf, &y) >= 0);
390
391 /* The two calls above will run with a slightly different local time. Make sure we are in the same
392 * range however, but give enough leeway that this is unlikely to explode. And of course,
393 * format_timestamp_relative() scales the accuracy with the distance from the current time up to one
394 * month, cover for that too. */
395 assert_se(y > x ? y - x : x - y <= USEC_PER_MONTH + USEC_PER_DAY);
396 }
397 }
398
399 static void test_format_timestamp_impl(usec_t x) {
400 const char *xx = FORMAT_TIMESTAMP(x);
401 ASSERT_NOT_NULL(xx);
402
403 usec_t y;
404 ASSERT_OK(parse_timestamp(xx, &y));
405 const char *yy = FORMAT_TIMESTAMP(y);
406 ASSERT_NOT_NULL(yy);
407
408 usec_t x_sec = x / USEC_PER_SEC;
409 usec_t y_sec = y / USEC_PER_SEC;
410
411 if (x_sec == y_sec && streq(xx, yy))
412 return; /* Yay!*/
413
414 /* When the timezone is built with rearguard being enabled (e.g. old Ubuntu and RHEL), the following
415 * timezone may provide time shifted 1 hour from the original. See
416 * https://github.com/systemd/systemd/issues/28472 and https://github.com/systemd/systemd/pull/35471 */
417 bool ignore =
418 streq_ptr(getenv("TZ"), "Africa/Windhoek") &&
419 (x_sec > y_sec ? x_sec - y_sec : y_sec - x_sec) == 3600;
420
421 log_full(ignore ? LOG_WARNING : LOG_ERR,
422 "@" USEC_FMT " → %s → @" USEC_FMT " → %s%s",
423 x, xx, y, yy,
424 ignore ? ", ignoring." : "");
425
426 ASSERT_TRUE(ignore);
427 }
428
429 static void test_format_timestamp_loop(void) {
430 test_format_timestamp_impl(USEC_PER_DAY + USEC_PER_SEC);
431 test_format_timestamp_impl(USEC_TIMESTAMP_FORMATTABLE_MAX_32BIT-1);
432 test_format_timestamp_impl(USEC_TIMESTAMP_FORMATTABLE_MAX_32BIT);
433 test_format_timestamp_impl(USEC_TIMESTAMP_FORMATTABLE_MAX-1);
434 test_format_timestamp_impl(USEC_TIMESTAMP_FORMATTABLE_MAX);
435
436 /* Two cases which trigger https://github.com/systemd/systemd/issues/28472 */
437 test_format_timestamp_impl(1504938962980066);
438 test_format_timestamp_impl(1509482094632752);
439
440 for (unsigned i = 0; i < TRIAL; i++) {
441 usec_t x;
442
443 x = random_u64_range(USEC_TIMESTAMP_FORMATTABLE_MAX - USEC_PER_SEC) + USEC_PER_SEC;
444 test_format_timestamp_impl(x);
445 }
446 }
447
448 TEST(FORMAT_TIMESTAMP) {
449 test_format_timestamp_loop();
450 }
451
452 static void test_format_timestamp_with_tz_one(const char *tz) {
453 if (!timezone_is_valid(tz, LOG_DEBUG))
454 return;
455
456 SAVE_TIMEZONE;
457 set_timezone(tz);
458
459 test_format_timestamp_loop();
460 }
461
462 TEST(FORMAT_TIMESTAMP_with_tz) {
463 _cleanup_strv_free_ char **timezones = NULL;
464
465 test_format_timestamp_with_tz_one("UTC");
466
467 if (!slow_tests_enabled())
468 return (void) log_tests_skipped("slow tests are disabled");
469
470 assert_se(get_timezones(&timezones) >= 0);
471 STRV_FOREACH(tz, timezones)
472 test_format_timestamp_with_tz_one(*tz);
473 }
474
475 TEST(format_timestamp_relative_full) {
476 char buf[CONST_MAX(FORMAT_TIMESTAMP_MAX, FORMAT_TIMESPAN_MAX)];
477 usec_t x;
478
479 /* Years and months */
480 x = now(CLOCK_REALTIME) - (1*USEC_PER_YEAR + 1*USEC_PER_MONTH);
481 assert_se(format_timestamp_relative_full(buf, sizeof(buf), x, CLOCK_REALTIME, true));
482 log_debug("%s", buf);
483 ASSERT_STREQ(buf, "1 year 1 month ago");
484
485 x = now(CLOCK_MONOTONIC) + (1*USEC_PER_YEAR + 1.5*USEC_PER_MONTH);
486 assert_se(format_timestamp_relative_full(buf, sizeof(buf), x, CLOCK_MONOTONIC, false));
487 log_debug("%s", buf);
488 ASSERT_STREQ(buf, "1 year 1 month left");
489
490 x = now(CLOCK_REALTIME) - (1*USEC_PER_YEAR + 2*USEC_PER_MONTH);
491 assert_se(format_timestamp_relative_full(buf, sizeof(buf), x, CLOCK_REALTIME, true));
492 log_debug("%s", buf);
493 ASSERT_STREQ(buf, "1 year 2 months ago");
494
495 x = now(CLOCK_REALTIME) - (2*USEC_PER_YEAR + 1*USEC_PER_MONTH);
496 assert_se(format_timestamp_relative_full(buf, sizeof(buf), x, CLOCK_REALTIME, true));
497 log_debug("%s", buf);
498 ASSERT_STREQ(buf, "2 years 1 month ago");
499
500 x = now(CLOCK_REALTIME) - (2*USEC_PER_YEAR + 2*USEC_PER_MONTH);
501 assert_se(format_timestamp_relative_full(buf, sizeof(buf), x, CLOCK_REALTIME, true));
502 log_debug("%s", buf);
503 ASSERT_STREQ(buf, "2 years 2 months ago");
504
505 /* Months and days */
506 x = now(CLOCK_REALTIME) - (1*USEC_PER_MONTH + 1*USEC_PER_DAY);
507 assert_se(format_timestamp_relative_full(buf, sizeof(buf), x, CLOCK_REALTIME, true));
508 log_debug("%s", buf);
509 ASSERT_STREQ(buf, "1 month 1 day ago");
510
511 x = now(CLOCK_REALTIME) - (1*USEC_PER_MONTH + 2*USEC_PER_DAY);
512 assert_se(format_timestamp_relative_full(buf, sizeof(buf), x, CLOCK_REALTIME, true));
513 log_debug("%s", buf);
514 ASSERT_STREQ(buf, "1 month 2 days ago");
515
516 x = now(CLOCK_REALTIME) - (2*USEC_PER_MONTH + 1*USEC_PER_DAY);
517 assert_se(format_timestamp_relative_full(buf, sizeof(buf), x, CLOCK_REALTIME, true));
518 log_debug("%s", buf);
519 ASSERT_STREQ(buf, "2 months 1 day ago");
520
521 x = now(CLOCK_REALTIME) - (2*USEC_PER_MONTH + 2*USEC_PER_DAY);
522 assert_se(format_timestamp_relative_full(buf, sizeof(buf), x, CLOCK_REALTIME, true));
523 log_debug("%s", buf);
524 ASSERT_STREQ(buf, "2 months 2 days ago");
525
526 /* Weeks and days */
527 x = now(CLOCK_REALTIME) - (1*USEC_PER_WEEK + 1*USEC_PER_DAY);
528 assert_se(format_timestamp_relative_full(buf, sizeof(buf), x, CLOCK_REALTIME, true));
529 log_debug("%s", buf);
530 ASSERT_STREQ(buf, "1 week 1 day ago");
531
532 x = now(CLOCK_REALTIME) - (1*USEC_PER_WEEK + 2*USEC_PER_DAY);
533 assert_se(format_timestamp_relative_full(buf, sizeof(buf), x, CLOCK_REALTIME, true));
534 log_debug("%s", buf);
535 ASSERT_STREQ(buf, "1 week 2 days ago");
536
537 x = now(CLOCK_REALTIME) - (2*USEC_PER_WEEK + 1*USEC_PER_DAY);
538 assert_se(format_timestamp_relative_full(buf, sizeof(buf), x, CLOCK_REALTIME, true));
539 log_debug("%s", buf);
540 ASSERT_STREQ(buf, "2 weeks 1 day ago");
541
542 x = now(CLOCK_REALTIME) - (2*USEC_PER_WEEK + 2*USEC_PER_DAY);
543 assert_se(format_timestamp_relative_full(buf, sizeof(buf), x, CLOCK_REALTIME, true));
544 log_debug("%s", buf);
545 ASSERT_STREQ(buf, "2 weeks 2 days ago");
546 }
547
548 TEST(format_timestamp_relative) {
549 char buf[CONST_MAX(FORMAT_TIMESTAMP_MAX, FORMAT_TIMESPAN_MAX)];
550 usec_t x;
551
552 /* Only testing timestamps in the past so we don't need to add some delta to account for time passing
553 * by while we are running the tests (unless we're running on potatoes and 24 hours somehow passes
554 * between our call to now() and format_timestamp_relative's call to now()). */
555
556 /* Years and months */
557 x = now(CLOCK_REALTIME) - (1*USEC_PER_YEAR + 1*USEC_PER_MONTH);
558 assert_se(format_timestamp_relative(buf, sizeof(buf), x));
559 log_debug("%s", buf);
560 ASSERT_STREQ(buf, "1 year 1 month ago");
561
562 x = now(CLOCK_REALTIME) - (1*USEC_PER_YEAR + 2*USEC_PER_MONTH);
563 assert_se(format_timestamp_relative(buf, sizeof(buf), x));
564 log_debug("%s", buf);
565 ASSERT_STREQ(buf, "1 year 2 months ago");
566
567 x = now(CLOCK_REALTIME) - (2*USEC_PER_YEAR + 1*USEC_PER_MONTH);
568 assert_se(format_timestamp_relative(buf, sizeof(buf), x));
569 log_debug("%s", buf);
570 ASSERT_STREQ(buf, "2 years 1 month ago");
571
572 x = now(CLOCK_REALTIME) - (2*USEC_PER_YEAR + 2*USEC_PER_MONTH);
573 assert_se(format_timestamp_relative(buf, sizeof(buf), x));
574 log_debug("%s", buf);
575 ASSERT_STREQ(buf, "2 years 2 months ago");
576
577 /* Months and days */
578 x = now(CLOCK_REALTIME) - (1*USEC_PER_MONTH + 1*USEC_PER_DAY);
579 assert_se(format_timestamp_relative(buf, sizeof(buf), x));
580 log_debug("%s", buf);
581 ASSERT_STREQ(buf, "1 month 1 day ago");
582
583 x = now(CLOCK_REALTIME) - (1*USEC_PER_MONTH + 2*USEC_PER_DAY);
584 assert_se(format_timestamp_relative(buf, sizeof(buf), x));
585 log_debug("%s", buf);
586 ASSERT_STREQ(buf, "1 month 2 days ago");
587
588 x = now(CLOCK_REALTIME) - (2*USEC_PER_MONTH + 1*USEC_PER_DAY);
589 assert_se(format_timestamp_relative(buf, sizeof(buf), x));
590 log_debug("%s", buf);
591 ASSERT_STREQ(buf, "2 months 1 day ago");
592
593 x = now(CLOCK_REALTIME) - (2*USEC_PER_MONTH + 2*USEC_PER_DAY);
594 assert_se(format_timestamp_relative(buf, sizeof(buf), x));
595 log_debug("%s", buf);
596 ASSERT_STREQ(buf, "2 months 2 days ago");
597
598 /* Weeks and days */
599 x = now(CLOCK_REALTIME) - (1*USEC_PER_WEEK + 1*USEC_PER_DAY);
600 assert_se(format_timestamp_relative(buf, sizeof(buf), x));
601 log_debug("%s", buf);
602 ASSERT_STREQ(buf, "1 week 1 day ago");
603
604 x = now(CLOCK_REALTIME) - (1*USEC_PER_WEEK + 2*USEC_PER_DAY);
605 assert_se(format_timestamp_relative(buf, sizeof(buf), x));
606 log_debug("%s", buf);
607 ASSERT_STREQ(buf, "1 week 2 days ago");
608
609 x = now(CLOCK_REALTIME) - (2*USEC_PER_WEEK + 1*USEC_PER_DAY);
610 assert_se(format_timestamp_relative(buf, sizeof(buf), x));
611 log_debug("%s", buf);
612 ASSERT_STREQ(buf, "2 weeks 1 day ago");
613
614 x = now(CLOCK_REALTIME) - (2*USEC_PER_WEEK + 2*USEC_PER_DAY);
615 assert_se(format_timestamp_relative(buf, sizeof(buf), x));
616 log_debug("%s", buf);
617 ASSERT_STREQ(buf, "2 weeks 2 days ago");
618 }
619
620 static void test_format_timestamp_one(usec_t val, TimestampStyle style, const char *result) {
621 char buf[FORMAT_TIMESTAMP_MAX];
622 const char *t;
623
624 t = format_timestamp_style(buf, sizeof(buf), val, style);
625 ASSERT_STREQ(t, result);
626 }
627
628 TEST(format_timestamp_range) {
629 test_format_timestamp_one(0, TIMESTAMP_UTC, NULL);
630 test_format_timestamp_one(0, TIMESTAMP_DATE, NULL);
631 test_format_timestamp_one(0, TIMESTAMP_US_UTC, NULL);
632
633 test_format_timestamp_one(1, TIMESTAMP_UTC, "Thu 1970-01-01 00:00:00 UTC");
634 test_format_timestamp_one(1, TIMESTAMP_DATE, "Thu 1970-01-01");
635 test_format_timestamp_one(1, TIMESTAMP_US_UTC, "Thu 1970-01-01 00:00:00.000001 UTC");
636
637 test_format_timestamp_one(USEC_PER_SEC, TIMESTAMP_UTC, "Thu 1970-01-01 00:00:01 UTC");
638 test_format_timestamp_one(USEC_PER_SEC, TIMESTAMP_DATE, "Thu 1970-01-01");
639 test_format_timestamp_one(USEC_PER_SEC, TIMESTAMP_US_UTC, "Thu 1970-01-01 00:00:01.000000 UTC");
640
641 #if SIZEOF_TIME_T == 8
642 test_format_timestamp_one(USEC_TIMESTAMP_FORMATTABLE_MAX, TIMESTAMP_UTC, "Thu 9999-12-30 23:59:59 UTC");
643 test_format_timestamp_one(USEC_TIMESTAMP_FORMATTABLE_MAX, TIMESTAMP_DATE, "Thu 9999-12-30");
644 test_format_timestamp_one(USEC_TIMESTAMP_FORMATTABLE_MAX + 1, TIMESTAMP_UTC, "--- XXXX-XX-XX XX:XX:XX UTC");
645 test_format_timestamp_one(USEC_TIMESTAMP_FORMATTABLE_MAX + 1, TIMESTAMP_US_UTC, "--- XXXX-XX-XX XX:XX:XX.XXXXXX UTC");
646 test_format_timestamp_one(USEC_TIMESTAMP_FORMATTABLE_MAX + 1, TIMESTAMP_DATE, "--- XXXX-XX-XX");
647 #elif SIZEOF_TIME_T == 4
648 test_format_timestamp_one(USEC_TIMESTAMP_FORMATTABLE_MAX, TIMESTAMP_UTC, "Mon 2038-01-18 03:14:07 UTC");
649 test_format_timestamp_one(USEC_TIMESTAMP_FORMATTABLE_MAX, TIMESTAMP_DATE, "Mon 2038-01-18");
650 test_format_timestamp_one(USEC_TIMESTAMP_FORMATTABLE_MAX + 1, TIMESTAMP_UTC, "--- XXXX-XX-XX XX:XX:XX UTC");
651 test_format_timestamp_one(USEC_TIMESTAMP_FORMATTABLE_MAX + 1, TIMESTAMP_US_UTC, "--- XXXX-XX-XX XX:XX:XX.XXXXXX UTC");
652 test_format_timestamp_one(USEC_TIMESTAMP_FORMATTABLE_MAX + 1, TIMESTAMP_DATE, "--- XXXX-XX-XX");
653 #endif
654
655 test_format_timestamp_one(USEC_INFINITY, TIMESTAMP_UTC, NULL);
656 }
657
658 TEST(parse_gmtoff) {
659 long t;
660
661 ASSERT_OK(parse_gmtoff("+14", &t));
662 ASSERT_EQ(t, (long) (14 * USEC_PER_HOUR / USEC_PER_SEC));
663 ASSERT_OK(parse_gmtoff("-09", &t));
664 ASSERT_EQ(t, - (long) (9 * USEC_PER_HOUR / USEC_PER_SEC));
665 ASSERT_OK(parse_gmtoff("+1400", &t));
666 ASSERT_EQ(t, (long) (14 * USEC_PER_HOUR / USEC_PER_SEC));
667 ASSERT_OK(parse_gmtoff("-0900", &t));
668 ASSERT_EQ(t, - (long) (9 * USEC_PER_HOUR / USEC_PER_SEC));
669 ASSERT_OK(parse_gmtoff("+14:00", &t));
670 ASSERT_EQ(t, (long) (14 * USEC_PER_HOUR / USEC_PER_SEC));
671 ASSERT_OK(parse_gmtoff("-09:00", &t));
672 ASSERT_EQ(t, - (long) (9 * USEC_PER_HOUR / USEC_PER_SEC));
673
674 ASSERT_ERROR(parse_gmtoff("", &t), EINVAL);
675 ASSERT_ERROR(parse_gmtoff("UTC", &t), EINVAL);
676 ASSERT_ERROR(parse_gmtoff("09", &t), EINVAL);
677 ASSERT_ERROR(parse_gmtoff("0900", &t), EINVAL);
678 ASSERT_ERROR(parse_gmtoff("?0900", &t), EINVAL);
679 ASSERT_ERROR(parse_gmtoff("?0900", &t), EINVAL);
680 ASSERT_ERROR(parse_gmtoff("+0900abc", &t), EINVAL);
681 ASSERT_ERROR(parse_gmtoff("+0900 ", &t), EINVAL);
682 ASSERT_ERROR(parse_gmtoff("+090000", &t), EINVAL);
683 ASSERT_ERROR(parse_gmtoff("+0900:00", &t), EINVAL);
684 ASSERT_ERROR(parse_gmtoff("+0900.00", &t), EINVAL);
685 }
686
687 static void test_parse_timestamp_one(const char *str, usec_t max_diff, usec_t expected) {
688 usec_t usec = USEC_INFINITY;
689 int r;
690
691 r = parse_timestamp(str, &usec);
692 log_debug("/* %s(%s): max_diff="USEC_FMT", expected="USEC_FMT", result="USEC_FMT" */", __func__, str, max_diff, expected, usec);
693 assert_se(r >= 0);
694 assert_se(usec >= expected);
695 assert_se(usec_sub_unsigned(usec, expected) <= max_diff);
696 }
697
698 static bool time_is_zero(usec_t usec) {
699 const char *s;
700
701 s = FORMAT_TIMESTAMP(usec);
702 return strstr(s, " 00:00:00 ");
703 }
704
705 static bool timezone_equal(usec_t today, usec_t target) {
706 const char *s, *t, *sz, *tz;
707
708 s = FORMAT_TIMESTAMP(today);
709 t = FORMAT_TIMESTAMP(target);
710 assert_se(sz = strrchr(s, ' '));
711 assert_se(tz = strrchr(t, ' '));
712 log_debug("%s("USEC_FMT", "USEC_FMT") -> %s, %s", __func__, today, target, s, t);
713 return streq(sz, tz);
714 }
715
716 static void test_parse_timestamp_impl(const char *tz) {
717 usec_t today, today2, now_usec;
718
719 /* Invalid: Ensure that systemctl reboot --when=show and --when=cancel
720 * will not result in ambiguities */
721 assert_se(parse_timestamp("show", NULL) == -EINVAL);
722 assert_se(parse_timestamp("cancel", NULL) == -EINVAL);
723
724 /* UTC */
725 test_parse_timestamp_one("Thu 1970-01-01 00:01 UTC", 0, USEC_PER_MINUTE);
726 test_parse_timestamp_one("Thu 1970-01-01 00:00:01 UTC", 0, USEC_PER_SEC);
727 test_parse_timestamp_one("Thu 1970-01-01 00:00:01.001 UTC", 0, USEC_PER_SEC + 1000);
728 test_parse_timestamp_one("Thu 1970-01-01 00:00:01.0010 UTC", 0, USEC_PER_SEC + 1000);
729
730 test_parse_timestamp_one("Thu 70-01-01 00:01 UTC", 0, USEC_PER_MINUTE);
731 test_parse_timestamp_one("Thu 70-01-01 00:00:01 UTC", 0, USEC_PER_SEC);
732 test_parse_timestamp_one("Thu 70-01-01 00:00:01.001 UTC", 0, USEC_PER_SEC + 1000);
733 test_parse_timestamp_one("Thu 70-01-01 00:00:01.0010 UTC", 0, USEC_PER_SEC + 1000);
734
735 test_parse_timestamp_one("1970-01-01 00:01 UTC", 0, USEC_PER_MINUTE);
736 test_parse_timestamp_one("1970-01-01 00:00:01 UTC", 0, USEC_PER_SEC);
737 test_parse_timestamp_one("1970-01-01 00:00:01.001 UTC", 0, USEC_PER_SEC + 1000);
738 test_parse_timestamp_one("1970-01-01 00:00:01.0010 UTC", 0, USEC_PER_SEC + 1000);
739
740 test_parse_timestamp_one("70-01-01 00:01 UTC", 0, USEC_PER_MINUTE);
741 test_parse_timestamp_one("70-01-01 00:00:01 UTC", 0, USEC_PER_SEC);
742 test_parse_timestamp_one("70-01-01 00:00:01.001 UTC", 0, USEC_PER_SEC + 1000);
743 test_parse_timestamp_one("70-01-01 00:00:01.0010 UTC", 0, USEC_PER_SEC + 1000);
744
745 /* Examples from RFC3339 */
746 test_parse_timestamp_one("1985-04-12T23:20:50.52Z", 0, 482196050 * USEC_PER_SEC + 520000);
747 test_parse_timestamp_one("1996-12-19T16:39:57-08:00", 0, 851042397 * USEC_PER_SEC + 000000);
748 test_parse_timestamp_one("1996-12-20T00:39:57Z", 0, 851042397 * USEC_PER_SEC + 000000);
749 test_parse_timestamp_one("1990-12-31T23:59:60Z", 0, 662688000 * USEC_PER_SEC + 000000);
750 test_parse_timestamp_one("1990-12-31T15:59:60-08:00", 0, 662688000 * USEC_PER_SEC + 000000);
751 assert_se(parse_timestamp("1937-01-01T12:00:27.87+00:20", NULL) == -ERANGE); /* we don't support pre-epoch timestamps */
752 /* We accept timestamps without seconds as well */
753 test_parse_timestamp_one("1996-12-20T00:39Z", 0, (851042397 - 57) * USEC_PER_SEC + 000000);
754 test_parse_timestamp_one("1990-12-31T15:59-08:00", 0, (662688000-60) * USEC_PER_SEC + 000000);
755 /* We drop day-of-week before parsing the timestamp */
756 test_parse_timestamp_one("Thu 1970-01-01T00:01 UTC", 0, USEC_PER_MINUTE);
757 test_parse_timestamp_one("Thu 1970-01-01T00:00:01 UTC", 0, USEC_PER_SEC);
758 test_parse_timestamp_one("Thu 1970-01-01T00:01Z", 0, USEC_PER_MINUTE);
759 test_parse_timestamp_one("Thu 1970-01-01T00:00:01Z", 0, USEC_PER_SEC);
760 /* RFC3339-style timezones can be welded to all formats */
761 assert_se(parse_timestamp("today UTC", &today) == 0);
762 assert_se(parse_timestamp("todayZ", &today2) == 0);
763 assert_se(today == today2);
764 assert_se(parse_timestamp("today +0200", &today) == 0);
765 assert_se(parse_timestamp("today+02:00", &today2) == 0);
766 assert_se(today == today2);
767
768 /* https://ijmacd.github.io/rfc3339-iso8601/ */
769 test_parse_timestamp_one("2023-09-06 12:49:27-00:00", 0, 1694004567 * USEC_PER_SEC + 000000);
770 test_parse_timestamp_one("2023-09-06 12:49:27.284-00:00", 0, 1694004567 * USEC_PER_SEC + 284000);
771 test_parse_timestamp_one("2023-09-06 12:49:27.284029Z", 0, 1694004567 * USEC_PER_SEC + 284029);
772 test_parse_timestamp_one("2023-09-06 12:49:27.284Z", 0, 1694004567 * USEC_PER_SEC + 284000);
773 test_parse_timestamp_one("2023-09-06 12:49:27.28Z", 0, 1694004567 * USEC_PER_SEC + 280000);
774 test_parse_timestamp_one("2023-09-06 12:49:27.2Z", 0, 1694004567 * USEC_PER_SEC + 200000);
775 test_parse_timestamp_one("2023-09-06 12:49:27Z", 0, 1694004567 * USEC_PER_SEC + 000000);
776 test_parse_timestamp_one("2023-09-06 14:49:27+02:00", 0, 1694004567 * USEC_PER_SEC + 000000);
777 test_parse_timestamp_one("2023-09-06 14:49:27.2+02:00", 0, 1694004567 * USEC_PER_SEC + 200000);
778 test_parse_timestamp_one("2023-09-06 14:49:27.28+02:00", 0, 1694004567 * USEC_PER_SEC + 280000);
779 test_parse_timestamp_one("2023-09-06 14:49:27.284+02:00", 0, 1694004567 * USEC_PER_SEC + 284000);
780 test_parse_timestamp_one("2023-09-06 14:49:27.284029+02:00", 0, 1694004567 * USEC_PER_SEC + 284029);
781 test_parse_timestamp_one("2023-09-06T12:49:27+00:00", 0, 1694004567 * USEC_PER_SEC + 000000);
782 test_parse_timestamp_one("2023-09-06T12:49:27-00:00", 0, 1694004567 * USEC_PER_SEC + 000000);
783 test_parse_timestamp_one("2023-09-06T12:49:27.284+00:00", 0, 1694004567 * USEC_PER_SEC + 284000);
784 test_parse_timestamp_one("2023-09-06T12:49:27.284-00:00", 0, 1694004567 * USEC_PER_SEC + 284000);
785 test_parse_timestamp_one("2023-09-06T12:49:27.284029Z", 0, 1694004567 * USEC_PER_SEC + 284029);
786 test_parse_timestamp_one("2023-09-06T12:49:27.284Z", 0, 1694004567 * USEC_PER_SEC + 284000);
787 test_parse_timestamp_one("2023-09-06T12:49:27.28Z", 0, 1694004567 * USEC_PER_SEC + 280000);
788 test_parse_timestamp_one("2023-09-06T12:49:27.2Z", 0, 1694004567 * USEC_PER_SEC + 200000);
789 test_parse_timestamp_one("2023-09-06T12:49:27Z", 0, 1694004567 * USEC_PER_SEC + 000000);
790 test_parse_timestamp_one("2023-09-06T14:49:27+02:00", 0, 1694004567 * USEC_PER_SEC + 000000);
791 test_parse_timestamp_one("2023-09-06T14:49:27.284+02:00", 0, 1694004567 * USEC_PER_SEC + 284000);
792 test_parse_timestamp_one("2023-09-06T14:49:27.284029+02:00", 0, 1694004567 * USEC_PER_SEC + 284029);
793 test_parse_timestamp_one("2023-09-06T21:34:27+08:45", 0, 1694004567 * USEC_PER_SEC + 000000);
794
795 if (timezone_is_valid("Asia/Tokyo", LOG_DEBUG)) {
796 /* Asia/Tokyo (+0900) */
797 test_parse_timestamp_one("Thu 1970-01-01 09:01 Asia/Tokyo", 0, USEC_PER_MINUTE);
798 test_parse_timestamp_one("Thu 1970-01-01 09:00:01 Asia/Tokyo", 0, USEC_PER_SEC);
799 test_parse_timestamp_one("Thu 1970-01-01 09:00:01.001 Asia/Tokyo", 0, USEC_PER_SEC + 1000);
800 test_parse_timestamp_one("Thu 1970-01-01 09:00:01.0010 Asia/Tokyo", 0, USEC_PER_SEC + 1000);
801
802 test_parse_timestamp_one("Thu 70-01-01 09:01 Asia/Tokyo", 0, USEC_PER_MINUTE);
803 test_parse_timestamp_one("Thu 70-01-01 09:00:01 Asia/Tokyo", 0, USEC_PER_SEC);
804 test_parse_timestamp_one("Thu 70-01-01 09:00:01.001 Asia/Tokyo", 0, USEC_PER_SEC + 1000);
805 test_parse_timestamp_one("Thu 70-01-01 09:00:01.0010 Asia/Tokyo", 0, USEC_PER_SEC + 1000);
806
807 test_parse_timestamp_one("1970-01-01 09:01 Asia/Tokyo", 0, USEC_PER_MINUTE);
808 test_parse_timestamp_one("1970-01-01 09:00:01 Asia/Tokyo", 0, USEC_PER_SEC);
809 test_parse_timestamp_one("1970-01-01 09:00:01.001 Asia/Tokyo", 0, USEC_PER_SEC + 1000);
810 test_parse_timestamp_one("1970-01-01 09:00:01.0010 Asia/Tokyo", 0, USEC_PER_SEC + 1000);
811
812 test_parse_timestamp_one("70-01-01 09:01 Asia/Tokyo", 0, USEC_PER_MINUTE);
813 test_parse_timestamp_one("70-01-01 09:00:01 Asia/Tokyo", 0, USEC_PER_SEC);
814 test_parse_timestamp_one("70-01-01 09:00:01.001 Asia/Tokyo", 0, USEC_PER_SEC + 1000);
815 test_parse_timestamp_one("70-01-01 09:00:01.0010 Asia/Tokyo", 0, USEC_PER_SEC + 1000);
816 }
817
818 if (streq_ptr(tz, "Asia/Tokyo")) {
819 /* JST (+0900) */
820 test_parse_timestamp_one("Thu 1970-01-01 09:01 JST", 0, USEC_PER_MINUTE);
821 test_parse_timestamp_one("Thu 1970-01-01 09:00:01 JST", 0, USEC_PER_SEC);
822 test_parse_timestamp_one("Thu 1970-01-01 09:00:01.001 JST", 0, USEC_PER_SEC + 1000);
823 test_parse_timestamp_one("Thu 1970-01-01 09:00:01.0010 JST", 0, USEC_PER_SEC + 1000);
824
825 test_parse_timestamp_one("Thu 70-01-01 09:01 JST", 0, USEC_PER_MINUTE);
826 test_parse_timestamp_one("Thu 70-01-01 09:00:01 JST", 0, USEC_PER_SEC);
827 test_parse_timestamp_one("Thu 70-01-01 09:00:01.001 JST", 0, USEC_PER_SEC + 1000);
828 test_parse_timestamp_one("Thu 70-01-01 09:00:01.0010 JST", 0, USEC_PER_SEC + 1000);
829
830 test_parse_timestamp_one("1970-01-01 09:01 JST", 0, USEC_PER_MINUTE);
831 test_parse_timestamp_one("1970-01-01 09:00:01 JST", 0, USEC_PER_SEC);
832 test_parse_timestamp_one("1970-01-01 09:00:01.001 JST", 0, USEC_PER_SEC + 1000);
833 test_parse_timestamp_one("1970-01-01 09:00:01.0010 JST", 0, USEC_PER_SEC + 1000);
834
835 test_parse_timestamp_one("70-01-01 09:01 JST", 0, USEC_PER_MINUTE);
836 test_parse_timestamp_one("70-01-01 09:00:01 JST", 0, USEC_PER_SEC);
837 test_parse_timestamp_one("70-01-01 09:00:01.001 JST", 0, USEC_PER_SEC + 1000);
838 test_parse_timestamp_one("70-01-01 09:00:01.0010 JST", 0, USEC_PER_SEC + 1000);
839 }
840
841 if (timezone_is_valid("America/New_York", LOG_DEBUG)) {
842 /* America/New_York (-0500) */
843 test_parse_timestamp_one("Wed 1969-12-31 19:01 America/New_York", 0, USEC_PER_MINUTE);
844 test_parse_timestamp_one("Wed 1969-12-31 19:00:01 America/New_York", 0, USEC_PER_SEC);
845 test_parse_timestamp_one("Wed 1969-12-31 19:00:01.001 America/New_York", 0, USEC_PER_SEC + 1000);
846 test_parse_timestamp_one("Wed 1969-12-31 19:00:01.0010 America/New_York", 0, USEC_PER_SEC + 1000);
847
848 test_parse_timestamp_one("Wed 69-12-31 19:01 America/New_York", 0, USEC_PER_MINUTE);
849 test_parse_timestamp_one("Wed 69-12-31 19:00:01 America/New_York", 0, USEC_PER_SEC);
850 test_parse_timestamp_one("Wed 69-12-31 19:00:01.001 America/New_York", 0, USEC_PER_SEC + 1000);
851 test_parse_timestamp_one("Wed 69-12-31 19:00:01.0010 America/New_York", 0, USEC_PER_SEC + 1000);
852
853 test_parse_timestamp_one("1969-12-31 19:01 America/New_York", 0, USEC_PER_MINUTE);
854 test_parse_timestamp_one("1969-12-31 19:00:01 America/New_York", 0, USEC_PER_SEC);
855 test_parse_timestamp_one("1969-12-31 19:00:01.001 America/New_York", 0, USEC_PER_SEC + 1000);
856 test_parse_timestamp_one("1969-12-31 19:00:01.0010 America/New_York", 0, USEC_PER_SEC + 1000);
857
858 test_parse_timestamp_one("69-12-31 19:01 America/New_York", 0, USEC_PER_MINUTE);
859 test_parse_timestamp_one("69-12-31 19:00:01 America/New_York", 0, USEC_PER_SEC);
860 test_parse_timestamp_one("69-12-31 19:00:01.001 America/New_York", 0, USEC_PER_SEC + 1000);
861 test_parse_timestamp_one("69-12-31 19:00:01.0010 America/New_York", 0, USEC_PER_SEC + 1000);
862 }
863
864 if (streq_ptr(tz, "America/New_York")) {
865 /* EST (-0500) */
866 test_parse_timestamp_one("Wed 1969-12-31 19:01 EST", 0, USEC_PER_MINUTE);
867 test_parse_timestamp_one("Wed 1969-12-31 19:00:01 EST", 0, USEC_PER_SEC);
868 test_parse_timestamp_one("Wed 1969-12-31 19:00:01.001 EST", 0, USEC_PER_SEC + 1000);
869 test_parse_timestamp_one("Wed 1969-12-31 19:00:01.0010 EST", 0, USEC_PER_SEC + 1000);
870
871 test_parse_timestamp_one("Wed 69-12-31 19:01 EST", 0, USEC_PER_MINUTE);
872 test_parse_timestamp_one("Wed 69-12-31 19:00:01 EST", 0, USEC_PER_SEC);
873 test_parse_timestamp_one("Wed 69-12-31 19:00:01.001 EST", 0, USEC_PER_SEC + 1000);
874 test_parse_timestamp_one("Wed 69-12-31 19:00:01.0010 EST", 0, USEC_PER_SEC + 1000);
875
876 test_parse_timestamp_one("1969-12-31 19:01 EST", 0, USEC_PER_MINUTE);
877 test_parse_timestamp_one("1969-12-31 19:00:01 EST", 0, USEC_PER_SEC);
878 test_parse_timestamp_one("1969-12-31 19:00:01.001 EST", 0, USEC_PER_SEC + 1000);
879 test_parse_timestamp_one("1969-12-31 19:00:01.0010 EST", 0, USEC_PER_SEC + 1000);
880
881 test_parse_timestamp_one("69-12-31 19:01 EST", 0, USEC_PER_MINUTE);
882 test_parse_timestamp_one("69-12-31 19:00:01 EST", 0, USEC_PER_SEC);
883 test_parse_timestamp_one("69-12-31 19:00:01.001 EST", 0, USEC_PER_SEC + 1000);
884 test_parse_timestamp_one("69-12-31 19:00:01.0010 EST", 0, USEC_PER_SEC + 1000);
885 }
886
887 if (timezone_is_valid("NZ", LOG_DEBUG)) {
888 /* NZ (+1200) */
889 test_parse_timestamp_one("Thu 1970-01-01 12:01 NZ", 0, USEC_PER_MINUTE);
890 test_parse_timestamp_one("Thu 1970-01-01 12:00:01 NZ", 0, USEC_PER_SEC);
891 test_parse_timestamp_one("Thu 1970-01-01 12:00:01.001 NZ", 0, USEC_PER_SEC + 1000);
892 test_parse_timestamp_one("Thu 1970-01-01 12:00:01.0010 NZ", 0, USEC_PER_SEC + 1000);
893
894 test_parse_timestamp_one("Thu 70-01-01 12:01 NZ", 0, USEC_PER_MINUTE);
895 test_parse_timestamp_one("Thu 70-01-01 12:00:01 NZ", 0, USEC_PER_SEC);
896 test_parse_timestamp_one("Thu 70-01-01 12:00:01.001 NZ", 0, USEC_PER_SEC + 1000);
897 test_parse_timestamp_one("Thu 70-01-01 12:00:01.0010 NZ", 0, USEC_PER_SEC + 1000);
898
899 test_parse_timestamp_one("1970-01-01 12:01 NZ", 0, USEC_PER_MINUTE);
900 test_parse_timestamp_one("1970-01-01 12:00:01 NZ", 0, USEC_PER_SEC);
901 test_parse_timestamp_one("1970-01-01 12:00:01.001 NZ", 0, USEC_PER_SEC + 1000);
902 test_parse_timestamp_one("1970-01-01 12:00:01.0010 NZ", 0, USEC_PER_SEC + 1000);
903
904 test_parse_timestamp_one("70-01-01 12:01 NZ", 0, USEC_PER_MINUTE);
905 test_parse_timestamp_one("70-01-01 12:00:01 NZ", 0, USEC_PER_SEC);
906 test_parse_timestamp_one("70-01-01 12:00:01.001 NZ", 0, USEC_PER_SEC + 1000);
907 test_parse_timestamp_one("70-01-01 12:00:01.0010 NZ", 0, USEC_PER_SEC + 1000);
908 }
909
910 /* -06 */
911 test_parse_timestamp_one("Wed 1969-12-31 18:01 -06", 0, USEC_PER_MINUTE);
912 test_parse_timestamp_one("Wed 1969-12-31 18:00:01 -06", 0, USEC_PER_SEC);
913 test_parse_timestamp_one("Wed 1969-12-31 18:00:01.001 -06", 0, USEC_PER_SEC + 1000);
914 test_parse_timestamp_one("Wed 1969-12-31 18:00:01.0010 -06", 0, USEC_PER_SEC + 1000);
915
916 test_parse_timestamp_one("Wed 69-12-31 18:01 -06", 0, USEC_PER_MINUTE);
917 test_parse_timestamp_one("Wed 69-12-31 18:00:01 -06", 0, USEC_PER_SEC);
918 test_parse_timestamp_one("Wed 69-12-31 18:00:01.001 -06", 0, USEC_PER_SEC + 1000);
919 test_parse_timestamp_one("Wed 69-12-31 18:00:01.0010 -06", 0, USEC_PER_SEC + 1000);
920
921 test_parse_timestamp_one("1969-12-31 18:01 -06", 0, USEC_PER_MINUTE);
922 test_parse_timestamp_one("1969-12-31 18:00:01 -06", 0, USEC_PER_SEC);
923 test_parse_timestamp_one("1969-12-31 18:00:01.001 -06", 0, USEC_PER_SEC + 1000);
924 test_parse_timestamp_one("1969-12-31 18:00:01.0010 -06", 0, USEC_PER_SEC + 1000);
925
926 test_parse_timestamp_one("69-12-31 18:01 -06", 0, USEC_PER_MINUTE);
927 test_parse_timestamp_one("69-12-31 18:00:01 -06", 0, USEC_PER_SEC);
928 test_parse_timestamp_one("69-12-31 18:00:01.001 -06", 0, USEC_PER_SEC + 1000);
929 test_parse_timestamp_one("69-12-31 18:00:01.0010 -06", 0, USEC_PER_SEC + 1000);
930
931 /* -0600 */
932 test_parse_timestamp_one("Wed 1969-12-31 18:01 -0600", 0, USEC_PER_MINUTE);
933 test_parse_timestamp_one("Wed 1969-12-31 18:00:01 -0600", 0, USEC_PER_SEC);
934 test_parse_timestamp_one("Wed 1969-12-31 18:00:01.001 -0600", 0, USEC_PER_SEC + 1000);
935 test_parse_timestamp_one("Wed 1969-12-31 18:00:01.0010 -0600", 0, USEC_PER_SEC + 1000);
936
937 test_parse_timestamp_one("Wed 69-12-31 18:01 -0600", 0, USEC_PER_MINUTE);
938 test_parse_timestamp_one("Wed 69-12-31 18:00:01 -0600", 0, USEC_PER_SEC);
939 test_parse_timestamp_one("Wed 69-12-31 18:00:01.001 -0600", 0, USEC_PER_SEC + 1000);
940 test_parse_timestamp_one("Wed 69-12-31 18:00:01.0010 -0600", 0, USEC_PER_SEC + 1000);
941
942 test_parse_timestamp_one("1969-12-31 18:01 -0600", 0, USEC_PER_MINUTE);
943 test_parse_timestamp_one("1969-12-31 18:00:01 -0600", 0, USEC_PER_SEC);
944 test_parse_timestamp_one("1969-12-31 18:00:01.001 -0600", 0, USEC_PER_SEC + 1000);
945 test_parse_timestamp_one("1969-12-31 18:00:01.0010 -0600", 0, USEC_PER_SEC + 1000);
946
947 test_parse_timestamp_one("69-12-31 18:01 -0600", 0, USEC_PER_MINUTE);
948 test_parse_timestamp_one("69-12-31 18:00:01 -0600", 0, USEC_PER_SEC);
949 test_parse_timestamp_one("69-12-31 18:00:01.001 -0600", 0, USEC_PER_SEC + 1000);
950 test_parse_timestamp_one("69-12-31 18:00:01.0010 -0600", 0, USEC_PER_SEC + 1000);
951
952 /* -06:00 */
953 test_parse_timestamp_one("Wed 1969-12-31 18:01 -06:00", 0, USEC_PER_MINUTE);
954 test_parse_timestamp_one("Wed 1969-12-31 18:00:01 -06:00", 0, USEC_PER_SEC);
955 test_parse_timestamp_one("Wed 1969-12-31 18:00:01.001 -06:00", 0, USEC_PER_SEC + 1000);
956 test_parse_timestamp_one("Wed 1969-12-31 18:00:01.0010 -06:00", 0, USEC_PER_SEC + 1000);
957
958 test_parse_timestamp_one("Wed 69-12-31 18:01 -06:00", 0, USEC_PER_MINUTE);
959 test_parse_timestamp_one("Wed 69-12-31 18:00:01 -06:00", 0, USEC_PER_SEC);
960 test_parse_timestamp_one("Wed 69-12-31 18:00:01.001 -06:00", 0, USEC_PER_SEC + 1000);
961 test_parse_timestamp_one("Wed 69-12-31 18:00:01.0010 -06:00", 0, USEC_PER_SEC + 1000);
962
963 test_parse_timestamp_one("1969-12-31 18:01 -06:00", 0, USEC_PER_MINUTE);
964 test_parse_timestamp_one("1969-12-31 18:00:01 -06:00", 0, USEC_PER_SEC);
965 test_parse_timestamp_one("1969-12-31 18:00:01.001 -06:00", 0, USEC_PER_SEC + 1000);
966 test_parse_timestamp_one("1969-12-31 18:00:01.0010 -06:00", 0, USEC_PER_SEC + 1000);
967
968 test_parse_timestamp_one("69-12-31 18:01 -06:00", 0, USEC_PER_MINUTE);
969 test_parse_timestamp_one("69-12-31 18:00:01 -06:00", 0, USEC_PER_SEC);
970 test_parse_timestamp_one("69-12-31 18:00:01.001 -06:00", 0, USEC_PER_SEC + 1000);
971 test_parse_timestamp_one("69-12-31 18:00:01.0010 -06:00", 0, USEC_PER_SEC + 1000);
972
973 /* without date */
974 assert_se(parse_timestamp("today", &today) == 0);
975 if (time_is_zero(today)) {
976 test_parse_timestamp_one("00:01", 0, today + USEC_PER_MINUTE);
977 test_parse_timestamp_one("00:00:01", 0, today + USEC_PER_SEC);
978 test_parse_timestamp_one("00:00:01.001", 0, today + USEC_PER_SEC + 1000);
979 test_parse_timestamp_one("00:00:01.0010", 0, today + USEC_PER_SEC + 1000);
980
981 if (timezone_equal(today, today + USEC_PER_DAY) && time_is_zero(today + USEC_PER_DAY))
982 test_parse_timestamp_one("tomorrow", 0, today + USEC_PER_DAY);
983 if (timezone_equal(today, today - USEC_PER_DAY) && time_is_zero(today - USEC_PER_DAY))
984 test_parse_timestamp_one("yesterday", 0, today - USEC_PER_DAY);
985 }
986
987 /* with timezone */
988 if (tz) {
989 _cleanup_free_ char *s = NULL;
990
991 ASSERT_NOT_NULL((s = strjoin("Fri 2012-11-23 23:02:15 ", tz)));
992 ASSERT_OK(parse_timestamp(s, NULL));
993 }
994
995 /* relative */
996 assert_se(parse_timestamp("now", &now_usec) == 0);
997 test_parse_timestamp_one("+5hours", USEC_PER_MINUTE, now_usec + 5 * USEC_PER_HOUR);
998 if (now_usec >= 10 * USEC_PER_DAY)
999 test_parse_timestamp_one("-10days", USEC_PER_MINUTE, now_usec - 10 * USEC_PER_DAY);
1000 test_parse_timestamp_one("2weeks left", USEC_PER_MINUTE, now_usec + 2 * USEC_PER_WEEK);
1001 if (now_usec >= 30 * USEC_PER_MINUTE)
1002 test_parse_timestamp_one("30minutes ago", USEC_PER_MINUTE, now_usec - 30 * USEC_PER_MINUTE);
1003 }
1004
1005 TEST(parse_timestamp) {
1006 test_parse_timestamp_impl(NULL);
1007 }
1008
1009 static void test_parse_timestamp_with_tz_one(const char *tz) {
1010 if (!timezone_is_valid(tz, LOG_DEBUG))
1011 return;
1012
1013 SAVE_TIMEZONE;
1014 set_timezone(tz);
1015
1016 test_parse_timestamp_impl(tz);
1017 }
1018
1019 TEST(parse_timestamp_with_tz) {
1020 _cleanup_strv_free_ char **timezones = NULL;
1021
1022 test_parse_timestamp_with_tz_one("UTC");
1023
1024 if (!slow_tests_enabled())
1025 return (void) log_tests_skipped("slow tests are disabled");
1026
1027 assert_se(get_timezones(&timezones) >= 0);
1028 STRV_FOREACH(tz, timezones)
1029 test_parse_timestamp_with_tz_one(*tz);
1030 }
1031
1032 TEST(deserialize_dual_timestamp) {
1033 int r;
1034 dual_timestamp t;
1035
1036 r = deserialize_dual_timestamp("1234 5678", &t);
1037 assert_se(r == 0);
1038 assert_se(t.realtime == 1234);
1039 assert_se(t.monotonic == 5678);
1040
1041 r = deserialize_dual_timestamp("1234x 5678", &t);
1042 assert_se(r == -EINVAL);
1043
1044 r = deserialize_dual_timestamp("1234 5678y", &t);
1045 assert_se(r == -EINVAL);
1046
1047 r = deserialize_dual_timestamp("-1234 5678", &t);
1048 assert_se(r == -EINVAL);
1049
1050 r = deserialize_dual_timestamp("1234 -5678", &t);
1051 assert_se(r == -EINVAL);
1052
1053 /* Check that output wasn't modified. */
1054 assert_se(t.realtime == 1234);
1055 assert_se(t.monotonic == 5678);
1056
1057 r = deserialize_dual_timestamp("+123 567", &t);
1058 assert_se(r == 0);
1059 assert_se(t.realtime == 123);
1060 assert_se(t.monotonic == 567);
1061
1062 /* Check that we get "infinity" on overflow. */
1063 r = deserialize_dual_timestamp("18446744073709551617 0", &t);
1064 assert_se(r == 0);
1065 assert_se(t.realtime == USEC_INFINITY);
1066 assert_se(t.monotonic == 0);
1067 }
1068
1069 static void assert_similar(usec_t a, usec_t b) {
1070 usec_t d;
1071
1072 if (a > b)
1073 d = a - b;
1074 else
1075 d = b - a;
1076
1077 assert_se(d < 10*USEC_PER_SEC);
1078 }
1079
1080 TEST(usec_shift_clock) {
1081 usec_t rt, mn, bt;
1082
1083 rt = now(CLOCK_REALTIME);
1084 mn = now(CLOCK_MONOTONIC);
1085 bt = now(CLOCK_BOOTTIME);
1086
1087 assert_se(usec_shift_clock(USEC_INFINITY, CLOCK_REALTIME, CLOCK_MONOTONIC) == USEC_INFINITY);
1088
1089 assert_similar(usec_shift_clock(rt + USEC_PER_HOUR, CLOCK_REALTIME, CLOCK_MONOTONIC), mn + USEC_PER_HOUR);
1090 assert_similar(usec_shift_clock(rt + 2*USEC_PER_HOUR, CLOCK_REALTIME, CLOCK_BOOTTIME), bt + 2*USEC_PER_HOUR);
1091 assert_se(usec_shift_clock(rt + 3*USEC_PER_HOUR, CLOCK_REALTIME, CLOCK_REALTIME_ALARM) == rt + 3*USEC_PER_HOUR);
1092
1093 assert_similar(usec_shift_clock(mn + 4*USEC_PER_HOUR, CLOCK_MONOTONIC, CLOCK_REALTIME_ALARM), rt + 4*USEC_PER_HOUR);
1094 assert_similar(usec_shift_clock(mn + 5*USEC_PER_HOUR, CLOCK_MONOTONIC, CLOCK_BOOTTIME), bt + 5*USEC_PER_HOUR);
1095 assert_se(usec_shift_clock(mn + 6*USEC_PER_HOUR, CLOCK_MONOTONIC, CLOCK_MONOTONIC) == mn + 6*USEC_PER_HOUR);
1096
1097 assert_similar(usec_shift_clock(bt + 7*USEC_PER_HOUR, CLOCK_BOOTTIME, CLOCK_MONOTONIC), mn + 7*USEC_PER_HOUR);
1098 assert_similar(usec_shift_clock(bt + 8*USEC_PER_HOUR, CLOCK_BOOTTIME, CLOCK_REALTIME_ALARM), rt + 8*USEC_PER_HOUR);
1099 assert_se(usec_shift_clock(bt + 9*USEC_PER_HOUR, CLOCK_BOOTTIME, CLOCK_BOOTTIME) == bt + 9*USEC_PER_HOUR);
1100
1101 if (mn > USEC_PER_MINUTE) {
1102 assert_similar(usec_shift_clock(rt - 30 * USEC_PER_SEC, CLOCK_REALTIME_ALARM, CLOCK_MONOTONIC), mn - 30 * USEC_PER_SEC);
1103 assert_similar(usec_shift_clock(rt - 50 * USEC_PER_SEC, CLOCK_REALTIME, CLOCK_BOOTTIME), bt - 50 * USEC_PER_SEC);
1104 }
1105 }
1106
1107 TEST(in_utc_timezone) {
1108 SAVE_TIMEZONE;
1109
1110 assert_se(setenv("TZ", "UTC", 1) >= 0);
1111 assert_se(in_utc_timezone());
1112 ASSERT_STREQ(tzname[0], "UTC");
1113 ASSERT_STREQ(tzname[1], "UTC");
1114 assert_se(timezone == 0);
1115 assert_se(daylight == 0);
1116
1117 assert_se(setenv("TZ", "Europe/Berlin", 1) >= 0);
1118 assert_se(!in_utc_timezone());
1119 ASSERT_STREQ(tzname[0], "CET");
1120 ASSERT_STREQ(tzname[1], "CEST");
1121 }
1122
1123 TEST(map_clock_usec) {
1124 usec_t nowr, x, y, z;
1125
1126 x = nowr = now(CLOCK_REALTIME); /* right now */
1127 y = map_clock_usec(x, CLOCK_REALTIME, CLOCK_MONOTONIC);
1128 z = map_clock_usec(y, CLOCK_MONOTONIC, CLOCK_REALTIME);
1129 /* Converting forth and back will introduce inaccuracies, since we cannot query both clocks atomically, but it should be small. Even on the slowest CI smaller than 1h */
1130
1131 assert_se((z > x ? z - x : x - z) < USEC_PER_HOUR);
1132
1133 assert_se(nowr < USEC_INFINITY - USEC_PER_DAY*7); /* overflow check */
1134 x = nowr + USEC_PER_DAY*7; /* 1 week from now */
1135 y = map_clock_usec(x, CLOCK_REALTIME, CLOCK_MONOTONIC);
1136 assert_se(timestamp_is_set(y));
1137 z = map_clock_usec(y, CLOCK_MONOTONIC, CLOCK_REALTIME);
1138 assert_se(timestamp_is_set(z));
1139 assert_se((z > x ? z - x : x - z) < USEC_PER_HOUR);
1140
1141 assert_se(nowr > USEC_PER_DAY * 7); /* underflow check */
1142 x = nowr - USEC_PER_DAY*7; /* 1 week ago */
1143 y = map_clock_usec(x, CLOCK_REALTIME, CLOCK_MONOTONIC);
1144 if (y != 0) { /* might underflow if machine is not up long enough for the monotonic clock to be beyond 1w */
1145 assert_se(y < USEC_INFINITY);
1146 z = map_clock_usec(y, CLOCK_MONOTONIC, CLOCK_REALTIME);
1147 assert_se(timestamp_is_set(z));
1148 assert_se((z > x ? z - x : x - z) < USEC_PER_HOUR);
1149 }
1150 }
1151
1152 static void test_timezone_offset_change_one(const char *utc, const char *pretty) {
1153 usec_t x, y, z;
1154 char *s;
1155
1156 assert_se(parse_timestamp(utc, &x) >= 0);
1157
1158 s = FORMAT_TIMESTAMP_STYLE(x, TIMESTAMP_UTC);
1159 assert_se(parse_timestamp(s, &y) >= 0);
1160 log_debug("%s -> " USEC_FMT " -> %s -> " USEC_FMT, utc, x, s, y);
1161 ASSERT_STREQ(s, utc);
1162 assert_se(x == y);
1163
1164 assert_se(parse_timestamp(pretty, &y) >= 0);
1165 s = FORMAT_TIMESTAMP_STYLE(y, TIMESTAMP_PRETTY);
1166 assert_se(parse_timestamp(s, &z) >= 0);
1167 log_debug("%s -> " USEC_FMT " -> %s -> " USEC_FMT, pretty, y, s, z);
1168 ASSERT_STREQ(s, pretty);
1169 assert_se(x == y);
1170 assert_se(x == z);
1171 }
1172
1173 TEST(timezone_offset_change) {
1174 SAVE_TIMEZONE;
1175
1176 /* See issue #26370. */
1177
1178 if (timezone_is_valid("Africa/Casablanca", LOG_DEBUG)) {
1179 set_timezone("Africa/Casablanca");
1180
1181 test_timezone_offset_change_one("Sun 2015-10-25 01:59:59 UTC", "Sun 2015-10-25 02:59:59 +01");
1182 test_timezone_offset_change_one("Sun 2015-10-25 02:00:00 UTC", "Sun 2015-10-25 02:00:00 +00");
1183 test_timezone_offset_change_one("Sun 2018-06-17 01:59:59 UTC", "Sun 2018-06-17 01:59:59 +00");
1184 test_timezone_offset_change_one("Sun 2018-06-17 02:00:00 UTC", "Sun 2018-06-17 03:00:00 +01");
1185 test_timezone_offset_change_one("Sun 2018-10-28 01:59:59 UTC", "Sun 2018-10-28 02:59:59 +01");
1186 test_timezone_offset_change_one("Sun 2018-10-28 02:00:00 UTC", "Sun 2018-10-28 03:00:00 +01");
1187 }
1188
1189 if (timezone_is_valid("Asia/Atyrau", LOG_DEBUG)) {
1190 set_timezone("Asia/Atyrau");
1191
1192 test_timezone_offset_change_one("Sat 2004-03-27 21:59:59 UTC", "Sun 2004-03-28 01:59:59 +04");
1193 test_timezone_offset_change_one("Sat 2004-03-27 22:00:00 UTC", "Sun 2004-03-28 03:00:00 +05");
1194 test_timezone_offset_change_one("Sat 2004-10-30 21:59:59 UTC", "Sun 2004-10-31 02:59:59 +05");
1195 test_timezone_offset_change_one("Sat 2004-10-30 22:00:00 UTC", "Sun 2004-10-31 03:00:00 +05");
1196 }
1197
1198 if (timezone_is_valid("Chile/EasterIsland", LOG_DEBUG)) {
1199 set_timezone("Chile/EasterIsland");
1200
1201 test_timezone_offset_change_one("Sun 1981-10-11 03:59:59 UTC", "Sat 1981-10-10 20:59:59 -07");
1202 test_timezone_offset_change_one("Sun 1981-10-11 04:00:00 UTC", "Sat 1981-10-10 22:00:00 -06");
1203 test_timezone_offset_change_one("Sun 1982-03-14 02:59:59 UTC", "Sat 1982-03-13 20:59:59 -06");
1204 test_timezone_offset_change_one("Sun 1982-03-14 03:00:00 UTC", "Sat 1982-03-13 21:00:00 -06");
1205 }
1206 }
1207
1208 static usec_t absdiff(usec_t a, usec_t b) {
1209 return a > b ? a - b : b - a;
1210 }
1211
1212 TEST(mktime_or_timegm_usec) {
1213
1214 usec_t n = now(CLOCK_REALTIME), m;
1215 struct tm tm;
1216
1217 assert_se(localtime_or_gmtime_usec(n, /* utc= */ false, &tm) >= 0);
1218 assert_se(mktime_or_timegm_usec(&tm, /* utc= */ false, &m) >= 0);
1219 assert_se(absdiff(n, m) < 2 * USEC_PER_DAY);
1220
1221 assert_se(localtime_or_gmtime_usec(n, /* utc= */ true, &tm) >= 0);
1222 assert_se(mktime_or_timegm_usec(&tm, /* utc= */ true, &m) >= 0);
1223 assert_se(absdiff(n, m) < USEC_PER_SEC);
1224
1225 /* This definitely should fail, because we refuse dates before the UNIX epoch */
1226 tm = (struct tm) {
1227 .tm_mday = 15,
1228 .tm_mon = 11,
1229 .tm_year = 1969 - 1900,
1230 };
1231
1232 assert_se(mktime_or_timegm_usec(&tm, /* utc= */ true, NULL) == -ERANGE);
1233 }
1234
1235 static int intro(void) {
1236 /* Tests have hard-coded results that do not expect a specific timezone to be set by the caller */
1237 assert_se(unsetenv("TZ") >= 0);
1238
1239 log_info("realtime=" USEC_FMT "\n"
1240 "monotonic=" USEC_FMT "\n"
1241 "boottime=" USEC_FMT "\n",
1242 now(CLOCK_REALTIME),
1243 now(CLOCK_MONOTONIC),
1244 now(CLOCK_BOOTTIME));
1245
1246 /* Ensure time_t is signed */
1247 assert_cc((time_t) -1 < (time_t) 1);
1248
1249 /* Ensure TIME_T_MAX works correctly */
1250 uintmax_t x = TIME_T_MAX;
1251 x++;
1252 assert_se((time_t) x < 0);
1253
1254 return EXIT_SUCCESS;
1255 }
1256
1257 DEFINE_TEST_MAIN_WITH_INTRO(LOG_INFO, intro);