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