os/ossrv/glib/tests/unicode-caseconv.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/glib/tests/unicode-caseconv.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,156 @@
     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 <locale.h>
     1.9 +#include <stdlib.h>
    1.10 +#include <stdio.h>
    1.11 +#include <glib.h>
    1.12 +#include <string.h>
    1.13 +
    1.14 +#ifdef __SYMBIAN32__
    1.15 +#include "mrt2_glib2_test.h"
    1.16 +#endif /*SYMBIAN*/
    1.17 +
    1.18 +
    1.19 +int main (int argc, char **argv)
    1.20 +{
    1.21 +  FILE *infile;
    1.22 +  char buffer[1024];
    1.23 +  char **strings;
    1.24 +  char *srcdir = getenv ("srcdir");
    1.25 +  char *filename;
    1.26 +  const char *locale;
    1.27 +  const char *test;
    1.28 +  const char *expected;
    1.29 +  char *convert;
    1.30 +  char *current_locale = setlocale (LC_CTYPE, NULL);
    1.31 +  gint result = 0;
    1.32 +	#ifdef __SYMBIAN32__
    1.33 +
    1.34 +  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.35 +  g_set_print_handler(mrtPrintHandler);
    1.36 +  #endif /*__SYMBIAN32__*/
    1.37 +  	
    1.38 +  
    1.39 +  if (!srcdir)
    1.40 +    srcdir = "c:";
    1.41 +  filename = g_strconcat (srcdir, G_DIR_SEPARATOR_S, "casemap.txt", NULL);
    1.42 +  
    1.43 +  infile = fopen (filename, "r");
    1.44 +  if (!infile)
    1.45 +    {
    1.46 +      fprintf (stderr, "Failed to open %s\n", filename );
    1.47 +      g_assert(FALSE && "unicode-caseconv failed");
    1.48 +      #ifdef __SYMBIAN32__
    1.49 +  	  testResultXml("unicode-caseconv");
    1.50 +  	  #endif /* EMULATOR */
    1.51 +      exit (1);
    1.52 +    }
    1.53 +  
    1.54 +  while (fgets (buffer, sizeof(buffer), infile))
    1.55 +    {
    1.56 +      if (buffer[0] == '#')
    1.57 +	continue;
    1.58 +
    1.59 +      strings = g_strsplit (buffer, "\t", -1);
    1.60 +
    1.61 +      locale = strings[0];
    1.62 +
    1.63 +      if (!locale[0])
    1.64 +	locale = "C";
    1.65 +	
    1.66 +      if (strcmp (locale, current_locale) != 0)
    1.67 +	{
    1.68 +	  setlocale (LC_CTYPE, locale);
    1.69 +	  current_locale = setlocale (LC_CTYPE, NULL);
    1.70 +
    1.71 +	  if (strncmp (current_locale, locale, 2) != 0)
    1.72 +	    {
    1.73 +	      fprintf (stderr, "Cannot set locale to %s, skipping\n", locale);
    1.74 +	      goto next;
    1.75 +	    }
    1.76 +	}
    1.77 +      
    1.78 +      test = strings[1];
    1.79 +
    1.80 +      /* gen-casemap-txt.pl uses an empty string when a single character
    1.81 +       * doesn't have an equivalent in a particular case; since that behavior
    1.82 +       * is nonsense for multicharacter strings, it would make more sense
    1.83 +       * to put the expected result .. the original character unchanged. But 
    1.84 +       * for now, we just work around it here and take the empty string to mean
    1.85 +       * "same as original"
    1.86 +       */
    1.87 +
    1.88 +      convert = g_utf8_strup (test, -1);
    1.89 +      expected = strings[4][0] ? strings[4] : test;
    1.90 +      if (strcmp (convert, expected) != 0)
    1.91 +	{
    1.92 +	  fprintf (stderr, "Failure: toupper(%s) == %s, should have been %s\n",
    1.93 +		   test, convert, expected);
    1.94 +	  result = 1;
    1.95 +	}
    1.96 +      g_free (convert);
    1.97 +
    1.98 +      convert = g_utf8_strdown (test, -1);
    1.99 +      expected = strings[2][0] ? strings[2] : test;
   1.100 +      if (strcmp (convert, expected) != 0)
   1.101 +	{
   1.102 +	  fprintf (stderr, "Failure: tolower(%s) == %s, should have been %s\n",
   1.103 +		   test, convert, expected);
   1.104 +	  result = 1;
   1.105 +	}
   1.106 +      g_free (convert);
   1.107 +
   1.108 +    next:
   1.109 +      g_strfreev (strings);
   1.110 +    }
   1.111 +
   1.112 +  fclose (infile);
   1.113 +
   1.114 +  g_free (filename);
   1.115 +  filename = g_strconcat (srcdir, G_DIR_SEPARATOR_S, "casefold.txt", NULL);
   1.116 +  
   1.117 +  infile = fopen (filename, "r");
   1.118 +  if (!infile)
   1.119 +    {
   1.120 +      fprintf (stderr, "Failed to open %s\n", filename );
   1.121 +	  g_assert(FALSE && "unicode-caseconv failed");
   1.122 +	  #ifdef __SYMBIAN32__
   1.123 +  	  testResultXml("unicode-caseconv");
   1.124 +      #endif /* EMULATOR */
   1.125 +      
   1.126 +      exit (1);
   1.127 +    }
   1.128 +  
   1.129 +  while (fgets (buffer, sizeof(buffer), infile))
   1.130 +    {
   1.131 +      if (buffer[0] == '#')
   1.132 +	continue;
   1.133 +
   1.134 +      buffer[strlen(buffer) - 1] = '\0';
   1.135 +      strings = g_strsplit (buffer, "\t", -1);
   1.136 +
   1.137 +      test = strings[0];
   1.138 +
   1.139 +      convert = g_utf8_casefold (test, -1);
   1.140 +      if (strcmp (convert, strings[1]) != 0)
   1.141 +	{
   1.142 +	  fprintf (stderr, "Failure: casefold(%s) == '%s', should have been '%s'\n",
   1.143 +		   test, convert, strings[1]);
   1.144 +	  result = 1;
   1.145 +	}
   1.146 +      g_free (convert);
   1.147 +
   1.148 +      g_strfreev (strings);
   1.149 +    }
   1.150 +
   1.151 +  fclose (infile);
   1.152 +  g_free (filename);
   1.153 +
   1.154 +	#ifdef __SYMBIAN32__
   1.155 +  			testResultXml("unicode-caseconv");
   1.156 +  	 #endif /* EMULATOR */
   1.157 +  
   1.158 +  return result;
   1.159 +}