1 /* Test of u32_to_u16() function.
2 Copyright (C) 2010-2020 Free Software Foundation, Inc.
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.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2010. */
28 check (const uint32_t *input
, size_t input_length
,
29 const uint16_t *expected
, size_t expected_length
)
34 /* Test return conventions with resultbuf == NULL. */
35 result
= u32_to_u16 (input
, input_length
, NULL
, &length
);
36 if (!(result
!= NULL
))
38 if (!(length
== expected_length
))
40 if (!(u16_cmp (result
, expected
, expected_length
) == 0))
44 /* Test return conventions with resultbuf too small. */
45 if (expected_length
> 0)
47 uint16_t *preallocated
;
49 length
= expected_length
- 1;
50 preallocated
= (uint16_t *) malloc (length
* sizeof (uint16_t));
51 result
= u32_to_u16 (input
, input_length
, preallocated
, &length
);
52 if (!(result
!= NULL
))
54 if (!(result
!= preallocated
))
56 if (!(length
== expected_length
))
58 if (!(u16_cmp (result
, expected
, expected_length
) == 0))
64 /* Test return conventions with resultbuf large enough. */
66 uint16_t *preallocated
;
68 length
= expected_length
;
69 preallocated
= (uint16_t *) malloc (length
* sizeof (uint16_t));
70 result
= u32_to_u16 (input
, input_length
, preallocated
, &length
);
71 if (!(result
!= NULL
))
73 if (!(preallocated
== NULL
|| result
== preallocated
))
75 if (!(length
== expected_length
))
77 if (!(u16_cmp (result
, expected
, expected_length
) == 0))
89 ASSERT (check (NULL
, 0, NULL
, 0) == 0);
92 { /* "Grüß Gott. Здравствуйте! x=(-b±sqrt(b²-4ac))/(2a) 日本語,中文,한글" */
93 static const uint32_t input
[] =
94 { 'G', 'r', 0x00FC, 0x00DF, ' ', 'G', 'o', 't', 't', '.', ' ',
95 0x0417, 0x0434, 0x0440, 0x0430, 0x0432, 0x0441, 0x0442, 0x0432, 0x0443,
96 0x0439, 0x0442, 0x0435, '!', ' ',
97 'x', '=', '(', '-', 'b', 0x00B1, 's', 'q', 'r', 't', '(', 'b', 0x00B2,
98 '-', '4', 'a', 'c', ')', ')', '/', '(', '2', 'a', ')', ' ', ' ',
99 0x65E5, 0x672C, 0x8A9E, ',', 0x4E2D, 0x6587, ',', 0xD55C, 0xAE00, '\n'
101 static const uint16_t expected
[] =
102 { 'G', 'r', 0x00FC, 0x00DF, ' ', 'G', 'o', 't', 't', '.', ' ',
103 0x0417, 0x0434, 0x0440, 0x0430, 0x0432, 0x0441, 0x0442, 0x0432, 0x0443,
104 0x0439, 0x0442, 0x0435, '!', ' ',
105 'x', '=', '(', '-', 'b', 0x00B1, 's', 'q', 'r', 't', '(', 'b', 0x00B2,
106 '-', '4', 'a', 'c', ')', ')', '/', '(', '2', 'a', ')', ' ', ' ',
107 0x65E5, 0x672C, 0x8A9E, ',', 0x4E2D, 0x6587, ',', 0xD55C, 0xAE00, '\n'
109 ASSERT (check (input
, SIZEOF (input
), expected
, SIZEOF (expected
)) == 0);
112 /* String with characters outside the BMP. */
114 static const uint32_t input
[] =
115 { '-', '(', 0x1D51E, 0x00D7, 0x1D51F, ')', '=',
116 0x1D51F, 0x00D7, 0x1D51E
118 static const uint16_t expected
[] =
119 { '-', '(', 0xD835, 0xDD1E, 0x00D7, 0xD835, 0xDD1F, ')', '=',
120 0xD835, 0xDD1F, 0x00D7, 0xD835, 0xDD1E
122 ASSERT (check (input
, SIZEOF (input
), expected
, SIZEOF (expected
)) == 0);
127 static const uint32_t input
[] = { 'x', 0x340000, 0x50000000, 'y' };
128 #if 0 /* Currently invalid input is rejected, not accommodated. */
129 static const uint16_t expected
[] = { 'x', 0xFFFD, 0xFFFD, 'y' };
130 ASSERT (check (input
, SIZEOF (input
), expected
, SIZEOF (expected
)) == 0);
134 uint16_t preallocated
[10];
136 /* Test return conventions with resultbuf == NULL. */
137 result
= u32_to_u16 (input
, SIZEOF (input
), NULL
, &length
);
138 ASSERT (result
== NULL
);
139 ASSERT (errno
== EILSEQ
);
141 /* Test return conventions with resultbuf too small. */
143 result
= u32_to_u16 (input
, SIZEOF (input
), preallocated
, &length
);
144 ASSERT (result
== NULL
);
145 ASSERT (errno
== EILSEQ
);
147 /* Test return conventions with resultbuf large enough. */
148 length
= SIZEOF (preallocated
);
149 result
= u32_to_u16 (input
, SIZEOF (input
), preallocated
, &length
);
150 ASSERT (result
== NULL
);
151 ASSERT (errno
== EILSEQ
);