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"
13 #endif /*__SYMBIAN32__*/
14 static gint exit_status = 0;
17 croak (char *format, ...)
21 va_start (va, format);
22 vfprintf (stderr, format, va);
29 fail (char *format, ...)
33 va_start (va, format);
34 vfprintf (stderr, format, va);
50 ucs4_equal (gunichar *a, gunichar *b)
52 while (*a && *b && (*a == *b))
62 utf16_equal (gunichar2 *a, gunichar2 *b)
64 while (*a && *b && (*a == *b))
74 utf16_count (gunichar2 *a)
92 gboolean is_valid = g_utf8_validate (utf8, -1, &end);
94 glong items_read, items_written;
101 fail ("line %d: valid but g_utf8_validate returned FALSE\n", line);
111 fail ("line %d: invalid but g_utf8_validate returned TRUE\n", line);
117 if (status == INCOMPLETE)
119 gunichar *ucs4_result;
121 ucs4_result = g_utf8_to_ucs4 (utf8, -1, NULL, NULL, &error);
123 if (!error || !g_error_matches (error, G_CONVERT_ERROR, G_CONVERT_ERROR_PARTIAL_INPUT))
125 fail ("line %d: incomplete input not properly detected\n", line);
128 g_clear_error (&error);
130 ucs4_result = g_utf8_to_ucs4 (utf8, -1, &items_read, NULL, &error);
132 if (!ucs4_result || items_read == strlen (utf8))
134 fail ("line %d: incomplete input not properly detected\n", line);
138 g_free (ucs4_result);
141 if (status == VALID || status == NOTUNICODE)
143 gunichar *ucs4_result;
146 ucs4_result = g_utf8_to_ucs4 (utf8, -1, &items_read, &items_written, &error);
149 fail ("line %d: conversion to ucs4 failed: %s\n", line, error->message);
153 if (!ucs4_equal (ucs4_result, ucs4) ||
154 items_read != strlen (utf8) ||
155 items_written != ucs4_len)
157 fail ("line %d: results of conversion to ucs4 do not match expected.\n", line);
161 g_free (ucs4_result);
163 ucs4_result = g_utf8_to_ucs4_fast (utf8, -1, &items_written);
165 if (!ucs4_equal (ucs4_result, ucs4) ||
166 items_written != ucs4_len)
168 fail ("line %d: results of conversion to ucs4 do not match expected.\n", line);
172 utf8_result = g_ucs4_to_utf8 (ucs4_result, -1, &items_read, &items_written, &error);
175 fail ("line %d: conversion back to utf8 failed: %s", line, error->message);
179 if (strcmp (utf8_result, utf8) != 0 ||
180 items_read != ucs4_len ||
181 items_written != strlen (utf8))
183 fail ("line %d: conversion back to utf8 did not match original\n", line);
187 g_free (utf8_result);
188 g_free (ucs4_result);
193 gunichar2 *utf16_expected_tmp;
194 gunichar2 *utf16_expected;
195 gunichar2 *utf16_from_utf8;
196 gunichar2 *utf16_from_ucs4;
197 gunichar *ucs4_result;
202 #if defined(G_PLATFORM_WIN32) || defined(__SYMBIAN32__)
203 #define TARGET "UTF-16LE"
205 #define TARGET "UTF-16"
208 if (!(utf16_expected_tmp = (gunichar2 *)g_convert (utf8, -1, TARGET, "UTF-8",
209 NULL, &bytes_written, NULL)))
211 fail ("line %d: could not convert to UTF-16 via g_convert\n", line);
215 /* zero-terminate and remove BOM
217 n_chars = bytes_written / 2;
218 if (utf16_expected_tmp[0] == 0xfeff) /* BOM */
221 utf16_expected = g_new (gunichar2, n_chars + 1);
222 memcpy (utf16_expected, utf16_expected_tmp + 1, sizeof(gunichar2) * n_chars);
224 else if (utf16_expected_tmp[0] == 0xfffe) /* ANTI-BOM */
226 fail ("line %d: conversion via iconv to \"UTF-16\" is not native-endian\n", line);
231 utf16_expected = g_new (gunichar2, n_chars + 1);
232 memcpy (utf16_expected, utf16_expected_tmp, sizeof(gunichar2) * n_chars);
235 utf16_expected[n_chars] = '\0';
237 if (!(utf16_from_utf8 = g_utf8_to_utf16 (utf8, -1, &items_read, &items_written, &error)))
239 fail ("line %d: conversion to ucs16 failed: %s\n", line, error->message);
243 if (items_read != strlen (utf8) ||
244 utf16_count (utf16_from_utf8) != items_written)
246 fail ("line %d: length error in conversion to ucs16\n", line);
250 if (!(utf16_from_ucs4 = g_ucs4_to_utf16 (ucs4, -1, &items_read, &items_written, &error)))
252 fail ("line %d: conversion to ucs16 failed: %s\n", line, error->message);
256 if (items_read != ucs4_len ||
257 utf16_count (utf16_from_ucs4) != items_written)
259 fail ("line %d: length error in conversion to ucs16\n", line);
263 if (!utf16_equal (utf16_from_utf8, utf16_expected) ||
264 !utf16_equal (utf16_from_ucs4, utf16_expected))
266 fail ("line %d: results of conversion to ucs16 do not match\n", line);
270 if (!(utf8_result = g_utf16_to_utf8 (utf16_from_utf8, -1, &items_read, &items_written, &error)))
272 fail ("line %d: conversion back to utf8 failed: %s\n", line, error->message);
276 if (items_read != utf16_count (utf16_from_utf8) ||
277 items_written != strlen (utf8))
279 fail ("line %d: length error in conversion from ucs16 to utf8\n", line);
283 if (!(ucs4_result = g_utf16_to_ucs4 (utf16_from_ucs4, -1, &items_read, &items_written, &error)))
285 fail ("line %d: conversion back to utf8/ucs4 failed\n", line);
289 if (items_read != utf16_count (utf16_from_utf8) ||
290 items_written != ucs4_len)
292 fail ("line %d: length error in conversion from ucs16 to ucs4\n", line);
296 if (strcmp (utf8, utf8_result) != 0 ||
297 !ucs4_equal (ucs4, ucs4_result))
299 fail ("line %d: conversion back to utf8/ucs4 did not match original\n", line);
303 g_free (utf16_expected_tmp);
304 g_free (utf16_expected);
305 g_free (utf16_from_utf8);
306 g_free (utf16_from_ucs4);
307 g_free (utf8_result);
308 g_free (ucs4_result);
313 main (int argc, char **argv)
315 gchar *srcdir = getenv ("srcdir");
318 GError *error = NULL;
323 gint start_line = 0; /* Quiet GCC */
324 gchar *utf8 = NULL; /* Quiet GCC */
326 Status status = VALID; /* Quiet GCC */
330 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);
331 g_set_print_handler(mrtPrintHandler);
332 #endif /*__SYMBIAN32__*/
336 testfile = g_strconcat (srcdir, G_DIR_SEPARATOR_S "utf8.txt", NULL);
338 g_file_get_contents (testfile, &contents, NULL, &error);
341 croak ("Cannot open utf8.txt: %s", error->message);
344 testResultXml("unicode-encoding");
345 #endif /* EMULATOR */
350 ucs4 = g_array_new (TRUE, FALSE, sizeof(gunichar));
354 /* Loop over lines */
357 while (*p && (*p == ' ' || *p == '\t'))
361 while (*end && (*end != '\r' && *end != '\n'))
364 if (!*p || *p == '#' || *p == '\r' || *p == '\n')
367 tmp = g_strstrip (g_strndup (p, end - p));
380 if (!strcmp (tmp, "VALID"))
382 else if (!strcmp (tmp, "INCOMPLETE"))
384 else if (!strcmp (tmp, "NOTUNICODE"))
386 else if (!strcmp (tmp, "OVERLONG"))
388 else if (!strcmp (tmp, "MALFORMED"))
391 croak ("Invalid status on line %d\n", line);
393 if (status != VALID && status != NOTUNICODE)
394 state++; /* No UCS-4 data */
401 p = strtok (tmp, " \t");
406 gunichar ch = strtoul (p, &endptr, 16);
408 croak ("Invalid UCS-4 character on line %d\n", line);
410 g_array_append_val (ucs4, ch);
412 p = strtok (NULL, " \t");
419 state = (state + 1) % 3;
423 process (start_line, utf8, status, (gunichar *)ucs4->data, ucs4->len);
424 g_array_set_size (ucs4, 0);
430 if (*p && *p == '\r')
432 if (*p && *p == '\n')
439 testResultXml("unicode-encoding");
440 #endif /* EMULATOR */