2000-03-03 19:49:23 +00:00
|
|
|
/* Test for getdate.
|
2024-01-01 18:12:26 +00:00
|
|
|
Copyright (C) 2000-2024 Free Software Foundation, Inc.
|
2000-03-03 19:49:23 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
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.
|
2000-03-03 19:49:23 +00:00
|
|
|
|
|
|
|
The GNU C 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
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
2000-03-03 19:49:23 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2000-03-03 19:49:23 +00:00
|
|
|
|
2021-03-01 20:10:26 +00:00
|
|
|
#include <array_length.h>
|
|
|
|
#include <stdbool.h>
|
2000-03-03 19:49:23 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2021-03-01 20:10:26 +00:00
|
|
|
#include <support/check.h>
|
|
|
|
#include <support/temp_file.h>
|
|
|
|
#include <support/xunistd.h>
|
2000-03-03 19:49:23 +00:00
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
static const struct
|
|
|
|
{
|
|
|
|
const char *str;
|
2001-07-18 09:43:36 +00:00
|
|
|
const char *tz;
|
2000-03-03 19:49:23 +00:00
|
|
|
struct tm tm;
|
2021-03-01 20:10:26 +00:00
|
|
|
bool time64;
|
2023-06-12 15:39:00 +00:00
|
|
|
int err_val;
|
|
|
|
bool check_tm;
|
2000-03-03 19:49:23 +00:00
|
|
|
} tests [] =
|
|
|
|
{
|
2023-06-19 14:05:21 +00:00
|
|
|
{"21:01:10 1999-1-31", "Universal", {10, 1, 21, 31, 0, 99, 0, 30, 0},
|
2023-06-12 15:39:00 +00:00
|
|
|
false , 0, true},
|
2023-06-19 14:05:21 +00:00
|
|
|
{"21:01:10 1999-1-31", "Universal", {10, 1, 21, 31, 0, 99, 0, 30, 0},
|
2023-06-12 15:39:00 +00:00
|
|
|
false , 0, true},
|
2023-06-19 14:05:21 +00:00
|
|
|
{" 21:01:10 1999-1-31", "Universal", {10, 1, 21, 31, 0, 99, 0, 30, 0},
|
2023-06-12 15:39:00 +00:00
|
|
|
false , 0, true},
|
2023-06-19 14:05:21 +00:00
|
|
|
{"21:01:10 1999-1-31 ", "Universal", {10, 1, 21, 31, 0, 99, 0, 30, 0},
|
2023-06-12 15:39:00 +00:00
|
|
|
false , 0, true},
|
2023-06-19 14:05:21 +00:00
|
|
|
{" 21:01:10 1999-1-31 ", "Universal", {10, 1, 21, 31, 0, 99, 0, 30, 0},
|
2023-06-12 15:39:00 +00:00
|
|
|
false , 0, true},
|
2023-06-19 14:05:21 +00:00
|
|
|
{"21:01:10 1999-2-28", "Universal", {10, 1, 21, 28, 1, 99, 0, 58, 0},
|
2023-06-12 15:39:00 +00:00
|
|
|
false , 0, true},
|
2023-06-19 14:05:21 +00:00
|
|
|
{"16:30:46 2000-2-29", "Universal", {46, 30,16, 29, 1, 100, 2, 59, 0},
|
2023-06-12 15:39:00 +00:00
|
|
|
false , 0, true},
|
2023-06-19 14:05:21 +00:00
|
|
|
{"01-08-2000 05:06:07", "Europe/Berlin", {7, 6, 5, 1, 7, 100, 2, 213, 0},
|
2023-06-12 15:39:00 +00:00
|
|
|
false , 0, true},
|
2023-06-19 14:05:21 +00:00
|
|
|
{"01-08-2000 05:06:07", "Europe/Berlin", {7, 6, 5, 1, 7, 100, 2, 213, 0},
|
2023-06-12 15:39:00 +00:00
|
|
|
false , 0, true},
|
|
|
|
{"01-08-2000 a 05:06:07", "Europe/Berlin", {0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
false , 7, false},
|
|
|
|
{" 12 AM ", "Europe/Berlin", {0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
false , 0, false},
|
2023-06-19 14:05:21 +00:00
|
|
|
{"01-01-1900 2 PM", "Universal", {0, 0, 14, 1, 0, 0, 1, 0, 0},
|
|
|
|
false, 0, true},
|
|
|
|
{"12-12-1850 16h", "Universal", {0, 0, 16, 12, 11, -50, 4, 345, 0},
|
|
|
|
false, 0, true},
|
|
|
|
{"12/31/93 21:35", "Universal", {0, 35, 21, 31, 11, 93, 5, 364, 0},
|
|
|
|
false, 0, true},
|
2021-03-01 20:10:26 +00:00
|
|
|
|
|
|
|
/* 64 bit time_t tests. */
|
2023-06-19 14:05:21 +00:00
|
|
|
{"21:01:10 2038-1-31", "Universal", {10, 1, 21, 31, 0, 138, 0, 30, 0},
|
2023-06-12 15:39:00 +00:00
|
|
|
true , 0, true},
|
2023-06-19 14:05:21 +00:00
|
|
|
{"22:01:10 2048-5-20", "Universal", {10, 1, 22, 20, 4, 148, 3, 140, 0},
|
2023-06-12 15:39:00 +00:00
|
|
|
true , 0, true},
|
2023-06-19 14:05:21 +00:00
|
|
|
{"01-08-2038 05:06:07", "Europe/Berlin", {7, 6, 5, 1, 7, 138, 0, 212, 0},
|
2023-06-12 15:39:00 +00:00
|
|
|
true , 0, true},
|
2023-06-19 14:05:21 +00:00
|
|
|
{"20-03-2050 21:30:08", "Europe/Berlin", {8, 30, 21, 20, 2, 150, 0, 78, 0},
|
2023-06-12 15:39:00 +00:00
|
|
|
true , 0, true}
|
2000-03-03 19:49:23 +00:00
|
|
|
};
|
|
|
|
|
2021-03-01 20:10:26 +00:00
|
|
|
static const char *
|
|
|
|
report_date_error (void)
|
2000-03-03 19:49:23 +00:00
|
|
|
{
|
2021-03-01 20:10:26 +00:00
|
|
|
switch (getdate_err)
|
2000-03-03 19:49:23 +00:00
|
|
|
{
|
|
|
|
case 1:
|
2021-03-01 20:10:26 +00:00
|
|
|
return "The environment variable DATEMSK is not defined or null.";
|
2000-03-03 19:49:23 +00:00
|
|
|
case 2:
|
2021-03-01 20:10:26 +00:00
|
|
|
return "The template file denoted by the DATEMSK environment variable "
|
|
|
|
"cannot be opened.";
|
2000-03-03 19:49:23 +00:00
|
|
|
case 3:
|
2021-03-01 20:10:26 +00:00
|
|
|
return "Information about the template file cannot retrieved.";
|
2000-03-03 19:49:23 +00:00
|
|
|
case 4:
|
2021-03-01 20:10:26 +00:00
|
|
|
return "The template file is not a regular file.\n";
|
2000-03-03 19:49:23 +00:00
|
|
|
case 5:
|
2021-03-01 20:10:26 +00:00
|
|
|
return "An I/O error occurred while reading the template file.";
|
2000-03-03 19:49:23 +00:00
|
|
|
case 6:
|
2021-03-01 20:10:26 +00:00
|
|
|
return "Not enough memory available to execute the function.";
|
2000-03-03 19:49:23 +00:00
|
|
|
case 7:
|
2021-03-01 20:10:26 +00:00
|
|
|
return "The template file contains no matching template.";
|
2000-03-03 19:49:23 +00:00
|
|
|
case 8:
|
2021-03-01 20:10:26 +00:00
|
|
|
return "The input date is invalid, but would match a template "
|
|
|
|
"otherwise.";
|
2000-03-03 19:49:23 +00:00
|
|
|
default:
|
2021-03-01 20:10:26 +00:00
|
|
|
return "Unknown error code.";
|
2000-03-03 19:49:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-01 20:10:26 +00:00
|
|
|
static char *datemsk;
|
|
|
|
static const char datemskstr[] =
|
|
|
|
"%H:%M:%S %F\n"
|
2023-06-12 15:39:00 +00:00
|
|
|
"%d-%m-%Y %T\n"
|
2023-06-19 14:05:21 +00:00
|
|
|
"%I %p\n"
|
|
|
|
"%d-%m-%Y %I %p\n"
|
|
|
|
"%d-%m-%Y %H%nh\n"
|
|
|
|
"%D %R\n";
|
2021-03-01 20:10:26 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
do_prepare (int argc, char **argv)
|
|
|
|
{
|
2023-06-09 11:58:04 +00:00
|
|
|
int fd = create_temp_file ("tst-getdate.", &datemsk);
|
2021-03-01 20:10:26 +00:00
|
|
|
xwrite (fd, datemskstr, sizeof (datemskstr) - 1);
|
|
|
|
|
|
|
|
setenv ("DATEMSK", datemsk, 1);
|
|
|
|
}
|
|
|
|
#define PREPARE do_prepare
|
2000-03-03 19:49:23 +00:00
|
|
|
|
2014-11-05 09:54:08 +00:00
|
|
|
static int
|
|
|
|
do_test (void)
|
2000-03-03 19:49:23 +00:00
|
|
|
{
|
|
|
|
struct tm *tm;
|
2000-08-20 10:32:05 +00:00
|
|
|
|
2021-03-01 20:10:26 +00:00
|
|
|
for (int i = 0; i < array_length (tests); ++i)
|
2000-03-03 19:49:23 +00:00
|
|
|
{
|
2001-07-18 09:43:36 +00:00
|
|
|
setenv ("TZ", tests[i].tz, 1);
|
2002-09-24 04:24:25 +00:00
|
|
|
|
2021-03-01 20:10:26 +00:00
|
|
|
tm = getdate (tests[i].str);
|
2023-06-12 15:39:00 +00:00
|
|
|
|
|
|
|
/* Only check getdate_err when tm is NULL as getdate doesn't set
|
|
|
|
getdate_err on success. */
|
|
|
|
if (tm == NULL)
|
|
|
|
{
|
|
|
|
TEST_COMPARE (getdate_err, tests[i].err_val);
|
|
|
|
if (getdate_err != tests[i].err_val)
|
|
|
|
printf ("%s\n", report_date_error ());
|
|
|
|
}
|
|
|
|
if (tests[i].err_val != 0) /* Expected failure */
|
2000-03-03 19:49:23 +00:00
|
|
|
{
|
2023-06-12 15:39:00 +00:00
|
|
|
TEST_VERIFY (tm == NULL);
|
|
|
|
continue;
|
2000-03-03 19:49:23 +00:00
|
|
|
}
|
2023-06-12 15:39:00 +00:00
|
|
|
|
|
|
|
if (tests[i].check_tm)
|
2021-03-01 20:10:26 +00:00
|
|
|
{
|
|
|
|
TEST_COMPARE (tests[i].tm.tm_mon, tm->tm_mon);
|
|
|
|
TEST_COMPARE (tests[i].tm.tm_year, tm->tm_year);
|
|
|
|
TEST_COMPARE (tests[i].tm.tm_mday, tm->tm_mday);
|
|
|
|
TEST_COMPARE (tests[i].tm.tm_hour, tm->tm_hour);
|
|
|
|
TEST_COMPARE (tests[i].tm.tm_min, tm->tm_min);
|
|
|
|
TEST_COMPARE (tests[i].tm.tm_sec, tm->tm_sec);
|
2023-06-19 14:05:21 +00:00
|
|
|
TEST_COMPARE (tests[i].tm.tm_wday, tm->tm_wday);
|
|
|
|
TEST_COMPARE (tests[i].tm.tm_yday, tm->tm_yday);
|
2021-03-01 20:10:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct tm tms;
|
2023-06-12 15:39:00 +00:00
|
|
|
int retval = getdate_r (tests[i].str, &tms);
|
|
|
|
TEST_COMPARE (retval, tests[i].err_val);
|
|
|
|
if (retval == tests[i].err_val && tests[i].check_tm)
|
2000-03-03 19:49:23 +00:00
|
|
|
{
|
2021-03-01 20:10:26 +00:00
|
|
|
TEST_COMPARE (tests[i].tm.tm_mon, tms.tm_mon);
|
|
|
|
TEST_COMPARE (tests[i].tm.tm_year, tms.tm_year);
|
|
|
|
TEST_COMPARE (tests[i].tm.tm_mday, tms.tm_mday);
|
|
|
|
TEST_COMPARE (tests[i].tm.tm_hour, tms.tm_hour);
|
|
|
|
TEST_COMPARE (tests[i].tm.tm_min, tms.tm_min);
|
|
|
|
TEST_COMPARE (tests[i].tm.tm_sec, tms.tm_sec);
|
2023-06-19 14:05:21 +00:00
|
|
|
TEST_COMPARE (tests[i].tm.tm_wday, tms.tm_wday);
|
|
|
|
TEST_COMPARE (tests[i].tm.tm_yday, tms.tm_yday);
|
2000-03-03 19:49:23 +00:00
|
|
|
}
|
|
|
|
}
|
2000-08-20 10:32:05 +00:00
|
|
|
|
2021-03-01 20:10:26 +00:00
|
|
|
return 0;
|
2000-03-03 19:49:23 +00:00
|
|
|
}
|
2014-11-05 09:54:08 +00:00
|
|
|
|
2021-03-01 20:10:26 +00:00
|
|
|
#include <support/test-driver.c>
|