c8b9df0aac46a866350b0817cadc800b0eb833e9
[gnulib.git] / tests / uniconv / test-u16-strconv-to-enc.c
1 /* Test of conversion from UTF-16 to 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 <errno.h>
27 #include <stdlib.h>
28 #include <string.h>
29
30 #define SIZEOF(array) (sizeof (array) / sizeof (array[0]))
31 #define ASSERT(expr) if (!(expr)) abort ();
32
33 int
34 main ()
35 {
36   static enum iconv_ilseq_handler handlers[] =
37     { iconveh_error, iconveh_question_mark, iconveh_escape_sequence };
38   size_t h;
39
40 #if HAVE_ICONV
41   /* Assume that iconv() supports at least the encodings ASCII, ISO-8859-1,
42      ISO-8859-2, and UTF-8.  */
43
44   /* Test conversion from UTF-16 to ISO-8859-1 with no errors.  */
45   for (h = 0; h < SIZEOF (handlers); h++)
46     {
47       enum iconv_ilseq_handler handler = handlers[h];
48       static const uint16_t input[] = /* Ärger mit bösen Bübchen ohne Augenmaß */
49         {
50           0xC4, 'r', 'g', 'e', 'r', ' ', 'm', 'i', 't', ' ', 'b', 0xF6, 's',
51           'e', 'n', ' ', 'B', 0xFC, 'b', 'c', 'h', 'e', 'n', ' ', 'o', 'h',
52           'n', 'e', ' ', 'A', 'u', 'g', 'e', 'n', 'm', 'a', 0xDF, 0
53         };
54       static const char expected[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337";
55       char *result = u16_strconv_to_encoding (input, "ISO-8859-1", handler);
56       ASSERT (result != NULL);
57       ASSERT (strcmp (result, expected) == 0);
58       free (result);
59     }
60
61   /* Test conversion from UTF-16 to ISO-8859-1 with EILSEQ.  */
62   for (h = 0; h < SIZEOF (handlers); h++)
63     {
64       enum iconv_ilseq_handler handler = handlers[h];
65       static const uint16_t input[] = /* Rafał Maszkowski */
66         {
67           'R', 'a', 'f', 'a', 0x0142, ' ', 'M', 'a', 's', 'z', 'k', 'o', 'w',
68           's', 'k', 'i', 0
69         };
70       char *result = u16_strconv_to_encoding (input, "ISO-8859-1", handler);
71       switch (handler)
72         {
73         case iconveh_error:
74           ASSERT (result == NULL && errno == EILSEQ);
75           break;
76         case iconveh_question_mark:
77           {
78             static const char expected[] = "Rafa? Maszkowski";
79             static const char expected_translit[] = "Rafal Maszkowski";
80             ASSERT (result != NULL);
81             ASSERT (strcmp (result, expected) == 0
82                     || strcmp (result, expected_translit) == 0);
83             free (result);
84           }
85           break;
86         case iconveh_escape_sequence:
87           {
88             static const char expected[] = "Rafa\\u0142 Maszkowski";
89             ASSERT (result != NULL);
90             ASSERT (strcmp (result, expected) == 0);
91             free (result);
92           }
93           break;
94         }
95     }
96
97 # if 0
98   /* Test conversion from UTF-16 to ISO-8859-1 with EINVAL.  */
99   for (h = 0; h < SIZEOF (handlers); h++)
100     {
101       enum iconv_ilseq_handler handler = handlers[h];
102       static const uint16_t input[] = { 0xD845, 0 };
103       char *result = u16_strconv_to_encoding (input, "ISO-8859-1", handler);
104       ASSERT (result != NULL);
105       ASSERT (strcmp (result, "") == 0);
106       free (result);
107     }
108 # endif
109
110 #endif
111
112   return 0;
113 }