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-bcon-extract.c
523 lines (366 loc) · 11.3 KB
/
test-bcon-extract.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
#include <bcon.h>
#include "bson-tests.h"
#include "TestSuite.h"
static void
test_utf8 (void)
{
const char *val;
bson_t *bcon = BCON_NEW ("hello", "world");
BSON_ASSERT (BCON_EXTRACT (bcon, "hello", BCONE_UTF8 (val)));
BSON_ASSERT (strcmp (val, "world") == 0);
bson_destroy (bcon);
}
static void
test_double (void)
{
double val;
bson_t *bcon = BCON_NEW ("foo", BCON_DOUBLE (1.1));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_DOUBLE (val)));
BSON_ASSERT (val == 1.1);
bson_destroy (bcon);
}
static void
test_decimal128 (void)
{
bson_decimal128_t val;
bson_decimal128_t dec;
bson_t *bcon;
bson_decimal128_from_string ("12", &dec);
bcon = BCON_NEW ("foo", BCON_DECIMAL128 (&dec));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_DECIMAL128 (val)));
BSON_ASSERT (val.low == 0xCULL);
BSON_ASSERT (val.high == 0x3040000000000000ULL);
bson_destroy (bcon);
}
static void
test_binary (void)
{
bson_subtype_t subtype;
uint32_t len;
const uint8_t *binary;
bson_t *bcon = BCON_NEW (
"foo", BCON_BIN (BSON_SUBTYPE_BINARY, (uint8_t *) "deadbeef", 8));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_BIN (subtype, binary, len)));
BSON_ASSERT (subtype == BSON_SUBTYPE_BINARY);
BSON_ASSERT (len == 8);
BSON_ASSERT (memcmp (binary, "deadbeef", 8) == 0);
bson_destroy (bcon);
}
static void
test_undefined (void)
{
bson_t *bcon = BCON_NEW ("foo", BCON_UNDEFINED);
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_UNDEFINED));
bson_destroy (bcon);
}
static void
test_oid (void)
{
bson_oid_t oid;
bson_t *bcon;
const bson_oid_t *ooid;
bson_oid_init (&oid, NULL);
bcon = BCON_NEW ("foo", BCON_OID (&oid));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_OID (ooid)));
BSON_ASSERT (bson_oid_equal (&oid, ooid));
bson_destroy (bcon);
}
static void
test_bool (void)
{
bool b;
bson_t *bcon = BCON_NEW ("foo", BCON_BOOL (true));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_BOOL (b)));
BSON_ASSERT (b == true);
bson_destroy (bcon);
}
static void
test_date_time (void)
{
int64_t out;
bson_t *bcon = BCON_NEW ("foo", BCON_DATE_TIME (10000));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_DATE_TIME (out)));
BSON_ASSERT (out == 10000);
bson_destroy (bcon);
}
static void
test_null (void)
{
bson_t *bcon = BCON_NEW ("foo", BCON_NULL);
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_NULL));
bson_destroy (bcon);
}
static void
test_regex (void)
{
const char *regex;
const char *flags;
bson_t *bcon = BCON_NEW ("foo", BCON_REGEX ("^foo|bar$", "i"));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_REGEX (regex, flags)));
BSON_ASSERT (strcmp (regex, "^foo|bar$") == 0);
BSON_ASSERT (strcmp (flags, "i") == 0);
bson_destroy (bcon);
}
static void
test_dbpointer (void)
{
const char *collection;
bson_oid_t oid;
const bson_oid_t *ooid;
bson_t *bcon;
bson_oid_init (&oid, NULL);
bcon = BCON_NEW ("foo", BCON_DBPOINTER ("collection", &oid));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_DBPOINTER (collection, ooid)));
BSON_ASSERT (strcmp (collection, "collection") == 0);
BSON_ASSERT (bson_oid_equal (ooid, &oid));
bson_destroy (bcon);
}
static void
test_code (void)
{
const char *val;
bson_t *bcon = BCON_NEW ("foo", BCON_CODE ("var a = {};"));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_CODE (val)));
BSON_ASSERT (strcmp (val, "var a = {};") == 0);
bson_destroy (bcon);
}
static void
test_symbol (void)
{
const char *val;
bson_t *bcon = BCON_NEW ("foo", BCON_SYMBOL ("symbol"));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_SYMBOL (val)));
BSON_ASSERT (strcmp (val, "symbol") == 0);
bson_destroy (bcon);
}
static void
test_codewscope (void)
{
const char *code;
bson_t oscope;
bson_t *scope = BCON_NEW ("b", BCON_INT32 (10));
bson_t *bcon = BCON_NEW ("foo", BCON_CODEWSCOPE ("var a = b;", scope));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_CODEWSCOPE (code, oscope)));
BSON_ASSERT (strcmp (code, "var a = b;") == 0);
bson_eq_bson (&oscope, scope);
bson_destroy (&oscope);
bson_destroy (scope);
bson_destroy (bcon);
}
static void
test_int32 (void)
{
int32_t i32;
bson_t *bcon = BCON_NEW ("foo", BCON_INT32 (10));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_INT32 (i32)));
BSON_ASSERT (i32 == 10);
bson_destroy (bcon);
}
static void
test_timestamp (void)
{
int32_t timestamp;
int32_t increment;
bson_t *bcon = BCON_NEW ("foo", BCON_TIMESTAMP (100, 1000));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_TIMESTAMP (timestamp, increment)));
BSON_ASSERT (timestamp == 100);
BSON_ASSERT (increment == 1000);
bson_destroy (bcon);
}
static void
test_int64 (void)
{
int64_t i64;
bson_t *bcon = BCON_NEW ("foo", BCON_INT64 (10));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_INT64 (i64)));
BSON_ASSERT (i64 == 10);
bson_destroy (bcon);
}
static void
test_maxkey (void)
{
bson_t *bcon = BCON_NEW ("foo", BCON_MAXKEY);
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_MAXKEY));
bson_destroy (bcon);
}
static void
test_minkey (void)
{
bson_t *bcon = BCON_NEW ("foo", BCON_MINKEY);
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_MINKEY));
bson_destroy (bcon);
}
static void
test_bson_document (void)
{
bson_t ochild;
bson_t *child = BCON_NEW ("bar", "baz");
bson_t *bcon = BCON_NEW ("foo", BCON_DOCUMENT (child));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_DOCUMENT (ochild)));
bson_eq_bson (&ochild, child);
bson_destroy (&ochild);
bson_destroy (child);
bson_destroy (bcon);
}
static void
test_bson_array (void)
{
bson_t ochild;
bson_t *child = BCON_NEW ("0", "baz");
bson_t *bcon = BCON_NEW ("foo", BCON_ARRAY (child));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_ARRAY (ochild)));
bson_eq_bson (&ochild, child);
bson_destroy (&ochild);
bson_destroy (child);
bson_destroy (bcon);
}
static void
test_inline_array (void)
{
int32_t a, b;
bson_t *bcon = BCON_NEW ("foo", "[", BCON_INT32 (1), BCON_INT32 (2), "]");
BSON_ASSERT (
BCON_EXTRACT (bcon, "foo", "[", BCONE_INT32 (a), BCONE_INT32 (b), "]"));
BSON_ASSERT (a == 1);
BSON_ASSERT (b == 2);
bson_destroy (bcon);
}
static void
test_inline_doc (void)
{
int32_t a, b;
bson_t *bcon =
BCON_NEW ("foo", "{", "b", BCON_INT32 (2), "a", BCON_INT32 (1), "}");
BSON_ASSERT (BCON_EXTRACT (
bcon, "foo", "{", "a", BCONE_INT32 (a), "b", BCONE_INT32 (b), "}"));
BSON_ASSERT (a == 1);
BSON_ASSERT (b == 2);
bson_destroy (bcon);
}
static void
test_extract_ctx_helper (bson_t *bson, ...)
{
va_list ap;
bcon_extract_ctx_t ctx;
int i;
int n;
bcon_extract_ctx_init (&ctx);
va_start (ap, bson);
n = va_arg (ap, int);
for (i = 0; i < n; i++) {
BSON_ASSERT (bcon_extract_ctx_va (bson, &ctx, &ap));
}
va_end (ap);
}
static void
test_extract_ctx (void)
{
int32_t a, b, c;
bson_t *bson =
BCON_NEW ("a", BCON_INT32 (1), "b", BCON_INT32 (2), "c", BCON_INT32 (3));
test_extract_ctx_helper (bson,
3,
"a",
BCONE_INT32 (a),
NULL,
"b",
BCONE_INT32 (b),
NULL,
"c",
BCONE_INT32 (c),
NULL);
BSON_ASSERT (a == 1);
BSON_ASSERT (b == 2);
BSON_ASSERT (c == 3);
bson_destroy (bson);
}
static void
test_nested (void)
{
const char *utf8;
int i32;
bson_t *bcon =
BCON_NEW ("hello", "world", "foo", "{", "bar", BCON_INT32 (10), "}");
BSON_ASSERT (BCON_EXTRACT (bcon,
"hello",
BCONE_UTF8 (utf8),
"foo",
"{",
"bar",
BCONE_INT32 (i32),
"}"));
BSON_ASSERT (strcmp ("world", utf8) == 0);
BSON_ASSERT (i32 == 10);
bson_destroy (bcon);
}
static void
test_skip (void)
{
bson_t *bcon =
BCON_NEW ("hello", "world", "foo", "{", "bar", BCON_INT32 (10), "}");
BSON_ASSERT (BCON_EXTRACT (bcon,
"hello",
BCONE_SKIP (BSON_TYPE_UTF8),
"foo",
"{",
"bar",
BCONE_SKIP (BSON_TYPE_INT32),
"}"));
BSON_ASSERT (!BCON_EXTRACT (bcon,
"hello",
BCONE_SKIP (BSON_TYPE_UTF8),
"foo",
"{",
"bar",
BCONE_SKIP (BSON_TYPE_INT64),
"}"));
bson_destroy (bcon);
}
static void
test_iter (void)
{
bson_iter_t iter;
bson_t *other;
bson_t *bcon = BCON_NEW ("foo", BCON_INT32 (10));
BSON_ASSERT (BCON_EXTRACT (bcon, "foo", BCONE_ITER (iter)));
BSON_ASSERT (bson_iter_type (&iter) == BSON_TYPE_INT32);
BSON_ASSERT (bson_iter_int32 (&iter) == 10);
other = BCON_NEW ("foo", BCON_ITER (&iter));
bson_eq_bson (other, bcon);
bson_destroy (bcon);
bson_destroy (other);
}
void
test_bcon_extract_install (TestSuite *suite)
{
TestSuite_Add (suite, "/bson/bcon/extract/test_utf8", test_utf8);
TestSuite_Add (suite, "/bson/bcon/extract/test_double", test_double);
TestSuite_Add (suite, "/bson/bcon/extract/test_decimal128", test_decimal128);
TestSuite_Add (suite, "/bson/bcon/extract/test_binary", test_binary);
TestSuite_Add (suite, "/bson/bcon/extract/test_undefined", test_undefined);
TestSuite_Add (suite, "/bson/bcon/extract/test_oid", test_oid);
TestSuite_Add (suite, "/bson/bcon/extract/test_bool", test_bool);
TestSuite_Add (suite, "/bson/bcon/extract/test_date_time", test_date_time);
TestSuite_Add (suite, "/bson/bcon/extract/test_null", test_null);
TestSuite_Add (suite, "/bson/bcon/extract/test_regex", test_regex);
TestSuite_Add (suite, "/bson/bcon/extract/test_dbpointer", test_dbpointer);
TestSuite_Add (suite, "/bson/bcon/extract/test_code", test_code);
TestSuite_Add (suite, "/bson/bcon/extract/test_symbol", test_symbol);
TestSuite_Add (suite, "/bson/bcon/extract/test_codewscope", test_codewscope);
TestSuite_Add (suite, "/bson/bcon/extract/test_int32", test_int32);
TestSuite_Add (suite, "/bson/bcon/extract/test_timestamp", test_timestamp);
TestSuite_Add (suite, "/bson/bcon/extract/test_int64", test_int64);
TestSuite_Add (suite, "/bson/bcon/extract/test_maxkey", test_maxkey);
TestSuite_Add (suite, "/bson/bcon/extract/test_minkey", test_minkey);
TestSuite_Add (
suite, "/bson/bcon/extract/test_bson_document", test_bson_document);
TestSuite_Add (suite, "/bson/bcon/extract/test_bson_array", test_bson_array);
TestSuite_Add (
suite, "/bson/bcon/extract/test_inline_array", test_inline_array);
TestSuite_Add (suite, "/bson/bcon/extract/test_inline_doc", test_inline_doc);
TestSuite_Add (
suite, "/bson/bcon/extract/test_extract_ctx", test_extract_ctx);
TestSuite_Add (suite, "/bson/bcon/extract/test_nested", test_nested);
TestSuite_Add (suite, "/bson/bcon/extract/test_skip", test_skip);
TestSuite_Add (suite, "/bson/bcon/extract/test_iter", test_iter);
}