source: branches/libc-0.6/src/libctests/glibc/time/tst-strptime.c

Last change on this file was 2076, checked in by bird, 20 years ago

libc adjustments. extending some testcases.

  • Property cvs2svn:cvs-rev set to 1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 5.2 KB
Line 
1/* Test for strptime.
2 Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
5
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
20
21#include <locale.h>
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <time.h>
26
27
28static const struct
29{
30 const char *locale;
31 const char *input;
32 const char *format;
33 int wday;
34 int yday;
35 int mon;
36 int mday;
37} day_tests[] =
38{
39 { "C", "2000-01-01", "%Y-%m-%d", 6, 0, 0, 1 },
40 { "C", "03/03/00", "%D", 5, 62, 2, 3 },
41 { "C", "9/9/99", "%x", 4, 251, 8, 9 },
42 { "C", "19990502123412", "%Y%m%d%H%M%S", 0, 121, 4, 2 },
43 { "C", "2001 20 Mon", "%Y %U %a", 1, 140, 4, 21 },
44 { "C", "2001 21 Mon", "%Y %W %a", 1, 140, 4, 21 },
45 { "ja_JP.EUC-JP", "2000-01-01 08:12:21 AM", "%Y-%m-%d %I:%M:%S %p",
46 6, 0, 0, 1 },
47 { "en_US.ISO-8859-1", "2000-01-01 08:12:21 PM", "%Y-%m-%d %I:%M:%S %p",
48 6, 0, 0, 1 },
49#ifndef __EMX__ /* locale mismatch */
50 { "ja_JP.EUC-JP", "2001 20 \xb7\xee", "%Y %U %a", 1, 140, 4, 21 },
51 { "ja_JP.EUC-JP", "2001 21 \xb7\xee", "%Y %W %a", 1, 140, 4, 21 },
52#endif
53};
54
55
56static const struct
57{
58 const char *input;
59 const char *format;
60 const char *output;
61 int wday;
62 int yday;
63} tm_tests [] =
64{
65 {"17410105012000", "%H%M%S%d%m%Y", "2000-01-05 17:41:01", 3, 4}
66};
67
68
69
70static int
71test_tm (void)
72{
73 struct tm tm;
74 size_t i;
75 int result = 0;
76 char buf[100];
77
78 for (i = 0; i < sizeof (tm_tests) / sizeof (tm_tests[0]); ++i)
79 {
80 memset (&tm, '\0', sizeof (tm));
81
82 char *ret = strptime (tm_tests[i].input, tm_tests[i].format, &tm);
83 if (ret == NULL)
84 {
85 printf ("strptime returned NULL for `%s'\n", tm_tests[i].input);
86 result = 1;
87 continue;
88 }
89 else if (*ret != '\0')
90 {
91 printf ("not all of `%s' read\n", tm_tests[i].input);
92 result = 1;
93 }
94 strftime (buf, sizeof (buf), "%F %T", &tm);
95 printf ("strptime (\"%s\", \"%s\", ...)\n"
96 "\tshould be: %s, wday = %d, yday = %3d\n"
97 "\t is: %s, wday = %d, yday = %3d\n",
98 tm_tests[i].input, tm_tests[i].format,
99 tm_tests[i].output,
100 tm_tests[i].wday, tm_tests[i].yday,
101 buf, tm.tm_wday, tm.tm_yday);
102
103 if (strcmp (buf, tm_tests[i].output) != 0)
104 {
105 printf ("Time and date are not correct.\n");
106 result = 1;
107 }
108 if (tm.tm_wday != tm_tests[i].wday)
109 {
110 printf ("weekday for `%s' incorrect: %d instead of %d\n",
111 tm_tests[i].input, tm.tm_wday, tm_tests[i].wday);
112 result = 1;
113 }
114 if (tm.tm_yday != tm_tests[i].yday)
115 {
116 printf ("yearday for `%s' incorrect: %d instead of %d\n",
117 tm_tests[i].input, tm.tm_yday, tm_tests[i].yday);
118 result = 1;
119 }
120 }
121
122 return result;
123}
124
125
126int
127main (int argc, char *argv[])
128{
129 struct tm tm;
130 size_t i;
131 int result = 0;
132
133 for (i = 0; i < sizeof (day_tests) / sizeof (day_tests[0]); ++i)
134 {
135 memset (&tm, '\0', sizeof (tm));
136
137 if (setlocale (LC_ALL, day_tests[i].locale) == NULL)
138 {
139 printf ("cannot set locale %s: %m\n", day_tests[i].locale);
140 exit (EXIT_FAILURE);
141 }
142
143 char *ret = strptime (day_tests[i].input, day_tests[i].format, &tm);
144 if (ret == NULL)
145 {
146 printf ("strptime returned NULL for `%s'\n", day_tests[i].input);
147 result = 1;
148 continue;
149 }
150 else if (*ret != '\0')
151 {
152 printf ("not all of `%s' read\n", day_tests[i].input);
153 result = 1;
154 }
155
156 printf ("strptime (\"%s\", \"%s\", ...)\n"
157 "\tshould be: wday = %d, yday = %3d, mon = %2d, mday = %2d\n"
158 "\t is: wday = %d, yday = %3d, mon = %2d, mday = %2d\n",
159 day_tests[i].input, day_tests[i].format,
160 day_tests[i].wday, day_tests[i].yday,
161 day_tests[i].mon, day_tests[i].mday,
162 tm.tm_wday, tm.tm_yday, tm.tm_mon, tm.tm_mday);
163
164 if (tm.tm_wday != day_tests[i].wday)
165 {
166 printf ("weekday for `%s' incorrect: %d instead of %d\n",
167 day_tests[i].input, tm.tm_wday, day_tests[i].wday);
168 result = 1;
169 }
170 if (tm.tm_yday != day_tests[i].yday)
171 {
172 printf ("yearday for `%s' incorrect: %d instead of %d\n",
173 day_tests[i].input, tm.tm_yday, day_tests[i].yday);
174 result = 1;
175 }
176 if (tm.tm_mon != day_tests[i].mon)
177 {
178 printf ("month for `%s' incorrect: %d instead of %d\n",
179 day_tests[i].input, tm.tm_mon, day_tests[i].mon);
180 result = 1;
181 }
182 if (tm.tm_mday != day_tests[i].mday)
183 {
184 printf ("monthday for `%s' incorrect: %d instead of %d\n",
185 day_tests[i].input, tm.tm_mday, day_tests[i].mday);
186 result = 1;
187 }
188 }
189
190 setlocale (LC_ALL, "C");
191
192 result |= test_tm ();
193
194 return result;
195}
Note: See TracBrowser for help on using the repository browser.