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 pathbson-tests.h
157 lines (133 loc) · 6.67 KB
/
bson-tests.h
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
/*
* 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.
*/
#ifndef BSON_TESTS_H
#define BSON_TESTS_H
#include <bson.h>
#include <stdio.h>
#include <time.h>
BSON_BEGIN_DECLS
#define BSON_ASSERT_CMPSTR(a, b) \
do { \
if (((a) != (b)) && !!strcmp ((a), (b))) { \
fprintf (stderr, \
"FAIL\n\nAssert Failure: (line#%d) \"%s\" != \"%s\"\n", \
__LINE__, \
a, \
b); \
abort (); \
} \
} while (0)
#define BSON_ASSERT_CMPINT(a, eq, b) \
do { \
if (!((a) eq (b))) { \
fprintf (stderr, \
"FAIL\n\nAssert Failure: (line#%d)" #a " " #eq " " #b "\n", \
__LINE__); \
abort (); \
} \
} while (0)
#ifdef BSON_OS_WIN32
#include <stdarg.h>
#include <share.h>
static __inline int
bson_open (const char *filename, int flags, ...)
{
int fd = -1;
if (_sopen_s (
&fd, filename, flags | _O_BINARY, _SH_DENYNO, _S_IREAD | _S_IWRITE) ==
NO_ERROR) {
return fd;
}
return -1;
}
#define bson_close _close
#define bson_read(f, b, c) ((ssize_t) _read ((f), (b), (int) (c)))
#define bson_write _write
#else
#define bson_open open
#define bson_read read
#define bson_close close
#define bson_write write
#endif
#define bson_eq_bson(bson, expected) \
do { \
char *bson_json, *expected_json; \
const uint8_t *bson_data = bson_get_data ((bson)); \
const uint8_t *expected_data = bson_get_data ((expected)); \
int unequal; \
unsigned o; \
int off = -1; \
unequal = ((expected)->len != (bson)->len) || \
memcmp (bson_get_data ((expected)), \
bson_get_data ((bson)), \
(expected)->len); \
if (unequal) { \
bson_json = bson_as_canonical_extended_json (bson, NULL); \
expected_json = bson_as_canonical_extended_json ((expected), NULL); \
for (o = 0; o < (bson)->len && o < (expected)->len; o++) { \
if (bson_data[o] != expected_data[o]) { \
off = o; \
break; \
} \
} \
if (off == -1) { \
off = BSON_MAX ((expected)->len, (bson)->len) - 1; \
} \
fprintf (stderr, \
"bson objects unequal (byte %u):\n(%s)\n(%s)\n", \
off, \
bson_json, \
expected_json); \
{ \
int fd1 = bson_open ("failure.bad.bson", O_RDWR | O_CREAT, 0640); \
int fd2 = \
bson_open ("failure.expected.bson", O_RDWR | O_CREAT, 0640); \
BSON_ASSERT (fd1 != -1); \
BSON_ASSERT (fd2 != -1); \
BSON_ASSERT ((bson)->len == bson_write (fd1, bson_data, (bson)->len)); \
BSON_ASSERT ((expected)->len == \
bson_write (fd2, expected_data, (expected)->len)); \
bson_close (fd1); \
bson_close (fd2); \
} \
BSON_ASSERT (0); \
} \
} while (0)
static BSON_INLINE void
run_test (const char *name, void (*func) (void))
{
struct timeval begin;
struct timeval end;
struct timeval diff;
long usec;
double format;
fprintf (stdout, "%-42s : ", name);
fflush (stdout);
bson_gettimeofday (&begin);
func ();
bson_gettimeofday (&end);
fprintf (stdout, "PASS");
diff.tv_sec = end.tv_sec - begin.tv_sec;
diff.tv_usec = usec = end.tv_usec - begin.tv_usec;
if (usec < 0) {
diff.tv_sec -= 1;
diff.tv_usec = usec + 1000000;
}
format = diff.tv_sec + (diff.tv_usec / 1000000.0);
fprintf (stdout, " : %lf\n", format);
}
BSON_END_DECLS
#endif /* BSON_TESTS_H */