Use spaces for indentation, not tabs.
[gnulib.git] / tests / uniconv / test-u8-conv-from-enc.c
1 /* Test of conversion to UTF-8 from legacy encodings.
2    Copyright (C) 2007-2009 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           fflush (stderr);                                                   \
37           abort ();                                                          \
38         }                                                                    \
39     }                                                                        \
40   while (0)
41
42 /* Magic number for detecting bounds violations.  */
43 #define MAGIC 0x1983EFF1
44
45 static size_t *
46 new_offsets (size_t n)
47 {
48   size_t *offsets = (size_t *) malloc ((n + 1) * sizeof (size_t));
49   offsets[n] = MAGIC;
50   return offsets;
51 }
52
53 int
54 main ()
55 {
56   static enum iconv_ilseq_handler handlers[] =
57     { iconveh_error, iconveh_question_mark, iconveh_escape_sequence };
58   size_t h;
59   size_t o;
60   size_t i;
61
62 #if HAVE_ICONV
63   /* Assume that iconv() supports at least the encodings ASCII, ISO-8859-1,
64      ISO-8859-2, and UTF-8.  */
65
66   /* Test conversion from ISO-8859-1 to UTF-8 with no errors.  */
67   for (h = 0; h < SIZEOF (handlers); h++)
68     {
69       enum iconv_ilseq_handler handler = handlers[h];
70       static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337";
71       static const uint8_t expected[] = "\303\204rger mit b\303\266sen B\303\274bchen ohne Augenma\303\237";
72       for (o = 0; o < 2; o++)
73         {
74           size_t *offsets = (o ? new_offsets (strlen (input)) : NULL);
75           size_t length;
76           uint8_t *result = u8_conv_from_encoding ("ISO-8859-1", handler,
77                                                    input, strlen (input),
78                                                    offsets,
79                                                    NULL, &length);
80           ASSERT (result != NULL);
81           ASSERT (length == u8_strlen (expected));
82           ASSERT (u8_cmp (result, expected, u8_strlen (expected)) == 0);
83           if (o)
84             {
85               for (i = 0; i < 37; i++)
86                 ASSERT (offsets[i] == (i < 1 ? i :
87                                        i < 12 ? i + 1 :
88                                        i < 18 ? i + 2 :
89                                        i + 3));
90               ASSERT (offsets[37] == MAGIC);
91               free (offsets);
92             }
93           free (result);
94         }
95     }
96
97   /* Test conversion from ISO-8859-2 to UTF-8 with no errors.  */
98   for (h = 0; h < SIZEOF (handlers); h++)
99     {
100       enum iconv_ilseq_handler handler = handlers[h];
101       static const char input[] = "Rafa\263 Maszkowski"; /* Rafał Maszkowski */
102       static const uint8_t expected[] = "Rafa\305\202 Maszkowski";
103       for (o = 0; o < 2; o++)
104         {
105           size_t *offsets = (o ? new_offsets (strlen (input)) : NULL);
106           size_t length;
107           uint8_t *result = u8_conv_from_encoding ("ISO-8859-2", handler,
108                                                    input, strlen (input),
109                                                    offsets,
110                                                    NULL, &length);
111           ASSERT (result != NULL);
112           ASSERT (length == u8_strlen (expected));
113           ASSERT (u8_cmp (result, expected, u8_strlen (expected)) == 0);
114           if (o)
115             {
116               for (i = 0; i < 16; i++)
117                 ASSERT (offsets[i] == (i < 5 ? i :
118                                        i + 1));
119               ASSERT (offsets[16] == MAGIC);
120               free (offsets);
121             }
122           free (result);
123         }
124     }
125
126   /* autodetect_jp is only supported when iconv() support ISO-2022-JP-2.  */
127 # if defined _LIBICONV_VERSION || !(defined _AIX || defined __sgi || defined __hpux || defined __osf__ || defined __sun)
128   /* Test conversions from autodetect_jp to UTF-8.  */
129   for (h = 0; h < SIZEOF (handlers); h++)
130     {
131       enum iconv_ilseq_handler handler = handlers[h];
132       static const char input[] = "\244\263\244\363\244\313\244\301\244\317"; /* こんにちは in EUC-JP */
133       static const uint8_t expected[] = "\343\201\223\343\202\223\343\201\253\343\201\241\343\201\257"; /* こんにちは */
134       for (o = 0; o < 2; o++)
135         {
136           size_t *offsets = (o ? new_offsets (strlen (input)) : NULL);
137           size_t length;
138           uint8_t *result = u8_conv_from_encoding ("autodetect_jp", handler,
139                                                    input, strlen (input),
140                                                    offsets,
141                                                    NULL, &length);
142           ASSERT (result != NULL);
143           ASSERT (length == u8_strlen (expected));
144           ASSERT (u8_cmp (result, expected, u8_strlen (expected)) == 0);
145           if (o)
146             {
147               for (i = 0; i < 10; i++)
148                 ASSERT (offsets[i] == ((i % 2) == 0 ? (i / 2) * 3 : (size_t)(-1)));
149               ASSERT (offsets[10] == MAGIC);
150               free (offsets);
151             }
152           free (result);
153         }
154     }
155   for (h = 0; h < SIZEOF (handlers); h++)
156     {
157       enum iconv_ilseq_handler handler = handlers[h];
158       static const char input[] = "\202\261\202\361\202\311\202\277\202\315"; /* こんにちは in Shift_JIS */
159       static const uint8_t expected[] = "\343\201\223\343\202\223\343\201\253\343\201\241\343\201\257"; /* こんにちは */
160       for (o = 0; o < 2; o++)
161         {
162           size_t *offsets = (o ? new_offsets (strlen (input)) : NULL);
163           size_t length;
164           uint8_t *result = u8_conv_from_encoding ("autodetect_jp", handler,
165                                                    input, strlen (input),
166                                                    offsets,
167                                                    NULL, &length);
168           ASSERT (result != NULL);
169           ASSERT (length == u8_strlen (expected));
170           ASSERT (u8_cmp (result, expected, u8_strlen (expected)) == 0);
171           if (o)
172             {
173               for (i = 0; i < 10; i++)
174                 ASSERT (offsets[i] == ((i % 2) == 0 ? (i / 2) * 3 : (size_t)(-1)));
175               ASSERT (offsets[10] == MAGIC);
176               free (offsets);
177             }
178           free (result);
179         }
180     }
181   for (h = 0; h < SIZEOF (handlers); h++)
182     {
183       enum iconv_ilseq_handler handler = handlers[h];
184       static const char input[] = "\033$B$3$s$K$A$O\033(B"; /* こんにちは in ISO-2022-JP-2 */
185       static const uint8_t expected[] = "\343\201\223\343\202\223\343\201\253\343\201\241\343\201\257"; /* こんにちは */
186       for (o = 0; o < 2; o++)
187         {
188           size_t *offsets = (o ? new_offsets (strlen (input)) : NULL);
189           size_t length;
190           uint8_t *result = u8_conv_from_encoding ("autodetect_jp", handler,
191                                                    input, strlen (input),
192                                                    offsets,
193                                                    NULL, &length);
194           ASSERT (result != NULL);
195           ASSERT (length == u8_strlen (expected));
196           ASSERT (u8_cmp (result, expected, u8_strlen (expected)) == 0);
197           if (o)
198             {
199               for (i = 0; i < 16; i++)
200                 ASSERT (offsets[i] == (i == 0 ? 0 :
201                                        i == 5 ? 3 :
202                                        i == 7 ? 6 :
203                                        i == 9 ? 9 :
204                                        i == 11 ? 12 :
205                                        i == 13 ? 15 :
206                                        (size_t)(-1)));
207               ASSERT (offsets[16] == MAGIC);
208               free (offsets);
209             }
210           free (result);
211         }
212     }
213 # endif
214
215 #endif
216
217   return 0;
218 }