Add tests for new GDateTime functionality
[platform/upstream/glib.git] / glib / tests / gdatetime.c
1 /* gdatetime-tests.c
2  *
3  * Copyright (C) 2009-2010 Christian Hergert <chris@dronelabs.com>
4  *
5  * This 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.
9  *
10  * This 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.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  */
19
20 #include "config.h"
21
22 #include <string.h>
23 #include <time.h>
24 #include <glib.h>
25 #include <glib/gstdio.h>
26 #include <locale.h>
27
28 #define ASSERT_DATE(dt,y,m,d) G_STMT_START { \
29   g_assert_cmpint ((y), ==, g_date_time_get_year ((dt))); \
30   g_assert_cmpint ((m), ==, g_date_time_get_month ((dt))); \
31   g_assert_cmpint ((d), ==, g_date_time_get_day_of_month ((dt))); \
32 } G_STMT_END
33 #define ASSERT_TIME(dt,H,M,S) G_STMT_START { \
34   g_assert_cmpint ((H), ==, g_date_time_get_hour ((dt))); \
35   g_assert_cmpint ((M), ==, g_date_time_get_minute ((dt))); \
36   g_assert_cmpint ((S), ==, g_date_time_get_second ((dt))); \
37 } G_STMT_END
38
39 static void
40 get_localtime_tm (time_t     time_,
41                   struct tm *retval)
42 {
43 #ifdef HAVE_LOCALTIME_R
44   localtime_r (&time_, retval);
45 #else
46   {
47     struct tm *ptm = localtime (&time_);
48
49     if (ptm == NULL)
50       {
51         /* Happens at least in Microsoft's C library if you pass a
52          * negative time_t. Use 2000-01-01 as default date.
53          */
54 #ifndef G_DISABLE_CHECKS
55         g_return_if_fail_warning (G_LOG_DOMAIN, G_STRFUNC, "ptm != NULL");
56 #endif
57
58         retval->tm_mon = 0;
59         retval->tm_mday = 1;
60         retval->tm_year = 100;
61       }
62     else
63       memcpy ((void *) retval, (void *) ptm, sizeof (struct tm));
64   }
65 #endif /* HAVE_LOCALTIME_R */
66 }
67
68 static void
69 test_GDateTime_now (void)
70 {
71   GDateTime *dt;
72   struct tm tm;
73
74   memset (&tm, 0, sizeof (tm));
75   get_localtime_tm (time (NULL), &tm);
76
77   dt = g_date_time_new_now_local ();
78
79   g_assert_cmpint (g_date_time_get_year (dt), ==, 1900 + tm.tm_year);
80   g_assert_cmpint (g_date_time_get_month (dt), ==, 1 + tm.tm_mon);
81   g_assert_cmpint (g_date_time_get_day_of_month (dt), ==, tm.tm_mday);
82   g_assert_cmpint (g_date_time_get_hour (dt), ==, tm.tm_hour);
83   g_assert_cmpint (g_date_time_get_minute (dt), ==, tm.tm_min);
84   /* XXX we need some fuzzyness here */
85   g_assert_cmpint (g_date_time_get_second (dt), >=, tm.tm_sec);
86
87   g_date_time_unref (dt);
88 }
89
90 static void
91 test_GDateTime_new_from_unix (void)
92 {
93   GDateTime *dt;
94   struct tm  tm;
95   time_t     t;
96
97   memset (&tm, 0, sizeof (tm));
98   t = time (NULL);
99   get_localtime_tm (t, &tm);
100
101   dt = g_date_time_new_from_unix_local (t);
102   g_assert_cmpint (g_date_time_get_year (dt), ==, 1900 + tm.tm_year);
103   g_assert_cmpint (g_date_time_get_month (dt), ==, 1 + tm.tm_mon);
104   g_assert_cmpint (g_date_time_get_day_of_month (dt), ==, tm.tm_mday);
105   g_assert_cmpint (g_date_time_get_hour (dt), ==, tm.tm_hour);
106   g_assert_cmpint (g_date_time_get_minute (dt), ==, tm.tm_min);
107   g_assert_cmpint (g_date_time_get_second (dt), ==, tm.tm_sec);
108   g_date_time_unref (dt);
109
110   memset (&tm, 0, sizeof (tm));
111   tm.tm_year = 70;
112   tm.tm_mday = 1;
113   tm.tm_mon = 0;
114   tm.tm_hour = 0;
115   tm.tm_min = 0;
116   tm.tm_sec = 0;
117   t = mktime (&tm);
118
119   dt = g_date_time_new_from_unix_local (t);
120   g_assert_cmpint (g_date_time_get_year (dt), ==, 1970);
121   g_assert_cmpint (g_date_time_get_month (dt), ==, 1);
122   g_assert_cmpint (g_date_time_get_day_of_month (dt), ==, 1);
123   g_assert_cmpint (g_date_time_get_hour (dt), ==, 0);
124   g_assert_cmpint (g_date_time_get_minute (dt), ==, 0);
125   g_assert_cmpint (g_date_time_get_second (dt), ==, 0);
126   g_date_time_unref (dt);
127 }
128
129 static void
130 test_GDateTime_compare (void)
131 {
132   GDateTime *dt1, *dt2;
133   gint       i;
134
135   dt1 = g_date_time_new_utc (2000, 1, 1, 0, 0, 0);
136
137   for (i = 1; i < 2000; i++)
138     {
139       dt2 = g_date_time_new_utc (i, 12, 31, 0, 0, 0);
140       g_assert_cmpint (1, ==, g_date_time_compare (dt1, dt2));
141       g_date_time_unref (dt2);
142     }
143
144   dt2 = g_date_time_new_utc (1999, 12, 31, 23, 59, 59);
145   g_assert_cmpint (1, ==, g_date_time_compare (dt1, dt2));
146   g_date_time_unref (dt2);
147
148   dt2 = g_date_time_new_utc (2000, 1, 1, 0, 0, 1);
149   g_assert_cmpint (-1, ==, g_date_time_compare (dt1, dt2));
150   g_date_time_unref (dt2);
151
152   dt2 = g_date_time_new_utc (2000, 1, 1, 0, 0, 0);
153   g_assert_cmpint (0, ==, g_date_time_compare (dt1, dt2));
154   g_date_time_unref (dt2);
155   g_date_time_unref (dt1);
156 }
157
158 static void
159 test_GDateTime_equal (void)
160 {
161   GDateTime *dt1, *dt2;
162   GTimeZone *tz;
163
164   dt1 = g_date_time_new_local (2009, 10, 19, 0, 0, 0);
165   dt2 = g_date_time_new_local (2009, 10, 19, 0, 0, 0);
166   g_assert (g_date_time_equal (dt1, dt2));
167   g_date_time_unref (dt1);
168   g_date_time_unref (dt2);
169
170   dt1 = g_date_time_new_local (2009, 10, 18, 0, 0, 0);
171   dt2 = g_date_time_new_local (2009, 10, 19, 0, 0, 0);
172   g_assert (!g_date_time_equal (dt1, dt2));
173   g_date_time_unref (dt1);
174   g_date_time_unref (dt2);
175
176   /* UTC-0300 and not in DST */
177   tz = g_time_zone_new ("-03:00");
178   dt1 = g_date_time_new (tz, 2010, 5, 24,  8, 0, 0);
179   g_time_zone_unref (tz);
180   g_assert_cmpint (g_date_time_get_utc_offset (dt1) / G_USEC_PER_SEC, ==, (-3 * 3600));
181   /* UTC */
182   dt2 = g_date_time_new_utc (2010, 5, 24, 11, 0, 0);
183   g_assert_cmpint (g_date_time_get_utc_offset (dt2), ==, 0);
184
185   g_assert (g_date_time_equal (dt1, dt2));
186   g_date_time_unref (dt1);
187
188   /* America/Recife is in UTC-0300 */
189   tz = g_time_zone_new ("America/Recife");
190   dt1 = g_date_time_new (tz, 2010, 5, 24,  8, 0, 0);
191   g_time_zone_unref (tz);
192   g_assert_cmpint (g_date_time_get_utc_offset (dt1) / G_USEC_PER_SEC, ==, (-3 * 3600));
193   g_assert (g_date_time_equal (dt1, dt2));
194   g_date_time_unref (dt1);
195   g_date_time_unref (dt2);
196 }
197
198 static void
199 test_GDateTime_get_day_of_week (void)
200 {
201   GDateTime *dt;
202
203   dt = g_date_time_new_local (2009, 10, 19, 0, 0, 0);
204   g_assert_cmpint (1, ==, g_date_time_get_day_of_week (dt));
205   g_date_time_unref (dt);
206
207   dt = g_date_time_new_local (2000, 10, 1, 0, 0, 0);
208   g_assert_cmpint (7, ==, g_date_time_get_day_of_week (dt));
209   g_date_time_unref (dt);
210 }
211
212 static void
213 test_GDateTime_get_day_of_month (void)
214 {
215   GDateTime *dt;
216
217   dt = g_date_time_new_local (2009, 10, 19, 0, 0, 0);
218   g_assert_cmpint (g_date_time_get_day_of_month (dt), ==, 19);
219   g_date_time_unref (dt);
220
221   dt = g_date_time_new_local (1400, 3, 12, 0, 0, 0);
222   g_assert_cmpint (g_date_time_get_day_of_month (dt), ==, 12);
223   g_date_time_unref (dt);
224
225   dt = g_date_time_new_local (1800, 12, 31, 0, 0, 0);
226   g_assert_cmpint (g_date_time_get_day_of_month (dt), ==, 31);
227   g_date_time_unref (dt);
228
229   dt = g_date_time_new_local (1000, 1, 1, 0, 0, 0);
230   g_assert_cmpint (g_date_time_get_day_of_month (dt), ==, 1);
231   g_date_time_unref (dt);
232 }
233
234 static void
235 test_GDateTime_get_hour (void)
236 {
237   GDateTime *dt;
238
239   dt = g_date_time_new_utc (2009, 10, 19, 15, 13, 11);
240   g_assert_cmpint (15, ==, g_date_time_get_hour (dt));
241   g_date_time_unref (dt);
242
243   dt = g_date_time_new_utc (100, 10, 19, 1, 0, 0);
244   g_assert_cmpint (1, ==, g_date_time_get_hour (dt));
245   g_date_time_unref (dt);
246
247   dt = g_date_time_new_utc (100, 10, 19, 0, 0, 0);
248   g_assert_cmpint (0, ==, g_date_time_get_hour (dt));
249   g_date_time_unref (dt);
250
251   dt = g_date_time_new_utc (100, 10, 1, 23, 59, 59);
252   g_assert_cmpint (23, ==, g_date_time_get_hour (dt));
253   g_date_time_unref (dt);
254 }
255
256 static void
257 test_GDateTime_get_microsecond (void)
258 {
259   GTimeVal   tv;
260   GDateTime *dt;
261
262   g_get_current_time (&tv);
263   dt = g_date_time_new_from_timeval_local (&tv);
264   g_assert_cmpint (tv.tv_usec, ==, g_date_time_get_microsecond (dt));
265   g_date_time_unref (dt);
266 }
267
268 static void
269 test_GDateTime_get_year (void)
270 {
271   GDateTime *dt;
272
273   dt = g_date_time_new_local (2009, 1, 1, 0, 0, 0);
274   g_assert_cmpint (2009, ==, g_date_time_get_year (dt));
275   g_date_time_unref (dt);
276
277   dt = g_date_time_new_local (1, 1, 1, 0, 0, 0);
278   g_assert_cmpint (1, ==, g_date_time_get_year (dt));
279   g_date_time_unref (dt);
280
281   dt = g_date_time_new_local (13, 1, 1, 0, 0, 0);
282   g_assert_cmpint (13, ==, g_date_time_get_year (dt));
283   g_date_time_unref (dt);
284
285   dt = g_date_time_new_local (3000, 1, 1, 0, 0, 0);
286   g_assert_cmpint (3000, ==, g_date_time_get_year (dt));
287   g_date_time_unref (dt);
288 }
289
290 static void
291 test_GDateTime_hash (void)
292 {
293   GHashTable *h;
294
295   h = g_hash_table_new_full (g_date_time_hash, g_date_time_equal,
296                              (GDestroyNotify)g_date_time_unref,
297                              NULL);
298   g_hash_table_insert (h, g_date_time_new_now_local (), NULL);
299   g_hash_table_remove_all (h);
300   g_hash_table_destroy (h);
301 }
302
303 static void
304 test_GDateTime_new_from_timeval (void)
305 {
306   GDateTime *dt;
307   GTimeVal   tv, tv2;
308
309   g_get_current_time (&tv);
310   dt = g_date_time_new_from_timeval_local (&tv);
311
312   if (g_test_verbose ())
313     g_print ("\nDT%04d-%02d-%02dT%02d:%02d:%02d%s\n",
314              g_date_time_get_year (dt),
315              g_date_time_get_month (dt),
316              g_date_time_get_day_of_month (dt),
317              g_date_time_get_hour (dt),
318              g_date_time_get_minute (dt),
319              g_date_time_get_second (dt),
320              g_date_time_get_timezone_abbreviation (dt));
321
322   g_date_time_to_timeval (dt, &tv2);
323   g_assert_cmpint (tv.tv_sec, ==, tv2.tv_sec);
324   g_assert_cmpint (tv.tv_usec, ==, tv2.tv_usec);
325   g_date_time_unref (dt);
326 }
327
328 static void
329 test_GDateTime_to_unix (void)
330 {
331   GDateTime *dt;
332   time_t     t;
333
334   t = time (NULL);
335   dt = g_date_time_new_from_unix_local (t);
336   g_assert_cmpint (g_date_time_to_unix (dt), ==, t);
337   g_date_time_unref (dt);
338 }
339
340 static void
341 test_GDateTime_add_years (void)
342 {
343   GDateTime *dt, *dt2;
344
345   dt = g_date_time_new_local (2009, 10, 19, 0, 0, 0);
346   dt2 = g_date_time_add_years (dt, 1);
347   g_assert_cmpint (2010, ==, g_date_time_get_year (dt2));
348   g_date_time_unref (dt);
349   g_date_time_unref (dt2);
350 }
351
352 static void
353 test_GDateTime_add_months (void)
354 {
355 #define TEST_ADD_MONTHS(y,m,d,a,ny,nm,nd) G_STMT_START { \
356   GDateTime *dt, *dt2; \
357   dt = g_date_time_new_utc (y, m, d, 0, 0, 0); \
358   dt2 = g_date_time_add_months (dt, a); \
359   ASSERT_DATE (dt2, ny, nm, nd); \
360   g_date_time_unref (dt); \
361   g_date_time_unref (dt2); \
362 } G_STMT_END
363
364   TEST_ADD_MONTHS (2009, 12, 31,    1, 2010, 1, 31);
365   TEST_ADD_MONTHS (2009, 12, 31,    1, 2010, 1, 31);
366   TEST_ADD_MONTHS (2009,  6, 15,    1, 2009, 7, 15);
367   TEST_ADD_MONTHS (1400,  3,  1,    1, 1400, 4,  1);
368   TEST_ADD_MONTHS (1400,  1, 31,    1, 1400, 2, 28);
369   TEST_ADD_MONTHS (1400,  1, 31, 7200, 2000, 1, 31);
370   TEST_ADD_MONTHS (2008,  2, 29,   12, 2009, 2, 28);
371   TEST_ADD_MONTHS (2000,  8, 16,   -5, 2000, 3, 16);
372   TEST_ADD_MONTHS (2000,  8, 16,  -12, 1999, 8, 16);
373   TEST_ADD_MONTHS (2011,  2,  1,  -13, 2010, 1,  1);
374   TEST_ADD_MONTHS (1776,  7,  4, 1200, 1876, 7,  4);
375 }
376
377 static void
378 test_GDateTime_add_days (void)
379 {
380 #define TEST_ADD_DAYS(y,m,d,a,ny,nm,nd) G_STMT_START { \
381   GDateTime *dt, *dt2; \
382   dt = g_date_time_new_local (y, m, d, 0, 0, 0); \
383   dt2 = g_date_time_add_days (dt, a); \
384   g_assert_cmpint (ny, ==, g_date_time_get_year (dt2)); \
385   g_assert_cmpint (nm, ==, g_date_time_get_month (dt2)); \
386   g_assert_cmpint (nd, ==, g_date_time_get_day_of_month (dt2)); \
387   g_date_time_unref (dt); \
388   g_date_time_unref (dt2); \
389 } G_STMT_END
390
391   TEST_ADD_DAYS (2009, 1, 31, 1, 2009, 2, 1);
392   TEST_ADD_DAYS (2009, 2, 1, -1, 2009, 1, 31);
393   TEST_ADD_DAYS (2008, 2, 28, 1, 2008, 2, 29);
394   TEST_ADD_DAYS (2008, 12, 31, 1, 2009, 1, 1);
395   TEST_ADD_DAYS (1, 1, 1, 1, 1, 1, 2);
396   TEST_ADD_DAYS (1955, 5, 24, 10, 1955, 6, 3);
397   TEST_ADD_DAYS (1955, 5, 24, -10, 1955, 5, 14);
398 }
399
400 static void
401 test_GDateTime_add_weeks (void)
402 {
403 #define TEST_ADD_WEEKS(y,m,d,a,ny,nm,nd) G_STMT_START { \
404   GDateTime *dt, *dt2; \
405   dt = g_date_time_new_local (y, m, d, 0, 0, 0); \
406   dt2 = g_date_time_add_weeks (dt, a); \
407   g_assert_cmpint (ny, ==, g_date_time_get_year (dt2)); \
408   g_assert_cmpint (nm, ==, g_date_time_get_month (dt2)); \
409   g_assert_cmpint (nd, ==, g_date_time_get_day_of_month (dt2)); \
410   g_date_time_unref (dt); \
411   g_date_time_unref (dt2); \
412 } G_STMT_END
413
414   TEST_ADD_WEEKS (2009, 1, 1, 1, 2009, 1, 8);
415   TEST_ADD_WEEKS (2009, 8, 30, 1, 2009, 9, 6);
416   TEST_ADD_WEEKS (2009, 12, 31, 1, 2010, 1, 7);
417   TEST_ADD_WEEKS (2009, 1, 1, -1, 2008, 12, 25);
418 }
419
420 static void
421 test_GDateTime_add_hours (void)
422 {
423 #define TEST_ADD_HOURS(y,m,d,h,mi,s,a,ny,nm,nd,nh,nmi,ns) G_STMT_START { \
424   GDateTime *dt, *dt2; \
425   dt = g_date_time_new_utc (y, m, d, h, mi, s); \
426   dt2 = g_date_time_add_hours (dt, a); \
427   g_assert_cmpint (ny, ==, g_date_time_get_year (dt2)); \
428   g_assert_cmpint (nm, ==, g_date_time_get_month (dt2)); \
429   g_assert_cmpint (nd, ==, g_date_time_get_day_of_month (dt2)); \
430   g_assert_cmpint (nh, ==, g_date_time_get_hour (dt2)); \
431   g_assert_cmpint (nmi, ==, g_date_time_get_minute (dt2)); \
432   g_assert_cmpint (ns, ==, g_date_time_get_second (dt2)); \
433   g_date_time_unref (dt); \
434   g_date_time_unref (dt2); \
435 } G_STMT_END
436
437   TEST_ADD_HOURS (2009,  1,  1,  0, 0, 0, 1, 2009, 1, 1, 1, 0, 0);
438   TEST_ADD_HOURS (2008, 12, 31, 23, 0, 0, 1, 2009, 1, 1, 0, 0, 0);
439 }
440
441 static void
442 test_GDateTime_add_full (void)
443 {
444 #define TEST_ADD_FULL(y,m,d,h,mi,s,ay,am,ad,ah,ami,as,ny,nm,nd,nh,nmi,ns) G_STMT_START { \
445   GDateTime *dt, *dt2; \
446   dt = g_date_time_new_utc (y, m, d, h, mi, s); \
447   dt2 = g_date_time_add_full (dt, ay, am, ad, ah, ami, as); \
448   g_assert_cmpint (ny, ==, g_date_time_get_year (dt2)); \
449   g_assert_cmpint (nm, ==, g_date_time_get_month (dt2)); \
450   g_assert_cmpint (nd, ==, g_date_time_get_day_of_month (dt2)); \
451   g_assert_cmpint (nh, ==, g_date_time_get_hour (dt2)); \
452   g_assert_cmpint (nmi, ==, g_date_time_get_minute (dt2)); \
453   g_assert_cmpint (ns, ==, g_date_time_get_second (dt2)); \
454   g_date_time_unref (dt); \
455   g_date_time_unref (dt2); \
456 } G_STMT_END
457
458   TEST_ADD_FULL (2009, 10, 21,  0,  0, 0,
459                     1,  1,  1,  1,  1, 1,
460                  2010, 11, 22,  1,  1, 1);
461   TEST_ADD_FULL (2000,  1,  1,  1,  1, 1,
462                     0,  1,  0,  0,  0, 0,
463                  2000,  2,  1,  1,  1, 1);
464   TEST_ADD_FULL (2000,  1,  1,  0,  0, 0,
465                    -1,  1,  0,  0,  0, 0,
466                  1999,  2,  1,  0,  0, 0);
467   TEST_ADD_FULL (2010, 10, 31,  0,  0, 0,
468                     0,  4,  0,  0,  0, 0,
469                  2011,  2, 28,  0,  0, 0);
470   TEST_ADD_FULL (2010,  8, 25, 22, 45, 0,
471                     0,  1,  6,  1, 25, 0,
472                  2010, 10,  2,  0, 10, 0);
473 }
474
475 static void
476 test_GDateTime_add_minutes (void)
477 {
478 #define TEST_ADD_MINUTES(i,o) G_STMT_START { \
479   GDateTime *dt, *dt2; \
480   dt = g_date_time_new_local (2000, 1, 1, 0, 0, 0); \
481   dt2 = g_date_time_add_minutes (dt, i); \
482   g_assert_cmpint (o, ==, g_date_time_get_minute (dt2)); \
483   g_date_time_unref (dt); \
484   g_date_time_unref (dt2); \
485 } G_STMT_END
486
487   TEST_ADD_MINUTES (60, 0);
488   TEST_ADD_MINUTES (100, 40);
489   TEST_ADD_MINUTES (5, 5);
490   TEST_ADD_MINUTES (1441, 1);
491   TEST_ADD_MINUTES (-1441, 59);
492 }
493
494 static void
495 test_GDateTime_add_seconds (void)
496 {
497 #define TEST_ADD_SECONDS(i,o) G_STMT_START { \
498   GDateTime *dt, *dt2; \
499   dt = g_date_time_new_local (2000, 1, 1, 0, 0, 0); \
500   dt2 = g_date_time_add_seconds (dt, i); \
501   g_assert_cmpint (o, ==, g_date_time_get_second (dt2)); \
502   g_date_time_unref (dt); \
503   g_date_time_unref (dt2); \
504 } G_STMT_END
505
506   TEST_ADD_SECONDS (1, 1);
507   TEST_ADD_SECONDS (60, 0);
508   TEST_ADD_SECONDS (61, 1);
509   TEST_ADD_SECONDS (120, 0);
510   TEST_ADD_SECONDS (-61, 59);
511   TEST_ADD_SECONDS (86401, 1);
512   TEST_ADD_SECONDS (-86401, 59);
513   TEST_ADD_SECONDS (-31, 29);
514   TEST_ADD_SECONDS (13, 13);
515 }
516
517 static void
518 test_GDateTime_diff (void)
519 {
520 #define TEST_DIFF(y,m,d,y2,m2,d2,u) G_STMT_START { \
521   GDateTime *dt1, *dt2; \
522   GTimeSpan  ts = 0; \
523   dt1 = g_date_time_new_local (y, m, d, 0, 0, 0); \
524   dt2 = g_date_time_new_local (y2, m2, d2, 0, 0, 0); \
525   ts = g_date_time_difference (dt2, dt1); \
526   g_assert_cmpint (ts, ==, u); \
527   g_date_time_unref (dt1); \
528   g_date_time_unref (dt2); \
529 } G_STMT_END
530
531   TEST_DIFF (2009, 1, 1, 2009, 2, 1, G_TIME_SPAN_DAY * 31);
532   TEST_DIFF (2009, 1, 1, 2010, 1, 1, G_TIME_SPAN_DAY * 365);
533   TEST_DIFF (2008, 2, 28, 2008, 2, 29, G_TIME_SPAN_DAY);
534   TEST_DIFF (2008, 2, 29, 2008, 2, 28, -G_TIME_SPAN_DAY);
535
536   /* TODO: Add usec tests */
537 }
538
539 static void
540 test_GDateTime_get_minute (void)
541 {
542   GDateTime *dt;
543
544   dt = g_date_time_new_utc (2009, 12, 1, 1, 31, 0);
545   g_assert_cmpint (31, ==, g_date_time_get_minute (dt));
546   g_date_time_unref (dt);
547 }
548
549 static void
550 test_GDateTime_get_month (void)
551 {
552   GDateTime *dt;
553
554   dt = g_date_time_new_utc (2009, 12, 1, 1, 31, 0);
555   g_assert_cmpint (12, ==, g_date_time_get_month (dt));
556   g_date_time_unref (dt);
557 }
558
559 static void
560 test_GDateTime_get_second (void)
561 {
562   GDateTime *dt;
563
564   dt = g_date_time_new_utc (2009, 12, 1, 1, 31, 44);
565   g_assert_cmpint (44, ==, g_date_time_get_second (dt));
566   g_date_time_unref (dt);
567 }
568
569 static void
570 test_GDateTime_new_full (void)
571 {
572   GTimeZone *tz;
573   GDateTime *dt;
574
575   dt = g_date_time_new_utc (2009, 12, 11, 12, 11, 10);
576   g_assert_cmpint (2009, ==, g_date_time_get_year (dt));
577   g_assert_cmpint (12, ==, g_date_time_get_month (dt));
578   g_assert_cmpint (11, ==, g_date_time_get_day_of_month (dt));
579   g_assert_cmpint (12, ==, g_date_time_get_hour (dt));
580   g_assert_cmpint (11, ==, g_date_time_get_minute (dt));
581   g_assert_cmpint (10, ==, g_date_time_get_second (dt));
582   g_date_time_unref (dt);
583
584   tz = g_time_zone_new ("America/Recife");
585   dt = g_date_time_new (tz, 2010, 5, 24, 8, 4, 0);
586   g_time_zone_unref (tz);
587   g_assert_cmpint (2010, ==, g_date_time_get_year (dt));
588   g_assert_cmpint (5, ==, g_date_time_get_month (dt));
589   g_assert_cmpint (24, ==, g_date_time_get_day_of_month (dt));
590   g_assert_cmpint (8, ==, g_date_time_get_hour (dt));
591   g_assert_cmpint (4, ==, g_date_time_get_minute (dt));
592   g_assert_cmpint (0, ==, g_date_time_get_second (dt));
593   g_assert_cmpstr ("BRT", ==, g_date_time_get_timezone_abbreviation (dt));
594   g_assert (!g_date_time_is_daylight_savings (dt));
595   g_date_time_unref (dt);
596 }
597
598 static void
599 test_GDateTime_now_utc (void)
600 {
601   GDateTime *dt;
602   time_t     t;
603   struct tm  tm;
604
605   t = time (NULL);
606 #ifdef HAVE_GMTIME_R
607   gmtime_r (&t, &tm);
608 #else
609   {
610     struct tm *tmp = gmtime (&t);
611     /* Assume gmtime() can't fail as we got t from time(NULL). (Note
612      * that on Windows, gmtime() *is* MT-safe, it uses a thread-local
613      * buffer.)
614      */
615     memcpy (&tm, tmp, sizeof (struct tm));
616   }
617 #endif
618   dt = g_date_time_new_now_utc ();
619   g_assert_cmpint (tm.tm_year + 1900, ==, g_date_time_get_year (dt));
620   g_assert_cmpint (tm.tm_mon + 1, ==, g_date_time_get_month (dt));
621   g_assert_cmpint (tm.tm_mday, ==, g_date_time_get_day_of_month (dt));
622   g_assert_cmpint (tm.tm_hour, ==, g_date_time_get_hour (dt));
623   g_assert_cmpint (tm.tm_min, ==, g_date_time_get_minute (dt));
624   g_assert_cmpint (tm.tm_sec, ==, g_date_time_get_second (dt));
625   g_date_time_unref (dt);
626 }
627
628 static void
629 test_GDateTime_new_from_unix_utc (void)
630 {
631   GDateTime *dt;
632   gint64 t;
633
634   t = g_get_real_time ();
635
636   dt = g_date_time_new_from_unix_utc (t);
637   g_assert (dt == NULL);
638
639   t = t / 1e6;  /* oops, this was microseconds */
640
641   dt = g_date_time_new_from_unix_utc (t);
642   g_assert (dt != NULL);
643
644   g_assert (dt == g_date_time_ref (dt));
645   g_date_time_unref (dt);
646   g_assert_cmpint (g_date_time_to_unix (dt), ==, t);
647   g_date_time_unref (dt);
648 }
649
650 static void
651 test_GDateTime_get_utc_offset (void)
652 {
653   GDateTime *dt;
654   GTimeSpan ts;
655   struct tm tm;
656
657   memset (&tm, 0, sizeof (tm));
658   get_localtime_tm (time (NULL), &tm);
659
660   dt = g_date_time_new_now_local ();
661   ts = g_date_time_get_utc_offset (dt);
662 #ifdef HAVE_STRUCT_TM_TM_GMTOFF
663   g_assert_cmpint (ts, ==, (tm.tm_gmtoff * G_TIME_SPAN_SECOND));
664 #endif
665 #ifdef HAVE_STRUCT_TM___TM_GMTOFF
666   g_assert_cmpint (ts, ==, (tm.__tm_gmtoff * G_TIME_SPAN_SECOND));
667 #endif
668   g_date_time_unref (dt);
669 }
670
671 static void
672 test_GDateTime_to_timeval (void)
673 {
674   GTimeVal tv1, tv2;
675   GDateTime *dt;
676
677   memset (&tv1, 0, sizeof (tv1));
678   memset (&tv2, 0, sizeof (tv2));
679
680   g_get_current_time (&tv1);
681   dt = g_date_time_new_from_timeval_local (&tv1);
682   g_date_time_to_timeval (dt, &tv2);
683   g_assert_cmpint (tv1.tv_sec, ==, tv2.tv_sec);
684   g_assert_cmpint (tv1.tv_usec, ==, tv2.tv_usec);
685   g_date_time_unref (dt);
686 }
687
688 static void
689 test_GDateTime_to_local (void)
690 {
691   GDateTime *utc, *now, *dt;
692
693   utc = g_date_time_new_now_utc ();
694   now = g_date_time_new_now_local ();
695   dt = g_date_time_to_local (utc);
696
697   g_assert_cmpint (g_date_time_get_year (now), ==, g_date_time_get_year (dt));
698   g_assert_cmpint (g_date_time_get_month (now), ==, g_date_time_get_month (dt));
699   g_assert_cmpint (g_date_time_get_day_of_month (now), ==, g_date_time_get_day_of_month (dt));
700   g_assert_cmpint (g_date_time_get_hour (now), ==, g_date_time_get_hour (dt));
701   g_assert_cmpint (g_date_time_get_minute (now), ==, g_date_time_get_minute (dt));
702   g_assert_cmpint (g_date_time_get_second (now), ==, g_date_time_get_second (dt));
703
704   g_date_time_unref (now);
705   g_date_time_unref (utc);
706   g_date_time_unref (dt);
707 }
708
709 static void
710 test_GDateTime_to_utc (void)
711 {
712   GDateTime *dt, *dt2;
713   time_t     t;
714   struct tm  tm;
715
716   t = time (NULL);
717 #ifdef HAVE_GMTIME_R
718   gmtime_r (&t, &tm);
719 #else
720   {
721     struct tm *tmp = gmtime (&t);
722     memcpy (&tm, tmp, sizeof (struct tm));
723   }
724 #endif
725   dt2 = g_date_time_new_now_local ();
726   dt = g_date_time_to_utc (dt2);
727   g_assert_cmpint (tm.tm_year + 1900, ==, g_date_time_get_year (dt));
728   g_assert_cmpint (tm.tm_mon + 1, ==, g_date_time_get_month (dt));
729   g_assert_cmpint (tm.tm_mday, ==, g_date_time_get_day_of_month (dt));
730   g_assert_cmpint (tm.tm_hour, ==, g_date_time_get_hour (dt));
731   g_assert_cmpint (tm.tm_min, ==, g_date_time_get_minute (dt));
732   g_assert_cmpint (tm.tm_sec, ==, g_date_time_get_second (dt));
733   g_date_time_unref (dt);
734   g_date_time_unref (dt2);
735 }
736
737 static void
738 test_GDateTime_get_day_of_year (void)
739 {
740 #define TEST_DAY_OF_YEAR(y,m,d,o)                       G_STMT_START {  \
741   GDateTime *__dt = g_date_time_new_local ((y), (m), (d), 0, 0, 0);     \
742   g_assert_cmpint ((o), ==, g_date_time_get_day_of_year (__dt));        \
743   g_date_time_unref (__dt);                             } G_STMT_END
744
745   TEST_DAY_OF_YEAR (2009, 1, 1, 1);
746   TEST_DAY_OF_YEAR (2009, 2, 1, 32);
747   TEST_DAY_OF_YEAR (2009, 8, 16, 228);
748   TEST_DAY_OF_YEAR (2008, 8, 16, 229);
749 }
750
751 static void
752 test_GDateTime_printf (void)
753 {
754   gchar dst[16];
755   struct tm tt;
756   time_t t;
757   gchar t_str[16];
758
759 #define TEST_PRINTF(f,o)                        G_STMT_START {  \
760 GDateTime *__dt = g_date_time_new_local (2009, 10, 24, 0, 0, 0);\
761   gchar *__p = g_date_time_format (__dt, (f));                  \
762   g_assert_cmpstr (__p, ==, (o));                               \
763   g_date_time_unref (__dt);                                     \
764   g_free (__p);                                 } G_STMT_END
765
766 #define TEST_PRINTF_DATE(y,m,d,f,o)             G_STMT_START {  \
767   GDateTime *dt = g_date_time_new_local (y, m, d, 0, 0, 0);     \
768   gchar *p = g_date_time_format (dt, (f));                      \
769   g_assert_cmpstr (p, ==, (o));                                 \
770   g_date_time_unref (dt);                                       \
771   g_free (p);                                   } G_STMT_END
772
773 #define TEST_PRINTF_TIME(h,m,s,f,o)             G_STMT_START { \
774   GDateTime *dt = g_date_time_new_local (2009, 10, 24, (h), (m), (s)); \
775   gchar *p = g_date_time_format (dt, (f));                      \
776   g_assert_cmpstr (p, ==, (o));                                 \
777   g_date_time_unref (dt);                                       \
778   g_free (p);                                   } G_STMT_END
779
780   /*
781    * This is a little helper to make sure we can compare timezones to
782    * that of the generated timezone.
783    */
784   t = time (NULL);
785   memset (&tt, 0, sizeof(tt));
786   get_localtime_tm (t, &tt);
787   tt.tm_year = 2009 - 1900;
788   tt.tm_mon = 9; /* 0 indexed */
789   tt.tm_mday = 24;
790   t = mktime (&tt);
791   memset (&tt, 0, sizeof(tt));
792   get_localtime_tm (t, &tt);
793   strftime (dst, sizeof(dst), "%Z", &tt);
794
795   /* get current time_t for 20090924 in the local timezone */
796   tt.tm_sec = 0;
797   tt.tm_min = 0;
798   tt.tm_hour = 0;
799   t = mktime (&tt);
800   g_sprintf (t_str, "%ld", t);
801
802   TEST_PRINTF ("%a", "Sat");
803   TEST_PRINTF ("%A", "Saturday");
804   TEST_PRINTF ("%b", "Oct");
805   TEST_PRINTF ("%B", "October");
806   TEST_PRINTF ("%d", "24");
807   TEST_PRINTF_DATE (2009, 1, 1, "%d", "01");
808   TEST_PRINTF ("%e", "24"); // fixme
809   TEST_PRINTF ("%h", "Oct");
810   TEST_PRINTF ("%H", "00");
811   TEST_PRINTF_TIME (15, 0, 0, "%H", "15");
812   TEST_PRINTF ("%I", "12");
813   TEST_PRINTF_TIME (12, 0, 0, "%I", "12");
814   TEST_PRINTF_TIME (15, 0, 0, "%I", "03");
815   TEST_PRINTF ("%j", "297");
816   TEST_PRINTF ("%k", " 0");
817   TEST_PRINTF_TIME (13, 13, 13, "%k", "13");
818   TEST_PRINTF ("%l", "12");
819   TEST_PRINTF_TIME (12, 0, 0, "%I", "12");
820   TEST_PRINTF_TIME (13, 13, 13, "%l", " 1");
821   TEST_PRINTF_TIME (10, 13, 13, "%l", "10");
822   TEST_PRINTF ("%m", "10");
823   TEST_PRINTF ("%M", "00");
824   TEST_PRINTF ("%N", "0");
825   TEST_PRINTF ("%p", "AM");
826   TEST_PRINTF_TIME (13, 13, 13, "%p", "PM");
827   TEST_PRINTF ("%P", "am");
828   TEST_PRINTF_TIME (13, 13, 13, "%P", "pm");
829   TEST_PRINTF ("%r", "12:00:00 AM");
830   TEST_PRINTF_TIME (13, 13, 13, "%r", "01:13:13 PM");
831   TEST_PRINTF ("%R", "00:00");
832   TEST_PRINTF_TIME (13, 13, 31, "%R", "13:13");
833   //TEST_PRINTF ("%s", t_str);
834   TEST_PRINTF ("%S", "00");
835   TEST_PRINTF ("%t", "  ");
836   TEST_PRINTF ("%W", "42");
837   TEST_PRINTF ("%u", "6");
838   TEST_PRINTF ("%x", "10/24/09");
839   TEST_PRINTF ("%X", "00:00:00");
840   TEST_PRINTF_TIME (13, 14, 15, "%X", "13:14:15");
841   TEST_PRINTF ("%y", "09");
842   TEST_PRINTF ("%Y", "2009");
843   TEST_PRINTF ("%%", "%");
844   TEST_PRINTF ("%", "");
845   TEST_PRINTF ("%9", NULL);
846   TEST_PRINTF ("%Z", dst);
847 }
848
849 static void
850 test_modifiers (void)
851 {
852   const gchar *oldlocale;
853
854   TEST_PRINTF_DATE (2009, 1,  1,  "%d", "01");
855   TEST_PRINTF_DATE (2009, 1,  1, "%_d", " 1");
856   TEST_PRINTF_DATE (2009, 1,  1, "%-d", "1");
857   TEST_PRINTF_DATE (2009, 1,  1, "%0d", "01");
858   TEST_PRINTF_DATE (2009, 1, 21,  "%d", "21");
859   TEST_PRINTF_DATE (2009, 1, 21, "%_d", "21");
860   TEST_PRINTF_DATE (2009, 1, 21, "%-d", "21");
861   TEST_PRINTF_DATE (2009, 1, 21, "%0d", "21");
862
863   TEST_PRINTF_DATE (2009, 1,  1,  "%e", "1");
864   TEST_PRINTF_DATE (2009, 1,  1, "%_e", " 1");
865   TEST_PRINTF_DATE (2009, 1,  1, "%-e", "1");
866   TEST_PRINTF_DATE (2009, 1,  1, "%0e", "01");
867   TEST_PRINTF_DATE (2009, 1, 21,  "%e", "21");
868   TEST_PRINTF_DATE (2009, 1, 21, "%_e", "21");
869   TEST_PRINTF_DATE (2009, 1, 21, "%-e", "21");
870   TEST_PRINTF_DATE (2009, 1, 21, "%0e", "21");
871
872   TEST_PRINTF_TIME ( 1, 0, 0,  "%H", "01");
873   TEST_PRINTF_TIME ( 1, 0, 0, "%_H", " 1");
874   TEST_PRINTF_TIME ( 1, 0, 0, "%-H", "1");
875   TEST_PRINTF_TIME ( 1, 0, 0, "%0H", "01");
876   TEST_PRINTF_TIME (21, 0, 0,  "%H", "21");
877   TEST_PRINTF_TIME (21, 0, 0, "%_H", "21");
878   TEST_PRINTF_TIME (21, 0, 0, "%-H", "21");
879   TEST_PRINTF_TIME (21, 0, 0, "%0H", "21");
880
881   TEST_PRINTF_TIME ( 1, 0, 0,  "%I", "01");
882   TEST_PRINTF_TIME ( 1, 0, 0, "%_I", " 1");
883   TEST_PRINTF_TIME ( 1, 0, 0, "%-I", "1");
884   TEST_PRINTF_TIME ( 1, 0, 0, "%0I", "01");
885   TEST_PRINTF_TIME (23, 0, 0,  "%I", "11");
886   TEST_PRINTF_TIME (23, 0, 0, "%_I", "11");
887   TEST_PRINTF_TIME (23, 0, 0, "%-I", "11");
888   TEST_PRINTF_TIME (23, 0, 0, "%0I", "11");
889
890   TEST_PRINTF_TIME ( 1, 0, 0,  "%k", " 1");
891   TEST_PRINTF_TIME ( 1, 0, 0, "%_k", " 1");
892   TEST_PRINTF_TIME ( 1, 0, 0, "%-k", "1");
893   TEST_PRINTF_TIME ( 1, 0, 0, "%0k", "01");
894
895   oldlocale = setlocale (LC_ALL, "fa_IR.UTF-8");
896   if (strstr (setlocale (LC_ALL, NULL), "fa_IR") != NULL)
897     {
898       TEST_PRINTF_TIME (23, 0, 0, "%OH", "\333\262\333\263");
899       TEST_PRINTF_TIME (23, 0, 0, "%OI", "\333\261\333\261");
900
901       TEST_PRINTF_DATE (2011, 7, 1, "%Om", "\333\267");
902       TEST_PRINTF_DATE (2011, 7, 1, "%-Om", "\333\267");
903 /* These do not currently work as expected, since glib's printf
904    counts arabic digits as two characters for some reason
905       TEST_PRINTF_DATE (2011, 7, 1, "%0Om", "0\333\267");
906       TEST_PRINTF_DATE (2011, 7, 1, "%_Om", " \333\267");
907 */
908     }
909   else
910     g_test_message ("locale fa_IR not available, skipping O modifier tests");
911   setlocale (LC_ALL, oldlocale);
912 }
913
914 static void
915 test_GDateTime_dst (void)
916 {
917   GDateTime *dt1, *dt2;
918   GTimeZone *tz;
919
920   /* this date has the DST state set for Europe/London */
921   tz = g_time_zone_new ("Europe/London");
922   dt1 = g_date_time_new (tz, 2009, 8, 15, 3, 0, 1);
923   g_assert (g_date_time_is_daylight_savings (dt1));
924   g_assert_cmpint (g_date_time_get_utc_offset (dt1) / G_USEC_PER_SEC, ==, 3600);
925   g_assert_cmpint (g_date_time_get_hour (dt1), ==, 3);
926
927   /* add 6 months to clear the DST flag but keep the same time */
928   dt2 = g_date_time_add_months (dt1, 6);
929   g_assert (!g_date_time_is_daylight_savings (dt2));
930   g_assert_cmpint (g_date_time_get_utc_offset (dt2) / G_USEC_PER_SEC, ==, 0);
931   g_assert_cmpint (g_date_time_get_hour (dt2), ==, 3);
932
933   g_date_time_unref (dt2);
934   g_date_time_unref (dt1);
935
936   /* now do the reverse: start with a non-DST state and move to DST */
937   dt1 = g_date_time_new (tz, 2009, 2, 15, 2, 0, 1);
938   g_assert (!g_date_time_is_daylight_savings (dt1));
939   g_assert_cmpint (g_date_time_get_hour (dt1), ==, 2);
940
941   dt2 = g_date_time_add_months (dt1, 6);
942   g_assert (g_date_time_is_daylight_savings (dt2));
943   g_assert_cmpint (g_date_time_get_hour (dt2), ==, 2);
944
945   g_date_time_unref (dt2);
946   g_date_time_unref (dt1);
947   g_time_zone_unref (tz);
948 }
949
950 static inline gboolean
951 is_leap_year (gint year)
952 {
953   g_assert (1 <= year && year <= 9999);
954
955   return year % 400 == 0 || (year % 4 == 0 && year % 100 != 0);
956 }
957
958 static inline gint
959 days_in_month (gint year, gint month)
960 {
961   const gint table[2][13] = {
962     {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
963     {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}
964   };
965
966   g_assert (1 <= month && month <= 12);
967
968   return table[is_leap_year (year)][month];
969 }
970
971 static void
972 test_all_dates (void)
973 {
974   gint year, month, day;
975   GTimeZone *timezone;
976   gint64 unix_time;
977   gint day_of_year;
978   gint week_year;
979   gint week_num;
980   gint weekday;
981
982   /* save some time by hanging on to this. */
983   timezone = g_time_zone_new_utc ();
984
985   unix_time = G_GINT64_CONSTANT(-62135596800);
986
987   /* 0001-01-01 is 0001-W01-1 */
988   week_year = 1;
989   week_num = 1;
990   weekday = 1;
991
992
993   /* The calendar makes a full cycle every 400 years, so we could
994    * theoretically just test years 1 through 400.  That assumes that our
995    * software has no bugs, so probably we should just test them all. :)
996    */
997   for (year = 1; year <= 9999; year++)
998     {
999       day_of_year = 1;
1000
1001       for (month = 1; month <= 12; month++)
1002         for (day = 1; day <= days_in_month (year, month); day++)
1003           {
1004             GDateTime *dt;
1005
1006             dt = g_date_time_new (timezone, year, month, day, 0, 0, 0);
1007
1008 #if 0
1009             g_print ("%04d-%02d-%02d = %04d-W%02d-%d = %04d-%03d\n",
1010                      year, month, day,
1011                      week_year, week_num, weekday,
1012                      year, day_of_year);
1013 #endif
1014
1015             /* sanity check */
1016             if G_UNLIKELY (g_date_time_get_year (dt) != year ||
1017                            g_date_time_get_month (dt) != month ||
1018                            g_date_time_get_day_of_month (dt) != day)
1019               g_error ("%04d-%02d-%02d comes out as %04d-%02d-%02d",
1020                        year, month, day,
1021                        g_date_time_get_year (dt),
1022                        g_date_time_get_month (dt),
1023                        g_date_time_get_day_of_month (dt));
1024
1025             if G_UNLIKELY (g_date_time_get_week_numbering_year (dt) != week_year ||
1026                            g_date_time_get_week_of_year (dt) != week_num ||
1027                            g_date_time_get_day_of_week (dt) != weekday)
1028               g_error ("%04d-%02d-%02d should be %04d-W%02d-%d but "
1029                        "comes out as %04d-W%02d-%d", year, month, day,
1030                        week_year, week_num, weekday,
1031                        g_date_time_get_week_numbering_year (dt),
1032                        g_date_time_get_week_of_year (dt),
1033                        g_date_time_get_day_of_week (dt));
1034
1035             if G_UNLIKELY (g_date_time_to_unix (dt) != unix_time)
1036               g_error ("%04d-%02d-%02d 00:00:00 UTC should have unix time %"
1037                        G_GINT64_FORMAT " but comes out as %"G_GINT64_FORMAT,
1038                        year, month, day, unix_time, g_date_time_to_unix (dt));
1039
1040             if G_UNLIKELY (g_date_time_get_day_of_year (dt) != day_of_year)
1041               g_error ("%04d-%02d-%02d should be day of year %d"
1042                        " but comes out as %d", year, month, day,
1043                        day_of_year, g_date_time_get_day_of_year (dt));
1044
1045             if G_UNLIKELY (g_date_time_get_hour (dt) != 0 ||
1046                            g_date_time_get_minute (dt) != 0 ||
1047                            g_date_time_get_seconds (dt) != 0)
1048               g_error ("%04d-%02d-%02d 00:00:00 UTC comes out "
1049                        "as %02d:%02d:%02.6f", year, month, day,
1050                        g_date_time_get_hour (dt),
1051                        g_date_time_get_minute (dt),
1052                        g_date_time_get_seconds (dt));
1053             /* done */
1054
1055             /* add 24 hours to unix time */
1056             unix_time += 24 * 60 * 60;
1057
1058             /* move day of year forward */
1059             day_of_year++;
1060
1061             /* move the week date forward */
1062             if (++weekday == 8)
1063               {
1064                 weekday = 1; /* Sunday -> Monday */
1065
1066                 /* NOTE: year/month/day is the final day of the week we
1067                  * just finished.
1068                  *
1069                  * If we just finished the last week of last year then
1070                  * we are definitely starting the first week of this
1071                  * year.
1072                  *
1073                  * Otherwise, if we're still in this year, but Sunday
1074                  * fell on or after December 28 then December 29, 30, 31
1075                  * could be days within the next year's first year.
1076                  */
1077                 if (year != week_year || (month == 12 && day >= 28))
1078                   {
1079                     /* first week of the new year */
1080                     week_num = 1;
1081                     week_year++;
1082                   }
1083                 else
1084                   week_num++;
1085               }
1086           }
1087     }
1088
1089   g_time_zone_unref (timezone);
1090 }
1091
1092 static void
1093 test_z (void)
1094 {
1095   GTimeZone *tz;
1096   GDateTime *dt;
1097
1098   g_test_bug ("642935");
1099
1100   tz = g_time_zone_new ("-08:00");
1101   dt = g_date_time_new (tz, 0, 0, 0, 0, 0, 0);
1102   gchar *p = g_date_time_format (dt, "%z");
1103   g_assert_cmpstr (p, ==, "-0800");
1104   g_date_time_unref (dt);
1105   g_free (p);
1106 }
1107
1108 gint
1109 main (gint   argc,
1110       gchar *argv[])
1111 {
1112   g_test_init (&argc, &argv, NULL);
1113   g_test_bug_base ("http://bugzilla.gnome.org/");
1114
1115   /* GDateTime Tests */
1116
1117   g_test_add_func ("/GDateTime/add_days", test_GDateTime_add_days);
1118   g_test_add_func ("/GDateTime/add_full", test_GDateTime_add_full);
1119   g_test_add_func ("/GDateTime/add_hours", test_GDateTime_add_hours);
1120   g_test_add_func ("/GDateTime/add_minutes", test_GDateTime_add_minutes);
1121   g_test_add_func ("/GDateTime/add_months", test_GDateTime_add_months);
1122   g_test_add_func ("/GDateTime/add_seconds", test_GDateTime_add_seconds);
1123   g_test_add_func ("/GDateTime/add_weeks", test_GDateTime_add_weeks);
1124   g_test_add_func ("/GDateTime/add_years", test_GDateTime_add_years);
1125   g_test_add_func ("/GDateTime/compare", test_GDateTime_compare);
1126   g_test_add_func ("/GDateTime/diff", test_GDateTime_diff);
1127   g_test_add_func ("/GDateTime/equal", test_GDateTime_equal);
1128   g_test_add_func ("/GDateTime/get_day_of_week", test_GDateTime_get_day_of_week);
1129   g_test_add_func ("/GDateTime/get_day_of_month", test_GDateTime_get_day_of_month);
1130   g_test_add_func ("/GDateTime/get_day_of_year", test_GDateTime_get_day_of_year);
1131   g_test_add_func ("/GDateTime/get_hour", test_GDateTime_get_hour);
1132   g_test_add_func ("/GDateTime/get_microsecond", test_GDateTime_get_microsecond);
1133   g_test_add_func ("/GDateTime/get_minute", test_GDateTime_get_minute);
1134   g_test_add_func ("/GDateTime/get_month", test_GDateTime_get_month);
1135   g_test_add_func ("/GDateTime/get_second", test_GDateTime_get_second);
1136   g_test_add_func ("/GDateTime/get_utc_offset", test_GDateTime_get_utc_offset);
1137   g_test_add_func ("/GDateTime/get_year", test_GDateTime_get_year);
1138   g_test_add_func ("/GDateTime/hash", test_GDateTime_hash);
1139   g_test_add_func ("/GDateTime/new_from_unix", test_GDateTime_new_from_unix);
1140   g_test_add_func ("/GDateTime/new_from_unix_utc", test_GDateTime_new_from_unix_utc);
1141   g_test_add_func ("/GDateTime/new_from_timeval", test_GDateTime_new_from_timeval);
1142   g_test_add_func ("/GDateTime/new_full", test_GDateTime_new_full);
1143   g_test_add_func ("/GDateTime/now", test_GDateTime_now);
1144   g_test_add_func ("/GDateTime/printf", test_GDateTime_printf);
1145   g_test_add_func ("/GDateTime/modifiers", test_modifiers);
1146   g_test_add_func ("/GDateTime/to_local", test_GDateTime_to_local);
1147   g_test_add_func ("/GDateTime/to_unix", test_GDateTime_to_unix);
1148   g_test_add_func ("/GDateTime/to_timeval", test_GDateTime_to_timeval);
1149   g_test_add_func ("/GDateTime/to_utc", test_GDateTime_to_utc);
1150   g_test_add_func ("/GDateTime/now_utc", test_GDateTime_now_utc);
1151   g_test_add_func ("/GDateTime/dst", test_GDateTime_dst);
1152   g_test_add_func ("/GDateTime/test_z", test_z);
1153   g_test_add_func ("/GDateTime/test-all-dates", test_all_dates);
1154
1155   return g_test_run ();
1156 }