1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/glib/tests/date-test.c Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,515 @@
1.4 +/* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. */
1.5 +#undef G_DISABLE_ASSERT
1.6 +#undef G_LOG_DOMAIN
1.7 +
1.8 +#include "glib.h"
1.9 +
1.10 +#include <stdio.h>
1.11 +#include <string.h>
1.12 +#include <stdlib.h>
1.13 +#include <locale.h>
1.14 +#include <time.h>
1.15 +
1.16 +#ifdef __SYMBIAN32__
1.17 +#include "mrt2_glib2_test.h"
1.18 +#endif /*__SYMBIAN32__*/
1.19 +
1.20 +
1.21 +gboolean failed = FALSE;
1.22 +guint32 passed = 0;
1.23 +guint32 notpassed = 0;
1.24 +
1.25 +#define TEST(m,cond) G_STMT_START { failed = !(cond); \
1.26 +if (failed) \
1.27 + exit(1); \
1.28 +} G_STMT_END
1.29 +
1.30 +void g_date_debug_print(GDate* d)
1.31 +{
1.32 +}
1.33 +
1.34 +void g_print_dummy(const char *format, ...)
1.35 +{
1.36 +}
1.37 +
1.38 +void fflush_dummy (FILE *f)
1.39 +{
1.40 +}
1.41 +
1.42 +
1.43 +#define g_print g_print_dummy
1.44 +#define fflush fflush_dummy
1.45 +
1.46 +int main(int argc, char** argv)
1.47 +{
1.48 + GDate* d;
1.49 + guint32 j;
1.50 + GDateMonth m;
1.51 + GDateYear y, prev_y;
1.52 + GDateDay day;
1.53 + gchar buf[101];
1.54 + gchar* loc;
1.55 +
1.56 + /* Try to get all the leap year cases. */
1.57 + GDateYear check_years[] = {
1.58 + 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1.59 + 11, 12, 13, 14, 98, 99, 100, 101, 102, 103, 397,
1.60 + 398, 399, 400, 401, 402, 403, 404, 405, 406,
1.61 + 1598, 1599, 1600, 1601, 1602, 1650, 1651,
1.62 + 1897, 1898, 1899, 1900, 1901, 1902, 1903,
1.63 + 1961, 1962, 1963, 1964, 1965, 1967,
1.64 + 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976,
1.65 + 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985,
1.66 + 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
1.67 + 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
1.68 + 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012,
1.69 + 3000, 3001, 3002, 3998, 3999, 4000, 4001, 4002, 4003
1.70 + };
1.71 +
1.72 + guint n_check_years = sizeof(check_years)/sizeof(GDateYear);
1.73 +
1.74 + guint i = 0;
1.75 + gboolean discontinuity = FALSE;
1.76 +
1.77 + #ifdef __SYMBIAN32__
1.78 + //GLIB_INIT();
1.79 + 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);
1.80 + g_set_print_handler(mrtPrintHandler);
1.81 + #endif /*__SYMBIAN32__*/
1.82 +
1.83 + //g_print("checking GDate...");
1.84 +
1.85 + TEST("sizeof(GDate) is not more than 8 bytes on this platform", sizeof(GDate) < 9);
1.86 +
1.87 + d = g_date_new();
1.88 +
1.89 + TEST("Empty constructor produces invalid date", !g_date_valid(d));
1.90 +
1.91 + g_date_free(d);
1.92 +
1.93 + d = g_date_new_dmy(1,1,1);
1.94 +
1.95 + TEST("January 1, Year 1 created and valid", g_date_valid(d));
1.96 +
1.97 + j = g_date_get_julian(d);
1.98 +
1.99 + TEST("January 1, Year 1 is Julian date 1", j == 1);
1.100 +
1.101 + TEST("Returned month is January", g_date_get_month(d) == G_DATE_JANUARY);
1.102 + TEST("Returned day is 1", g_date_get_day(d) == 1);
1.103 + TEST("Returned year is 1", g_date_get_year(d) == 1);
1.104 +
1.105 + TEST("Bad month is invalid", !g_date_valid_month(G_DATE_BAD_MONTH));
1.106 + TEST("Month 13 is invalid", !g_date_valid_month(13));
1.107 + TEST("Bad day is invalid", !g_date_valid_day(G_DATE_BAD_DAY));
1.108 + TEST("Day 32 is invalid", !g_date_valid_day(32));
1.109 + TEST("Bad year is invalid", !g_date_valid_year(G_DATE_BAD_YEAR));
1.110 + TEST("Bad julian is invalid", !g_date_valid_julian(G_DATE_BAD_JULIAN));
1.111 + TEST("Bad weekday is invalid", !g_date_valid_weekday(G_DATE_BAD_WEEKDAY));
1.112 + TEST("Year 2000 is a leap year", g_date_is_leap_year(2000));
1.113 + TEST("Year 1999 is not a leap year", !g_date_is_leap_year(1999));
1.114 + TEST("Year 1996 is a leap year", g_date_is_leap_year(1996));
1.115 + TEST("Year 1600 is a leap year", g_date_is_leap_year(1600));
1.116 + TEST("Year 2100 is not a leap year", !g_date_is_leap_year(2100));
1.117 + TEST("Year 1800 is not a leap year", !g_date_is_leap_year(1800));
1.118 +
1.119 + g_date_free(d);
1.120 +
1.121 + loc = setlocale(LC_ALL,"");
1.122 + if (loc)
1.123 + g_print("\nLocale set to %s\n", loc);
1.124 + else
1.125 + g_print("\nLocale unchanged\n");
1.126 +
1.127 + d = g_date_new();
1.128 + g_date_set_time(d, time(NULL));
1.129 + TEST("Today is valid", g_date_valid(d));
1.130 +
1.131 + g_date_strftime(buf,100,"Today is a %A, %x\n", d);
1.132 + g_print("%s", buf);
1.133 +
1.134 + g_date_set_time(d, 1);
1.135 + TEST("Beginning of Unix epoch is valid", g_date_valid(d));
1.136 +
1.137 + g_date_strftime(buf,100,"1 second into the Unix epoch it was a %A, in the month of %B, %x\n", d);
1.138 + g_print("%s", buf);
1.139 +
1.140 + g_date_set_julian(d, 1);
1.141 + TEST("GDate's \"Julian\" epoch's first day is valid", g_date_valid(d));
1.142 +
1.143 + g_date_strftime(buf,100,"Our \"Julian\" epoch begins on a %A, in the month of %B, %x\n",
1.144 + d);
1.145 + g_print("%s", buf);
1.146 +
1.147 + g_date_set_dmy(d, 10, 1, 2000);
1.148 +
1.149 + g_date_strftime(buf,100,"%x", d);
1.150 +
1.151 + g_date_set_parse(d, buf);
1.152 + /* Note: this test will hopefully work, but no promises. */
1.153 + TEST("Successfully parsed a %x-formatted string",
1.154 + g_date_valid(d) &&
1.155 + g_date_get_month(d) == 1 &&
1.156 + g_date_get_day(d) == 10 &&
1.157 + g_date_get_year(d) == 2000);
1.158 + if (failed)
1.159 + g_date_debug_print(d);
1.160 +
1.161 + g_date_free(d);
1.162 +
1.163 + j = G_DATE_BAD_JULIAN;
1.164 +
1.165 + i = 0;
1.166 + discontinuity = TRUE;
1.167 + y = check_years[0];
1.168 + prev_y = G_DATE_BAD_YEAR;
1.169 + while (i < n_check_years)
1.170 + {
1.171 + guint32 first_day_of_year = G_DATE_BAD_JULIAN;
1.172 + guint16 days_in_year = g_date_is_leap_year(y) ? 366 : 365;
1.173 + guint sunday_week_of_year = 0;
1.174 + guint sunday_weeks_in_year = g_date_get_sunday_weeks_in_year(y);
1.175 + guint monday_week_of_year = 0;
1.176 + guint monday_weeks_in_year = g_date_get_monday_weeks_in_year(y);
1.177 + guint iso8601_week_of_year = 0;
1.178 +
1.179 + if (discontinuity)
1.180 + g_print(" (Break in sequence of requested years to check)\n");
1.181 +
1.182 + g_print("Checking year %u", y);
1.183 +
1.184 + TEST("Year is valid", g_date_valid_year(y));
1.185 +
1.186 + TEST("Number of Sunday weeks in year is 52 or 53",
1.187 + sunday_weeks_in_year == 52 || sunday_weeks_in_year == 53);
1.188 +
1.189 + TEST("Number of Monday weeks in year is 52 or 53",
1.190 + monday_weeks_in_year == 52 || monday_weeks_in_year == 53);
1.191 +
1.192 + m = 1;
1.193 + while (m < 13)
1.194 + {
1.195 + guint8 dim = g_date_get_days_in_month(m,y);
1.196 + GDate days[31]; /* This is the fast way, no allocation */
1.197 +
1.198 + TEST("Sensible number of days in month", (dim > 0 && dim < 32));
1.199 +
1.200 + TEST("Month between 1 and 12 is valid", g_date_valid_month(m));
1.201 +
1.202 + day = 1;
1.203 +
1.204 + g_date_clear(days, 31);
1.205 +
1.206 + while (day <= dim)
1.207 + {
1.208 + guint i;
1.209 + GDate tmp;
1.210 +
1.211 + TEST("DMY triplet is valid", g_date_valid_dmy(day,m,y));
1.212 +
1.213 + /* Create GDate with triplet */
1.214 +
1.215 + d = &days[day-1];
1.216 +
1.217 + TEST("Cleared day is invalid", !g_date_valid(d));
1.218 +
1.219 + g_date_set_dmy(d,day,m,y);
1.220 +
1.221 + TEST("Set day is valid", g_date_valid(d));
1.222 +
1.223 + if (m == G_DATE_JANUARY && day == 1)
1.224 + {
1.225 + first_day_of_year = g_date_get_julian(d);
1.226 + }
1.227 +
1.228 + g_assert(first_day_of_year != G_DATE_BAD_JULIAN);
1.229 +
1.230 + TEST("Date with DMY triplet is valid", g_date_valid(d));
1.231 + TEST("Month accessor works", g_date_get_month(d) == m);
1.232 + TEST("Year accessor works", g_date_get_year(d) == y);
1.233 + TEST("Day of month accessor works", g_date_get_day(d) == day);
1.234 +
1.235 + TEST("Day of year is consistent with Julian dates",
1.236 + ((g_date_get_julian(d) + 1 - first_day_of_year) ==
1.237 + (g_date_get_day_of_year(d))));
1.238 +
1.239 + if (failed)
1.240 + {
1.241 + g_print("first day: %u this day: %u day of year: %u\n",
1.242 + first_day_of_year,
1.243 + g_date_get_julian(d),
1.244 + g_date_get_day_of_year(d));
1.245 + }
1.246 +
1.247 + if (m == G_DATE_DECEMBER && day == 31)
1.248 + {
1.249 + TEST("Last day of year equals number of days in year",
1.250 + g_date_get_day_of_year(d) == days_in_year);
1.251 + if (failed)
1.252 + {
1.253 + g_print("last day: %u days in year: %u\n",
1.254 + g_date_get_day_of_year(d), days_in_year);
1.255 + }
1.256 + }
1.257 +
1.258 + TEST("Day of year is not more than number of days in the year",
1.259 + g_date_get_day_of_year(d) <= days_in_year);
1.260 +
1.261 + TEST("Monday week of year is not more than number of weeks in the year",
1.262 + g_date_get_monday_week_of_year(d) <= monday_weeks_in_year);
1.263 + if (failed)
1.264 + {
1.265 + g_print("Weeks in year: %u\n", monday_weeks_in_year);
1.266 + g_date_debug_print(d);
1.267 + }
1.268 + TEST("Monday week of year is >= than last week of year",
1.269 + g_date_get_monday_week_of_year(d) >= monday_week_of_year);
1.270 +
1.271 + if (g_date_get_weekday(d) == G_DATE_MONDAY)
1.272 + {
1.273 +
1.274 + TEST("Monday week of year on Monday 1 more than previous day's week of year",
1.275 + (g_date_get_monday_week_of_year(d) - monday_week_of_year) == 1);
1.276 + if ((m == G_DATE_JANUARY && day <= 4) ||
1.277 + (m == G_DATE_DECEMBER && day >= 29)) {
1.278 + TEST("ISO 8601 week of year on Monday Dec 29 - Jan 4 is 1",
1.279 + (g_date_get_iso8601_week_of_year(d) == 1));
1.280 + } else {
1.281 + TEST("ISO 8601 week of year on Monday 1 more than previous day's week of year",
1.282 + (g_date_get_iso8601_week_of_year(d) - iso8601_week_of_year) == 1);
1.283 + }
1.284 + }
1.285 + else
1.286 + {
1.287 + TEST("Monday week of year on non-Monday 0 more than previous day's week of year",
1.288 + (g_date_get_monday_week_of_year(d) - monday_week_of_year) == 0);
1.289 + if (!(day == 1 && m == G_DATE_JANUARY)) {
1.290 + TEST("ISO 8601 week of year on non-Monday 0 more than previous day's week of year (",
1.291 + (g_date_get_iso8601_week_of_year(d) - iso8601_week_of_year) == 0);
1.292 + }
1.293 + }
1.294 +
1.295 +
1.296 + monday_week_of_year = g_date_get_monday_week_of_year(d);
1.297 + iso8601_week_of_year = g_date_get_iso8601_week_of_year(d);
1.298 +
1.299 +
1.300 + TEST("Sunday week of year is not more than number of weeks in the year",
1.301 + g_date_get_sunday_week_of_year(d) <= sunday_weeks_in_year);
1.302 + if (failed)
1.303 + {
1.304 + g_date_debug_print(d);
1.305 + }
1.306 + TEST("Sunday week of year is >= than last week of year",
1.307 + g_date_get_sunday_week_of_year(d) >= sunday_week_of_year);
1.308 +
1.309 + if (g_date_get_weekday(d) == G_DATE_SUNDAY)
1.310 + {
1.311 + TEST("Sunday week of year on Sunday 1 more than previous day's week of year",
1.312 + (g_date_get_sunday_week_of_year(d) - sunday_week_of_year) == 1);
1.313 + }
1.314 + else
1.315 + {
1.316 + TEST("Sunday week of year on non-Sunday 0 more than previous day's week of year",
1.317 + (g_date_get_sunday_week_of_year(d) - sunday_week_of_year) == 0);
1.318 + }
1.319 +
1.320 + sunday_week_of_year = g_date_get_sunday_week_of_year(d);
1.321 +
1.322 + TEST("Date is equal to itself",
1.323 + g_date_compare(d,d) == 0);
1.324 +
1.325 +
1.326 + /*************** Increments ***********/
1.327 +
1.328 + i = 1;
1.329 + while (i < 402) /* Need to get 400 year increments in */
1.330 + {
1.331 +
1.332 + /***** Days ******/
1.333 + tmp = *d;
1.334 + g_date_add_days(d, i);
1.335 +
1.336 + TEST("Adding days gives a value greater than previous",
1.337 + g_date_compare(d, &tmp) > 0);
1.338 +
1.339 + g_date_subtract_days(d, i);
1.340 + TEST("Forward days then backward days returns us to current day",
1.341 + g_date_get_day(d) == day);
1.342 +
1.343 + if (failed)
1.344 + {
1.345 + g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
1.346 + g_date_debug_print(d);
1.347 + }
1.348 +
1.349 + TEST("Forward days then backward days returns us to current month",
1.350 + g_date_get_month(d) == m);
1.351 +
1.352 + if (failed)
1.353 + {
1.354 + g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
1.355 + g_date_debug_print(d);
1.356 + }
1.357 +
1.358 + TEST("Forward days then backward days returns us to current year",
1.359 + g_date_get_year(d) == y);
1.360 +
1.361 + if (failed)
1.362 + {
1.363 + g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
1.364 + g_date_debug_print(d);
1.365 + }
1.366 +
1.367 + /******* Months ********/
1.368 +
1.369 + tmp = *d;
1.370 + g_date_add_months(d, i);
1.371 + TEST("Adding months gives a larger value",
1.372 + g_date_compare(d, &tmp) > 0);
1.373 + g_date_subtract_months(d, i);
1.374 +
1.375 + TEST("Forward months then backward months returns us to current month",
1.376 + g_date_get_month(d) == m);
1.377 +
1.378 + if (failed)
1.379 + {
1.380 + g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
1.381 + g_date_debug_print(d);
1.382 + }
1.383 +
1.384 + TEST("Forward months then backward months returns us to current year",
1.385 + g_date_get_year(d) == y);
1.386 +
1.387 + if (failed)
1.388 + {
1.389 + g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
1.390 + g_date_debug_print(d);
1.391 + }
1.392 +
1.393 +
1.394 + if (day < 29)
1.395 + {
1.396 + /* Day should be unchanged */
1.397 +
1.398 + TEST("Forward months then backward months returns us to current day",
1.399 + g_date_get_day(d) == day);
1.400 +
1.401 + if (failed)
1.402 + {
1.403 + g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
1.404 + g_date_debug_print(d);
1.405 + }
1.406 + }
1.407 + else
1.408 + {
1.409 + /* reset the day for later tests */
1.410 + g_date_set_day(d, day);
1.411 + }
1.412 +
1.413 + /******* Years ********/
1.414 +
1.415 + tmp = *d;
1.416 + g_date_add_years(d, i);
1.417 +
1.418 + TEST("Adding years gives a larger value",
1.419 + g_date_compare(d,&tmp) > 0);
1.420 +
1.421 + g_date_subtract_years(d, i);
1.422 +
1.423 + TEST("Forward years then backward years returns us to current month",
1.424 + g_date_get_month(d) == m);
1.425 +
1.426 + if (failed)
1.427 + {
1.428 + g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
1.429 + g_date_debug_print(d);
1.430 + }
1.431 +
1.432 + TEST("Forward years then backward years returns us to current year",
1.433 + g_date_get_year(d) == y);
1.434 +
1.435 + if (failed)
1.436 + {
1.437 + g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
1.438 + g_date_debug_print(d);
1.439 + }
1.440 +
1.441 + if (m != 2 && day != 29)
1.442 + {
1.443 + TEST("Forward years then backward years returns us to current day",
1.444 + g_date_get_day(d) == day);
1.445 +
1.446 + if (failed)
1.447 + {
1.448 + g_print(" (increment %u, dmy %u %u %u) ", i, day, m, y);
1.449 + g_date_debug_print(d);
1.450 + }
1.451 + }
1.452 + else
1.453 + {
1.454 + g_date_set_day(d, day); /* reset */
1.455 + }
1.456 +
1.457 + i += 10;
1.458 + }
1.459 +
1.460 + /***** increment test relative to our local Julian count */
1.461 +
1.462 + if (!discontinuity) {
1.463 +
1.464 + /* We can only run sequence tests between sequential years */
1.465 +
1.466 + TEST("Julians are sequential with increment 1",
1.467 + j+1 == g_date_get_julian(d));
1.468 + if (failed)
1.469 + {
1.470 + g_print("Out of sequence, prev: %u expected: %u got: %u\n",
1.471 + j, j+1, g_date_get_julian(d));
1.472 + }
1.473 +
1.474 + g_date_add_days(d,1);
1.475 + TEST("Next day has julian 1 higher",
1.476 + g_date_get_julian(d) == j + 2);
1.477 + g_date_subtract_days(d, 1);
1.478 +
1.479 + if (j != G_DATE_BAD_JULIAN)
1.480 + {
1.481 + g_date_subtract_days(d, 1);
1.482 +
1.483 + TEST("Previous day has julian 1 lower",
1.484 + g_date_get_julian(d) == j);
1.485 +
1.486 + g_date_add_days(d, 1); /* back to original */
1.487 + }
1.488 + }
1.489 + discontinuity = FALSE; /* goes away now */
1.490 +
1.491 + fflush(stdout);
1.492 + fflush(stderr);
1.493 +
1.494 + j = g_date_get_julian(d); /* inc current julian */
1.495 +
1.496 + ++day;
1.497 + }
1.498 + ++m;
1.499 + }
1.500 + g_print(" done\n");
1.501 + ++i;
1.502 + prev_y = y;
1.503 + y = check_years[i];
1.504 + if (prev_y == G_DATE_BAD_YEAR ||
1.505 + (prev_y + 1) != y) discontinuity = TRUE;
1.506 + }
1.507 +
1.508 +
1.509 + g_print("\n%u tests passed, %u failed\n",passed, notpassed);
1.510 +
1.511 + #ifdef __SYMBIAN32__
1.512 + testResultXml("date-test");
1.513 + #endif
1.514 +
1.515 + return 0;
1.516 +}
1.517 +
1.518 +