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