Allow VPATH usage of vc-list-files.
[gnulib.git] / tests / uniconv / test-u32-conv-from-enc.c
1 /* Test of conversion to UTF-32 from legacy encodings.
2    Copyright (C) 2007 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program 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
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
18
19 #include <config.h>
20
21 #include "uniconv.h"
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #include "unistr.h"
28
29 #define SIZEOF(array) (sizeof (array) / sizeof (array[0]))
30 #define ASSERT(expr) \
31   do                                                                         \
32     {                                                                        \
33       if (!(expr))                                                           \
34         {                                                                    \
35           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
36           abort ();                                                          \
37         }                                                                    \
38     }                                                                        \
39   while (0)
40
41 /* Magic number for detecting bounds violations.  */
42 #define MAGIC 0x1983EFF1
43
44 static size_t *
45 new_offsets (size_t n)
46 {
47   size_t *offsets = (size_t *) malloc ((n + 1) * sizeof (size_t));
48   offsets[n] = MAGIC;
49   return offsets;
50 }
51
52 int
53 main ()
54 {
55   static enum iconv_ilseq_handler handlers[] =
56     { iconveh_error, iconveh_question_mark, iconveh_escape_sequence };
57   size_t h;
58   size_t o;
59   size_t i;
60
61 #if HAVE_ICONV
62   /* Assume that iconv() supports at least the encodings ASCII, ISO-8859-1,
63      ISO-8859-2, and UTF-8.  */
64
65   /* Test conversion from ISO-8859-1 to UTF-16 with no errors.  */
66   for (h = 0; h < SIZEOF (handlers); h++)
67     {
68       enum iconv_ilseq_handler handler = handlers[h];
69       static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337";
70       static const uint32_t expected[] = /* Ärger mit bösen Bübchen ohne Augenmaß */
71         {
72           0xC4, 'r', 'g', 'e', 'r', ' ', 'm', 'i', 't', ' ', 'b', 0xF6, 's',
73           'e', 'n', ' ', 'B', 0xFC, 'b', 'c', 'h', 'e', 'n', ' ', 'o', 'h',
74           'n', 'e', ' ', 'A', 'u', 'g', 'e', 'n', 'm', 'a', 0xDF
75         };
76       for (o = 0; o < 2; o++)
77         {
78           size_t *offsets = (o ? new_offsets (strlen (input)) : NULL);
79           uint32_t *result = NULL;
80           size_t length = 0;
81           int retval = u32_conv_from_encoding ("ISO-8859-1", handler,
82                                                input, strlen (input),
83                                                offsets,
84                                                &result, &length);
85           ASSERT (retval == 0);
86           ASSERT (length == SIZEOF (expected));
87           ASSERT (result != NULL && u32_cmp (result, expected, SIZEOF (expected)) == 0);
88           if (o)
89             {
90               for (i = 0; i < 37; i++)
91                 ASSERT (offsets[i] == i);
92               ASSERT (offsets[37] == MAGIC);
93               free (offsets);
94             }
95           free (result);
96         }
97     }
98
99   /* Test conversion from ISO-8859-2 to UTF-16 with no errors.  */
100   for (h = 0; h < SIZEOF (handlers); h++)
101     {
102       enum iconv_ilseq_handler handler = handlers[h];
103       static const char input[] = "Rafa\263 Maszkowski"; /* Rafał Maszkowski */
104       static const uint32_t expected[] =
105         {
106           'R', 'a', 'f', 'a', 0x0142, ' ', 'M', 'a', 's', 'z', 'k', 'o', 'w',
107           's', 'k', 'i'
108         };
109       for (o = 0; o < 2; o++)
110         {
111           size_t *offsets = (o ? new_offsets (strlen (input)) : NULL);
112           uint32_t *result = NULL;
113           size_t length = 0;
114           int retval = u32_conv_from_encoding ("ISO-8859-2", handler,
115                                                input, strlen (input),
116                                                offsets,
117                                                &result, &length);
118           ASSERT (retval == 0);
119           ASSERT (length == SIZEOF (expected));
120           ASSERT (result != NULL && u32_cmp (result, expected, SIZEOF (expected)) == 0);
121           if (o)
122             {
123               for (i = 0; i < 16; i++)
124                 ASSERT (offsets[i] == i);
125               ASSERT (offsets[16] == MAGIC);
126               free (offsets);
127             }
128           free (result);
129         }
130     }
131
132   /* autodetect_jp is only supported when iconv() support ISO-2022-JP-2.  */
133 # if defined _LIBICONV_VERSION || !(defined _AIX || defined __sgi || defined __hpux || defined __osf__)
134   /* Test conversions from autodetect_jp to UTF-16.  */
135   for (h = 0; h < SIZEOF (handlers); h++)
136     {
137       enum iconv_ilseq_handler handler = handlers[h];
138       static const char input[] = "\244\263\244\363\244\313\244\301\244\317"; /* こんにちは in EUC-JP */
139       static const uint32_t expected[] = /* こんにちは */
140         {
141           0x3053, 0x3093, 0x306B, 0x3061, 0x306F
142         };
143       for (o = 0; o < 2; o++)
144         {
145           size_t *offsets = (o ? new_offsets (strlen (input)) : NULL);
146           uint32_t *result = NULL;
147           size_t length = 0;
148           int retval = u32_conv_from_encoding ("autodetect_jp", handler,
149                                                input, strlen (input),
150                                                offsets,
151                                                &result, &length);
152           ASSERT (retval == 0);
153           ASSERT (length == SIZEOF (expected));
154           ASSERT (result != NULL && u32_cmp (result, expected, SIZEOF (expected)) == 0);
155           if (o)
156             {
157               for (i = 0; i < 10; i++)
158                 ASSERT (offsets[i] == ((i % 2) == 0 ? i / 2 : (size_t)(-1)));
159               ASSERT (offsets[10] == MAGIC);
160               free (offsets);
161             }
162           free (result);
163         }
164     }
165   for (h = 0; h < SIZEOF (handlers); h++)
166     {
167       enum iconv_ilseq_handler handler = handlers[h];
168       static const char input[] = "\202\261\202\361\202\311\202\277\202\315"; /* こんにちは in Shift_JIS */
169       static const uint32_t expected[] = /* こんにちは */
170         {
171           0x3053, 0x3093, 0x306B, 0x3061, 0x306F
172         };
173       for (o = 0; o < 2; o++)
174         {
175           size_t *offsets = (o ? new_offsets (strlen (input)) : NULL);
176           uint32_t *result = NULL;
177           size_t length = 0;
178           int retval = u32_conv_from_encoding ("autodetect_jp", handler,
179                                                input, strlen (input),
180                                                offsets,
181                                                &result, &length);
182           ASSERT (retval == 0);
183           ASSERT (length == SIZEOF (expected));
184           ASSERT (result != NULL && u32_cmp (result, expected, SIZEOF (expected)) == 0);
185           if (o)
186             {
187               for (i = 0; i < 10; i++)
188                 ASSERT (offsets[i] == ((i % 2) == 0 ? i / 2 : (size_t)(-1)));
189               ASSERT (offsets[10] == MAGIC);
190               free (offsets);
191             }
192           free (result);
193         }
194     }
195   for (h = 0; h < SIZEOF (handlers); h++)
196     {
197       enum iconv_ilseq_handler handler = handlers[h];
198       static const char input[] = "\033$B$3$s$K$A$O\033(B"; /* こんにちは in ISO-2022-JP-2 */
199       static const uint32_t expected[] = /* こんにちは */
200         {
201           0x3053, 0x3093, 0x306B, 0x3061, 0x306F
202         };
203       for (o = 0; o < 2; o++)
204         {
205           size_t *offsets = (o ? new_offsets (strlen (input)) : NULL);
206           uint32_t *result = NULL;
207           size_t length = 0;
208           int retval = u32_conv_from_encoding ("autodetect_jp", handler,
209                                                input, strlen (input),
210                                                offsets,
211                                                &result, &length);
212           ASSERT (retval == 0);
213           ASSERT (length == SIZEOF (expected));
214           ASSERT (result != NULL && u32_cmp (result, expected, SIZEOF (expected)) == 0);
215           if (o)
216             {
217               for (i = 0; i < 16; i++)
218                 ASSERT (offsets[i] == (i == 0 ? 0 :
219                                        i == 5 ? 1 :
220                                        i == 7 ? 2 :
221                                        i == 9 ? 3 :
222                                        i == 11 ? 4 :
223                                        i == 13 ? 5 :
224                                        (size_t)(-1)));
225               ASSERT (offsets[16] == MAGIC);
226               free (offsets);
227             }
228           free (result);
229         }
230     }
231 # endif
232
233 #endif
234
235   return 0;
236 }