2 Copyright (C) 2000-2023 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>
39 {"21:01:10 1999-1-31", "Universal", {10, 1, 21, 31, 0, 99, 0, 30, 0},
41 {"21:01:10 1999-1-31", "Universal", {10, 1, 21, 31, 0, 99, 0, 30, 0},
43 {" 21:01:10 1999-1-31", "Universal", {10, 1, 21, 31, 0, 99, 0, 30, 0},
45 {"21:01:10 1999-1-31 ", "Universal", {10, 1, 21, 31, 0, 99, 0, 30, 0},
47 {" 21:01:10 1999-1-31 ", "Universal", {10, 1, 21, 31, 0, 99, 0, 30, 0},
49 {"21:01:10 1999-2-28", "Universal", {10, 1, 21, 28, 1, 99, 0, 58, 0},
51 {"16:30:46 2000-2-29", "Universal", {46, 30,16, 29, 1, 100, 2, 59, 0},
53 {"01-08-2000 05:06:07", "Europe/Berlin", {7, 6, 5, 1, 7, 100, 2, 213, 0},
55 {"01-08-2000 05:06:07", "Europe/Berlin", {7, 6, 5, 1, 7, 100, 2, 213, 0},
57 {"01-08-2000 a 05:06:07", "Europe/Berlin", {0, 0, 0, 0, 0, 0, 0, 0, 0},
59 {" 12 AM ", "Europe/Berlin", {0, 0, 0, 0, 0, 0, 0, 0, 0},
61 {"01-01-1900 2 PM", "Universal", {0, 0, 14, 1, 0, 0, 1, 0, 0},
63 {"12-12-1850 16h", "Universal", {0, 0, 16, 12, 11, -50, 4, 345, 0},
65 {"12/31/93 21:35", "Universal", {0, 35, 21, 31, 11, 93, 5, 364, 0},
68 /* 64 bit time_t tests. */
69 {"21:01:10 2038-1-31", "Universal", {10, 1, 21, 31, 0, 138, 0, 30, 0},
71 {"22:01:10 2048-5-20", "Universal", {10, 1, 22, 20, 4, 148, 3, 140, 0},
73 {"01-08-2038 05:06:07", "Europe/Berlin", {7, 6, 5, 1, 7, 138, 0, 212, 0},
75 {"20-03-2050 21:30:08", "Europe/Berlin", {8, 30, 21, 20, 2, 150, 0, 78, 0},
80 report_date_error (void)
85 return "The environment variable DATEMSK is not defined or null.";
87 return "The template file denoted by the DATEMSK environment variable "
90 return "Information about the template file cannot retrieved.";
92 return "The template file is not a regular file.\n";
94 return "An I/O error occurred while reading the template file.";
96 return "Not enough memory available to execute the function.";
98 return "The template file contains no matching template.";
100 return "The input date is invalid, but would match a template "
103 return "Unknown error code.";
107 static char *datemsk
;
108 static const char datemskstr
[] =
117 do_prepare (int argc
, char **argv
)
119 int fd
= create_temp_file ("tst-getdate.", &datemsk
);
120 xwrite (fd
, datemskstr
, sizeof (datemskstr
) - 1);
122 setenv ("DATEMSK", datemsk
, 1);
124 #define PREPARE do_prepare
131 for (int i
= 0; i
< array_length (tests
); ++i
)
133 setenv ("TZ", tests
[i
].tz
, 1);
135 tm
= getdate (tests
[i
].str
);
137 /* Only check getdate_err when tm is NULL as getdate doesn't set
138 getdate_err on success. */
141 TEST_COMPARE (getdate_err
, tests
[i
].err_val
);
142 if (getdate_err
!= tests
[i
].err_val
)
143 printf ("%s\n", report_date_error ());
145 if (tests
[i
].err_val
!= 0) /* Expected failure */
147 TEST_VERIFY (tm
== NULL
);
151 if (tests
[i
].check_tm
)
153 TEST_COMPARE (tests
[i
].tm
.tm_mon
, tm
->tm_mon
);
154 TEST_COMPARE (tests
[i
].tm
.tm_year
, tm
->tm_year
);
155 TEST_COMPARE (tests
[i
].tm
.tm_mday
, tm
->tm_mday
);
156 TEST_COMPARE (tests
[i
].tm
.tm_hour
, tm
->tm_hour
);
157 TEST_COMPARE (tests
[i
].tm
.tm_min
, tm
->tm_min
);
158 TEST_COMPARE (tests
[i
].tm
.tm_sec
, tm
->tm_sec
);
159 TEST_COMPARE (tests
[i
].tm
.tm_wday
, tm
->tm_wday
);
160 TEST_COMPARE (tests
[i
].tm
.tm_yday
, tm
->tm_yday
);
164 int retval
= getdate_r (tests
[i
].str
, &tms
);
165 TEST_COMPARE (retval
, tests
[i
].err_val
);
166 if (retval
== tests
[i
].err_val
&& tests
[i
].check_tm
)
168 TEST_COMPARE (tests
[i
].tm
.tm_mon
, tms
.tm_mon
);
169 TEST_COMPARE (tests
[i
].tm
.tm_year
, tms
.tm_year
);
170 TEST_COMPARE (tests
[i
].tm
.tm_mday
, tms
.tm_mday
);
171 TEST_COMPARE (tests
[i
].tm
.tm_hour
, tms
.tm_hour
);
172 TEST_COMPARE (tests
[i
].tm
.tm_min
, tms
.tm_min
);
173 TEST_COMPARE (tests
[i
].tm
.tm_sec
, tms
.tm_sec
);
174 TEST_COMPARE (tests
[i
].tm
.tm_wday
, tms
.tm_wday
);
175 TEST_COMPARE (tests
[i
].tm
.tm_yday
, tms
.tm_yday
);
182 #include <support/test-driver.c>