maint: update copyright
[gnulib.git] / tests / uniconv / test-u8-strconv-from-enc.c
1 /* Test of conversion to UTF-8 from legacy encodings.
2    Copyright (C) 2007-2014 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 <stdlib.h>
24
25 #include "unistr.h"
26 #include "macros.h"
27
28 int
29 main ()
30 {
31   static enum iconv_ilseq_handler handlers[] =
32     { iconveh_error, iconveh_question_mark, iconveh_escape_sequence };
33   size_t h;
34
35 #if HAVE_ICONV
36   /* Assume that iconv() supports at least the encodings ASCII, ISO-8859-1,
37      ISO-8859-2, and UTF-8.  */
38
39   /* Test conversion from ISO-8859-1 to UTF-8 with no errors.  */
40   for (h = 0; h < SIZEOF (handlers); h++)
41     {
42       enum iconv_ilseq_handler handler = handlers[h];
43       static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337";
44       static const uint8_t expected[] = "\303\204rger mit b\303\266sen B\303\274bchen ohne Augenma\303\237";
45       uint8_t *result = u8_strconv_from_encoding (input, "ISO-8859-1", handler);
46       ASSERT (result != NULL);
47       ASSERT (u8_strcmp (result, expected) == 0);
48       free (result);
49     }
50
51   /* Test conversion from ISO-8859-2 to UTF-8 with no errors.  */
52   for (h = 0; h < SIZEOF (handlers); h++)
53     {
54       enum iconv_ilseq_handler handler = handlers[h];
55       static const char input[] = "Rafa\263 Maszkowski"; /* Rafał Maszkowski */
56       static const uint8_t expected[] = "Rafa\305\202 Maszkowski";
57       uint8_t *result = u8_strconv_from_encoding (input, "ISO-8859-2", handler);
58       ASSERT (result != NULL);
59       ASSERT (u8_strcmp (result, expected) == 0);
60       free (result);
61     }
62
63   /* autodetect_jp is only supported when iconv() support ISO-2022-JP-2.  */
64 # if defined _LIBICONV_VERSION || !(defined _AIX || defined __sgi || defined __hpux || defined __osf__ || defined __sun)
65   /* Test conversions from autodetect_jp to UTF-8.  */
66   for (h = 0; h < SIZEOF (handlers); h++)
67     {
68       enum iconv_ilseq_handler handler = handlers[h];
69       static const char input[] = "\244\263\244\363\244\313\244\301\244\317"; /* こんにちは in EUC-JP */
70       static const uint8_t expected[] = "\343\201\223\343\202\223\343\201\253\343\201\241\343\201\257"; /* こんにちは */
71       uint8_t *result = u8_strconv_from_encoding (input, "autodetect_jp", handler);
72       ASSERT (result != NULL);
73       ASSERT (u8_strcmp (result, expected) == 0);
74       free (result);
75     }
76   for (h = 0; h < SIZEOF (handlers); h++)
77     {
78       enum iconv_ilseq_handler handler = handlers[h];
79       static const char input[] = "\202\261\202\361\202\311\202\277\202\315"; /* こんにちは in Shift_JIS */
80       static const uint8_t expected[] = "\343\201\223\343\202\223\343\201\253\343\201\241\343\201\257"; /* こんにちは */
81       uint8_t *result = u8_strconv_from_encoding (input, "autodetect_jp", handler);
82       ASSERT (result != NULL);
83       ASSERT (u8_strcmp (result, expected) == 0);
84       free (result);
85     }
86   for (h = 0; h < SIZEOF (handlers); h++)
87     {
88       enum iconv_ilseq_handler handler = handlers[h];
89       static const char input[] = "\033$B$3$s$K$A$O\033(B"; /* こんにちは in ISO-2022-JP-2 */
90       static const uint8_t expected[] = "\343\201\223\343\202\223\343\201\253\343\201\241\343\201\257"; /* こんにちは */
91       uint8_t *result = u8_strconv_from_encoding (input, "autodetect_jp", handler);
92       ASSERT (result != NULL);
93       ASSERT (u8_strcmp (result, expected) == 0);
94       free (result);
95     }
96 # endif
97
98 #endif
99
100   return 0;
101 }