1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
|
/*
* Copyright (c) 2002-2019 Balabit
* Copyright (c) 1998-2019 Balázs Scheidler
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include <criterion/criterion.h>
#include "libtest/fake-time.h"
#include "timeutils/wallclocktime.h"
#include "timeutils/cache.h"
#include "timeutils/conv.h"
#include "apphook.h"
/* timeutils cache mock */
gboolean tz_mock_empty_dst_tzname = FALSE;
const gchar *const *
cached_get_system_tznames(void)
{
static gchar *tznames[] = { "CET", "CEST" };
if (tz_mock_empty_dst_tzname)
tznames[1] = "";
return (const gchar *const *) &tznames;
}
glong
cached_get_system_tzofs(void)
{
return -1 * 3600;
}
Test(wallclocktime, test_wall_clock_time_init)
{
WallClockTime wct;
wall_clock_time_unset(&wct);
cr_assert(wall_clock_time_is_set(&wct) == FALSE);
}
Test(wallclocktime, test_strptime_parses_broken_down_time)
{
WallClockTime wct = WALL_CLOCK_TIME_INIT;
gchar *end;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S.%f", "Jan 16 2019 18:23:12.012345");
cr_assert(*end == 0);
cr_expect(wct.wct_year == 119);
cr_expect(wct.wct_mon == 0);
cr_expect(wct.wct_mday == 16);
cr_expect(wct.wct_hour == 18);
cr_expect(wct.wct_min == 23);
cr_expect(wct.wct_sec == 12);
cr_expect(wct.wct_usec == 12345);
cr_expect(wct.wct_gmtoff == -1);
}
Test(wallclocktime, test_strptime_parses_truncated_usec)
{
WallClockTime wct = WALL_CLOCK_TIME_INIT;
gchar *end;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S.%f", "Jan 16 2019 18:23:12.012X");
cr_assert(*end == 'X');
cr_expect(wct.wct_usec == 12000);
}
Test(wallclocktime, test_strptime_parses_overflowed_usec)
{
WallClockTime wct = WALL_CLOCK_TIME_INIT;
gchar *end;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S.%f", "Jan 16 2019 18:23:12.0123456X");
cr_assert(*end == 'X');
cr_expect(wct.wct_usec == 12345);
}
Test(wallclocktime, test_strptime_usec_parse_finds_character)
{
WallClockTime wct = WALL_CLOCK_TIME_INIT;
gchar *end;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S.%f", "Jan 16 2019 18:23:12.boom");
cr_assert(end == NULL);
cr_expect(wct.wct_usec == 0);
}
Test(wallclocktime, test_strptime_percent_z_parses_rfc822_timezone)
{
WallClockTime wct = WALL_CLOCK_TIME_INIT;
gchar *end;
/* quoting RFC822:
*
* Time zone may be indicated in several ways. "UT" is Universal Time
* (formerly called "Greenwich Mean Time"); "GMT" is permitted as a
* reference to Universal Time. The military standard uses a single
* character for each zone. "Z" is Universal Time. "A" indicates one
* hour earlier, and "M" indicates 12 hours earlier; "N" is one hour
* later, and "Y" is 12 hours later. The letter "J" is not used. The
* other remaining two forms are taken from ANSI standard X3.51-1975. One
* allows explicit indication of the amount of offset from UT; the other
* uses common 3-character strings for indicating time zones in North
* America.
*/
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "Jan 16 2019 18:23:12 PST");
cr_assert(*end == 0);
cr_expect(wct.wct_year == 119);
cr_expect(wct.wct_mon == 0);
cr_expect(wct.wct_mday == 16);
cr_expect(wct.wct_hour == 18);
cr_expect(wct.wct_min == 23);
cr_expect(wct.wct_sec == 12);
cr_expect(wct.wct_usec == 0);
cr_expect(wct.wct_gmtoff == -8*3600, "Unexpected timezone offset: %ld, expected -8*3600", wct.wct_gmtoff);
/* white space in front of the timezone is skipped with %z */
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S%z", "Jan 16 2019 18:23:12 PST");
cr_expect(wct.wct_gmtoff == -8*3600, "Unexpected timezone offset: %ld, expected -8*3600", wct.wct_gmtoff);
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S%z", "Jan 16 2019 18:23:12PST");
cr_expect(wct.wct_gmtoff == -8*3600, "Unexpected timezone offset: %ld, expected -8*3600", wct.wct_gmtoff);
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "Jan 16 2019 18:23:12 EDT");
cr_expect(wct.wct_gmtoff == -4*3600, "Unexpected timezone offset: %ld, expected -4*3600", wct.wct_gmtoff);
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "Jan 16 2019 18:23:12 GMT");
cr_expect(wct.wct_gmtoff == 0, "Unexpected timezone offset: %ld, expected 0", wct.wct_gmtoff);
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "Jan 16 2019 18:23:12 UTC");
cr_expect(wct.wct_gmtoff == 0, "Unexpected timezone offset: %ld, expected 0", wct.wct_gmtoff);
/* local timezone */
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "Jan 16 2019 18:23:12 CET");
cr_expect(wct.wct_gmtoff == 1*3600, "Unexpected timezone offset: %ld, expected 1*3600", wct.wct_gmtoff);
/* military zones */
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "Jan 16 2019 18:23:12 Z");
cr_expect(wct.wct_gmtoff == 0, "Unexpected timezone offset: %ld, expected 0", wct.wct_gmtoff);
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "Jan 16 2019 18:23:12 M");
cr_expect(wct.wct_gmtoff == -12*3600, "Unexpected timezone offset: %ld, expected -12*3600", wct.wct_gmtoff);
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "Jan 16 2019 18:23:12 Y");
cr_expect(wct.wct_gmtoff == 12*3600, "Unexpected timezone offset: %ld, expected 12*3600", wct.wct_gmtoff);
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "Jan 16 2019 18:23:12 J");
cr_expect(end == NULL);
/* hours only */
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "Jan 16 2019 18:23:12 +05");
cr_expect(wct.wct_gmtoff == 5*3600, "Unexpected timezone offset: %ld, expected 5*3600", wct.wct_gmtoff);
/* hours & minutes */
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "Jan 16 2019 18:23:12 +0500");
cr_expect(wct.wct_gmtoff == 5*3600, "Unexpected timezone offset: %ld, expected 5*3600", wct.wct_gmtoff);
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "Jan 16 2019 18:23:12 +05:00");
cr_expect(wct.wct_gmtoff == 5*3600, "Unexpected timezone offset: %ld, expected 5*3600", wct.wct_gmtoff);
/* non-zero minutes */
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "Jan 16 2019 18:23:12 +05:30");
cr_expect(wct.wct_gmtoff == 5*3600+30*60, "Unexpected timezone offset: %ld, expected 5*3600+30*60", wct.wct_gmtoff);
}
Test(wallclocktime, test_strptime_percent_Z_allows_timezone_to_be_optional)
{
WallClockTime wct = WALL_CLOCK_TIME_INIT;
gchar *end;
/* NOTE: %Z accepts the same formats as %z, except that it allows the timezone to be optional */
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S%Z", "Jan 16 2019 18:23:12PST");
cr_assert(*end == 0);
cr_expect(wct.wct_year == 119);
cr_expect(wct.wct_mon == 0);
cr_expect(wct.wct_mday == 16);
cr_expect(wct.wct_hour == 18);
cr_expect(wct.wct_min == 23);
cr_expect(wct.wct_sec == 12);
cr_expect(wct.wct_usec == 0);
cr_expect(wct.wct_gmtoff == -8*3600, "Unexpected timezone offset: %ld, expected -8*3600", wct.wct_gmtoff);
/* initial whitespace is not skipped */
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S%Z", "Jan 16 2019 18:23:12 PST");
cr_expect(end != NULL);
cr_expect_str_eq(end, " PST");
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %Z", "Jan 16 2019 18:23:12 PST");
cr_expect(wct.wct_gmtoff == -8*3600, "Unexpected timezone offset: %ld, expected -8*3600", wct.wct_gmtoff);
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %Z", "Jan 16 2019 18:23:12");
cr_expect(wct.wct_gmtoff == -1, "Unexpected timezone offset: %ld, expected -1", wct.wct_gmtoff);
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %Z", "Jan 16 2019 18:23:12 Y");
cr_expect(wct.wct_gmtoff == 12*3600, "Unexpected timezone offset: %ld, expected 12*3600", wct.wct_gmtoff);
/* invalid timezone offset, too short */
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %Z", "Jan 16 2019 18:23:12 +300");
cr_expect(end != NULL);
cr_expect_str_eq(end, "+300");
wct.wct_gmtoff = -1;
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %Z", "Jan 16 2019 18:23:12 +3");
cr_expect(end != NULL);
cr_expect_str_eq(end, "+3");
}
Test(wallclocktime, test_strptime_percent_Z_numeric_formats)
{
WallClockTime wct = WALL_CLOCK_TIME_INIT;
gchar *end;
/* NOTE: %Z accepts the same formats as %z, except that it allows the timezone to be optional */
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %Z", "Jan 16 2019 18:23:12 +02:00");
cr_expect(*end == '\0');
cr_expect(wct.wct_gmtoff == 2*3600, "Unexpected timezone offset: %ld, expected 2*3600", wct.wct_gmtoff);
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %Z", "Jan 16 2019 18:23:12 +0200");
cr_expect(*end == '\0');
cr_expect(wct.wct_gmtoff == 2*3600, "Unexpected timezone offset: %ld, expected 2*3600", wct.wct_gmtoff);
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %Z", "Jan 16 2019 18:23:12 +2:00");
cr_expect(*end == '\0');
cr_expect(wct.wct_gmtoff == 2*3600, "Unexpected timezone offset: %ld, expected 2*3600", wct.wct_gmtoff);
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %Z", "Jan 16 2019 18:23:12 +200");
cr_expect(*end != '\0');
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %Z", "Jan 16 2019 18:23:12 +02");
cr_expect(*end == '\0');
cr_expect(wct.wct_gmtoff == 2*3600, "Unexpected timezone offset: %ld, expected 2*3600", wct.wct_gmtoff);
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %Z", "Jan 16 2019 18:23:12 +2");
cr_expect(*end != '\0');
}
Test(wallclocktime, test_strptime_zone_parsing_takes_daylight_saving_into_account_when_using_the_local_timezone)
{
WallClockTime wct = WALL_CLOCK_TIME_INIT;
gchar *end;
/* this is a daylight saving zone name, in which case both wct.wct_isdst
* and wct.wct_gmtoff must indicate this */
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "May 7 2021 09:29:12 CEST");
cr_assert(*end == 0);
cr_expect(wct.wct_year == 121);
cr_expect(wct.wct_mon == 4);
cr_expect(wct.wct_mday == 7);
cr_expect(wct.wct_hour == 9);
cr_expect(wct.wct_min == 29);
cr_expect(wct.wct_sec == 12);
cr_expect(wct.wct_usec == 0);
cr_expect(wct.wct_isdst > 0);
cr_expect(wct.wct_gmtoff == 2*3600, "Unexpected timezone offset: %ld, expected 2*3600", wct.wct_gmtoff);
end = wall_clock_time_strptime(&wct, "%b %d %Y %H:%M:%S %z", "Feb 7 2021 09:29:12 CET");
cr_assert(*end == 0);
cr_expect(wct.wct_year == 121);
cr_expect(wct.wct_mon == 1);
cr_expect(wct.wct_mday == 7);
cr_expect(wct.wct_hour == 9);
cr_expect(wct.wct_min == 29);
cr_expect(wct.wct_sec == 12);
cr_expect(wct.wct_usec == 0);
cr_expect(wct.wct_isdst == 0);
cr_expect(wct.wct_gmtoff == 1*3600, "Unexpected timezone offset: %ld, expected 1*3600", wct.wct_gmtoff);
}
static void
_guess_missing_year(WallClockTime *wct, gint mon)
{
wct->wct_year = -1;
wct->wct_mon = mon;
wall_clock_time_guess_missing_year(wct);
}
static gboolean
_wct_year_matches(WallClockTime *wct, gint mon, gint ofs)
{
gint faked_year = 2019;
_guess_missing_year(wct, mon);
return wct->wct_year == (faked_year - 1900) + ofs;
}
static gboolean
_guessed_year_is_next_year(WallClockTime *wct, gint mon)
{
return _wct_year_matches(wct, mon, +1);
}
static gboolean
_guessed_year_is_current_year(WallClockTime *wct, gint mon)
{
return _wct_year_matches(wct, mon, 0);
}
static gboolean
_guessed_year_is_last_year(WallClockTime *wct, gint mon)
{
return _wct_year_matches(wct, mon, -1);
}
Test(wallclocktime, guess_year_returns_last_year)
{
WallClockTime wct = WALL_CLOCK_TIME_INIT;
gchar *end = wall_clock_time_strptime(&wct, "%b %d %H:%M:%S", "Jan 16 18:23:12");
cr_assert(*end == 0);
cr_assert(wct.wct_year == -1);
/* Sat Jan 19 18:58:48 CET 2019 */
fake_time(1547920728);
for (gint mon = 0; mon < 11; mon++)
cr_assert(_guessed_year_is_current_year(&wct, mon));
/* december is assumed to be from the last year */
cr_assert(_guessed_year_is_last_year(&wct, 11));
}
Test(wallclocktime, guess_year_returns_next_year)
{
WallClockTime wct = WALL_CLOCK_TIME_INIT;
gchar *end = wall_clock_time_strptime(&wct, "%b %d %H:%M:%S", "Jan 16 18:23:12");
cr_assert(*end == 0);
cr_assert(wct.wct_year == -1);
/* Thu Dec 19 22:25:44 CET 2019 */
fake_time(1576790744);
/* january assumed to be from the future year */
cr_assert(_guessed_year_is_next_year(&wct, 0));
for (gint mon = 1; mon <= 11; mon++)
cr_assert(_guessed_year_is_current_year(&wct, mon));
}
Test(wallclocktime, test_strptime_parses_without_date)
{
WallClockTime wct = WALL_CLOCK_TIME_INIT;
gchar *end;
/* Thu Dec 19 22:25:44 CET 2019 */
fake_time(1576790744);
end = wall_clock_time_strptime(&wct, "%H:%M:%S %Z", "10:30:00 CET");
wall_clock_time_guess_missing_fields(&wct);
cr_expect(end != NULL);
cr_expect(wct.wct_year == 119);
cr_expect(wct.wct_mon == 11);
cr_expect(wct.wct_mday == 19);
}
Test(wallclocktime, test_strptime_parses_without_mday)
{
WallClockTime wct = WALL_CLOCK_TIME_INIT;
gchar *end;
/* Thu Dec 19 22:25:44 CET 2019 */
fake_time(1576790744);
end = wall_clock_time_strptime(&wct, "%Y-%m %H:%M:%S %Z", "2015-03 10:30:00 CET");
wall_clock_time_guess_missing_fields(&wct);
cr_expect(end != NULL);
cr_expect(wct.wct_mday == 1);
}
Test(wallclocktime, test_strptime_parses_without_time)
{
WallClockTime wct = WALL_CLOCK_TIME_INIT;
gchar *end;
/* Thu Dec 19 22:25:44 CET 2019 */
fake_time(1576790744);
end = wall_clock_time_strptime(&wct, "%Y-%m-%d %Z", "2015-03-01 CET");
wall_clock_time_guess_missing_fields(&wct);
cr_expect(end != NULL);
cr_expect(wct.wct_hour == 0);
cr_expect(wct.wct_min == 0);
cr_expect(wct.wct_sec == 0);
}
Test(wallclocktime, test_strptime_parses_without_second)
{
WallClockTime wct = WALL_CLOCK_TIME_INIT;
gchar *end;
/* Thu Dec 19 22:25:44 CET 2019 */
fake_time(1576790744);
end = wall_clock_time_strptime(&wct, "%Y-%m-%d %H:%M %Z", "2015-03-01 10:30 CET");
wall_clock_time_guess_missing_fields(&wct);
cr_expect(end != NULL);
cr_expect(wct.wct_min == 30);
cr_expect(wct.wct_sec == 0);
}
Test(wallclocktime, test_strptime_percent_z_is_mandatory)
{
/* This imitates musl libc behavior to test a bugfix:
* if Daylight Saving Time is never used (no past, present or future tzdata), tzname[1] is the empty string.
*/
tz_mock_empty_dst_tzname = TRUE;
WallClockTime wct = WALL_CLOCK_TIME_INIT;
cr_assert_null(wall_clock_time_strptime(&wct, "%Y-%m-%d %T%z", "2011-06-25 20:00:04"));
}
static void
setup(void)
{
setenv("TZ", "CET", TRUE);
invalidate_timeutils_cache();
app_startup();
}
static void
teardown(void)
{
app_shutdown();
}
TestSuite(wallclocktime, .init = setup, .fini = teardown);
|