Update.
[platform/upstream/glibc.git] / time / tst-strptime.c
1 /* Test for strptime.
2    Copyright (C) 1998, 1999, 2000, 2001 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 <stdio.h>
22 #include <string.h>
23 #include <time.h>
24
25
26 static const struct
27 {
28   const char *input;
29   const char *format;
30   int wday;
31   int yday;
32 } day_tests[] =
33 {
34   { "2000-01-01", "%Y-%m-%d", 6, 0 },
35   { "03/03/00", "%D", 5, 62 },
36   { "9/9/99", "%x", 4, 251 },
37   { "19990502123412", "%Y%m%d%H%M%S", 0, 121 },
38   { "2001 20 Mon", "%Y %U %a", 1, 140 },
39   { "2001 21 Mon", "%Y %W %a", 1, 140 },
40 };
41
42
43 static const struct
44 {
45   const char *input;
46   const char *format;
47   const char *output;
48   int wday;
49   int yday;
50 } tm_tests [] =
51 {
52   {"17410105012000", "%H%M%S%d%m%Y", "2000-01-05 17:41:01", 3, 4}
53 };
54
55
56
57 static int
58 test_tm (void)
59 {
60   struct tm tm;
61   int i;
62   int result = 0;
63   char buf[100];
64
65   for (i = 0; i < sizeof (tm_tests) / sizeof (tm_tests[0]); ++i)
66     {
67       memset (&tm, '\0', sizeof (tm));
68
69       if (*strptime (tm_tests[i].input, tm_tests[i].format, &tm) != '\0')
70         {
71           printf ("not all of `%s' read\n", tm_tests[i].input);
72           result = 1;
73         }
74       strftime (buf, sizeof (buf), "%F %T", &tm);
75       printf ("strptime (\"%s\", \"%s\", ...)\n"
76               "\tshould be: %s, wday = %d, yday = %3d\n"
77               "\t       is: %s, wday = %d, yday = %3d\n",
78               tm_tests[i].input, tm_tests[i].format,
79               tm_tests[i].output,
80               tm_tests[i].wday, tm_tests[i].yday,
81               buf, tm.tm_wday, tm.tm_yday);
82
83       if (strcmp (buf, tm_tests[i].output) != 0)
84         {
85           printf ("Time and date are not correct.\n");
86           result = 1;
87         }
88       if (tm.tm_wday != tm_tests[i].wday)
89         {
90           printf ("weekday for `%s' incorrect: %d instead of %d\n",
91                   tm_tests[i].input, tm.tm_wday, tm_tests[i].wday);
92           result = 1;
93         }
94       if (tm.tm_yday != tm_tests[i].yday)
95         {
96           printf ("yearday for `%s' incorrect: %d instead of %d\n",
97                   tm_tests[i].input, tm.tm_yday, tm_tests[i].yday);
98           result = 1;
99         }
100     }
101
102   return result;
103 }
104
105
106 int
107 main (int argc, char *argv[])
108 {
109   struct tm tm;
110   int i;
111   int result = 0;
112
113   for (i = 0; i < sizeof (day_tests) / sizeof (day_tests[0]); ++i)
114     {
115       memset (&tm, '\0', sizeof (tm));
116
117       if (*strptime (day_tests[i].input, day_tests[i].format, &tm) != '\0')
118         {
119           printf ("not all of `%s' read\n", day_tests[i].input);
120           result = 1;
121         }
122
123       printf ("strptime (\"%s\", \"%s\", ...)\n"
124               "\tshould be: wday = %d, yday = %3d\n"
125               "\t       is: wday = %d, yday = %3d\n",
126               day_tests[i].input, day_tests[i].format,
127               day_tests[i].wday, day_tests[i].yday,
128               tm.tm_wday, tm.tm_yday);
129
130       if (tm.tm_wday != day_tests[i].wday)
131         {
132           printf ("weekday for `%s' incorrect: %d instead of %d\n",
133                   day_tests[i].input, tm.tm_wday, day_tests[i].wday);
134           result = 1;
135         }
136       if (tm.tm_yday != day_tests[i].yday)
137         {
138           printf ("yearday for `%s' incorrect: %d instead of %d\n",
139                   day_tests[i].input, tm.tm_yday, day_tests[i].yday);
140           result = 1;
141         }
142     }
143
144   result |= test_tm ();
145
146   return result;
147 }