2 Copyright (C) 2000-2021 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <array_length.h>
24 #include <support/check.h>
25 #include <support/temp_file.h>
26 #include <support/xunistd.h>
37 {"21:01:10 1999-1-31", "Universal", {10, 1, 21, 31, 0, 99, 0, 0, 0},
39 {"21:01:10 1999-1-31", "Universal", {10, 1, 21, 31, 0, 99, 0, 0, 0},
41 {" 21:01:10 1999-1-31", "Universal", {10, 1, 21, 31, 0, 99, 0, 0, 0},
43 {"21:01:10 1999-1-31 ", "Universal", {10, 1, 21, 31, 0, 99, 0, 0, 0},
45 {" 21:01:10 1999-1-31 ", "Universal", {10, 1, 21, 31, 0, 99, 0, 0, 0},
47 {"21:01:10 1999-2-28", "Universal", {10, 1, 21, 28, 1, 99, 0, 0, 0},
49 {"16:30:46 2000-2-29", "Universal", {46, 30,16, 29, 1, 100, 0, 0, 0},
51 {"01-08-2000 05:06:07", "Europe/Berlin", {7, 6, 5, 1, 7, 100, 0, 0, 0},
54 /* 64 bit time_t tests. */
55 {"21:01:10 2038-1-31", "Universal", {10, 1, 21, 31, 0, 138, 0, 0, 0},
57 {"22:01:10 2048-5-20", "Universal", {10, 1, 22, 20, 4, 148, 0, 0, 0},
59 {"01-08-2038 05:06:07", "Europe/Berlin", {7, 6, 5, 1, 7, 138, 0, 0, 0},
61 {"20-03-2050 21:30:08", "Europe/Berlin", {8, 30, 21, 20, 2, 150, 0, 0, 0},
66 report_date_error (void)
71 return "The environment variable DATEMSK is not defined or null.";
73 return "The template file denoted by the DATEMSK environment variable "
76 return "Information about the template file cannot retrieved.";
78 return "The template file is not a regular file.\n";
80 return "An I/O error occurred while reading the template file.";
82 return "Not enough memory available to execute the function.";
84 return "The template file contains no matching template.";
86 return "The input date is invalid, but would match a template "
89 return "Unknown error code.";
94 static const char datemskstr
[] =
99 do_prepare (int argc
, char **argv
)
101 int fd
= create_temp_file ("tst-chk1.", &datemsk
);
102 xwrite (fd
, datemskstr
, sizeof (datemskstr
) - 1);
104 setenv ("DATEMSK", datemsk
, 1);
106 #define PREPARE do_prepare
113 for (int i
= 0; i
< array_length (tests
); ++i
)
115 setenv ("TZ", tests
[i
].tz
, 1);
117 tm
= getdate (tests
[i
].str
);
118 TEST_COMPARE (getdate_err
, 0);
119 if (getdate_err
!= 0)
121 support_record_failure ();
122 printf ("%s\n", report_date_error ());
126 TEST_COMPARE (tests
[i
].tm
.tm_mon
, tm
->tm_mon
);
127 TEST_COMPARE (tests
[i
].tm
.tm_year
, tm
->tm_year
);
128 TEST_COMPARE (tests
[i
].tm
.tm_mday
, tm
->tm_mday
);
129 TEST_COMPARE (tests
[i
].tm
.tm_hour
, tm
->tm_hour
);
130 TEST_COMPARE (tests
[i
].tm
.tm_min
, tm
->tm_min
);
131 TEST_COMPARE (tests
[i
].tm
.tm_sec
, tm
->tm_sec
);
135 TEST_COMPARE (getdate_r (tests
[i
].str
, &tms
), 0);
136 if (getdate_err
== 0)
138 TEST_COMPARE (tests
[i
].tm
.tm_mon
, tms
.tm_mon
);
139 TEST_COMPARE (tests
[i
].tm
.tm_year
, tms
.tm_year
);
140 TEST_COMPARE (tests
[i
].tm
.tm_mday
, tms
.tm_mday
);
141 TEST_COMPARE (tests
[i
].tm
.tm_hour
, tms
.tm_hour
);
142 TEST_COMPARE (tests
[i
].tm
.tm_min
, tms
.tm_min
);
143 TEST_COMPARE (tests
[i
].tm
.tm_sec
, tms
.tm_sec
);
150 #include <support/test-driver.c>