Update contrib.
1 /* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. */
2 #undef G_DISABLE_ASSERT
14 #include "mrt2_glib2_test.h"
15 #endif /*__SYMBIAN32__*/
18 gboolean failed = FALSE;
20 guint32 notpassed = 0;
22 #define TEST(m,cond) G_STMT_START { failed = !(cond); \
27 void g_date_debug_print(GDate* d)
31 void g_print_dummy(const char *format, ...)
35 void fflush_dummy (FILE *f)
40 #define g_print g_print_dummy
41 #define fflush fflush_dummy
43 int main(int argc, char** argv)
53 /* Try to get all the leap year cases. */
54 GDateYear check_years[] = {
55 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
56 11, 12, 13, 14, 98, 99, 100, 101, 102, 103, 397,
57 398, 399, 400, 401, 402, 403, 404, 405, 406,
58 1598, 1599, 1600, 1601, 1602, 1650, 1651,
59 1897, 1898, 1899, 1900, 1901, 1902, 1903,
60 1961, 1962, 1963, 1964, 1965, 1967,
61 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976,
62 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985,
63 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
64 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
65 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012,
66 3000, 3001, 3002, 3998, 3999, 4000, 4001, 4002, 4003
69 guint n_check_years = sizeof(check_years)/sizeof(GDateYear);
72 gboolean discontinuity = FALSE;
76 g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
77 g_set_print_handler(mrtPrintHandler);
78 #endif /*__SYMBIAN32__*/
80 //g_print("checking GDate...");
82 TEST("sizeof(GDate) is not more than 8 bytes on this platform", sizeof(GDate) < 9);
86 TEST("Empty constructor produces invalid date", !g_date_valid(d));
90 d = g_date_new_dmy(1,1,1);
92 TEST("January 1, Year 1 created and valid", g_date_valid(d));
94 j = g_date_get_julian(d);
96 TEST("January 1, Year 1 is Julian date 1", j == 1);
98 TEST("Returned month is January", g_date_get_month(d) == G_DATE_JANUARY);
99 TEST("Returned day is 1", g_date_get_day(d) == 1);
100 TEST("Returned year is 1", g_date_get_year(d) == 1);
102 TEST("Bad month is invalid", !g_date_valid_month(G_DATE_BAD_MONTH));
103 TEST("Month 13 is invalid", !g_date_valid_month(13));
104 TEST("Bad day is invalid", !g_date_valid_day(G_DATE_BAD_DAY));
105 TEST("Day 32 is invalid", !g_date_valid_day(32));
106 TEST("Bad year is invalid", !g_date_valid_year(G_DATE_BAD_YEAR));
107 TEST("Bad julian is invalid", !g_date_valid_julian(G_DATE_BAD_JULIAN));
108 TEST("Bad weekday is invalid", !g_date_valid_weekday(G_DATE_BAD_WEEKDAY));
109 TEST("Year 2000 is a leap year", g_date_is_leap_year(2000));
110 TEST("Year 1999 is not a leap year", !g_date_is_leap_year(1999));
111 TEST("Year 1996 is a leap year", g_date_is_leap_year(1996));
112 TEST("Year 1600 is a leap year", g_date_is_leap_year(1600));
113 TEST("Year 2100 is not a leap year", !g_date_is_leap_year(2100));
114 TEST("Year 1800 is not a leap year", !g_date_is_leap_year(1800));
118 loc = setlocale(LC_ALL,"");
120 g_print("\nLocale set to %s\n", loc);
122 g_print("\nLocale unchanged\n");
125 g_date_set_time(d, time(NULL));
126 TEST("Today is valid", g_date_valid(d));
128 g_date_strftime(buf,100,"Today is a %A, %x\n", d);
131 g_date_set_time(d, 1);
132 TEST("Beginning of Unix epoch is valid", g_date_valid(d));
134 g_date_strftime(buf,100,"1 second into the Unix epoch it was a %A, in the month of %B, %x\n", d);
137 g_date_set_julian(d, 1);
138 TEST("GDate's \"Julian\" epoch's first day is valid", g_date_valid(d));
140 g_date_strftime(buf,100,"Our \"Julian\" epoch begins on a %A, in the month of %B, %x\n",
144 g_date_set_dmy(d, 10, 1, 2000);
146 g_date_strftime(buf,100,"%x", d);
148 g_date_set_parse(d, buf);
149 /* Note: this test will hopefully work, but no promises. */
150 TEST("Successfully parsed a %x-formatted string",
152 g_date_get_month(d) == 1 &&
153 g_date_get_day(d) == 10 &&
154 g_date_get_year(d) == 2000);
156 g_date_debug_print(d);
160 j = G_DATE_BAD_JULIAN;
163 discontinuity = TRUE;
165 prev_y = G_DATE_BAD_YEAR;
166 while (i < n_check_years)
168 guint32 first_day_of_year = G_DATE_BAD_JULIAN;
169 guint16 days_in_year = g_date_is_leap_year(y) ? 366 : 365;
170 guint sunday_week_of_year = 0;
171 guint sunday_weeks_in_year = g_date_get_sunday_weeks_in_year(y);
172 guint monday_week_of_year = 0;
173 guint monday_weeks_in_year = g_date_get_monday_weeks_in_year(y);
174 guint iso8601_week_of_year = 0;
177 g_print(" (Break in sequence of requested years to check)\n");
179 g_print("Checking year %u", y);
181 TEST("Year is valid", g_date_valid_year(y));
183 TEST("Number of Sunday weeks in year is 52 or 53",
184 sunday_weeks_in_year == 52 || sunday_weeks_in_year == 53);
186 TEST("Number of Monday weeks in year is 52 or 53",
187 monday_weeks_in_year == 52 || monday_weeks_in_year == 53);
192 guint8 dim = g_date_get_days_in_month(m,y);
193 GDate days[31]; /* This is the fast way, no allocation */
195 TEST("Sensible number of days in month", (dim > 0 && dim < 32));
197 TEST("Month between 1 and 12 is valid", g_date_valid_month(m));
201 g_date_clear(days, 31);
208 TEST("DMY triplet is valid", g_date_valid_dmy(day,m,y));
210 /* Create GDate with triplet */
214 TEST("Cleared day is invalid", !g_date_valid(d));
216 g_date_set_dmy(d,day,m,y);
218 TEST("Set day is valid", g_date_valid(d));
220 if (m == G_DATE_JANUARY && day == 1)
222 first_day_of_year = g_date_get_julian(d);
225 g_assert(first_day_of_year != G_DATE_BAD_JULIAN);
227 TEST("Date with DMY triplet is valid", g_date_valid(d));
228 TEST("Month accessor works", g_date_get_month(d) == m);
229 TEST("Year accessor works", g_date_get_year(d) == y);
230 TEST("Day of month accessor works", g_date_get_day(d) == day);
232 TEST("Day of year is consistent with Julian dates",
233 ((g_date_get_julian(d) + 1 - first_day_of_year) ==
234 (g_date_get_day_of_year(d))));
238 g_print("first day: %u this day: %u day of year: %u\n",
240 g_date_get_julian(d),
241 g_date_get_day_of_year(d));
244 if (m == G_DATE_DECEMBER && day == 31)
246 TEST("Last day of year equals number of days in year",
247 g_date_get_day_of_year(d) == days_in_year);
250 g_print("last day: %u days in year: %u\n",
251 g_date_get_day_of_year(d), days_in_year);
255 TEST("Day of year is not more than number of days in the year",
256 g_date_get_day_of_year(d) <= days_in_year);
258 TEST("Monday week of year is not more than number of weeks in the year",
259 g_date_get_monday_week_of_year(d) <= monday_weeks_in_year);
262 g_print("Weeks in year: %u\n", monday_weeks_in_year);
263 g_date_debug_print(d);
265 TEST("Monday week of year is >= than last week of year",
266 g_date_get_monday_week_of_year(d) >= monday_week_of_year);
268 if (g_date_get_weekday(d) == G_DATE_MONDAY)
271 TEST("Monday week of year on Monday 1 more than previous day's week of year",
272 (g_date_get_monday_week_of_year(d) - monday_week_of_year) == 1);
273 if ((m == G_DATE_JANUARY && day <= 4) ||
274 (m == G_DATE_DECEMBER && day >= 29)) {
275 TEST("ISO 8601 week of year on Monday Dec 29 - Jan 4 is 1",
276 (g_date_get_iso8601_week_of_year(d) == 1));
278 TEST("ISO 8601 week of year on Monday 1 more than previous day's week of year",
279 (g_date_get_iso8601_week_of_year(d) - iso8601_week_of_year) == 1);
284 TEST("Monday week of year on non-Monday 0 more than previous day's week of year",
285 (g_date_get_monday_week_of_year(d) - monday_week_of_year) == 0);
286 if (!(day == 1 && m == G_DATE_JANUARY)) {
287 TEST("ISO 8601 week of year on non-Monday 0 more than previous day's week of year (",
288 (g_date_get_iso8601_week_of_year(d) - iso8601_week_of_year) == 0);
293 monday_week_of_year = g_date_get_monday_week_of_year(d);
294 iso8601_week_of_year = g_date_get_iso8601_week_of_year(d);
297 TEST("Sunday week of year is not more than number of weeks in the year",
298 g_date_get_sunday_week_of_year(d) <= sunday_weeks_in_year);
301 g_date_debug_print(d);
303 TEST("Sunday week of year is >= than last week of year",
304 g_date_get_sunday_week_of_year(d) >= sunday_week_of_year);
306 if (g_date_get_weekday(d) == G_DATE_SUNDAY)
308 TEST("Sunday week of year on Sunday 1 more than previous day's week of year",
309 (g_date_get_sunday_week_of_year(d) - sunday_week_of_year) == 1);
313 TEST("Sunday week of year on non-Sunday 0 more than previous day's week of year",
314 (g_date_get_sunday_week_of_year(d) - sunday_week_of_year) == 0);
317 sunday_week_of_year = g_date_get_sunday_week_of_year(d);
319 TEST("Date is equal to itself",
320 g_date_compare(d,d) == 0);
323 /*************** Increments ***********/
326 while (i < 402) /* Need to get 400 year increments in */
331 g_date_add_days(d, i);
333 TEST("Adding days gives a value greater than previous",
334 g_date_compare(d, &tmp) > 0);
336 g_date_subtract_days(d, i);
337 TEST("Forward days then backward days returns us to current day",
338 g_date_get_day(d) == day);
342 g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
343 g_date_debug_print(d);
346 TEST("Forward days then backward days returns us to current month",
347 g_date_get_month(d) == m);
351 g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
352 g_date_debug_print(d);
355 TEST("Forward days then backward days returns us to current year",
356 g_date_get_year(d) == y);
360 g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
361 g_date_debug_print(d);
364 /******* Months ********/
367 g_date_add_months(d, i);
368 TEST("Adding months gives a larger value",
369 g_date_compare(d, &tmp) > 0);
370 g_date_subtract_months(d, i);
372 TEST("Forward months then backward months returns us to current month",
373 g_date_get_month(d) == m);
377 g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
378 g_date_debug_print(d);
381 TEST("Forward months then backward months returns us to current year",
382 g_date_get_year(d) == y);
386 g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
387 g_date_debug_print(d);
393 /* Day should be unchanged */
395 TEST("Forward months then backward months returns us to current day",
396 g_date_get_day(d) == day);
400 g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
401 g_date_debug_print(d);
406 /* reset the day for later tests */
407 g_date_set_day(d, day);
410 /******* Years ********/
413 g_date_add_years(d, i);
415 TEST("Adding years gives a larger value",
416 g_date_compare(d,&tmp) > 0);
418 g_date_subtract_years(d, i);
420 TEST("Forward years then backward years returns us to current month",
421 g_date_get_month(d) == m);
425 g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
426 g_date_debug_print(d);
429 TEST("Forward years then backward years returns us to current year",
430 g_date_get_year(d) == y);
434 g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
435 g_date_debug_print(d);
438 if (m != 2 && day != 29)
440 TEST("Forward years then backward years returns us to current day",
441 g_date_get_day(d) == day);
445 g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
446 g_date_debug_print(d);
451 g_date_set_day(d, day); /* reset */
457 /***** increment test relative to our local Julian count */
459 if (!discontinuity) {
461 /* We can only run sequence tests between sequential years */
463 TEST("Julians are sequential with increment 1",
464 j+1 == g_date_get_julian(d));
467 g_print("Out of sequence, prev: %u expected: %u got: %u\n",
468 j, j+1, g_date_get_julian(d));
471 g_date_add_days(d,1);
472 TEST("Next day has julian 1 higher",
473 g_date_get_julian(d) == j + 2);
474 g_date_subtract_days(d, 1);
476 if (j != G_DATE_BAD_JULIAN)
478 g_date_subtract_days(d, 1);
480 TEST("Previous day has julian 1 lower",
481 g_date_get_julian(d) == j);
483 g_date_add_days(d, 1); /* back to original */
486 discontinuity = FALSE; /* goes away now */
491 j = g_date_get_julian(d); /* inc current julian */
501 if (prev_y == G_DATE_BAD_YEAR ||
502 (prev_y + 1) != y) discontinuity = TRUE;
506 g_print("\n%u tests passed, %u failed\n",passed, notpassed);
509 testResultXml("date-test");