Update contrib.
1 /* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
2 #undef G_DISABLE_ASSERT
12 #include "mrt2_glib2_test.h"
16 int main (int argc, char **argv)
21 char *srcdir = getenv ("srcdir");
27 char *current_locale = setlocale (LC_CTYPE, NULL);
31 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);
32 g_set_print_handler(mrtPrintHandler);
33 #endif /*__SYMBIAN32__*/
38 filename = g_strconcat (srcdir, G_DIR_SEPARATOR_S, "casemap.txt", NULL);
40 infile = fopen (filename, "r");
43 fprintf (stderr, "Failed to open %s\n", filename );
44 g_assert(FALSE && "unicode-caseconv failed");
46 testResultXml("unicode-caseconv");
51 while (fgets (buffer, sizeof(buffer), infile))
56 strings = g_strsplit (buffer, "\t", -1);
63 if (strcmp (locale, current_locale) != 0)
65 setlocale (LC_CTYPE, locale);
66 current_locale = setlocale (LC_CTYPE, NULL);
68 if (strncmp (current_locale, locale, 2) != 0)
70 fprintf (stderr, "Cannot set locale to %s, skipping\n", locale);
77 /* gen-casemap-txt.pl uses an empty string when a single character
78 * doesn't have an equivalent in a particular case; since that behavior
79 * is nonsense for multicharacter strings, it would make more sense
80 * to put the expected result .. the original character unchanged. But
81 * for now, we just work around it here and take the empty string to mean
85 convert = g_utf8_strup (test, -1);
86 expected = strings[4][0] ? strings[4] : test;
87 if (strcmp (convert, expected) != 0)
89 fprintf (stderr, "Failure: toupper(%s) == %s, should have been %s\n",
90 test, convert, expected);
95 convert = g_utf8_strdown (test, -1);
96 expected = strings[2][0] ? strings[2] : test;
97 if (strcmp (convert, expected) != 0)
99 fprintf (stderr, "Failure: tolower(%s) == %s, should have been %s\n",
100 test, convert, expected);
106 g_strfreev (strings);
112 filename = g_strconcat (srcdir, G_DIR_SEPARATOR_S, "casefold.txt", NULL);
114 infile = fopen (filename, "r");
117 fprintf (stderr, "Failed to open %s\n", filename );
118 g_assert(FALSE && "unicode-caseconv failed");
120 testResultXml("unicode-caseconv");
121 #endif /* EMULATOR */
126 while (fgets (buffer, sizeof(buffer), infile))
128 if (buffer[0] == '#')
131 buffer[strlen(buffer) - 1] = '\0';
132 strings = g_strsplit (buffer, "\t", -1);
136 convert = g_utf8_casefold (test, -1);
137 if (strcmp (convert, strings[1]) != 0)
139 fprintf (stderr, "Failure: casefold(%s) == '%s', should have been '%s'\n",
140 test, convert, strings[1]);
145 g_strfreev (strings);
152 testResultXml("unicode-caseconv");
153 #endif /* EMULATOR */