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