Blame time/tst-strptime.c

Packit 6c4009
/* Test for strptime.
Packit 6c4009
   Copyright (C) 1998-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
   Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <locale.h>
Packit 6c4009
#include <stdio.h>
Packit 6c4009
#include <stdlib.h>
Packit 6c4009
#include <string.h>
Packit 6c4009
#include <time.h>
Packit 6c4009
Packit 6c4009
Packit 6c4009
static const struct
Packit 6c4009
{
Packit 6c4009
  const char *locale;
Packit 6c4009
  const char *input;
Packit 6c4009
  const char *format;
Packit 6c4009
  int wday;
Packit 6c4009
  int yday;
Packit 6c4009
  int mon;
Packit 6c4009
  int mday;
Packit 6c4009
} day_tests[] =
Packit 6c4009
{
Packit 6c4009
  { "C", "2000-01-01", "%Y-%m-%d", 6, 0, 0, 1 },
Packit 6c4009
  { "C", "03/03/00", "%D", 5, 62, 2, 3 },
Packit 6c4009
  { "C", "9/9/99", "%x", 4, 251, 8, 9 },
Packit 6c4009
  { "C", "19990502123412", "%Y%m%d%H%M%S", 0, 121, 4, 2 },
Packit 6c4009
  { "C", "2001 20 Mon", "%Y %U %a", 1, 140, 4, 21 },
Packit 6c4009
  { "C", "2001 21 Mon", "%Y %W %a", 1, 140, 4, 21 },
Packit 6c4009
  { "C", "2001 21 Mon", "%2000Y %W %a", 1, 140, 4, 21 },
Packit 6c4009
  { "C", "2001 21 Mon", "%^Y %W %a", 1, 140, 4, 21 },
Packit 6c4009
  { "C", "2001 EST 21 Mon", "%Y %Z %W %a", 1, 140, 4, 21 },
Packit 6c4009
  { "C", "2012 00 Sun", "%Y %W %a", 0, 0, 0, 1 },
Packit 6c4009
  { "ja_JP.EUC-JP", "2000-01-01 08:12:21 AM", "%Y-%m-%d %I:%M:%S %p",
Packit 6c4009
    6, 0, 0, 1 },
Packit 6c4009
  { "en_US.ISO-8859-1", "2000-01-01 08:12:21 PM", "%Y-%m-%d %I:%M:%S %p",
Packit 6c4009
    6, 0, 0, 1 },
Packit 6c4009
  { "ja_JP.EUC-JP", "2001 20 \xb7\xee", "%Y %U %a", 1, 140, 4, 21 },
Packit 6c4009
  { "ja_JP.EUC-JP", "2001 21 \xb7\xee", "%Y %W %a", 1, 140, 4, 21 },
Packit 6c4009
  /* Most of the languages do not need the declension of the month names
Packit 6c4009
     and do not distinguish between %B and %OB.  */
Packit 6c4009
  { "en_US.ISO-8859-1", "November 17, 2017", "%B %e, %Y", 5, 320, 10, 17 },
Packit 6c4009
  { "de_DE.ISO-8859-1", "18. Nov 2017", "%d. %b %Y", 6, 321, 10, 18 },
Packit 6c4009
  { "fr_FR.UTF-8", "19 novembre 2017", "%d %OB %Y", 0, 322, 10, 19 },
Packit 6c4009
  { "es_ES.UTF-8", "20 de nov de 2017", "%d de %Ob de %Y", 1, 323, 10, 20 },
Packit 6c4009
  /* Some languages do need the declension of the month names.  */
Packit 6c4009
  { "pl_PL.UTF-8", "21 lis 2017", "%d %b %Y", 2, 324, 10, 21 },
Packit 6c4009
  { "pl_PL.UTF-8", "22 LIS 2017", "%d %B %Y", 3, 325, 10, 22 },
Packit 6c4009
  { "pl_PL.UTF-8", "23 listopada 2017", "%d %B %Y", 4, 326, 10, 23 },
Packit 6c4009
  /* The nominative case is incorrect here but it is parseable.  */
Packit 6c4009
  { "pl_PL.UTF-8", "24 listopad 2017", "%d %OB %Y", 5, 327, 10, 24 },
Packit 6c4009
  { "pl_PL.UTF-8", "25 lis 2017", "%d %Ob %Y", 6, 328, 10, 25 },
Packit 6c4009
  /* ноя - pronounce: 'noya' - "Nov" (abbreviated "November") in Russian.  */
Packit 6c4009
  { "ru_RU.UTF-8", "26 ноя 2017", "%d %b %Y", 0, 329, 10, 26 },
Packit 6c4009
  /* мая - pronounce: 'maya' - "of May" (the genitive case, both full and
Packit 6c4009
     abbreviated) in Russian.  */
Packit 6c4009
  { "ru_RU.UTF-8", "19 мая 2018", "%d %b %Y", 6, 138, 4, 19 },
Packit 6c4009
  /* май - pronounce: 'may' - "May" (the nominative case, both full and
Packit 6c4009
     abbreviated) in Russian.
Packit 6c4009
     The nominative case is incorrect here but it is parseable.  */
Packit 6c4009
  { "ru_RU.UTF-8", "20 май 2018", "%d %Ob %Y", 0, 139, 4, 20 },
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
Packit 6c4009
static const struct
Packit 6c4009
{
Packit 6c4009
  const char *input;
Packit 6c4009
  const char *format;
Packit 6c4009
  const char *output;
Packit 6c4009
  int wday;
Packit 6c4009
  int yday;
Packit 6c4009
} tm_tests [] =
Packit 6c4009
{
Packit 6c4009
  {"17410105012000", "%H%M%S%d%m%Y", "2000-01-05 17:41:01", 3, 4}
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
Packit 6c4009
Packit 6c4009
static int
Packit 6c4009
test_tm (void)
Packit 6c4009
{
Packit 6c4009
  struct tm tm;
Packit 6c4009
  size_t i;
Packit 6c4009
  int result = 0;
Packit 6c4009
  char buf[100];
Packit 6c4009
Packit 6c4009
  for (i = 0; i < sizeof (tm_tests) / sizeof (tm_tests[0]); ++i)
Packit 6c4009
    {
Packit 6c4009
      memset (&tm, '\0', sizeof (tm));
Packit 6c4009
Packit 6c4009
      char *ret = strptime (tm_tests[i].input, tm_tests[i].format, &tm;;
Packit 6c4009
      if (ret == NULL)
Packit 6c4009
	{
Packit 6c4009
	  printf ("strptime returned NULL for `%s'\n", tm_tests[i].input);
Packit 6c4009
	  result = 1;
Packit 6c4009
	  continue;
Packit 6c4009
	}
Packit 6c4009
      else if (*ret != '\0')
Packit 6c4009
	{
Packit 6c4009
	  printf ("not all of `%s' read\n", tm_tests[i].input);
Packit 6c4009
	  result = 1;
Packit 6c4009
	}
Packit 6c4009
      strftime (buf, sizeof (buf), "%F %T", &tm;;
Packit 6c4009
      printf ("strptime (\"%s\", \"%s\", ...)\n"
Packit 6c4009
	      "\tshould be: %s, wday = %d, yday = %3d\n"
Packit 6c4009
	      "\t       is: %s, wday = %d, yday = %3d\n",
Packit 6c4009
	      tm_tests[i].input, tm_tests[i].format,
Packit 6c4009
	      tm_tests[i].output,
Packit 6c4009
	      tm_tests[i].wday, tm_tests[i].yday,
Packit 6c4009
	      buf, tm.tm_wday, tm.tm_yday);
Packit 6c4009
Packit 6c4009
      if (strcmp (buf, tm_tests[i].output) != 0)
Packit 6c4009
	{
Packit 6c4009
	  printf ("Time and date are not correct.\n");
Packit 6c4009
	  result = 1;
Packit 6c4009
	}
Packit 6c4009
      if (tm.tm_wday != tm_tests[i].wday)
Packit 6c4009
	{
Packit 6c4009
	  printf ("weekday for `%s' incorrect: %d instead of %d\n",
Packit 6c4009
		  tm_tests[i].input, tm.tm_wday, tm_tests[i].wday);
Packit 6c4009
	  result = 1;
Packit 6c4009
	}
Packit 6c4009
      if (tm.tm_yday != tm_tests[i].yday)
Packit 6c4009
	{
Packit 6c4009
	  printf ("yearday for `%s' incorrect: %d instead of %d\n",
Packit 6c4009
		  tm_tests[i].input, tm.tm_yday, tm_tests[i].yday);
Packit 6c4009
	  result = 1;
Packit 6c4009
	}
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  return result;
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
Packit 6c4009
static int
Packit 6c4009
do_test (void)
Packit 6c4009
{
Packit 6c4009
  struct tm tm;
Packit 6c4009
  size_t i;
Packit 6c4009
  int result = 0;
Packit 6c4009
Packit 6c4009
  for (i = 0; i < sizeof (day_tests) / sizeof (day_tests[0]); ++i)
Packit 6c4009
    {
Packit 6c4009
      memset (&tm, '\0', sizeof (tm));
Packit 6c4009
Packit 6c4009
      if (setlocale (LC_ALL, day_tests[i].locale) == NULL)
Packit 6c4009
	{
Packit 6c4009
	  printf ("cannot set locale %s: %m\n", day_tests[i].locale);
Packit 6c4009
	  exit (EXIT_FAILURE);
Packit 6c4009
	}
Packit 6c4009
Packit 6c4009
      char *ret = strptime (day_tests[i].input, day_tests[i].format, &tm;;
Packit 6c4009
      if (ret == NULL)
Packit 6c4009
	{
Packit 6c4009
	  printf ("strptime returned NULL for `%s'\n", day_tests[i].input);
Packit 6c4009
	  result = 1;
Packit 6c4009
	  continue;
Packit 6c4009
	}
Packit 6c4009
      else if (*ret != '\0')
Packit 6c4009
	{
Packit 6c4009
	  printf ("not all of `%s' read\n", day_tests[i].input);
Packit 6c4009
	  result = 1;
Packit 6c4009
	}
Packit 6c4009
Packit 6c4009
      printf ("strptime (\"%s\", \"%s\", ...)\n"
Packit 6c4009
	      "\tshould be: wday = %d, yday = %3d, mon = %2d, mday = %2d\n"
Packit 6c4009
	      "\t       is: wday = %d, yday = %3d, mon = %2d, mday = %2d\n",
Packit 6c4009
	      day_tests[i].input, day_tests[i].format,
Packit 6c4009
	      day_tests[i].wday, day_tests[i].yday,
Packit 6c4009
	      day_tests[i].mon, day_tests[i].mday,
Packit 6c4009
	      tm.tm_wday, tm.tm_yday, tm.tm_mon, tm.tm_mday);
Packit 6c4009
Packit 6c4009
      if (tm.tm_wday != day_tests[i].wday)
Packit 6c4009
	{
Packit 6c4009
	  printf ("weekday for `%s' incorrect: %d instead of %d\n",
Packit 6c4009
		  day_tests[i].input, tm.tm_wday, day_tests[i].wday);
Packit 6c4009
	  result = 1;
Packit 6c4009
	}
Packit 6c4009
      if (tm.tm_yday != day_tests[i].yday)
Packit 6c4009
	{
Packit 6c4009
	  printf ("yearday for `%s' incorrect: %d instead of %d\n",
Packit 6c4009
		  day_tests[i].input, tm.tm_yday, day_tests[i].yday);
Packit 6c4009
	  result = 1;
Packit 6c4009
	}
Packit 6c4009
      if (tm.tm_mon != day_tests[i].mon)
Packit 6c4009
	{
Packit 6c4009
	  printf ("month for `%s' incorrect: %d instead of %d\n",
Packit 6c4009
		  day_tests[i].input, tm.tm_mon, day_tests[i].mon);
Packit 6c4009
	  result = 1;
Packit 6c4009
	}
Packit 6c4009
      if (tm.tm_mday != day_tests[i].mday)
Packit 6c4009
	{
Packit 6c4009
	  printf ("monthday for `%s' incorrect: %d instead of %d\n",
Packit 6c4009
		  day_tests[i].input, tm.tm_mday, day_tests[i].mday);
Packit 6c4009
	  result = 1;
Packit 6c4009
	}
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  setlocale (LC_ALL, "C");
Packit 6c4009
Packit 6c4009
  result |= test_tm ();
Packit 6c4009
Packit 6c4009
  return result;
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
#define TEST_FUNCTION do_test ()
Packit 6c4009
#include "../test-skeleton.c"