Tests for module 'uninorm/nfd'.
[gnulib.git] / tests / uninorm / test-u16-nfd.c
1 /* Test of canonical decomposition of UTF-16 strings.
2    Copyright (C) 2009 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>, 2009.  */
18
19 #include <config.h>
20
21 #if GNULIB_UNINORM_U16_NORMALIZE
22
23 #include "uninorm.h"
24
25 #include <signal.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <unistd.h>
29
30 #include "unistr.h"
31
32 #define SIZEOF(array) (sizeof (array) / sizeof (array[0]))
33 #define ASSERT(expr) \
34   do                                                                         \
35     {                                                                        \
36       if (!(expr))                                                           \
37         {                                                                    \
38           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
39           fflush (stderr);                                                   \
40           abort ();                                                          \
41         }                                                                    \
42     }                                                                        \
43   while (0)
44
45 static int
46 check (const uint16_t *input, size_t input_length,
47        const uint16_t *expected, size_t expected_length)
48 {
49   size_t length;
50   uint16_t *result;
51
52   /* Test return conventions with resultbuf == NULL.  */
53   result = u16_normalize (UNINORM_NFD, input, input_length, NULL, &length);
54   if (!(result != NULL))
55     return 1;
56   if (!(length == expected_length))
57     return 2;
58   if (!(u16_cmp (result, expected, expected_length) == 0))
59     return 3;
60   free (result);
61
62   /* Test return conventions with resultbuf too small.  */
63   if (expected_length > 0)
64     {
65       uint16_t *preallocated;
66
67       length = expected_length - 1;
68       preallocated = (uint16_t *) malloc (length * sizeof (uint16_t));
69       result = u16_normalize (UNINORM_NFD, input, input_length, preallocated, &length);
70       if (!(result != NULL))
71         return 4;
72       if (!(result != preallocated))
73         return 5;
74       if (!(length == expected_length))
75         return 6;
76       if (!(u16_cmp (result, expected, expected_length) == 0))
77         return 7;
78       free (result);
79       free (preallocated);
80     }
81
82   /* Test return conventions with resultbuf large enough.  */
83   {
84     uint16_t *preallocated;
85
86     length = expected_length;
87     preallocated = (uint16_t *) malloc (length * sizeof (uint16_t));
88     result = u16_normalize (UNINORM_NFD, input, input_length, preallocated, &length);
89     if (!(result != NULL))
90       return 8;
91     if (!(result == preallocated))
92       return 9;
93     if (!(length == expected_length))
94       return 10;
95     if (!(u16_cmp (result, expected, expected_length) == 0))
96       return 11;
97     free (preallocated);
98   }
99
100   return 0;
101 }
102
103 void
104 test_u16_nfd (void)
105 {
106   { /* SPACE */
107     static const uint16_t input[]    = { 0x0020 };
108     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
109   }
110
111   { /* LATIN CAPITAL LETTER A WITH DIAERESIS */
112     static const uint16_t input[]    = { 0x00C4 };
113     static const uint16_t expected[] = { 0x0041, 0x0308 };
114     ASSERT (check (input, SIZEOF (input), expected, SIZEOF (expected)) == 0);
115   }
116
117   { /* LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON */
118     static const uint16_t input[]    = { 0x01DE };
119     static const uint16_t expected[] = { 0x0041, 0x0308, 0x0304 };
120     ASSERT (check (input, SIZEOF (input), expected, SIZEOF (expected)) == 0);
121   }
122
123   { /* GREEK DIALYTIKA AND PERISPOMENI */
124     static const uint16_t input[]    = { 0x1FC1 };
125     static const uint16_t expected[] = { 0x00A8, 0x0342 };
126     ASSERT (check (input, SIZEOF (input), expected, SIZEOF (expected)) == 0);
127   }
128
129   { /* SCRIPT SMALL L */
130     static const uint16_t input[]    = { 0x2113 };
131     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
132   }
133
134   { /* NO-BREAK SPACE */
135     static const uint16_t input[]    = { 0x00A0 };
136     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
137   }
138
139   { /* ARABIC LETTER VEH INITIAL FORM */
140     static const uint16_t input[]    = { 0xFB6C };
141     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
142   }
143
144   { /* ARABIC LETTER VEH MEDIAL FORM */
145     static const uint16_t input[]    = { 0xFB6D };
146     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
147   }
148
149   { /* ARABIC LETTER VEH FINAL FORM */
150     static const uint16_t input[]    = { 0xFB6B };
151     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
152   }
153
154   { /* ARABIC LETTER VEH ISOLATED FORM */
155     static const uint16_t input[]    = { 0xFB6A };
156     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
157   }
158
159   { /* CIRCLED NUMBER FIFTEEN */
160     static const uint16_t input[]    = { 0x246E };
161     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
162   }
163
164   { /* TRADE MARK SIGN */
165     static const uint16_t input[]    = { 0x2122 };
166     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
167   }
168
169   { /* LATIN SUBSCRIPT SMALL LETTER I */
170     static const uint16_t input[]    = { 0x1D62 };
171     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
172   }
173
174   { /* PRESENTATION FORM FOR VERTICAL LEFT PARENTHESIS */
175     static const uint16_t input[]    = { 0xFE35 };
176     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
177   }
178
179   { /* FULLWIDTH LATIN CAPITAL LETTER A */
180     static const uint16_t input[]    = { 0xFF21 };
181     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
182   }
183
184   { /* HALFWIDTH IDEOGRAPHIC COMMA */
185     static const uint16_t input[]    = { 0xFF64 };
186     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
187   }
188
189   { /* SMALL IDEOGRAPHIC COMMA */
190     static const uint16_t input[]    = { 0xFE51 };
191     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
192   }
193
194   { /* SQUARE MHZ */
195     static const uint16_t input[]    = { 0x3392 };
196     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
197   }
198
199   { /* VULGAR FRACTION THREE EIGHTHS */
200     static const uint16_t input[]    = { 0x215C };
201     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
202   }
203
204   { /* MICRO SIGN */
205     static const uint16_t input[]    = { 0x00B5 };
206     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
207   }
208
209   { /* ARABIC LIGATURE SALLALLAHOU ALAYHE WASALLAM */
210     static const uint16_t input[]    = { 0xFDFA };
211     ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
212   }
213
214   { /* HANGUL SYLLABLE GEUL */
215     static const uint16_t input[]    = { 0xAE00 };
216     static const uint16_t expected[] = { 0x1100, 0x1173, 0x11AF };
217     ASSERT (check (input, SIZEOF (input), expected, SIZEOF (expected)) == 0);
218   }
219
220   { /* HANGUL SYLLABLE GEU */
221     static const uint16_t input[]    = { 0xADF8 };
222     static const uint16_t expected[] = { 0x1100, 0x1173 };
223     ASSERT (check (input, SIZEOF (input), expected, SIZEOF (expected)) == 0);
224   }
225
226   { /* "Grüß Gott. Здравствуйте! x=(-b±sqrt(b²-4ac))/(2a)  日本語,中文,한글" */
227     static const uint16_t input[] =
228       { 'G', 'r', 0x00FC, 0x00DF, ' ', 'G', 'o', 't', 't', '.', ' ',
229         0x0417, 0x0434, 0x0440, 0x0430, 0x0432, 0x0441, 0x0442, 0x0432, 0x0443,
230         0x0439, 0x0442, 0x0435, '!', ' ',
231         'x', '=', '(', '-', 'b', 0x00B1, 's', 'q', 'r', 't', '(', 'b', 0x00B2,
232         '-', '4', 'a', 'c', ')', ')', '/', '(', '2', 'a', ')', ' ', ' ',
233         0x65E5, 0x672C, 0x8A9E, ',', 0x4E2D, 0x6587, ',', 0xD55C, 0xAE00, '\n'
234       };
235     static const uint16_t expected[] =
236       { 'G', 'r', 0x0075, 0x0308, 0x00DF, ' ', 'G', 'o', 't', 't', '.', ' ',
237         0x0417, 0x0434, 0x0440, 0x0430, 0x0432, 0x0441, 0x0442, 0x0432, 0x0443,
238         0x0438, 0x0306, 0x0442, 0x0435, '!', ' ',
239         'x', '=', '(', '-', 'b', 0x00B1, 's', 'q', 'r', 't', '(', 'b', 0x00B2,
240         '-', '4', 'a', 'c', ')', ')', '/', '(', '2', 'a', ')', ' ', ' ',
241         0x65E5, 0x672C, 0x8A9E, ',', 0x4E2D, 0x6587, ',',
242         0x1112, 0x1161, 0x11AB, 0x1100, 0x1173, 0x11AF, '\n'
243       };
244     ASSERT (check (input, SIZEOF (input), expected, SIZEOF (expected)) == 0);
245   }
246
247 #if HAVE_DECL_ALARM
248   /* Declare failure if test takes too long, by using default abort
249      caused by SIGALRM.  */
250   signal (SIGALRM, SIG_DFL);
251   alarm (50);
252 #endif
253
254   /* Check that the sorting is not O(n²) but O(n log n).  */
255   {
256     int pass;
257     for (pass = 0; pass < 3; pass++)
258       {
259         size_t repeat = 1;
260         size_t m = 100000;
261         uint16_t *input = (uint16_t *) malloc (2 * m * sizeof (uint16_t));
262         if (input != NULL)
263           {
264             uint16_t *expected = input + m;
265             size_t m1 = m / 2;
266             size_t m2 = (m - 1) / 2;
267             /* NB: m1 + m2 == m - 1.  */
268             uint16_t *p;
269             size_t i;
270
271             input[0] = 0x0041;
272             p = input + 1;
273             switch (pass)
274               {
275               case 0:
276                 for (i = 0; i < m1; i++)
277                   *p++ = 0x0319;
278                 for (i = 0; i < m2; i++)
279                   *p++ = 0x0300;
280                 break;
281
282               case 1:
283                 for (i = 0; i < m2; i++)
284                   *p++ = 0x0300;
285                 for (i = 0; i < m1; i++)
286                   *p++ = 0x0319;
287                 break;
288
289               case 2:
290                 for (i = 0; i < m2; i++)
291                   {
292                     *p++ = 0x0319;
293                     *p++ = 0x0300;
294                   }
295                 for (; i < m1; i++)
296                   *p++ = 0x0319;
297                 break;
298
299               default:
300                 abort ();
301               }
302
303             expected[0] = 0x0041;
304             p = expected + 1;
305             for (i = 0; i < m1; i++)
306               *p++ = 0x0319;
307             for (i = 0; i < m2; i++)
308               *p++ = 0x0300;
309
310             for (; repeat > 0; repeat--)
311               ASSERT (check (input, m, expected, m) == 0);
312
313             free (input);
314           }
315       }
316   }
317 }
318
319 #else
320
321 void
322 test_u16_nfd (void)
323 {
324 }
325
326 #endif