This repository was archived by the owner on Oct 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathtest-utf8.c
260 lines (216 loc) · 7.97 KB
/
test-utf8.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/*
* Copyright 2013 MongoDB, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <bson.h>
#include "bson-tests.h"
#include "TestSuite.h"
static void
test_bson_utf8_validate (void)
{
static const unsigned char test1[] = {
0xe2, 0x82, 0xac, ' ', 0xe2, 0x82, 0xac, ' ', 0xe2, 0x82, 0xac, 0};
static const unsigned char test2[] = {0xc0, 0x80, 0};
BSON_ASSERT (bson_utf8_validate ("asdf", 4, false));
BSON_ASSERT (bson_utf8_validate ("asdf", 4, true));
BSON_ASSERT (bson_utf8_validate ("asdf", 5, true));
BSON_ASSERT (!bson_utf8_validate ("asdf", 5, false));
BSON_ASSERT (bson_utf8_validate ((const char *) test1, 11, true));
BSON_ASSERT (bson_utf8_validate ((const char *) test1, 11, false));
BSON_ASSERT (bson_utf8_validate ((const char *) test1, 12, true));
BSON_ASSERT (!bson_utf8_validate ((const char *) test1, 12, false));
BSON_ASSERT (bson_utf8_validate ((const char *) test2, 2, true));
BSON_ASSERT (!bson_utf8_validate ((const char *) test2, 2, false));
}
static void
test_bson_utf8_escape_for_json (void)
{
char *str;
char *unescaped = "\x0e";
str = bson_utf8_escape_for_json ("my\0key", 6);
BSON_ASSERT (0 == memcmp (str, "my\\u0000key", 7));
bson_free (str);
str = bson_utf8_escape_for_json ("my\"key", 6);
BSON_ASSERT (0 == memcmp (str, "my\\\"key", 8));
bson_free (str);
str = bson_utf8_escape_for_json ("my\\key", 6);
BSON_ASSERT (0 == memcmp (str, "my\\\\key", 8));
bson_free (str);
str = bson_utf8_escape_for_json ("\\\"\\\"", -1);
BSON_ASSERT (0 == memcmp (str, "\\\\\\\"\\\\\\\"", 9));
bson_free (str);
str = bson_utf8_escape_for_json (unescaped, -1);
BSON_ASSERT (0 == memcmp (str, "\\u000e", 7));
bson_free (str);
}
static void
test_bson_utf8_invalid (void)
{
/* no UTF-8 sequence can start with 0x80 */
static const unsigned char bad[] = {0x80, 0};
BSON_ASSERT (!bson_utf8_validate ((const char *) bad, 1, true));
BSON_ASSERT (!bson_utf8_validate ((const char *) bad, 1, false));
BSON_ASSERT (!bson_utf8_escape_for_json ((const char *) bad, 1));
}
static void
test_bson_utf8_nil (void)
{
static const unsigned char test[] = {'a', 0, 'b', 0};
char *str;
BSON_ASSERT (bson_utf8_validate ((const char *) test, 3, true));
BSON_ASSERT (!bson_utf8_validate ((const char *) test, 3, false));
/* no length provided, stop at first nil */
str = bson_utf8_escape_for_json ((const char *) test, -1);
ASSERT_CMPSTR ("a", str);
bson_free (str);
str = bson_utf8_escape_for_json ((const char *) test, 3);
ASSERT_CMPSTR ("a\\u0000b", str);
bson_free (str);
}
static void
test_bson_utf8_get_char (void)
{
static const char *test1 = "asdf";
static const unsigned char test2[] = {
0xe2, 0x82, 0xac, ' ', 0xe2, 0x82, 0xac, ' ', 0xe2, 0x82, 0xac, 0};
const char *c;
c = test1;
BSON_ASSERT (bson_utf8_get_char (c) == 'a');
c = bson_utf8_next_char (c);
BSON_ASSERT (bson_utf8_get_char (c) == 's');
c = bson_utf8_next_char (c);
BSON_ASSERT (bson_utf8_get_char (c) == 'd');
c = bson_utf8_next_char (c);
BSON_ASSERT (bson_utf8_get_char (c) == 'f');
c = bson_utf8_next_char (c);
BSON_ASSERT (!*c);
c = (const char *) test2;
BSON_ASSERT (bson_utf8_get_char (c) == 0x20AC);
c = bson_utf8_next_char (c);
BSON_ASSERT (c == (const char *) test2 + 3);
BSON_ASSERT (bson_utf8_get_char (c) == ' ');
c = bson_utf8_next_char (c);
BSON_ASSERT (bson_utf8_get_char (c) == 0x20AC);
c = bson_utf8_next_char (c);
BSON_ASSERT (bson_utf8_get_char (c) == ' ');
c = bson_utf8_next_char (c);
BSON_ASSERT (bson_utf8_get_char (c) == 0x20AC);
c = bson_utf8_next_char (c);
BSON_ASSERT (!*c);
}
static void
test_bson_utf8_from_unichar (void)
{
static const char test1[] = {'a'};
static const unsigned char test2[] = {0xc3, 0xbf};
static const unsigned char test3[] = {0xe2, 0x82, 0xac};
uint32_t len;
char str[6];
/*
* First possible sequence of a certain length.
*/
bson_utf8_from_unichar (0, str, &len);
BSON_ASSERT (len == 1);
bson_utf8_from_unichar (0x00000080, str, &len);
BSON_ASSERT (len == 2);
bson_utf8_from_unichar (0x00000800, str, &len);
BSON_ASSERT (len == 3);
bson_utf8_from_unichar (0x00010000, str, &len);
BSON_ASSERT (len == 4);
bson_utf8_from_unichar (0x00200000, str, &len);
BSON_ASSERT (len == 5);
bson_utf8_from_unichar (0x04000000, str, &len);
BSON_ASSERT (len == 6);
/*
* Last possible sequence of a certain length.
*/
bson_utf8_from_unichar (0x0000007F, str, &len);
BSON_ASSERT (len == 1);
bson_utf8_from_unichar (0x000007FF, str, &len);
BSON_ASSERT (len == 2);
bson_utf8_from_unichar (0x0000FFFF, str, &len);
BSON_ASSERT (len == 3);
bson_utf8_from_unichar (0x001FFFFF, str, &len);
BSON_ASSERT (len == 4);
bson_utf8_from_unichar (0x03FFFFFF, str, &len);
BSON_ASSERT (len == 5);
bson_utf8_from_unichar (0x7FFFFFFF, str, &len);
BSON_ASSERT (len == 6);
/*
* Other interesting values.
*/
bson_utf8_from_unichar (0x0000D7FF, str, &len);
BSON_ASSERT (len == 3);
bson_utf8_from_unichar (0x0000E000, str, &len);
BSON_ASSERT (len == 3);
bson_utf8_from_unichar (0x0000FFFD, str, &len);
BSON_ASSERT (len == 3);
bson_utf8_from_unichar (0x0010FFFF, str, &len);
BSON_ASSERT (len == 4);
bson_utf8_from_unichar (0x00110000, str, &len);
BSON_ASSERT (len == 4);
bson_utf8_from_unichar ('a', str, &len);
BSON_ASSERT (len == 1);
BSON_ASSERT (!memcmp (test1, str, 1));
bson_utf8_from_unichar (0xFF, str, &len);
BSON_ASSERT (len == 2);
BSON_ASSERT (!memcmp ((const char *) test2, str, 2));
bson_utf8_from_unichar (0x20AC, str, &len);
BSON_ASSERT (len == 3);
BSON_ASSERT (!memcmp ((const char *) test3, str, 3));
}
static void
test_bson_utf8_non_shortest (void)
{
static const char *tests[] = {
"\xE0\x80\x80", /* Non-shortest form representation of U+0000 */
"\xF0\x80\x80\x80", /* Non-shortest form representation of U+0000 */
"\xE0\x83\xBF", /* Non-shortest form representation of U+00FF */
"\xF0\x80\x83\xBF", /* Non-shortest form representation of U+00FF */
"\xF0\x80\xA3\x80", /* Non-shortest form representation of U+08C0 */
NULL};
static const char *valid_tests[] = {
"\xC0\x80", /* Non-shortest form representation of U+0000.
* This is how \0 should be encoded. Special casing
* to allow for use in things like strlen(). */
NULL};
int i;
for (i = 0; tests[i]; i++) {
if (bson_utf8_validate (tests[i], strlen (tests[i]), false)) {
fprintf (stderr, "non-shortest form failure, test %d\n", i);
BSON_ASSERT (false);
}
}
for (i = 0; valid_tests[i]; i++) {
if (!bson_utf8_validate (valid_tests[i], strlen (valid_tests[i]), true)) {
fprintf (stderr, "non-shortest form failure, valid_tests %d\n", i);
BSON_ASSERT (false);
}
}
}
void
test_utf8_install (TestSuite *suite)
{
TestSuite_Add (suite, "/bson/utf8/validate", test_bson_utf8_validate);
TestSuite_Add (suite, "/bson/utf8/invalid", test_bson_utf8_invalid);
TestSuite_Add (suite, "/bson/utf8/nil", test_bson_utf8_nil);
TestSuite_Add (
suite, "/bson/utf8/escape_for_json", test_bson_utf8_escape_for_json);
TestSuite_Add (
suite, "/bson/utf8/get_char_next_char", test_bson_utf8_get_char);
TestSuite_Add (
suite, "/bson/utf8/from_unichar", test_bson_utf8_from_unichar);
TestSuite_Add (
suite, "/bson/utf8/non_shortest", test_bson_utf8_non_shortest);
}