f19aa4f0f662e17c224e7dda9b272685835964a8
[gnulib.git] / tests / uniconv / test-u8-strconv-to-enc.c
1 /* Test of conversion from UTF-8 to legacy encodings.
2    Copyright (C) 2007-2008 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           fflush (stderr);                                                   \
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-8 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 uint8_t input[] = "\303\204rger mit b\303\266sen B\303\274bchen ohne Augenma\303\237";
57       static const char expected[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337";
58       char *result = u8_strconv_to_encoding (input, "ISO-8859-1", handler);
59       ASSERT (result != NULL);
60       ASSERT (strcmp (result, expected) == 0);
61       free (result);
62     }
63
64   /* Test conversion from UTF-8 to ISO-8859-1 with EILSEQ.  */
65   for (h = 0; h < SIZEOF (handlers); h++)
66     {
67       enum iconv_ilseq_handler handler = handlers[h];
68       static const uint8_t input[] = "Rafa\305\202 Maszkowski"; /* RafaƂ Maszkowski */
69       char *result = u8_strconv_to_encoding (input, "ISO-8859-1", handler);
70       switch (handler)
71         {
72         case iconveh_error:
73           ASSERT (result == NULL && errno == EILSEQ);
74           break;
75         case iconveh_question_mark:
76           {
77             static const char expected[] = "Rafa? Maszkowski";
78             static const char expected_translit[] = "Rafal Maszkowski";
79             ASSERT (result != NULL);
80             ASSERT (strcmp (result, expected) == 0
81                     || strcmp (result, expected_translit) == 0);
82             free (result);
83           }
84           break;
85         case iconveh_escape_sequence:
86           {
87             static const char expected[] = "Rafa\\u0142 Maszkowski";
88             ASSERT (result != NULL);
89             ASSERT (strcmp (result, expected) == 0);
90             free (result);
91           }
92           break;
93         }
94     }
95
96 # if 0
97   /* Test conversion from UTF-8 to ISO-8859-1 with EINVAL.  */
98   for (h = 0; h < SIZEOF (handlers); h++)
99     {
100       enum iconv_ilseq_handler handler = handlers[h];
101       static const uint8_t input[] = "\342";
102       char *result = u8_strconv_to_encoding (input, "ISO-8859-1", handler);
103       ASSERT (result != NULL);
104       ASSERT (strcmp (result, "") == 0);
105       free (result);
106     }
107 # endif
108
109 #endif
110
111   return 0;
112 }