sl@0
|
1 |
/* GLIB - Library of useful routines for C programming
|
sl@0
|
2 |
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
sl@0
|
3 |
* Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
|
sl@0
|
4 |
* This library is free software; you can redistribute it and/or
|
sl@0
|
5 |
* modify it under the terms of the GNU Lesser General Public
|
sl@0
|
6 |
* License as published by the Free Software Foundation; either
|
sl@0
|
7 |
* version 2 of the License, or (at your option) any later version.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is distributed in the hope that it will be useful,
|
sl@0
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
sl@0
|
12 |
* Lesser General Public License for more details.
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* You should have received a copy of the GNU Lesser General Public
|
sl@0
|
15 |
* License along with this library; if not, write to the
|
sl@0
|
16 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
sl@0
|
17 |
* Boston, MA 02111-1307, USA.
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
/*
|
sl@0
|
21 |
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
|
sl@0
|
22 |
* file for a list of people on the GLib Team. See the ChangeLog
|
sl@0
|
23 |
* files for a list of changes. These files are distributed with
|
sl@0
|
24 |
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
|
sl@0
|
27 |
#undef G_DISABLE_ASSERT
|
sl@0
|
28 |
#undef G_LOG_DOMAIN
|
sl@0
|
29 |
|
sl@0
|
30 |
#include <string.h>
|
sl@0
|
31 |
|
sl@0
|
32 |
#include <glib.h>
|
sl@0
|
33 |
#ifdef __SYMBIAN32__
|
sl@0
|
34 |
#include "mrt2_glib2_test.h"
|
sl@0
|
35 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
36 |
|
sl@0
|
37 |
|
sl@0
|
38 |
/* Bug 311337 */
|
sl@0
|
39 |
static void
|
sl@0
|
40 |
test_iconv_state (void)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
gchar *in = "\xf4\xe5\xf8\xe5\xed";
|
sl@0
|
43 |
gchar *expected = "\xd7\xa4\xd7\x95\xd7\xa8\xd7\x95\xd7\x9d";
|
sl@0
|
44 |
gchar *out;
|
sl@0
|
45 |
gsize bytes_read = 0;
|
sl@0
|
46 |
gsize bytes_written = 0;
|
sl@0
|
47 |
GError *error = NULL;
|
sl@0
|
48 |
|
sl@0
|
49 |
out = g_convert (in, -1, "UTF-8", "windows-1255",
|
sl@0
|
50 |
&bytes_read, &bytes_written, &error);
|
sl@0
|
51 |
|
sl@0
|
52 |
if (error && error->code == G_CONVERT_ERROR_NO_CONVERSION)
|
sl@0
|
53 |
return; /* silently skip if CP1255 is not supported, see bug 467707 */
|
sl@0
|
54 |
|
sl@0
|
55 |
g_assert_no_error (error);
|
sl@0
|
56 |
g_assert (bytes_read == 5);
|
sl@0
|
57 |
g_assert (bytes_written == 10);
|
sl@0
|
58 |
g_assert (strcmp (out, expected) == 0);
|
sl@0
|
59 |
g_free (out);
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
/* some tests involving "vulgar fraction one half" */
|
sl@0
|
63 |
static void
|
sl@0
|
64 |
test_one_half (void)
|
sl@0
|
65 |
{
|
sl@0
|
66 |
gchar *in = "\xc2\xbd";
|
sl@0
|
67 |
gchar *out;
|
sl@0
|
68 |
gsize bytes_read = 0;
|
sl@0
|
69 |
gsize bytes_written = 0;
|
sl@0
|
70 |
GError *error = NULL;
|
sl@0
|
71 |
|
sl@0
|
72 |
out = g_convert (in, -1,
|
sl@0
|
73 |
"ISO-8859-1", "UTF-8",
|
sl@0
|
74 |
&bytes_read, &bytes_written,
|
sl@0
|
75 |
&error);
|
sl@0
|
76 |
|
sl@0
|
77 |
g_assert_no_error (error);
|
sl@0
|
78 |
g_assert (bytes_read == 2);
|
sl@0
|
79 |
g_assert (bytes_written == 1);
|
sl@0
|
80 |
g_assert (strcmp (out, "\xbd") == 0);
|
sl@0
|
81 |
g_free (out);
|
sl@0
|
82 |
|
sl@0
|
83 |
out = g_convert (in, -1,
|
sl@0
|
84 |
"ISO-8859-15", "UTF-8",
|
sl@0
|
85 |
&bytes_read, &bytes_written,
|
sl@0
|
86 |
&error);
|
sl@0
|
87 |
|
sl@0
|
88 |
g_assert_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE);
|
sl@0
|
89 |
g_assert (bytes_read == 0);
|
sl@0
|
90 |
g_assert (bytes_written == 0);
|
sl@0
|
91 |
g_assert (out == NULL);
|
sl@0
|
92 |
g_clear_error (&error);
|
sl@0
|
93 |
g_free (out);
|
sl@0
|
94 |
|
sl@0
|
95 |
out = g_convert_with_fallback (in, -1,
|
sl@0
|
96 |
"ISO-8859-15", "UTF-8",
|
sl@0
|
97 |
"a",
|
sl@0
|
98 |
&bytes_read, &bytes_written,
|
sl@0
|
99 |
&error);
|
sl@0
|
100 |
|
sl@0
|
101 |
g_assert_no_error (error);
|
sl@0
|
102 |
g_assert (bytes_read == 2);
|
sl@0
|
103 |
g_assert (bytes_written == 1);
|
sl@0
|
104 |
g_assert (strcmp (out, "a") == 0);
|
sl@0
|
105 |
g_free (out);
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
static void
|
sl@0
|
109 |
test_byte_order (void)
|
sl@0
|
110 |
{
|
sl@0
|
111 |
gchar in_be[2] = { 0x03, 0x93}; /* capital gamma */
|
sl@0
|
112 |
gchar in_le[2] = { 0x93, 0x03};
|
sl@0
|
113 |
gchar *expected = "\xce\x93";
|
sl@0
|
114 |
gchar *out;
|
sl@0
|
115 |
gsize bytes_read = 0;
|
sl@0
|
116 |
gsize bytes_written = 0;
|
sl@0
|
117 |
GError *error = NULL;
|
sl@0
|
118 |
|
sl@0
|
119 |
out = g_convert (in_be, sizeof (in_be),
|
sl@0
|
120 |
"UTF-8", "UTF-16BE",
|
sl@0
|
121 |
&bytes_read, &bytes_written,
|
sl@0
|
122 |
&error);
|
sl@0
|
123 |
|
sl@0
|
124 |
g_assert_no_error (error);
|
sl@0
|
125 |
g_assert (bytes_read == 2);
|
sl@0
|
126 |
g_assert (bytes_written == 2);
|
sl@0
|
127 |
g_assert (strcmp (out, expected) == 0);
|
sl@0
|
128 |
g_free (out);
|
sl@0
|
129 |
|
sl@0
|
130 |
out = g_convert (in_le, sizeof (in_le),
|
sl@0
|
131 |
"UTF-8", "UTF-16LE",
|
sl@0
|
132 |
&bytes_read, &bytes_written,
|
sl@0
|
133 |
&error);
|
sl@0
|
134 |
|
sl@0
|
135 |
g_assert_no_error (error);
|
sl@0
|
136 |
g_assert (bytes_read == 2);
|
sl@0
|
137 |
g_assert (bytes_written == 2);
|
sl@0
|
138 |
g_assert (strcmp (out, expected) == 0);
|
sl@0
|
139 |
g_free (out);
|
sl@0
|
140 |
}
|
sl@0
|
141 |
|
sl@0
|
142 |
static void
|
sl@0
|
143 |
check_utf8_to_ucs4 (const char *utf8,
|
sl@0
|
144 |
glong utf8_len,
|
sl@0
|
145 |
const gunichar *ucs4,
|
sl@0
|
146 |
glong ucs4_len,
|
sl@0
|
147 |
glong error_pos)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
gunichar *result, *result2, *result3;
|
sl@0
|
150 |
glong items_read, items_read2;
|
sl@0
|
151 |
glong items_written, items_written2;
|
sl@0
|
152 |
GError *error, *error2, *error3;
|
sl@0
|
153 |
gint i;
|
sl@0
|
154 |
|
sl@0
|
155 |
if (!error_pos)
|
sl@0
|
156 |
{
|
sl@0
|
157 |
/* check the fast conversion */
|
sl@0
|
158 |
result = g_utf8_to_ucs4_fast (utf8, utf8_len, &items_written);
|
sl@0
|
159 |
|
sl@0
|
160 |
g_assert (items_written == ucs4_len);
|
sl@0
|
161 |
g_assert (result);
|
sl@0
|
162 |
for (i = 0; i <= items_written; i++)
|
sl@0
|
163 |
g_assert (result[i] == ucs4[i]);
|
sl@0
|
164 |
|
sl@0
|
165 |
g_free (result);
|
sl@0
|
166 |
}
|
sl@0
|
167 |
|
sl@0
|
168 |
error = NULL;
|
sl@0
|
169 |
result = g_utf8_to_ucs4 (utf8, utf8_len, &items_read, &items_written, &error);
|
sl@0
|
170 |
|
sl@0
|
171 |
if (utf8_len == strlen (utf8))
|
sl@0
|
172 |
{
|
sl@0
|
173 |
/* check that len == -1 yields identical results */
|
sl@0
|
174 |
error2 = NULL;
|
sl@0
|
175 |
result2 = g_utf8_to_ucs4 (utf8, -1, &items_read2, &items_written2, &error2);
|
sl@0
|
176 |
g_assert (error || items_read2 == items_read);
|
sl@0
|
177 |
g_assert (error || items_written2 == items_written2);
|
sl@0
|
178 |
g_assert (!!result == !!result2);
|
sl@0
|
179 |
g_assert (!!error == !!error2);
|
sl@0
|
180 |
if (result)
|
sl@0
|
181 |
for (i = 0; i <= items_written; i++)
|
sl@0
|
182 |
g_assert (result[i] == result2[i]);
|
sl@0
|
183 |
|
sl@0
|
184 |
g_free (result2);
|
sl@0
|
185 |
if (error2)
|
sl@0
|
186 |
g_error_free (error2);
|
sl@0
|
187 |
}
|
sl@0
|
188 |
|
sl@0
|
189 |
error3 = NULL;
|
sl@0
|
190 |
result3 = g_utf8_to_ucs4 (utf8, utf8_len, NULL, NULL, &error3);
|
sl@0
|
191 |
|
sl@0
|
192 |
if (error3 && error3->code == G_CONVERT_ERROR_PARTIAL_INPUT)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
g_assert_no_error (error);
|
sl@0
|
195 |
g_assert (items_read == error_pos);
|
sl@0
|
196 |
g_assert (items_written == ucs4_len);
|
sl@0
|
197 |
g_assert (result);
|
sl@0
|
198 |
for (i = 0; i <= items_written; i++)
|
sl@0
|
199 |
g_assert (result[i] == ucs4[i]);
|
sl@0
|
200 |
}
|
sl@0
|
201 |
else if (error_pos)
|
sl@0
|
202 |
{
|
sl@0
|
203 |
g_assert (error != NULL);
|
sl@0
|
204 |
g_assert (result == NULL);
|
sl@0
|
205 |
g_assert (items_read == error_pos);
|
sl@0
|
206 |
g_error_free (error);
|
sl@0
|
207 |
|
sl@0
|
208 |
g_assert (error3 != NULL);
|
sl@0
|
209 |
g_assert (result3 == NULL);
|
sl@0
|
210 |
g_error_free (error3);
|
sl@0
|
211 |
}
|
sl@0
|
212 |
else
|
sl@0
|
213 |
{
|
sl@0
|
214 |
g_assert_no_error (error);
|
sl@0
|
215 |
g_assert (items_read == utf8_len);
|
sl@0
|
216 |
g_assert (items_written == ucs4_len);
|
sl@0
|
217 |
g_assert (result);
|
sl@0
|
218 |
for (i = 0; i <= items_written; i++)
|
sl@0
|
219 |
g_assert (result[i] == ucs4[i]);
|
sl@0
|
220 |
|
sl@0
|
221 |
g_assert_no_error (error3);
|
sl@0
|
222 |
g_assert (result3);
|
sl@0
|
223 |
for (i = 0; i <= ucs4_len; i++)
|
sl@0
|
224 |
g_assert (result3[i] == ucs4[i]);
|
sl@0
|
225 |
}
|
sl@0
|
226 |
|
sl@0
|
227 |
g_free (result);
|
sl@0
|
228 |
g_free (result3);
|
sl@0
|
229 |
}
|
sl@0
|
230 |
|
sl@0
|
231 |
static void
|
sl@0
|
232 |
check_ucs4_to_utf8 (const gunichar *ucs4,
|
sl@0
|
233 |
glong ucs4_len,
|
sl@0
|
234 |
const char *utf8,
|
sl@0
|
235 |
glong utf8_len,
|
sl@0
|
236 |
glong error_pos)
|
sl@0
|
237 |
{
|
sl@0
|
238 |
gchar *result, *result2, *result3;
|
sl@0
|
239 |
glong items_read, items_read2;
|
sl@0
|
240 |
glong items_written, items_written2;
|
sl@0
|
241 |
GError *error, *error2, *error3;
|
sl@0
|
242 |
|
sl@0
|
243 |
error = NULL;
|
sl@0
|
244 |
result = g_ucs4_to_utf8 (ucs4, ucs4_len, &items_read, &items_written, &error);
|
sl@0
|
245 |
|
sl@0
|
246 |
if (ucs4[ucs4_len] == 0)
|
sl@0
|
247 |
{
|
sl@0
|
248 |
/* check that len == -1 yields identical results */
|
sl@0
|
249 |
error2 = NULL;
|
sl@0
|
250 |
result2 = g_ucs4_to_utf8 (ucs4, -1, &items_read2, &items_written2, &error2);
|
sl@0
|
251 |
|
sl@0
|
252 |
g_assert (error || items_read2 == items_read);
|
sl@0
|
253 |
g_assert (error || items_written2 == items_written);
|
sl@0
|
254 |
g_assert (!!result == !!result2);
|
sl@0
|
255 |
g_assert (!!error == !!error2);
|
sl@0
|
256 |
if (result)
|
sl@0
|
257 |
g_assert (strcmp (result, result2) == 0);
|
sl@0
|
258 |
|
sl@0
|
259 |
g_free (result2);
|
sl@0
|
260 |
if (error2)
|
sl@0
|
261 |
g_error_free (error2);
|
sl@0
|
262 |
}
|
sl@0
|
263 |
|
sl@0
|
264 |
error3 = NULL;
|
sl@0
|
265 |
result3 = g_ucs4_to_utf8 (ucs4, ucs4_len, NULL, NULL, &error3);
|
sl@0
|
266 |
|
sl@0
|
267 |
if (error_pos)
|
sl@0
|
268 |
{
|
sl@0
|
269 |
g_assert (error != NULL);
|
sl@0
|
270 |
g_assert (result == NULL);
|
sl@0
|
271 |
g_assert (items_read == error_pos);
|
sl@0
|
272 |
g_error_free (error);
|
sl@0
|
273 |
|
sl@0
|
274 |
g_assert (error3 != NULL);
|
sl@0
|
275 |
g_assert (result3 == NULL);
|
sl@0
|
276 |
g_error_free (error3);
|
sl@0
|
277 |
}
|
sl@0
|
278 |
else
|
sl@0
|
279 |
{
|
sl@0
|
280 |
g_assert_no_error (error);
|
sl@0
|
281 |
g_assert (items_read == ucs4_len);
|
sl@0
|
282 |
g_assert (items_written == utf8_len);
|
sl@0
|
283 |
g_assert (result);
|
sl@0
|
284 |
g_assert (strcmp (result, utf8) == 0);
|
sl@0
|
285 |
|
sl@0
|
286 |
g_assert_no_error (error3);
|
sl@0
|
287 |
g_assert (result3);
|
sl@0
|
288 |
g_assert (strcmp (result3, utf8) == 0);
|
sl@0
|
289 |
}
|
sl@0
|
290 |
|
sl@0
|
291 |
g_free (result);
|
sl@0
|
292 |
g_free (result3);
|
sl@0
|
293 |
}
|
sl@0
|
294 |
|
sl@0
|
295 |
static void
|
sl@0
|
296 |
check_utf8_to_utf16 (const char *utf8,
|
sl@0
|
297 |
glong utf8_len,
|
sl@0
|
298 |
const gunichar2 *utf16,
|
sl@0
|
299 |
glong utf16_len,
|
sl@0
|
300 |
glong error_pos)
|
sl@0
|
301 |
{
|
sl@0
|
302 |
gunichar2 *result, *result2, *result3;
|
sl@0
|
303 |
glong items_read, items_read2;
|
sl@0
|
304 |
glong items_written, items_written2;
|
sl@0
|
305 |
GError *error, *error2, *error3;
|
sl@0
|
306 |
gint i;
|
sl@0
|
307 |
|
sl@0
|
308 |
error = NULL;
|
sl@0
|
309 |
result = g_utf8_to_utf16 (utf8, utf8_len, &items_read, &items_written, &error);
|
sl@0
|
310 |
|
sl@0
|
311 |
if (utf8_len == strlen (utf8))
|
sl@0
|
312 |
{
|
sl@0
|
313 |
/* check that len == -1 yields identical results */
|
sl@0
|
314 |
error2 = NULL;
|
sl@0
|
315 |
result2 = g_utf8_to_utf16 (utf8, -1, &items_read2, &items_written2, &error2);
|
sl@0
|
316 |
g_assert (error || items_read2 == items_read);
|
sl@0
|
317 |
g_assert (error || items_written2 == items_written2);
|
sl@0
|
318 |
g_assert (!!result == !!result2);
|
sl@0
|
319 |
g_assert (!!error == !!error2);
|
sl@0
|
320 |
if (result)
|
sl@0
|
321 |
for (i = 0; i <= items_written; i++)
|
sl@0
|
322 |
g_assert (result[i] == result2[i]);
|
sl@0
|
323 |
|
sl@0
|
324 |
g_free (result2);
|
sl@0
|
325 |
if (error2)
|
sl@0
|
326 |
g_error_free (error2);
|
sl@0
|
327 |
}
|
sl@0
|
328 |
|
sl@0
|
329 |
error3 = NULL;
|
sl@0
|
330 |
result3 = g_utf8_to_utf16 (utf8, utf8_len, NULL, NULL, &error3);
|
sl@0
|
331 |
|
sl@0
|
332 |
if (error3 && error3->code == G_CONVERT_ERROR_PARTIAL_INPUT)
|
sl@0
|
333 |
{
|
sl@0
|
334 |
g_assert_no_error (error);
|
sl@0
|
335 |
g_assert (items_read == error_pos);
|
sl@0
|
336 |
g_assert (items_written == utf16_len);
|
sl@0
|
337 |
g_assert (result);
|
sl@0
|
338 |
for (i = 0; i <= items_written; i++)
|
sl@0
|
339 |
g_assert (result[i] == utf16[i]);
|
sl@0
|
340 |
}
|
sl@0
|
341 |
else if (error_pos)
|
sl@0
|
342 |
{
|
sl@0
|
343 |
g_assert (error != NULL);
|
sl@0
|
344 |
g_assert (result == NULL);
|
sl@0
|
345 |
g_assert (items_read == error_pos);
|
sl@0
|
346 |
g_error_free (error);
|
sl@0
|
347 |
|
sl@0
|
348 |
g_assert (error3 != NULL);
|
sl@0
|
349 |
g_assert (result3 == NULL);
|
sl@0
|
350 |
g_error_free (error3);
|
sl@0
|
351 |
}
|
sl@0
|
352 |
else
|
sl@0
|
353 |
{
|
sl@0
|
354 |
g_assert_no_error (error);
|
sl@0
|
355 |
g_assert (items_read == utf8_len);
|
sl@0
|
356 |
g_assert (items_written == utf16_len);
|
sl@0
|
357 |
g_assert (result);
|
sl@0
|
358 |
for (i = 0; i <= items_written; i++)
|
sl@0
|
359 |
g_assert (result[i] == utf16[i]);
|
sl@0
|
360 |
|
sl@0
|
361 |
g_assert_no_error (error3);
|
sl@0
|
362 |
g_assert (result3);
|
sl@0
|
363 |
for (i = 0; i <= utf16_len; i++)
|
sl@0
|
364 |
g_assert (result3[i] == utf16[i]);
|
sl@0
|
365 |
}
|
sl@0
|
366 |
|
sl@0
|
367 |
g_free (result);
|
sl@0
|
368 |
g_free (result3);
|
sl@0
|
369 |
}
|
sl@0
|
370 |
|
sl@0
|
371 |
static void
|
sl@0
|
372 |
check_utf16_to_utf8 (const gunichar2 *utf16,
|
sl@0
|
373 |
glong utf16_len,
|
sl@0
|
374 |
const char *utf8,
|
sl@0
|
375 |
glong utf8_len,
|
sl@0
|
376 |
glong error_pos)
|
sl@0
|
377 |
{
|
sl@0
|
378 |
gchar *result, *result2, *result3;
|
sl@0
|
379 |
glong items_read, items_read2;
|
sl@0
|
380 |
glong items_written, items_written2;
|
sl@0
|
381 |
GError *error, *error2, *error3;
|
sl@0
|
382 |
|
sl@0
|
383 |
error = NULL;
|
sl@0
|
384 |
result = g_utf16_to_utf8 (utf16, utf16_len, &items_read, &items_written, &error);
|
sl@0
|
385 |
if (utf16[utf16_len] == 0)
|
sl@0
|
386 |
{
|
sl@0
|
387 |
/* check that len == -1 yields identical results */
|
sl@0
|
388 |
error2 = NULL;
|
sl@0
|
389 |
result2 = g_utf16_to_utf8 (utf16, -1, &items_read2, &items_written2, &error2);
|
sl@0
|
390 |
|
sl@0
|
391 |
g_assert (error || items_read2 == items_read);
|
sl@0
|
392 |
g_assert (error || items_written2 == items_written);
|
sl@0
|
393 |
g_assert (!!result == !!result2);
|
sl@0
|
394 |
g_assert (!!error == !!error2);
|
sl@0
|
395 |
if (result)
|
sl@0
|
396 |
g_assert (strcmp (result, result2) == 0);
|
sl@0
|
397 |
|
sl@0
|
398 |
g_free (result2);
|
sl@0
|
399 |
if (error2)
|
sl@0
|
400 |
g_error_free (error2);
|
sl@0
|
401 |
}
|
sl@0
|
402 |
|
sl@0
|
403 |
error3 = NULL;
|
sl@0
|
404 |
result3 = g_utf16_to_utf8 (utf16, utf16_len, NULL, NULL, &error3);
|
sl@0
|
405 |
|
sl@0
|
406 |
if (error3 && error3->code == G_CONVERT_ERROR_PARTIAL_INPUT)
|
sl@0
|
407 |
{
|
sl@0
|
408 |
g_assert_no_error (error);
|
sl@0
|
409 |
g_assert (items_read == error_pos);
|
sl@0
|
410 |
g_assert (items_read + 1 == utf16_len);
|
sl@0
|
411 |
g_assert (items_written == utf8_len);
|
sl@0
|
412 |
g_assert (result);
|
sl@0
|
413 |
g_assert (strcmp (result, utf8) == 0);
|
sl@0
|
414 |
}
|
sl@0
|
415 |
else if (error_pos)
|
sl@0
|
416 |
{
|
sl@0
|
417 |
g_assert (error != NULL);
|
sl@0
|
418 |
g_assert (result == NULL);
|
sl@0
|
419 |
g_assert (items_read == error_pos);
|
sl@0
|
420 |
g_error_free (error);
|
sl@0
|
421 |
|
sl@0
|
422 |
g_assert (error3 != NULL);
|
sl@0
|
423 |
g_assert (result3 == NULL);
|
sl@0
|
424 |
g_error_free (error3);
|
sl@0
|
425 |
}
|
sl@0
|
426 |
else
|
sl@0
|
427 |
{
|
sl@0
|
428 |
g_assert_no_error (error);
|
sl@0
|
429 |
g_assert (items_read == utf16_len);
|
sl@0
|
430 |
g_assert (items_written == utf8_len);
|
sl@0
|
431 |
g_assert (result);
|
sl@0
|
432 |
g_assert (strcmp (result, utf8) == 0);
|
sl@0
|
433 |
|
sl@0
|
434 |
g_assert_no_error (error3);
|
sl@0
|
435 |
g_assert (result3);
|
sl@0
|
436 |
g_assert (strcmp (result3, utf8) == 0);
|
sl@0
|
437 |
}
|
sl@0
|
438 |
|
sl@0
|
439 |
g_free (result);
|
sl@0
|
440 |
g_free (result3);
|
sl@0
|
441 |
}
|
sl@0
|
442 |
|
sl@0
|
443 |
static void
|
sl@0
|
444 |
check_ucs4_to_utf16 (const gunichar *ucs4,
|
sl@0
|
445 |
glong ucs4_len,
|
sl@0
|
446 |
const gunichar2 *utf16,
|
sl@0
|
447 |
glong utf16_len,
|
sl@0
|
448 |
glong error_pos)
|
sl@0
|
449 |
{
|
sl@0
|
450 |
gunichar2 *result, *result2, *result3;
|
sl@0
|
451 |
glong items_read, items_read2;
|
sl@0
|
452 |
glong items_written, items_written2;
|
sl@0
|
453 |
GError *error, *error2, *error3;
|
sl@0
|
454 |
gint i;
|
sl@0
|
455 |
|
sl@0
|
456 |
error = NULL;
|
sl@0
|
457 |
result = g_ucs4_to_utf16 (ucs4, ucs4_len, &items_read, &items_written, &error);
|
sl@0
|
458 |
|
sl@0
|
459 |
if (ucs4[ucs4_len] == 0)
|
sl@0
|
460 |
{
|
sl@0
|
461 |
/* check that len == -1 yields identical results */
|
sl@0
|
462 |
error2 = NULL;
|
sl@0
|
463 |
result2 = g_ucs4_to_utf16 (ucs4, -1, &items_read2, &items_written2, &error2);
|
sl@0
|
464 |
|
sl@0
|
465 |
g_assert (error || items_read2 == items_read);
|
sl@0
|
466 |
g_assert (error || items_written2 == items_written);
|
sl@0
|
467 |
g_assert (!!result == !!result2);
|
sl@0
|
468 |
g_assert (!!error == !!error2);
|
sl@0
|
469 |
if (result)
|
sl@0
|
470 |
for (i = 0; i <= utf16_len; i++)
|
sl@0
|
471 |
g_assert (result[i] == result2[i]);
|
sl@0
|
472 |
|
sl@0
|
473 |
g_free (result2);
|
sl@0
|
474 |
if (error2)
|
sl@0
|
475 |
g_error_free (error2);
|
sl@0
|
476 |
}
|
sl@0
|
477 |
|
sl@0
|
478 |
error3 = NULL;
|
sl@0
|
479 |
result3 = g_ucs4_to_utf16 (ucs4, -1, NULL, NULL, &error3);
|
sl@0
|
480 |
|
sl@0
|
481 |
if (error_pos)
|
sl@0
|
482 |
{
|
sl@0
|
483 |
g_assert (error != NULL);
|
sl@0
|
484 |
g_assert (result == NULL);
|
sl@0
|
485 |
g_assert (items_read == error_pos);
|
sl@0
|
486 |
g_error_free (error);
|
sl@0
|
487 |
|
sl@0
|
488 |
g_assert (error3 != NULL);
|
sl@0
|
489 |
g_assert (result3 == NULL);
|
sl@0
|
490 |
g_error_free (error3);
|
sl@0
|
491 |
}
|
sl@0
|
492 |
else
|
sl@0
|
493 |
{
|
sl@0
|
494 |
g_assert_no_error (error);
|
sl@0
|
495 |
g_assert (items_read == ucs4_len);
|
sl@0
|
496 |
g_assert (items_written == utf16_len);
|
sl@0
|
497 |
g_assert (result);
|
sl@0
|
498 |
for (i = 0; i <= utf16_len; i++)
|
sl@0
|
499 |
g_assert (result[i] == utf16[i]);
|
sl@0
|
500 |
|
sl@0
|
501 |
g_assert_no_error (error3);
|
sl@0
|
502 |
g_assert (result3);
|
sl@0
|
503 |
for (i = 0; i <= utf16_len; i++)
|
sl@0
|
504 |
g_assert (result3[i] == utf16[i]);
|
sl@0
|
505 |
}
|
sl@0
|
506 |
|
sl@0
|
507 |
g_free (result);
|
sl@0
|
508 |
g_free (result3);
|
sl@0
|
509 |
}
|
sl@0
|
510 |
|
sl@0
|
511 |
static void
|
sl@0
|
512 |
check_utf16_to_ucs4 (const gunichar2 *utf16,
|
sl@0
|
513 |
glong utf16_len,
|
sl@0
|
514 |
const gunichar *ucs4,
|
sl@0
|
515 |
glong ucs4_len,
|
sl@0
|
516 |
glong error_pos)
|
sl@0
|
517 |
{
|
sl@0
|
518 |
gunichar *result, *result2, *result3;
|
sl@0
|
519 |
glong items_read, items_read2;
|
sl@0
|
520 |
glong items_written, items_written2;
|
sl@0
|
521 |
GError *error, *error2, *error3;
|
sl@0
|
522 |
gint i;
|
sl@0
|
523 |
|
sl@0
|
524 |
error = NULL;
|
sl@0
|
525 |
result = g_utf16_to_ucs4 (utf16, utf16_len, &items_read, &items_written, &error);
|
sl@0
|
526 |
if (utf16[utf16_len] == 0)
|
sl@0
|
527 |
{
|
sl@0
|
528 |
/* check that len == -1 yields identical results */
|
sl@0
|
529 |
error2 = NULL;
|
sl@0
|
530 |
result2 = g_utf16_to_ucs4 (utf16, -1, &items_read2, &items_written2, &error2);
|
sl@0
|
531 |
g_assert (error || items_read2 == items_read);
|
sl@0
|
532 |
g_assert (error || items_written2 == items_written2);
|
sl@0
|
533 |
g_assert (!!result == !!result2);
|
sl@0
|
534 |
g_assert (!!error == !!error2);
|
sl@0
|
535 |
if (result)
|
sl@0
|
536 |
for (i = 0; i <= items_written; i++)
|
sl@0
|
537 |
g_assert (result[i] == result2[i]);
|
sl@0
|
538 |
|
sl@0
|
539 |
g_free (result2);
|
sl@0
|
540 |
if (error2)
|
sl@0
|
541 |
g_error_free (error2);
|
sl@0
|
542 |
}
|
sl@0
|
543 |
|
sl@0
|
544 |
error3 = NULL;
|
sl@0
|
545 |
result3 = g_utf16_to_ucs4 (utf16, utf16_len, NULL, NULL, &error3);
|
sl@0
|
546 |
|
sl@0
|
547 |
if (error3 && error3->code == G_CONVERT_ERROR_PARTIAL_INPUT)
|
sl@0
|
548 |
{
|
sl@0
|
549 |
g_assert_no_error (error);
|
sl@0
|
550 |
g_assert (items_read == error_pos);
|
sl@0
|
551 |
g_assert (items_read + 1 == utf16_len);
|
sl@0
|
552 |
g_assert (items_written == ucs4_len);
|
sl@0
|
553 |
g_assert (result);
|
sl@0
|
554 |
for (i = 0; i <= items_written; i++)
|
sl@0
|
555 |
g_assert (result[i] == ucs4[i]);
|
sl@0
|
556 |
}
|
sl@0
|
557 |
else if (error_pos)
|
sl@0
|
558 |
{
|
sl@0
|
559 |
g_assert (error != NULL);
|
sl@0
|
560 |
g_assert (result == NULL);
|
sl@0
|
561 |
g_assert (items_read == error_pos);
|
sl@0
|
562 |
g_error_free (error);
|
sl@0
|
563 |
|
sl@0
|
564 |
g_assert (error3 != NULL);
|
sl@0
|
565 |
g_assert (result3 == NULL);
|
sl@0
|
566 |
g_error_free (error3);
|
sl@0
|
567 |
}
|
sl@0
|
568 |
else
|
sl@0
|
569 |
{
|
sl@0
|
570 |
g_assert_no_error (error);
|
sl@0
|
571 |
g_assert (items_read == utf16_len);
|
sl@0
|
572 |
g_assert (items_written == ucs4_len);
|
sl@0
|
573 |
g_assert (result);
|
sl@0
|
574 |
for (i = 0; i <= ucs4_len; i++)
|
sl@0
|
575 |
g_assert (result[i] == ucs4[i]);
|
sl@0
|
576 |
|
sl@0
|
577 |
g_assert_no_error (error3);
|
sl@0
|
578 |
g_assert (result3);
|
sl@0
|
579 |
for (i = 0; i <= ucs4_len; i++)
|
sl@0
|
580 |
g_assert (result3[i] == ucs4[i]);
|
sl@0
|
581 |
}
|
sl@0
|
582 |
|
sl@0
|
583 |
g_free (result);
|
sl@0
|
584 |
g_free (result3);
|
sl@0
|
585 |
}
|
sl@0
|
586 |
|
sl@0
|
587 |
static void
|
sl@0
|
588 |
test_unicode_conversions (void)
|
sl@0
|
589 |
{
|
sl@0
|
590 |
char *utf8;
|
sl@0
|
591 |
gunichar ucs4[100];
|
sl@0
|
592 |
gunichar2 utf16[100];
|
sl@0
|
593 |
|
sl@0
|
594 |
utf8 = "abc";
|
sl@0
|
595 |
ucs4[0] = 0x61; ucs4[1] = 0x62; ucs4[2] = 0x63; ucs4[3] = 0;
|
sl@0
|
596 |
utf16[0] = 0x61; utf16[1] = 0x62; utf16[2] = 0x63; utf16[3] = 0;
|
sl@0
|
597 |
|
sl@0
|
598 |
check_utf8_to_ucs4 (utf8, 3, ucs4, 3, 0);
|
sl@0
|
599 |
check_ucs4_to_utf8 (ucs4, 3, utf8, 3, 0);
|
sl@0
|
600 |
check_utf8_to_utf16 (utf8, 3, utf16, 3, 0);
|
sl@0
|
601 |
check_utf16_to_utf8 (utf16, 3, utf8, 3, 0);
|
sl@0
|
602 |
check_ucs4_to_utf16 (ucs4, 3, utf16, 3, 0);
|
sl@0
|
603 |
check_utf16_to_ucs4 (utf16, 3, ucs4, 3, 0);
|
sl@0
|
604 |
|
sl@0
|
605 |
utf8 = "\316\261\316\262\316\263";
|
sl@0
|
606 |
ucs4[0] = 0x03b1; ucs4[1] = 0x03b2; ucs4[2] = 0x03b3; ucs4[3] = 0;
|
sl@0
|
607 |
utf16[0] = 0x03b1; utf16[1] = 0x03b2; utf16[2] = 0x03b3; utf16[3] = 0;
|
sl@0
|
608 |
|
sl@0
|
609 |
check_utf8_to_ucs4 (utf8, 6, ucs4, 3, 0);
|
sl@0
|
610 |
check_ucs4_to_utf8 (ucs4, 3, utf8, 6, 0);
|
sl@0
|
611 |
check_utf8_to_utf16 (utf8, 6, utf16, 3, 0);
|
sl@0
|
612 |
check_utf16_to_utf8 (utf16, 3, utf8, 6, 0);
|
sl@0
|
613 |
check_ucs4_to_utf16 (ucs4, 3, utf16, 3, 0);
|
sl@0
|
614 |
check_utf16_to_ucs4 (utf16, 3, ucs4, 3, 0);
|
sl@0
|
615 |
|
sl@0
|
616 |
/* partial utf8 character */
|
sl@0
|
617 |
utf8 = "abc\316";
|
sl@0
|
618 |
ucs4[0] = 0x61; ucs4[1] = 0x62; ucs4[2] = 0x63; ucs4[3] = 0;
|
sl@0
|
619 |
utf16[0] = 0x61; utf16[1] = 0x62; utf16[2] = 0x63; utf16[3] = 0;
|
sl@0
|
620 |
|
sl@0
|
621 |
check_utf8_to_ucs4 (utf8, 4, ucs4, 3, 3);
|
sl@0
|
622 |
check_utf8_to_utf16 (utf8, 4, utf16, 3, 3);
|
sl@0
|
623 |
|
sl@0
|
624 |
/* invalid utf8 */
|
sl@0
|
625 |
utf8 = "abc\316\316";
|
sl@0
|
626 |
ucs4[0] = 0;
|
sl@0
|
627 |
utf16[0] = 0;
|
sl@0
|
628 |
|
sl@0
|
629 |
check_utf8_to_ucs4 (utf8, 5, ucs4, 0, 3);
|
sl@0
|
630 |
check_utf8_to_utf16 (utf8, 5, utf16, 0, 3);
|
sl@0
|
631 |
|
sl@0
|
632 |
/* partial utf16 character */
|
sl@0
|
633 |
utf8 = "ab";
|
sl@0
|
634 |
ucs4[0] = 0x61; ucs4[1] = 0x62; ucs4[2] = 0;
|
sl@0
|
635 |
utf16[0] = 0x61; utf16[1] = 0x62; utf16[2] = 0xd801; utf16[3] = 0;
|
sl@0
|
636 |
|
sl@0
|
637 |
check_utf16_to_utf8 (utf16, 3, utf8, 2, 2);
|
sl@0
|
638 |
check_utf16_to_ucs4 (utf16, 3, ucs4, 2, 2);
|
sl@0
|
639 |
|
sl@0
|
640 |
/* invalid utf16 */
|
sl@0
|
641 |
utf8 = NULL;
|
sl@0
|
642 |
ucs4[0] = 0;
|
sl@0
|
643 |
utf16[0] = 0x61; utf16[1] = 0x62; utf16[2] = 0xdc01; utf16[3] = 0;
|
sl@0
|
644 |
|
sl@0
|
645 |
check_utf16_to_utf8 (utf16, 3, utf8, 0, 2);
|
sl@0
|
646 |
check_utf16_to_ucs4 (utf16, 3, ucs4, 0, 2);
|
sl@0
|
647 |
|
sl@0
|
648 |
/* invalid ucs4 */
|
sl@0
|
649 |
utf8 = NULL;
|
sl@0
|
650 |
ucs4[0] = 0x61; ucs4[1] = 0x62; ucs4[2] = 0x80000000; ucs4[3] = 0;
|
sl@0
|
651 |
utf16[0] = 0;
|
sl@0
|
652 |
|
sl@0
|
653 |
check_ucs4_to_utf8 (ucs4, 3, utf8, 0, 2);
|
sl@0
|
654 |
check_ucs4_to_utf16 (ucs4, 3, utf16, 0, 2);
|
sl@0
|
655 |
}
|
sl@0
|
656 |
|
sl@0
|
657 |
int
|
sl@0
|
658 |
main (int argc, char *argv[])
|
sl@0
|
659 |
{
|
sl@0
|
660 |
#ifdef __SYMBIAN32__
|
sl@0
|
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);
|
sl@0
|
662 |
g_set_print_handler(mrtPrintHandler);
|
sl@0
|
663 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
664 |
|
sl@0
|
665 |
test_iconv_state ();
|
sl@0
|
666 |
test_one_half ();
|
sl@0
|
667 |
test_byte_order ();
|
sl@0
|
668 |
test_unicode_conversions ();
|
sl@0
|
669 |
|
sl@0
|
670 |
#if __SYMBIAN32__
|
sl@0
|
671 |
testResultXml("convert-test");
|
sl@0
|
672 |
#endif /* EMULATOR */
|
sl@0
|
673 |
|
sl@0
|
674 |
return 0;
|
sl@0
|
675 |
}
|