1 /* Test that nstrftime works as required.
2 Copyright (C) 2011-2020 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Jim Meyering. */
33 #define STREQ(a, b) (strcmp (a, b) == 0)
35 /* Support for settings like TZ='<+00>0' was added in IEEE Std 1003.1-2001. */
36 #define TZ_ANGLE_BRACKETS_SHOULD_WORK (200112 <= _POSIX_VERSION)
46 static struct posixtm_test
const T
[] =
48 { 1300000000, 0, "%F", "2011-03-13" },
49 { 0, 10, "%T.%N", "00:00:00.000000010" },
50 { 56, 123456789, "%T.%12N", "00:00:56.123456789000" },
60 for (i
= 0; T
[i
].fmt
; i
++)
64 struct tm
*tm
= gmtime (&t
);
69 n
= nstrftime (buf
, sizeof buf
, T
[i
].fmt
, tm
, 0, T
[i
].in_ns
);
73 printf ("nstrftime failed with format %s\n", T
[i
].fmt
);
76 if (! STREQ (buf
, T
[i
].exp
))
79 printf ("%s: result mismatch: got %s, expected %s\n",
80 T
[i
].fmt
, buf
, T
[i
].exp
);
93 static struct tzalloc_test TZ
[] =
96 { 0, "PST8PDT,M3.2.0,M11.1.0" },
102 { 0, "CET-1CEST,M3.5.0,M10.5.0/3" },
106 { 0, "NZST-12NZDT,M9.5.0,M4.1.0/3" },
112 struct localtime_rz_test
114 /* Input parameters. */
115 struct tzalloc_test
*tza
;
118 /* Expected result. */
121 /* Determines if an incorrectly unset tm_isdst
122 results in failure or just a warning. */
126 static struct localtime_rz_test LT
[] =
128 { TZ
+Pacific
, 0, "1969-12-31 16:00:00 -0800 (PST)", 0 },
129 { TZ
+Arizona
, 0, "1969-12-31 17:00:00 -0700 (MST)", 0 },
130 { TZ
+UTC
, 0, "1970-01-01 00:00:00 +0000 (UTC)", 0 },
131 { TZ
+CentEur
, 0, "1970-01-01 01:00:00 +0100 (CET)", 0 },
132 { TZ
+Japan
, 0, "1970-01-01 09:00:00 +0900 (JST)", 0 },
133 { TZ
+NZ
, 0, "1970-01-01 13:00:00 +1300 (NZDT)", 1 },
134 { TZ
+Pacific
, 500000001, "1985-11-04 16:53:21 -0800 (PST)", 0 },
135 { TZ
+Arizona
, 500000001, "1985-11-04 17:53:21 -0700 (MST)", 0 },
136 { TZ
+UTC
, 500000001, "1985-11-05 00:53:21 +0000 (UTC)", 0 },
137 { TZ
+CentEur
, 500000001, "1985-11-05 01:53:21 +0100 (CET)", 1 },
138 { TZ
+Japan
, 500000001, "1985-11-05 09:53:21 +0900 (JST)", 0 },
139 { TZ
+NZ
, 500000001, "1985-11-05 13:53:21 +1300 (NZDT)", 0 },
140 { TZ
+Pacific
, 1000000002, "2001-09-08 18:46:42 -0700 (PDT)", 0 },
141 { TZ
+Arizona
, 1000000002, "2001-09-08 18:46:42 -0700 (MST)", 0 },
142 { TZ
+UTC
, 1000000002, "2001-09-09 01:46:42 +0000 (UTC)", 0 },
143 { TZ
+CentEur
, 1000000002, "2001-09-09 03:46:42 +0200 (CEST)", 0 },
144 { TZ
+Japan
, 1000000002, "2001-09-09 10:46:42 +0900 (JST)", 0 },
145 { TZ
+NZ
, 1000000002, "2001-09-09 13:46:42 +1200 (NZST)", 0 },
146 #if TZ_ANGLE_BRACKETS_SHOULD_WORK
147 { TZ
+Unknown
, 0, "1970-01-01 00:00:00 -0000 (-00)", 0 },
148 { TZ
+Unknown
, 500000001, "1985-11-05 00:53:21 -0000 (-00)", 0 },
149 { TZ
+Unknown
, 1000000002, "2001-09-09 01:46:42 -0000 (-00)", 0 },
160 for (i
= 0; LT
[i
].tza
; i
++)
162 struct tzalloc_test
*tza
= LT
[i
].tza
;
164 timezone_t tz
= tza
->tz
;
166 static char const format
[] = "%Y-%m-%d %H:%M:%S %z (%Z)";
171 if (!tz
&& tza
->setting
)
173 tz
= tzalloc (tza
->setting
);
177 printf ("%s: tzalloc: %s\n", TZ
[i
].setting
, strerror (errno
));
183 setting
= tza
->setting
? tza
->setting
: "UTC0";
185 if (!localtime_rz (tz
, <
[i
].t
, &tm
))
188 printf ("%s: %ld: localtime_rz: %s\n", setting
, lt
,
193 n
= nstrftime (buf
, sizeof buf
, format
, &tm
, tz
, 0);
197 printf ("%s: %ld: nstrftime failed\n", setting
, lt
);
201 if (! (STREQ (buf
, LT
[i
].exp
)
202 || (!tz
&& n
== strlen (LT
[i
].exp
)
203 && memcmp (buf
, LT
[i
].exp
, n
- sizeof "(GMT)" + 1) == 0
204 && STREQ (buf
+ n
- sizeof "(GMT)" + 1, "(GMT)"))))
206 /* Don't fail for unhandled dst in ahistorical entries,
207 as gnulib doesn't currently fix that issue, seen on Darwin 14. */
208 if (!LT
[i
].ahistorical
|| tm
.tm_isdst
)
210 printf ("%s: expected \"%s\", got \"%s\"\n",
211 setting
, LT
[i
].exp
, buf
);
226 for (mon
= 1; mon
<= 12; mon
++)
230 struct tm qtm
= { .tm_mon
= mon
- 1 };
231 char fmt
[3] = {'%','q','\0'};
233 size_t r
= nstrftime (out
, sizeof (out
), fmt
, &qtm
, 0, 0);
236 puts ("nstrftime(\"%q\") failed");
241 exp
[0] = mon
< 4 ? '1' : mon
< 7 ? '2' : mon
< 10 ? '3' : '4';
242 if (strcmp (out
, exp
) != 0)
244 printf ("nstrftime %%q: expected \"%s\", got \"%s\"\n", exp
, out
);
257 struct tm tm
= { .tm_year
= 2020 - 1900, .tm_mday
= 1 };
258 char buf
[INT_BUFSIZE_BOUND (time_t)];
260 int bigyear
= LLONG_MAX
- 1900 < INT_MAX
? LLONG_MAX
- 1900 : INT_MAX
;
263 n
= nstrftime (buf
, 0, "%m", &tm
, 0, 0);
264 if (! (n
== 0 && errno
== ERANGE
))
267 printf ("nstrftime failed to set errno = ERANGE\n");
271 n
= nstrftime (buf
, sizeof buf
, "", &tm
, 0, 0);
272 if (! (n
== 0 && errno
== 0))
275 printf ("nstrftime failed to leave errno alone\n");
279 tm
.tm_year
= bigyear
;
281 n
= nstrftime (buf
, sizeof buf
, "%s", &tm
, 0, 0);
284 if (errno
!= EOVERFLOW
)
287 printf ("nstrftime failed to set errno = EOVERFLOW\n");
290 if (mktime_z (0, &tm
) != (time_t) -1)
293 printf ("nstrftime %%s failed but mktime_z worked for tm_year=%d\n",
299 long long int text_seconds
= atoll (buf
);
300 if (text_seconds
<= (LLONG_MAX
- 1 < TYPE_MAXIMUM (time_t)
301 ? LLONG_MAX
- 1 : TYPE_MAXIMUM (time_t)))
303 time_t bigtime
= text_seconds
;
304 struct tm
*tmp
= gmtime (&bigtime
);
308 printf ("gmtime failed on nstrftime result\n");
312 char buf1
[sizeof buf
];
313 size_t n1
= nstrftime (buf1
, sizeof buf1
, "%s", tmp
, 0, 0);
315 if (! STREQ (buf
, buf1
))
318 printf ("nstrftime %%s first returned '%s', then '%s'\n",
332 fail
|= posixtm_test ();
333 fail
|= tzalloc_test ();
334 fail
|= quarter_test ();
335 fail
|= errno_test ();
341 indent-tabs-mode: nil