Update contrib.
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3 * Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
27 #undef G_DISABLE_ASSERT
34 #include "mrt2_glib2_test.h"
35 #endif /*__SYMBIAN32__*/
40 test_iconv_state (void)
42 gchar *in = "\xf4\xe5\xf8\xe5\xed";
43 gchar *expected = "\xd7\xa4\xd7\x95\xd7\xa8\xd7\x95\xd7\x9d";
46 gsize bytes_written = 0;
49 out = g_convert (in, -1, "UTF-8", "windows-1255",
50 &bytes_read, &bytes_written, &error);
52 if (error && error->code == G_CONVERT_ERROR_NO_CONVERSION)
53 return; /* silently skip if CP1255 is not supported, see bug 467707 */
55 g_assert_no_error (error);
56 g_assert (bytes_read == 5);
57 g_assert (bytes_written == 10);
58 g_assert (strcmp (out, expected) == 0);
62 /* some tests involving "vulgar fraction one half" */
66 gchar *in = "\xc2\xbd";
69 gsize bytes_written = 0;
72 out = g_convert (in, -1,
73 "ISO-8859-1", "UTF-8",
74 &bytes_read, &bytes_written,
77 g_assert_no_error (error);
78 g_assert (bytes_read == 2);
79 g_assert (bytes_written == 1);
80 g_assert (strcmp (out, "\xbd") == 0);
83 out = g_convert (in, -1,
84 "ISO-8859-15", "UTF-8",
85 &bytes_read, &bytes_written,
88 g_assert_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE);
89 g_assert (bytes_read == 0);
90 g_assert (bytes_written == 0);
91 g_assert (out == NULL);
92 g_clear_error (&error);
95 out = g_convert_with_fallback (in, -1,
96 "ISO-8859-15", "UTF-8",
98 &bytes_read, &bytes_written,
101 g_assert_no_error (error);
102 g_assert (bytes_read == 2);
103 g_assert (bytes_written == 1);
104 g_assert (strcmp (out, "a") == 0);
109 test_byte_order (void)
111 gchar in_be[2] = { 0x03, 0x93}; /* capital gamma */
112 gchar in_le[2] = { 0x93, 0x03};
113 gchar *expected = "\xce\x93";
115 gsize bytes_read = 0;
116 gsize bytes_written = 0;
117 GError *error = NULL;
119 out = g_convert (in_be, sizeof (in_be),
121 &bytes_read, &bytes_written,
124 g_assert_no_error (error);
125 g_assert (bytes_read == 2);
126 g_assert (bytes_written == 2);
127 g_assert (strcmp (out, expected) == 0);
130 out = g_convert (in_le, sizeof (in_le),
132 &bytes_read, &bytes_written,
135 g_assert_no_error (error);
136 g_assert (bytes_read == 2);
137 g_assert (bytes_written == 2);
138 g_assert (strcmp (out, expected) == 0);
143 check_utf8_to_ucs4 (const char *utf8,
145 const gunichar *ucs4,
149 gunichar *result, *result2, *result3;
150 glong items_read, items_read2;
151 glong items_written, items_written2;
152 GError *error, *error2, *error3;
157 /* check the fast conversion */
158 result = g_utf8_to_ucs4_fast (utf8, utf8_len, &items_written);
160 g_assert (items_written == ucs4_len);
162 for (i = 0; i <= items_written; i++)
163 g_assert (result[i] == ucs4[i]);
169 result = g_utf8_to_ucs4 (utf8, utf8_len, &items_read, &items_written, &error);
171 if (utf8_len == strlen (utf8))
173 /* check that len == -1 yields identical results */
175 result2 = g_utf8_to_ucs4 (utf8, -1, &items_read2, &items_written2, &error2);
176 g_assert (error || items_read2 == items_read);
177 g_assert (error || items_written2 == items_written2);
178 g_assert (!!result == !!result2);
179 g_assert (!!error == !!error2);
181 for (i = 0; i <= items_written; i++)
182 g_assert (result[i] == result2[i]);
186 g_error_free (error2);
190 result3 = g_utf8_to_ucs4 (utf8, utf8_len, NULL, NULL, &error3);
192 if (error3 && error3->code == G_CONVERT_ERROR_PARTIAL_INPUT)
194 g_assert_no_error (error);
195 g_assert (items_read == error_pos);
196 g_assert (items_written == ucs4_len);
198 for (i = 0; i <= items_written; i++)
199 g_assert (result[i] == ucs4[i]);
203 g_assert (error != NULL);
204 g_assert (result == NULL);
205 g_assert (items_read == error_pos);
206 g_error_free (error);
208 g_assert (error3 != NULL);
209 g_assert (result3 == NULL);
210 g_error_free (error3);
214 g_assert_no_error (error);
215 g_assert (items_read == utf8_len);
216 g_assert (items_written == ucs4_len);
218 for (i = 0; i <= items_written; i++)
219 g_assert (result[i] == ucs4[i]);
221 g_assert_no_error (error3);
223 for (i = 0; i <= ucs4_len; i++)
224 g_assert (result3[i] == ucs4[i]);
232 check_ucs4_to_utf8 (const gunichar *ucs4,
238 gchar *result, *result2, *result3;
239 glong items_read, items_read2;
240 glong items_written, items_written2;
241 GError *error, *error2, *error3;
244 result = g_ucs4_to_utf8 (ucs4, ucs4_len, &items_read, &items_written, &error);
246 if (ucs4[ucs4_len] == 0)
248 /* check that len == -1 yields identical results */
250 result2 = g_ucs4_to_utf8 (ucs4, -1, &items_read2, &items_written2, &error2);
252 g_assert (error || items_read2 == items_read);
253 g_assert (error || items_written2 == items_written);
254 g_assert (!!result == !!result2);
255 g_assert (!!error == !!error2);
257 g_assert (strcmp (result, result2) == 0);
261 g_error_free (error2);
265 result3 = g_ucs4_to_utf8 (ucs4, ucs4_len, NULL, NULL, &error3);
269 g_assert (error != NULL);
270 g_assert (result == NULL);
271 g_assert (items_read == error_pos);
272 g_error_free (error);
274 g_assert (error3 != NULL);
275 g_assert (result3 == NULL);
276 g_error_free (error3);
280 g_assert_no_error (error);
281 g_assert (items_read == ucs4_len);
282 g_assert (items_written == utf8_len);
284 g_assert (strcmp (result, utf8) == 0);
286 g_assert_no_error (error3);
288 g_assert (strcmp (result3, utf8) == 0);
296 check_utf8_to_utf16 (const char *utf8,
298 const gunichar2 *utf16,
302 gunichar2 *result, *result2, *result3;
303 glong items_read, items_read2;
304 glong items_written, items_written2;
305 GError *error, *error2, *error3;
309 result = g_utf8_to_utf16 (utf8, utf8_len, &items_read, &items_written, &error);
311 if (utf8_len == strlen (utf8))
313 /* check that len == -1 yields identical results */
315 result2 = g_utf8_to_utf16 (utf8, -1, &items_read2, &items_written2, &error2);
316 g_assert (error || items_read2 == items_read);
317 g_assert (error || items_written2 == items_written2);
318 g_assert (!!result == !!result2);
319 g_assert (!!error == !!error2);
321 for (i = 0; i <= items_written; i++)
322 g_assert (result[i] == result2[i]);
326 g_error_free (error2);
330 result3 = g_utf8_to_utf16 (utf8, utf8_len, NULL, NULL, &error3);
332 if (error3 && error3->code == G_CONVERT_ERROR_PARTIAL_INPUT)
334 g_assert_no_error (error);
335 g_assert (items_read == error_pos);
336 g_assert (items_written == utf16_len);
338 for (i = 0; i <= items_written; i++)
339 g_assert (result[i] == utf16[i]);
343 g_assert (error != NULL);
344 g_assert (result == NULL);
345 g_assert (items_read == error_pos);
346 g_error_free (error);
348 g_assert (error3 != NULL);
349 g_assert (result3 == NULL);
350 g_error_free (error3);
354 g_assert_no_error (error);
355 g_assert (items_read == utf8_len);
356 g_assert (items_written == utf16_len);
358 for (i = 0; i <= items_written; i++)
359 g_assert (result[i] == utf16[i]);
361 g_assert_no_error (error3);
363 for (i = 0; i <= utf16_len; i++)
364 g_assert (result3[i] == utf16[i]);
372 check_utf16_to_utf8 (const gunichar2 *utf16,
378 gchar *result, *result2, *result3;
379 glong items_read, items_read2;
380 glong items_written, items_written2;
381 GError *error, *error2, *error3;
384 result = g_utf16_to_utf8 (utf16, utf16_len, &items_read, &items_written, &error);
385 if (utf16[utf16_len] == 0)
387 /* check that len == -1 yields identical results */
389 result2 = g_utf16_to_utf8 (utf16, -1, &items_read2, &items_written2, &error2);
391 g_assert (error || items_read2 == items_read);
392 g_assert (error || items_written2 == items_written);
393 g_assert (!!result == !!result2);
394 g_assert (!!error == !!error2);
396 g_assert (strcmp (result, result2) == 0);
400 g_error_free (error2);
404 result3 = g_utf16_to_utf8 (utf16, utf16_len, NULL, NULL, &error3);
406 if (error3 && error3->code == G_CONVERT_ERROR_PARTIAL_INPUT)
408 g_assert_no_error (error);
409 g_assert (items_read == error_pos);
410 g_assert (items_read + 1 == utf16_len);
411 g_assert (items_written == utf8_len);
413 g_assert (strcmp (result, utf8) == 0);
417 g_assert (error != NULL);
418 g_assert (result == NULL);
419 g_assert (items_read == error_pos);
420 g_error_free (error);
422 g_assert (error3 != NULL);
423 g_assert (result3 == NULL);
424 g_error_free (error3);
428 g_assert_no_error (error);
429 g_assert (items_read == utf16_len);
430 g_assert (items_written == utf8_len);
432 g_assert (strcmp (result, utf8) == 0);
434 g_assert_no_error (error3);
436 g_assert (strcmp (result3, utf8) == 0);
444 check_ucs4_to_utf16 (const gunichar *ucs4,
446 const gunichar2 *utf16,
450 gunichar2 *result, *result2, *result3;
451 glong items_read, items_read2;
452 glong items_written, items_written2;
453 GError *error, *error2, *error3;
457 result = g_ucs4_to_utf16 (ucs4, ucs4_len, &items_read, &items_written, &error);
459 if (ucs4[ucs4_len] == 0)
461 /* check that len == -1 yields identical results */
463 result2 = g_ucs4_to_utf16 (ucs4, -1, &items_read2, &items_written2, &error2);
465 g_assert (error || items_read2 == items_read);
466 g_assert (error || items_written2 == items_written);
467 g_assert (!!result == !!result2);
468 g_assert (!!error == !!error2);
470 for (i = 0; i <= utf16_len; i++)
471 g_assert (result[i] == result2[i]);
475 g_error_free (error2);
479 result3 = g_ucs4_to_utf16 (ucs4, -1, NULL, NULL, &error3);
483 g_assert (error != NULL);
484 g_assert (result == NULL);
485 g_assert (items_read == error_pos);
486 g_error_free (error);
488 g_assert (error3 != NULL);
489 g_assert (result3 == NULL);
490 g_error_free (error3);
494 g_assert_no_error (error);
495 g_assert (items_read == ucs4_len);
496 g_assert (items_written == utf16_len);
498 for (i = 0; i <= utf16_len; i++)
499 g_assert (result[i] == utf16[i]);
501 g_assert_no_error (error3);
503 for (i = 0; i <= utf16_len; i++)
504 g_assert (result3[i] == utf16[i]);
512 check_utf16_to_ucs4 (const gunichar2 *utf16,
514 const gunichar *ucs4,
518 gunichar *result, *result2, *result3;
519 glong items_read, items_read2;
520 glong items_written, items_written2;
521 GError *error, *error2, *error3;
525 result = g_utf16_to_ucs4 (utf16, utf16_len, &items_read, &items_written, &error);
526 if (utf16[utf16_len] == 0)
528 /* check that len == -1 yields identical results */
530 result2 = g_utf16_to_ucs4 (utf16, -1, &items_read2, &items_written2, &error2);
531 g_assert (error || items_read2 == items_read);
532 g_assert (error || items_written2 == items_written2);
533 g_assert (!!result == !!result2);
534 g_assert (!!error == !!error2);
536 for (i = 0; i <= items_written; i++)
537 g_assert (result[i] == result2[i]);
541 g_error_free (error2);
545 result3 = g_utf16_to_ucs4 (utf16, utf16_len, NULL, NULL, &error3);
547 if (error3 && error3->code == G_CONVERT_ERROR_PARTIAL_INPUT)
549 g_assert_no_error (error);
550 g_assert (items_read == error_pos);
551 g_assert (items_read + 1 == utf16_len);
552 g_assert (items_written == ucs4_len);
554 for (i = 0; i <= items_written; i++)
555 g_assert (result[i] == ucs4[i]);
559 g_assert (error != NULL);
560 g_assert (result == NULL);
561 g_assert (items_read == error_pos);
562 g_error_free (error);
564 g_assert (error3 != NULL);
565 g_assert (result3 == NULL);
566 g_error_free (error3);
570 g_assert_no_error (error);
571 g_assert (items_read == utf16_len);
572 g_assert (items_written == ucs4_len);
574 for (i = 0; i <= ucs4_len; i++)
575 g_assert (result[i] == ucs4[i]);
577 g_assert_no_error (error3);
579 for (i = 0; i <= ucs4_len; i++)
580 g_assert (result3[i] == ucs4[i]);
588 test_unicode_conversions (void)
592 gunichar2 utf16[100];
595 ucs4[0] = 0x61; ucs4[1] = 0x62; ucs4[2] = 0x63; ucs4[3] = 0;
596 utf16[0] = 0x61; utf16[1] = 0x62; utf16[2] = 0x63; utf16[3] = 0;
598 check_utf8_to_ucs4 (utf8, 3, ucs4, 3, 0);
599 check_ucs4_to_utf8 (ucs4, 3, utf8, 3, 0);
600 check_utf8_to_utf16 (utf8, 3, utf16, 3, 0);
601 check_utf16_to_utf8 (utf16, 3, utf8, 3, 0);
602 check_ucs4_to_utf16 (ucs4, 3, utf16, 3, 0);
603 check_utf16_to_ucs4 (utf16, 3, ucs4, 3, 0);
605 utf8 = "\316\261\316\262\316\263";
606 ucs4[0] = 0x03b1; ucs4[1] = 0x03b2; ucs4[2] = 0x03b3; ucs4[3] = 0;
607 utf16[0] = 0x03b1; utf16[1] = 0x03b2; utf16[2] = 0x03b3; utf16[3] = 0;
609 check_utf8_to_ucs4 (utf8, 6, ucs4, 3, 0);
610 check_ucs4_to_utf8 (ucs4, 3, utf8, 6, 0);
611 check_utf8_to_utf16 (utf8, 6, utf16, 3, 0);
612 check_utf16_to_utf8 (utf16, 3, utf8, 6, 0);
613 check_ucs4_to_utf16 (ucs4, 3, utf16, 3, 0);
614 check_utf16_to_ucs4 (utf16, 3, ucs4, 3, 0);
616 /* partial utf8 character */
618 ucs4[0] = 0x61; ucs4[1] = 0x62; ucs4[2] = 0x63; ucs4[3] = 0;
619 utf16[0] = 0x61; utf16[1] = 0x62; utf16[2] = 0x63; utf16[3] = 0;
621 check_utf8_to_ucs4 (utf8, 4, ucs4, 3, 3);
622 check_utf8_to_utf16 (utf8, 4, utf16, 3, 3);
625 utf8 = "abc\316\316";
629 check_utf8_to_ucs4 (utf8, 5, ucs4, 0, 3);
630 check_utf8_to_utf16 (utf8, 5, utf16, 0, 3);
632 /* partial utf16 character */
634 ucs4[0] = 0x61; ucs4[1] = 0x62; ucs4[2] = 0;
635 utf16[0] = 0x61; utf16[1] = 0x62; utf16[2] = 0xd801; utf16[3] = 0;
637 check_utf16_to_utf8 (utf16, 3, utf8, 2, 2);
638 check_utf16_to_ucs4 (utf16, 3, ucs4, 2, 2);
643 utf16[0] = 0x61; utf16[1] = 0x62; utf16[2] = 0xdc01; utf16[3] = 0;
645 check_utf16_to_utf8 (utf16, 3, utf8, 0, 2);
646 check_utf16_to_ucs4 (utf16, 3, ucs4, 0, 2);
650 ucs4[0] = 0x61; ucs4[1] = 0x62; ucs4[2] = 0x80000000; ucs4[3] = 0;
653 check_ucs4_to_utf8 (ucs4, 3, utf8, 0, 2);
654 check_ucs4_to_utf16 (ucs4, 3, utf16, 0, 2);
658 main (int argc, char *argv[])
661 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);
662 g_set_print_handler(mrtPrintHandler);
663 #endif /*__SYMBIAN32__*/
668 test_unicode_conversions ();
671 testResultXml("convert-test");
672 #endif /* EMULATOR */