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 pathjson-test.c
251 lines (218 loc) · 6.67 KB
/
json-test.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
/*
* Copyright 2015 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 "json-test.h"
#ifdef _MSC_VER
#include <io.h>
#else
#include <dirent.h>
#endif
/*
*-----------------------------------------------------------------------
*
* assemble_path --
*
* Given a parent directory and filename, compile a full path to
* the child file.
*
* "dst" receives the joined path, delimited by "/" even on Windows.
*
*-----------------------------------------------------------------------
*/
void
assemble_path (const char *parent_path,
const char *child_name,
char *dst /* OUT */)
{
char *p;
int path_len = (int) strlen (parent_path);
int name_len = (int) strlen (child_name);
BSON_ASSERT (path_len + name_len + 1 < MAX_TEST_NAME_LENGTH);
memset (dst, '\0', MAX_TEST_NAME_LENGTH * sizeof (char));
strncat (dst, parent_path, path_len);
strncat (dst, "/", 1);
strncat (dst, child_name, name_len);
for (p = dst; *p; ++p) {
if (*p == '\\') {
*p = '/';
}
}
}
/*
*-----------------------------------------------------------------------
*
* collect_tests_from_dir --
*
* Recursively search the directory at @dir_path for files with
* '.json' in their filenames. Append all found file paths to
* @paths, and return the number of files found.
*
*-----------------------------------------------------------------------
*/
int
collect_tests_from_dir (char (*paths)[MAX_TEST_NAME_LENGTH] /* OUT */,
const char *dir_path,
int paths_index,
int max_paths)
{
#ifdef _MSC_VER
char *dir_path_plus_star;
intptr_t handle;
struct _finddata_t info;
char child_path[MAX_TEST_NAME_LENGTH];
dir_path_plus_star = bson_strdup_printf ("%s/*", dir_path);
handle = _findfirst (dir_path_plus_star, &info);
if (handle == -1) {
bson_free (dir_path_plus_star);
return 0;
}
while (1) {
BSON_ASSERT (paths_index < max_paths);
if (info.attrib & _A_SUBDIR) {
/* recursively call on child directories */
if (strcmp (info.name, "..") != 0 && strcmp (info.name, ".") != 0) {
assemble_path (dir_path, info.name, child_path);
paths_index = collect_tests_from_dir (
paths, child_path, paths_index, max_paths);
}
} else if (strstr (info.name, ".json")) {
/* if this is a JSON test, collect its path */
assemble_path (dir_path, info.name, paths[paths_index++]);
}
if (_findnext (handle, &info) == -1) {
break;
}
}
bson_free (dir_path_plus_star);
_findclose (handle);
return paths_index;
#else
struct dirent *entry;
struct stat dir_stat;
char child_path[MAX_TEST_NAME_LENGTH];
DIR *dir;
dir = opendir (dir_path);
BSON_ASSERT (dir);
while ((entry = readdir (dir))) {
BSON_ASSERT (paths_index < max_paths);
if (strcmp (entry->d_name, "..") == 0 ||
strcmp (entry->d_name, ".") == 0) {
continue;
}
assemble_path (dir_path, entry->d_name, child_path);
if (0 == stat (entry->d_name, &dir_stat) && S_ISDIR (dir_stat.st_mode)) {
/* recursively call on child directories */
paths_index =
collect_tests_from_dir (paths, child_path, paths_index, max_paths);
} else if (strstr (entry->d_name, ".json")) {
/* if this is a JSON test, collect its path */
assemble_path (dir_path, entry->d_name, paths[paths_index++]);
}
}
closedir (dir);
return paths_index;
#endif
}
/*
*-----------------------------------------------------------------------
*
* get_bson_from_json_file --
*
* Open the file at @filename and store its contents in a
* bson_t. This function assumes that @filename contains a
* single JSON object.
*
* NOTE: caller owns returned bson_t and must free it.
*
*-----------------------------------------------------------------------
*/
bson_t *
get_bson_from_json_file (char *filename)
{
FILE *file;
long length;
bson_t *data;
bson_error_t error;
const char *buffer;
file = fopen (filename, "rb");
if (!file) {
return NULL;
}
/* get file length */
fseek (file, 0, SEEK_END);
length = ftell (file);
fseek (file, 0, SEEK_SET);
if (length < 1) {
return NULL;
}
/* read entire file into buffer */
buffer = (const char *) bson_malloc0 (length);
if (fread ((void *) buffer, 1, length, file) != length) {
abort ();
}
fclose (file);
if (!buffer) {
return NULL;
}
/* convert to bson */
data = bson_new_from_json ((const uint8_t *) buffer, length, &error);
if (!data) {
fprintf (stderr, "Cannot parse %s: %s\n", filename, error.message);
abort ();
}
bson_free ((void *) buffer);
return data;
}
/*
*-----------------------------------------------------------------------
*
* install_json_test_suite --
*
* Given a path to a directory containing JSON tests, import each
* test into a BSON blob and call the provided callback for
* evaluation.
*
* It is expected that the callback will BSON_ASSERT on failure, so if
* callback returns quietly the test is considered to have passed.
*
*-----------------------------------------------------------------------
*/
void
install_json_test_suite (TestSuite *suite,
const char *dir_path,
test_hook callback)
{
char test_paths[MAX_NUM_TESTS][MAX_TEST_NAME_LENGTH];
int num_tests;
int i;
bson_t *test;
char *skip_json;
char *ext;
num_tests =
collect_tests_from_dir (&test_paths[0], dir_path, 0, MAX_NUM_TESTS);
for (i = 0; i < num_tests; i++) {
test = get_bson_from_json_file (test_paths[i]);
skip_json = strstr (test_paths[i], "/json") + strlen ("/json");
BSON_ASSERT (skip_json);
ext = strstr (skip_json, ".json");
BSON_ASSERT (ext);
ext[0] = '\0';
TestSuite_AddWC (suite,
skip_json,
(void (*) (void *)) callback,
(void (*) (void *)) bson_destroy,
test);
}
}