os/ossrv/glib/tests/testgdate.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
     2 #undef G_DISABLE_ASSERT
     3 #undef G_LOG_DOMAIN
     4 
     5 #ifdef GLIB_COMPILATION
     6 #undef GLIB_COMPILATION
     7 #endif
     8 
     9 #include "glib.h"
    10 
    11 #include <stdio.h>
    12 #include <string.h>
    13 #include <locale.h>
    14 #include <time.h>
    15 
    16 #ifdef __SYMBIAN32__
    17 #include "mrt2_glib2_test.h"
    18 #endif /*__SYMBIAN32__*/
    19 
    20 
    21 gboolean failed = FALSE;
    22 guint32 passed = 0;
    23 guint32 notpassed = 0;
    24 
    25 #define	TEST(m,cond)	G_STMT_START { failed = !(cond); \
    26 if (failed) \
    27   { ++notpassed; \
    28     if (!m) \
    29       g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
    30     else \
    31       g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)m); \
    32   } \
    33 else \
    34   ++passed;    \
    35   if ((passed+notpassed) % 10000 == 0) /*g_print (".")*/; fflush (stdout); \
    36 } G_STMT_END
    37 
    38 void g_date_debug_print(GDate* d)
    39 {
    40   if (!d) g_print("NULL!\n");
    41   else 
    42     g_print("julian: %u (%s) DMY: %u %u %u (%s)\n",
    43 	    d->julian_days, 
    44 	    d->julian ? "valid" : "invalid",
    45 	    d->day,
    46 	    d->month,
    47 	    d->year,
    48 	    d->dmy ? "valid" : "invalid");
    49   
    50   fflush(stdout);
    51 }
    52 
    53 int main(int argc, char** argv)
    54 {
    55   GDate* d;
    56   guint32 j;
    57   GDateMonth m;
    58   GDateYear y, prev_y;
    59   GDateDay day;
    60   gchar buf[101];
    61   gchar* loc;
    62   /* Try to get all the leap year cases. */
    63   GDateYear check_years[] = { 
    64     1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
    65     11, 12, 13, 14, 98, 99, 100, 101, 102, 103, 397, 
    66     398, 399, 400, 401, 402, 403, 404, 405, 406,
    67     1598, 1599, 1600, 1601, 1602, 1650, 1651,
    68     1897, 1898, 1899, 1900, 1901, 1902, 1903, 
    69     1961, 1962, 1963, 1964, 1965, 1967,
    70     1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976,
    71     1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 
    72     1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 
    73     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 
    74     2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012,
    75     3000, 3001, 3002, 3998, 3999, 4000, 4001, 4002, 4003
    76   };
    77   guint n_check_years = sizeof(check_years)/sizeof(GDateYear);
    78   guint i;
    79   gboolean discontinuity;
    80 	
    81   #ifdef __SYMBIAN32__
    82   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);
    83   g_set_print_handler(mrtPrintHandler);
    84   #endif /*__SYMBIAN32__*/
    85 	  
    86   g_print("checking GDate...");
    87   
    88   TEST("sizeof(GDate) is not more than 8 bytes on this platform", sizeof(GDate) < 9);
    89 
    90   d = g_date_new();
    91 
    92   TEST("Empty constructor produces invalid date", !g_date_valid(d));
    93 
    94   g_date_free(d);
    95 
    96   d = g_date_new_dmy(1,1,1);
    97 
    98   TEST("January 1, Year 1 created and valid", g_date_valid(d));
    99 
   100   j = g_date_get_julian(d);
   101   
   102   TEST("January 1, Year 1 is Julian date 1", j == 1);
   103 
   104   TEST("Returned month is January", g_date_get_month(d) == G_DATE_JANUARY);
   105   TEST("Returned day is 1", g_date_get_day(d) == 1);
   106   TEST("Returned year is 1", g_date_get_year(d) == 1);
   107 
   108   TEST("Bad month is invalid", !g_date_valid_month(G_DATE_BAD_MONTH));
   109   TEST("Month 13 is invalid",  !g_date_valid_month(13));
   110   TEST("Bad day is invalid",   !g_date_valid_day(G_DATE_BAD_DAY));
   111   TEST("Day 32 is invalid",     !g_date_valid_day(32));
   112   TEST("Bad year is invalid",  !g_date_valid_year(G_DATE_BAD_YEAR));
   113   TEST("Bad julian is invalid", !g_date_valid_julian(G_DATE_BAD_JULIAN));
   114   TEST("Bad weekday is invalid", !g_date_valid_weekday(G_DATE_BAD_WEEKDAY));
   115   TEST("Year 2000 is a leap year", g_date_is_leap_year(2000));
   116   TEST("Year 1999 is not a leap year", !g_date_is_leap_year(1999));
   117   TEST("Year 1996 is a leap year", g_date_is_leap_year(1996));
   118   TEST("Year 1600 is a leap year", g_date_is_leap_year(1600));
   119   TEST("Year 2100 is not a leap year", !g_date_is_leap_year(2100));
   120   TEST("Year 1800 is not a leap year", !g_date_is_leap_year(1800));
   121 
   122   g_date_free(d);
   123   
   124   loc = setlocale(LC_ALL,"");
   125   if (loc) 
   126     g_print("\nLocale set to %s\n", loc);
   127   else 
   128     g_print("\nLocale unchanged\n");
   129 
   130   d = g_date_new();
   131   g_date_set_time(d, time(NULL));
   132   TEST("Today is valid", g_date_valid(d));
   133 
   134   g_date_strftime(buf,100,"Today is a %A, %x\n", d);
   135   g_print("%s", buf);
   136 
   137   g_date_set_time(d, 1);
   138   TEST("Beginning of Unix epoch is valid", g_date_valid(d));
   139 
   140   g_date_strftime(buf,100,"1 second into the Unix epoch it was a %A, in the month of %B, %x\n", d);
   141   g_print("%s", buf);
   142 
   143   g_date_set_julian(d, 1);
   144   TEST("GDate's \"Julian\" epoch's first day is valid", g_date_valid(d));
   145 
   146   g_date_strftime(buf,100,"Our \"Julian\" epoch begins on a %A, in the month of %B, %x\n",
   147 		  d);
   148   g_print("%s", buf);
   149 
   150   g_date_set_dmy(d, 10, 1, 2000);
   151 
   152   g_date_strftime(buf,100,"%x", d);
   153 
   154   g_date_set_parse(d, buf);
   155   /* Note: this test will hopefully work, but no promises. */
   156   TEST("Successfully parsed a %x-formatted string", 
   157        g_date_valid(d) && 
   158        g_date_get_month(d) == 1 && 
   159        g_date_get_day(d) == 10 && 
   160        g_date_get_year(d) == 2000);
   161   if (failed)
   162     g_date_debug_print(d);
   163   
   164   g_date_free(d);
   165 
   166   j = G_DATE_BAD_JULIAN;
   167 
   168   i = 0;
   169   discontinuity = TRUE;
   170   y      = check_years[0];
   171   prev_y = G_DATE_BAD_YEAR;
   172   while (i < n_check_years) 
   173     {
   174       guint32 first_day_of_year = G_DATE_BAD_JULIAN;
   175       guint16 days_in_year = g_date_is_leap_year(y) ? 366 : 365;
   176       guint   sunday_week_of_year = 0;
   177       guint   sunday_weeks_in_year = g_date_get_sunday_weeks_in_year(y);
   178       guint   monday_week_of_year = 0;
   179       guint   monday_weeks_in_year = g_date_get_monday_weeks_in_year(y);
   180       guint   iso8601_week_of_year = 0;
   181 
   182       if (discontinuity)
   183         g_print(" (Break in sequence of requested years to check)\n");
   184 
   185       g_print("Checking year %u", y);
   186 
   187       TEST("Year is valid", g_date_valid_year(y));
   188 
   189       TEST("Number of Sunday weeks in year is 52 or 53", 
   190 	   sunday_weeks_in_year == 52 || sunday_weeks_in_year == 53);
   191       
   192       TEST("Number of Monday weeks in year is 52 or 53", 
   193 	   monday_weeks_in_year == 52 || monday_weeks_in_year == 53);
   194 	   
   195       m = 1;
   196       while (m < 13) 
   197 	{
   198 	  guint8 dim = g_date_get_days_in_month(m,y);
   199 	  GDate days[31];         /* This is the fast way, no allocation */
   200 
   201 	  TEST("Sensible number of days in month", (dim > 0 && dim < 32));
   202 
   203 	  TEST("Month between 1 and 12 is valid", g_date_valid_month(m));
   204 
   205 	  day = 1;
   206 
   207 	  g_date_clear(days, 31);
   208 
   209 	  while (day <= dim) 
   210 	    {
   211 	      guint i;
   212               GDate tmp;
   213 
   214 	      TEST("DMY triplet is valid", g_date_valid_dmy(day,m,y));
   215 
   216 	      /* Create GDate with triplet */
   217 	      
   218 	      d = &days[day-1];
   219 
   220 	      TEST("Cleared day is invalid", !g_date_valid(d));
   221 
   222 	      g_date_set_dmy(d,day,m,y);
   223 
   224 	      TEST("Set day is valid", g_date_valid(d));
   225 
   226 	      if (m == G_DATE_JANUARY && day == 1) 
   227 		{
   228 		  first_day_of_year = g_date_get_julian(d);
   229 		}
   230 
   231 	      g_assert(first_day_of_year != G_DATE_BAD_JULIAN);
   232 
   233 	      TEST("Date with DMY triplet is valid", g_date_valid(d));
   234 	      TEST("Month accessor works", g_date_get_month(d) == m);
   235 	      TEST("Year accessor works", g_date_get_year(d) == y);
   236 	      TEST("Day of month accessor works", g_date_get_day(d) == day);
   237 
   238 	      TEST("Day of year is consistent with Julian dates",
   239 		   ((g_date_get_julian(d) + 1 - first_day_of_year) ==
   240 		    (g_date_get_day_of_year(d))));
   241 
   242 	      if (failed) 
   243 		{
   244 		  g_print("first day: %u this day: %u day of year: %u\n", 
   245 			  first_day_of_year, 
   246 			  g_date_get_julian(d),
   247 			  g_date_get_day_of_year(d));
   248 		}
   249 	      
   250 	      if (m == G_DATE_DECEMBER && day == 31) 
   251 		{
   252 		  TEST("Last day of year equals number of days in year", 
   253 		       g_date_get_day_of_year(d) == days_in_year);
   254 		  if (failed) 
   255 		    {
   256 		      g_print("last day: %u days in year: %u\n", 
   257 			      g_date_get_day_of_year(d), days_in_year);
   258 		    }
   259 		}
   260 
   261 	      TEST("Day of year is not more than number of days in the year",
   262 		   g_date_get_day_of_year(d) <= days_in_year);
   263 
   264 	      TEST("Monday week of year is not more than number of weeks in the year",
   265 		   g_date_get_monday_week_of_year(d) <= monday_weeks_in_year);
   266 	      if (failed)
   267 		{
   268 		  g_print("Weeks in year: %u\n", monday_weeks_in_year);
   269 		  g_date_debug_print(d);
   270 		}
   271 	      TEST("Monday week of year is >= than last week of year",
   272 		   g_date_get_monday_week_of_year(d) >= monday_week_of_year);
   273 
   274 	      if (g_date_get_weekday(d) == G_DATE_MONDAY) 
   275 		{
   276 		  
   277 		  TEST("Monday week of year on Monday 1 more than previous day's week of year",
   278 		       (g_date_get_monday_week_of_year(d) - monday_week_of_year) == 1);
   279 		  if ((m == G_DATE_JANUARY && day <= 4) ||
   280 		      (m == G_DATE_DECEMBER && day >= 29)) {
   281 		    TEST("ISO 8601 week of year on Monday Dec 29 - Jan 4 is 1",
   282 			 (g_date_get_iso8601_week_of_year(d) == 1));
   283 		  } else {
   284 		    TEST("ISO 8601 week of year on Monday 1 more than previous day's week of year",
   285 			 (g_date_get_iso8601_week_of_year(d) - iso8601_week_of_year) == 1);
   286 		  }
   287 		}
   288 	      else 
   289 		{
   290 		  TEST("Monday week of year on non-Monday 0 more than previous day's week of year",
   291 		       (g_date_get_monday_week_of_year(d) - monday_week_of_year) == 0);
   292 		  if (!(day == 1 && m == G_DATE_JANUARY)) {
   293 		    TEST("ISO 8601 week of year on non-Monday 0 more than previous day's week of year (",
   294 			 (g_date_get_iso8601_week_of_year(d) - iso8601_week_of_year) == 0);
   295 		  }
   296 		}
   297 
   298 
   299 	      monday_week_of_year = g_date_get_monday_week_of_year(d);
   300 	      iso8601_week_of_year = g_date_get_iso8601_week_of_year(d);
   301 
   302 
   303 	      TEST("Sunday week of year is not more than number of weeks in the year",
   304 		   g_date_get_sunday_week_of_year(d) <= sunday_weeks_in_year);
   305 	      if (failed)
   306 		{
   307 		  g_date_debug_print(d);
   308 		}
   309 	      TEST("Sunday week of year is >= than last week of year",
   310 		   g_date_get_sunday_week_of_year(d) >= sunday_week_of_year);
   311 
   312 	      if (g_date_get_weekday(d) == G_DATE_SUNDAY) 
   313 		{
   314 		  TEST("Sunday week of year on Sunday 1 more than previous day's week of year",
   315 		       (g_date_get_sunday_week_of_year(d) - sunday_week_of_year) == 1);
   316 		}
   317 	      else 
   318 		{
   319 		  TEST("Sunday week of year on non-Sunday 0 more than previous day's week of year",
   320 		       (g_date_get_sunday_week_of_year(d) - sunday_week_of_year) == 0);
   321 		}
   322 
   323 	      sunday_week_of_year = g_date_get_sunday_week_of_year(d);
   324 
   325 	      TEST("Date is equal to itself",
   326 		   g_date_compare(d,d) == 0);
   327 
   328 
   329 	      /*************** Increments ***********/
   330 
   331               i = 1;
   332               while (i < 402) /* Need to get 400 year increments in */ 
   333                 {
   334 	      
   335                   /***** Days ******/
   336                   tmp = *d;
   337                   g_date_add_days(d, i);
   338 
   339                   TEST("Adding days gives a value greater than previous",
   340                        g_date_compare(d, &tmp) > 0);
   341 
   342                   g_date_subtract_days(d, i);
   343                   TEST("Forward days then backward days returns us to current day",
   344                        g_date_get_day(d) == day);
   345 
   346                   if (failed) 
   347                     {
   348                       g_print("  (increment %u, dmy %u %u %u) ", i, day, m, y);
   349                       g_date_debug_print(d);
   350                     }
   351 
   352                   TEST("Forward days then backward days returns us to current month",
   353                        g_date_get_month(d) == m);
   354 
   355                   if (failed) 
   356                     {
   357                       g_print("  (increment %u, dmy %u %u %u) ", i, day, m, y);
   358                       g_date_debug_print(d);
   359                     }
   360 
   361                   TEST("Forward days then backward days returns us to current year",
   362                        g_date_get_year(d) == y);
   363 
   364                   if (failed) 
   365                     {
   366                       g_print("  (increment %u, dmy %u %u %u) ", i, day, m, y);
   367                       g_date_debug_print(d);
   368                     }
   369 
   370                   /******* Months ********/
   371 
   372                   tmp = *d;
   373                   g_date_add_months(d, i);
   374                   TEST("Adding months gives a larger value",
   375                        g_date_compare(d, &tmp) > 0);
   376                   g_date_subtract_months(d, i);
   377 
   378                   TEST("Forward months then backward months returns us to current month",
   379                        g_date_get_month(d) == m);
   380 
   381                   if (failed) 
   382                     {
   383                       g_print("  (increment %u, dmy %u %u %u) ", i, day, m, y);
   384                       g_date_debug_print(d);
   385                     }
   386 
   387                   TEST("Forward months then backward months returns us to current year",
   388                        g_date_get_year(d) == y);
   389 
   390                   if (failed) 
   391                     {
   392                       g_print("  (increment %u, dmy %u %u %u) ", i, day, m, y);
   393                       g_date_debug_print(d);
   394                     }
   395 
   396 		  
   397                   if (day < 29) 
   398                     {
   399                       /* Day should be unchanged */
   400 		      
   401                       TEST("Forward months then backward months returns us to current day",
   402                            g_date_get_day(d) == day);
   403 		      
   404                       if (failed) 
   405                         {
   406                           g_print("  (increment %u, dmy %u %u %u) ", i, day, m, y);
   407                           g_date_debug_print(d);
   408                         }
   409                     }
   410                   else 
   411                     {
   412                       /* reset the day for later tests */
   413                       g_date_set_day(d, day);
   414                     }
   415 
   416                   /******* Years ********/
   417 
   418                   tmp = *d;
   419                   g_date_add_years(d, i);
   420 
   421                   TEST("Adding years gives a larger value",
   422                        g_date_compare(d,&tmp) > 0);
   423 		      
   424                   g_date_subtract_years(d, i);
   425 
   426                   TEST("Forward years then backward years returns us to current month",
   427                        g_date_get_month(d) == m);
   428 
   429                   if (failed) 
   430                     {
   431                       g_print("  (increment %u, dmy %u %u %u) ", i, day, m, y);
   432                       g_date_debug_print(d);
   433                     }
   434 
   435                   TEST("Forward years then backward years returns us to current year",
   436                        g_date_get_year(d) == y);
   437 
   438                   if (failed) 
   439                     {
   440                       g_print("  (increment %u, dmy %u %u %u) ", i, day, m, y);
   441                       g_date_debug_print(d);
   442                     }
   443 
   444                   if (m != 2 && day != 29) 
   445                     {
   446                       TEST("Forward years then backward years returns us to current day",
   447                            g_date_get_day(d) == day);
   448 		      
   449                       if (failed) 
   450                         {
   451                           g_print("  (increment %u, dmy %u %u %u) ", i, day, m, y);
   452                           g_date_debug_print(d);
   453                         }
   454                     }
   455                   else 
   456                     {
   457                       g_date_set_day(d, day); /* reset */
   458                     }
   459 
   460                   i += 10;
   461                 }
   462 
   463 	      /*****  increment test relative to our local Julian count */
   464 
   465               if (!discontinuity) {
   466 
   467                 /* We can only run sequence tests between sequential years */
   468                 
   469                 TEST("Julians are sequential with increment 1",
   470                      j+1 == g_date_get_julian(d));
   471                 if (failed) 
   472                   {
   473                     g_print("Out of sequence, prev: %u expected: %u got: %u\n",
   474                             j, j+1, g_date_get_julian(d));
   475                   }
   476 
   477                 g_date_add_days(d,1);
   478                 TEST("Next day has julian 1 higher",
   479                      g_date_get_julian(d) == j + 2);
   480                 g_date_subtract_days(d, 1);
   481                 
   482                 if (j != G_DATE_BAD_JULIAN) 
   483                   {
   484                     g_date_subtract_days(d, 1);
   485                     
   486                     TEST("Previous day has julian 1 lower",
   487                          g_date_get_julian(d) == j);
   488                     
   489                     g_date_add_days(d, 1); /* back to original */
   490                   }
   491               }    
   492               discontinuity = FALSE; /* goes away now */            
   493 
   494               fflush(stdout);
   495               fflush(stderr);
   496 
   497 	      j = g_date_get_julian(d); /* inc current julian */
   498 
   499 	      ++day;
   500 	    } 
   501 	  ++m;
   502 	}
   503       g_print(" done\n");
   504       ++i;
   505       prev_y = y;
   506       y = check_years[i];
   507       if (prev_y == G_DATE_BAD_YEAR || 
   508           (prev_y + 1) != y) discontinuity = TRUE;
   509     }
   510   
   511   
   512   g_print("\n%u tests passed, %u failed\n",passed, notpassed);
   513 #ifdef __SYMBIAN32__
   514   testResultXml("testgdate");
   515 #endif /* EMULATOR */
   516   return 0;
   517 }
   518 
   519