Better ASSERT macro.
[gnulib.git] / tests / uniconv / test-u32-strconv-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 2, or (at your option)
7    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, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #include "uniconv.h"
25
26 #include <stdio.h>
27 #include <stdlib.h>
28
29 #include "unistr.h"
30
31 #define SIZEOF(array) (sizeof (array) / sizeof (array[0]))
32 #define ASSERT(expr) \
33   do                                                                         \
34     {                                                                        \
35       if (!(expr))                                                           \
36         {                                                                    \
37           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
38           abort ();                                                          \
39         }                                                                    \
40     }                                                                        \
41   while (0)
42
43 int
44 main ()
45 {
46   static enum iconv_ilseq_handler handlers[] =
47     { iconveh_error, iconveh_question_mark, iconveh_escape_sequence };
48   size_t h;
49
50 #if HAVE_ICONV
51   /* Assume that iconv() supports at least the encodings ASCII, ISO-8859-1,
52      ISO-8859-2, and UTF-8.  */
53
54   /* Test conversion from ISO-8859-1 to UTF-16 with no errors.  */
55   for (h = 0; h < SIZEOF (handlers); h++)
56     {
57       enum iconv_ilseq_handler handler = handlers[h];
58       static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337";
59       static const uint32_t expected[] = /* Ärger mit bösen Bübchen ohne Augenmaß */
60         {
61           0xC4, 'r', 'g', 'e', 'r', ' ', 'm', 'i', 't', ' ', 'b', 0xF6, 's',
62           'e', 'n', ' ', 'B', 0xFC, 'b', 'c', 'h', 'e', 'n', ' ', 'o', 'h',
63           'n', 'e', ' ', 'A', 'u', 'g', 'e', 'n', 'm', 'a', 0xDF, 0
64         };
65       uint32_t *result = u32_strconv_from_encoding (input, "ISO-8859-1", handler);
66       ASSERT (result != NULL);
67       ASSERT (u32_strcmp (result, expected) == 0);
68       free (result);
69     }
70
71   /* Test conversion from ISO-8859-2 to UTF-16 with no errors.  */
72   for (h = 0; h < SIZEOF (handlers); h++)
73     {
74       enum iconv_ilseq_handler handler = handlers[h];
75       static const char input[] = "Rafa\263 Maszkowski"; /* Rafał Maszkowski */
76       static const uint32_t expected[] =
77         {
78           'R', 'a', 'f', 'a', 0x0142, ' ', 'M', 'a', 's', 'z', 'k', 'o', 'w',
79           's', 'k', 'i', 0
80         };
81       uint32_t *result = u32_strconv_from_encoding (input, "ISO-8859-2", handler);
82       ASSERT (result != NULL);
83       ASSERT (u32_strcmp (result, expected) == 0);
84       free (result);
85     }
86
87   /* autodetect_jp is only supported when iconv() support ISO-2022-JP-2.  */
88 # if defined _LIBICONV_VERSION || !(defined _AIX || defined __sgi || defined __hpux || defined __osf__)
89   /* Test conversions from autodetect_jp to UTF-16.  */
90   for (h = 0; h < SIZEOF (handlers); h++)
91     {
92       enum iconv_ilseq_handler handler = handlers[h];
93       static const char input[] = "\244\263\244\363\244\313\244\301\244\317"; /* こんにちは in EUC-JP */
94       static const uint32_t expected[] = /* こんにちは */
95         {
96           0x3053, 0x3093, 0x306B, 0x3061, 0x306F, 0
97         };
98       uint32_t *result = u32_strconv_from_encoding (input, "autodetect_jp", handler);
99       ASSERT (result != NULL);
100       ASSERT (u32_strcmp (result, expected) == 0);
101       free (result);
102     }
103   for (h = 0; h < SIZEOF (handlers); h++)
104     {
105       enum iconv_ilseq_handler handler = handlers[h];
106       static const char input[] = "\202\261\202\361\202\311\202\277\202\315"; /* こんにちは in Shift_JIS */
107       static const uint32_t expected[] = /* こんにちは */
108         {
109           0x3053, 0x3093, 0x306B, 0x3061, 0x306F, 0
110         };
111       uint32_t *result = u32_strconv_from_encoding (input, "autodetect_jp", handler);
112       ASSERT (result != NULL);
113       ASSERT (u32_strcmp (result, expected) == 0);
114       free (result);
115     }
116   for (h = 0; h < SIZEOF (handlers); h++)
117     {
118       enum iconv_ilseq_handler handler = handlers[h];
119       static const char input[] = "\033$B$3$s$K$A$O\033(B"; /* こんにちは in ISO-2022-JP-2 */
120       static const uint32_t expected[] = /* こんにちは */
121         {
122           0x3053, 0x3093, 0x306B, 0x3061, 0x306F, 0
123         };
124       uint32_t *result = u32_strconv_from_encoding (input, "autodetect_jp", handler);
125       ASSERT (result != NULL);
126       ASSERT (u32_strcmp (result, expected) == 0);
127       free (result);
128     }
129 # endif
130
131 #endif
132
133   return 0;
134 }