1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
6 #include "random-util.h"
8 #include "string-util.h"
11 #include "time-util.h"
15 static void set_timezone(const char *tz
) {
16 ASSERT_OK(set_unset_env("TZ", tz
, /* overwrite = */ true));
18 log_info("TZ=%s, tzname[0]=%s, tzname[1]=%s", strna(getenv("TZ")), strempty(tzname
[0]), strempty(tzname
[1]));
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);
44 assert_se(parse_sec("23μs", &u
) >= 0); /* greek small letter mu */
46 assert_se(parse_sec("23µs", &u
) >= 0); /* micro symbol */
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
);
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);
85 TEST(parse_sec_fix_0
) {
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
);
98 TEST(parse_sec_def_infinity
) {
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);
109 assert_se(parse_sec_def_infinity("0", &u
) >= 0);
111 assert_se(parse_sec_def_infinity(" 0", &u
) >= 0);
113 assert_se(parse_sec_def_infinity("-5s", &u
) < 0);
119 assert_se(parse_time("5", &u
, 1) >= 0);
122 assert_se(parse_time("5", &u
, USEC_PER_MSEC
) >= 0);
123 assert_se(u
== 5 * USEC_PER_MSEC
);
125 assert_se(parse_time("5", &u
, USEC_PER_SEC
) >= 0);
126 assert_se(u
== 5 * USEC_PER_SEC
);
128 assert_se(parse_time("5s", &u
, 1) >= 0);
129 assert_se(u
== 5 * USEC_PER_SEC
);
131 assert_se(parse_time("5s", &u
, USEC_PER_SEC
) >= 0);
132 assert_se(u
== 5 * USEC_PER_SEC
);
134 assert_se(parse_time("5s", &u
, USEC_PER_MSEC
) >= 0);
135 assert_se(u
== 5 * USEC_PER_SEC
);
137 assert_se(parse_time("11111111111111y", &u
, 1) == -ERANGE
);
138 assert_se(parse_time("1.1111111111111y", &u
, 1) >= 0);
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);
160 assert_se(parse_nsec(".7", &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
);
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);
203 static void test_format_timespan_one(usec_t x
, usec_t accuracy
) {
204 char l
[FORMAT_TIMESPAN_MAX
];
208 log_debug(USEC_FMT
" (at accuracy "USEC_FMT
")", x
, accuracy
);
210 assert_se(t
= format_timespan(l
, sizeof l
, x
, accuracy
));
211 log_debug(" = <%s>", t
);
213 assert_se(parse_sec(t
, &y
) >= 0);
214 log_debug(" = "USEC_FMT
, y
);
219 assert_se(x
/ accuracy
== y
/ accuracy
);
222 static void test_format_timespan_accuracy(usec_t accuracy
) {
223 log_info("/* %s accuracy="USEC_FMT
" */", __func__
, accuracy
);
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
);
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
);
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));
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
);
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
));
275 TEST(get_timezones
) {
276 _cleanup_strv_free_
char **zones
= NULL
;
279 r
= get_timezones(&zones
);
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
);
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
);
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
);
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);
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
);
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);
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
);
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))));
348 TEST(format_timestamp
) {
349 for (unsigned i
= 0; i
< TRIAL
; i
++) {
350 char buf
[CONST_MAX(FORMAT_TIMESTAMP_MAX
, FORMAT_TIMESPAN_MAX
)];
353 x
= random_u64_range(USEC_TIMESTAMP_FORMATTABLE_MAX
- USEC_PER_SEC
) + USEC_PER_SEC
;
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
);
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
);
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
);
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);
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);
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
));
387 assert_se(format_timestamp_relative(buf
, sizeof(buf
), x
));
388 log_debug("%s", buf
);
389 assert_se(parse_timestamp(buf
, &y
) >= 0);
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
);
399 static void test_format_timestamp_impl(usec_t x
) {
400 const char *xx
= FORMAT_TIMESTAMP(x
);
404 ASSERT_OK(parse_timestamp(xx
, &y
));
405 const char *yy
= FORMAT_TIMESTAMP(y
);
408 usec_t x_sec
= x
/ USEC_PER_SEC
;
409 usec_t y_sec
= y
/ USEC_PER_SEC
;
411 if (x_sec
== y_sec
&& streq(xx
, yy
))
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 */
418 streq_ptr(getenv("TZ"), "Africa/Windhoek") &&
419 (x_sec
> y_sec
? x_sec
- y_sec
: y_sec
- x_sec
) == 3600;
421 log_full(ignore
? LOG_WARNING
: LOG_ERR
,
422 "@" USEC_FMT
" → %s → @" USEC_FMT
" → %s%s",
424 ignore
? ", ignoring." : "");
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
);
436 /* Two cases which trigger https://github.com/systemd/systemd/issues/28472 */
437 test_format_timestamp_impl(1504938962980066);
438 test_format_timestamp_impl(1509482094632752);
440 for (unsigned i
= 0; i
< TRIAL
; i
++) {
443 x
= random_u64_range(USEC_TIMESTAMP_FORMATTABLE_MAX
- USEC_PER_SEC
) + USEC_PER_SEC
;
444 test_format_timestamp_impl(x
);
448 TEST(FORMAT_TIMESTAMP
) {
449 test_format_timestamp_loop();
452 static void test_format_timestamp_with_tz_one(const char *tz
) {
453 if (!timezone_is_valid(tz
, LOG_DEBUG
))
459 test_format_timestamp_loop();
462 TEST(FORMAT_TIMESTAMP_with_tz
) {
463 _cleanup_strv_free_
char **timezones
= NULL
;
465 test_format_timestamp_with_tz_one("UTC");
467 if (!slow_tests_enabled())
468 return (void) log_tests_skipped("slow tests are disabled");
470 assert_se(get_timezones(&timezones
) >= 0);
471 STRV_FOREACH(tz
, timezones
)
472 test_format_timestamp_with_tz_one(*tz
);
475 TEST(format_timestamp_relative_full
) {
476 char buf
[CONST_MAX(FORMAT_TIMESTAMP_MAX
, FORMAT_TIMESPAN_MAX
)];
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");
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");
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");
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");
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");
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");
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");
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");
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");
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");
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");
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");
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");
548 TEST(format_timestamp_relative
) {
549 char buf
[CONST_MAX(FORMAT_TIMESTAMP_MAX
, FORMAT_TIMESPAN_MAX
)];
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()). */
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");
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");
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");
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");
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");
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");
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");
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");
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");
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");
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");
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");
620 static void test_format_timestamp_one(usec_t val
, TimestampStyle style
, const char *result
) {
621 char buf
[FORMAT_TIMESTAMP_MAX
];
624 t
= format_timestamp_style(buf
, sizeof(buf
), val
, style
);
625 ASSERT_STREQ(t
, result
);
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
);
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");
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");
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");
655 test_format_timestamp_one(USEC_INFINITY
, TIMESTAMP_UTC
, NULL
);
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
));
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
);
687 static void test_parse_timestamp_one(const char *str
, usec_t max_diff
, usec_t expected
) {
688 usec_t usec
= USEC_INFINITY
;
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
);
694 assert_se(usec
>= expected
);
695 assert_se(usec_sub_unsigned(usec
, expected
) <= max_diff
);
698 static bool time_is_zero(usec_t usec
) {
701 s
= FORMAT_TIMESTAMP(usec
);
702 return strstr(s
, " 00:00:00 ");
705 static bool timezone_equal(usec_t today
, usec_t target
) {
706 const char *s
, *t
, *sz
, *tz
;
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
);
716 static void test_parse_timestamp_impl(const char *tz
) {
717 usec_t today
, today2
, now_usec
;
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
);
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);
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);
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);
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);
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
);
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);
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);
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);
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);
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);
818 if (streq_ptr(tz
, "Asia/Tokyo")) {
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);
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);
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);
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);
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);
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);
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);
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);
864 if (streq_ptr(tz
, "America/New_York")) {
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);
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);
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);
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);
887 if (timezone_is_valid("NZ", LOG_DEBUG
)) {
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);
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);
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);
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);
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);
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);
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);
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);
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);
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);
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);
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);
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);
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);
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);
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);
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);
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
);
989 _cleanup_free_
char *s
= NULL
;
991 ASSERT_NOT_NULL((s
= strjoin("Fri 2012-11-23 23:02:15 ", tz
)));
992 ASSERT_OK(parse_timestamp(s
, NULL
));
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
);
1005 TEST(parse_timestamp
) {
1006 test_parse_timestamp_impl(NULL
);
1009 static void test_parse_timestamp_with_tz_one(const char *tz
) {
1010 if (!timezone_is_valid(tz
, LOG_DEBUG
))
1016 test_parse_timestamp_impl(tz
);
1019 TEST(parse_timestamp_with_tz
) {
1020 _cleanup_strv_free_
char **timezones
= NULL
;
1022 test_parse_timestamp_with_tz_one("UTC");
1024 if (!slow_tests_enabled())
1025 return (void) log_tests_skipped("slow tests are disabled");
1027 assert_se(get_timezones(&timezones
) >= 0);
1028 STRV_FOREACH(tz
, timezones
)
1029 test_parse_timestamp_with_tz_one(*tz
);
1032 TEST(deserialize_dual_timestamp
) {
1036 r
= deserialize_dual_timestamp("1234 5678", &t
);
1038 assert_se(t
.realtime
== 1234);
1039 assert_se(t
.monotonic
== 5678);
1041 r
= deserialize_dual_timestamp("1234x 5678", &t
);
1042 assert_se(r
== -EINVAL
);
1044 r
= deserialize_dual_timestamp("1234 5678y", &t
);
1045 assert_se(r
== -EINVAL
);
1047 r
= deserialize_dual_timestamp("-1234 5678", &t
);
1048 assert_se(r
== -EINVAL
);
1050 r
= deserialize_dual_timestamp("1234 -5678", &t
);
1051 assert_se(r
== -EINVAL
);
1053 /* Check that output wasn't modified. */
1054 assert_se(t
.realtime
== 1234);
1055 assert_se(t
.monotonic
== 5678);
1057 r
= deserialize_dual_timestamp("+123 567", &t
);
1059 assert_se(t
.realtime
== 123);
1060 assert_se(t
.monotonic
== 567);
1062 /* Check that we get "infinity" on overflow. */
1063 r
= deserialize_dual_timestamp("18446744073709551617 0", &t
);
1065 assert_se(t
.realtime
== USEC_INFINITY
);
1066 assert_se(t
.monotonic
== 0);
1069 static void assert_similar(usec_t a
, usec_t b
) {
1077 assert_se(d
< 10*USEC_PER_SEC
);
1080 TEST(usec_shift_clock
) {
1083 rt
= now(CLOCK_REALTIME
);
1084 mn
= now(CLOCK_MONOTONIC
);
1085 bt
= now(CLOCK_BOOTTIME
);
1087 assert_se(usec_shift_clock(USEC_INFINITY
, CLOCK_REALTIME
, CLOCK_MONOTONIC
) == USEC_INFINITY
);
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
);
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
);
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
);
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
);
1107 TEST(in_utc_timezone
) {
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);
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");
1123 TEST(map_clock_usec
) {
1124 usec_t nowr
, x
, y
, z
;
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 */
1131 assert_se((z
> x
? z
- x
: x
- z
) < USEC_PER_HOUR
);
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
);
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
);
1152 static void test_timezone_offset_change_one(const char *utc
, const char *pretty
) {
1156 assert_se(parse_timestamp(utc
, &x
) >= 0);
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
);
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
);
1173 TEST(timezone_offset_change
) {
1176 /* See issue #26370. */
1178 if (timezone_is_valid("Africa/Casablanca", LOG_DEBUG
)) {
1179 set_timezone("Africa/Casablanca");
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");
1189 if (timezone_is_valid("Asia/Atyrau", LOG_DEBUG
)) {
1190 set_timezone("Asia/Atyrau");
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");
1198 if (timezone_is_valid("Chile/EasterIsland", LOG_DEBUG
)) {
1199 set_timezone("Chile/EasterIsland");
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");
1208 static usec_t
absdiff(usec_t a
, usec_t b
) {
1209 return a
> b
? a
- b
: b
- a
;
1212 TEST(mktime_or_timegm_usec
) {
1214 usec_t n
= now(CLOCK_REALTIME
), m
;
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
);
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
);
1225 /* This definitely should fail, because we refuse dates before the UNIX epoch */
1229 .tm_year
= 1969 - 1900,
1232 assert_se(mktime_or_timegm_usec(&tm
, /* utc= */ true, NULL
) == -ERANGE
);
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);
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
));
1246 /* Ensure time_t is signed */
1247 assert_cc((time_t) -1 < (time_t) 1);
1249 /* Ensure TIME_T_MAX works correctly */
1250 uintmax_t x
= TIME_T_MAX
;
1252 assert_se((time_t) x
< 0);
1254 return EXIT_SUCCESS
;
1257 DEFINE_TEST_MAIN_WITH_INTRO(LOG_INFO
, intro
);