2a937cc48581f660ecaee8785e0f38439bc8e290
[gnulib.git] / tests / uniconv / test-u8-strconv-from-enc.c
1 /* Test of conversion to UTF-8 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-8 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 uint8_t expected[] = "\303\204rger mit b\303\266sen B\303\274bchen ohne Augenma\303\237";
60       uint8_t *result = u8_strconv_from_encoding (input, "ISO-8859-1", handler);
61       ASSERT (result != NULL);
62       ASSERT (u8_strcmp (result, expected) == 0);
63       free (result);
64     }
65
66   /* Test conversion from ISO-8859-2 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[] = "Rafa\263 Maszkowski"; /* Rafał Maszkowski */
71       static const uint8_t expected[] = "Rafa\305\202 Maszkowski";
72       uint8_t *result = u8_strconv_from_encoding (input, "ISO-8859-2", handler);
73       ASSERT (result != NULL);
74       ASSERT (u8_strcmp (result, expected) == 0);
75       free (result);
76     }
77
78   /* autodetect_jp is only supported when iconv() support ISO-2022-JP-2.  */
79 # if defined _LIBICONV_VERSION || !(defined _AIX || defined __sgi || defined __hpux || defined __osf__)
80   /* Test conversions from autodetect_jp to UTF-8.  */
81   for (h = 0; h < SIZEOF (handlers); h++)
82     {
83       enum iconv_ilseq_handler handler = handlers[h];
84       static const char input[] = "\244\263\244\363\244\313\244\301\244\317"; /* こんにちは in EUC-JP */
85       static const uint8_t expected[] = "\343\201\223\343\202\223\343\201\253\343\201\241\343\201\257"; /* こんにちは */
86       uint8_t *result = u8_strconv_from_encoding (input, "autodetect_jp", handler);
87       ASSERT (result != NULL);
88       ASSERT (u8_strcmp (result, expected) == 0);
89       free (result);
90     }
91   for (h = 0; h < SIZEOF (handlers); h++)
92     {
93       enum iconv_ilseq_handler handler = handlers[h];
94       static const char input[] = "\202\261\202\361\202\311\202\277\202\315"; /* こんにちは in Shift_JIS */
95       static const uint8_t expected[] = "\343\201\223\343\202\223\343\201\253\343\201\241\343\201\257"; /* こんにちは */
96       uint8_t *result = u8_strconv_from_encoding (input, "autodetect_jp", handler);
97       ASSERT (result != NULL);
98       ASSERT (u8_strcmp (result, expected) == 0);
99       free (result);
100     }
101   for (h = 0; h < SIZEOF (handlers); h++)
102     {
103       enum iconv_ilseq_handler handler = handlers[h];
104       static const char input[] = "\033$B$3$s$K$A$O\033(B"; /* こんにちは in ISO-2022-JP-2 */
105       static const uint8_t expected[] = "\343\201\223\343\202\223\343\201\253\343\201\241\343\201\257"; /* こんにちは */
106       uint8_t *result = u8_strconv_from_encoding (input, "autodetect_jp", handler);
107       ASSERT (result != NULL);
108       ASSERT (u8_strcmp (result, expected) == 0);
109       free (result);
110     }
111 # endif
112
113 #endif
114
115   return 0;
116 }