forked from christkv/node-mongodb-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap_reduce_test.js
548 lines (470 loc) · 18.1 KB
/
map_reduce_test.js
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
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
var mongodb = process.env['TEST_NATIVE'] != null ? require('../lib/mongodb').native() : require('../lib/mongodb').pure();
var useSSL = process.env['USE_SSL'] != null ? true : false;
var testCase = require('nodeunit').testCase,
debug = require('util').debug,
inspect = require('util').inspect,
nodeunit = require('nodeunit'),
gleak = require('../dev/tools/gleak'),
ObjectID = mongodb.ObjectID,
Code = mongodb.Code,
Db = mongodb.Db,
Cursor = mongodb.Cursor,
Collection = mongodb.Collection,
Server = mongodb.Server;
var MONGODB = 'integration_tests';
var native_parser = (process.env['TEST_NATIVE'] != null);
var client = null;
/**
* Retrieve the server information for the current
* instance of the db client
*
* @ignore
*/
exports.setUp = function(callback) {
var self = exports;
client = new Db(MONGODB, new Server("127.0.0.1", 27017, {auto_reconnect: true, poolSize: 4, ssl:useSSL}), {native_parser: (process.env['TEST_NATIVE'] != null)});
client.open(function(err, db_p) {
if(numberOfTestsRun == (Object.keys(self).length)) {
// If first test drop the db
client.dropDatabase(function(err, done) {
callback();
});
} else {
return callback();
}
});
}
/**
* Retrieve the server information for the current
* instance of the db client
*
* @ignore
*/
exports.tearDown = function(callback) {
var self = this;
numberOfTestsRun = numberOfTestsRun - 1;
// Close connection
client.close();
callback();
}
/**
* A whole lot of different wayt to execute the group command
*
* @_class collection
* @_function group
*/
exports.shouldCorrectlyExecuteGroupFunction = function(test) {
var db = new Db('integration_tests', new Server("127.0.0.1", 27017,
{auto_reconnect: false, poolSize: 4, ssl:useSSL}), {native_parser: native_parser});
// Establish connection to db
db.open(function(err, db) {
// Create a test collection
db.createCollection('test_group', function(err, collection) {
// Peform a simple group by on an empty collection
collection.group([], {}, {"count":0}, "function (obj, prev) { prev.count++; }", function(err, results) {
test.deepEqual([], results);
// Trigger some inserts on the collection
collection.insert([{'a':2}, {'b':5}, {'a':1}], {safe:true}, function(err, ids) {
// Perform a group count
collection.group([], {}, {"count":0}, "function (obj, prev) { prev.count++; }"
, function(err, results) {
test.equal(3, results[0].count);
// Pefrom a group count using the eval method
collection.group([], {}, {"count":0}, "function (obj, prev) { prev.count++; }"
, false, function(err, results) {
test.equal(3, results[0].count);
// Group with a conditional
collection.group([], {'a':{'$gt':1}}, {"count":0}, "function (obj, prev) { prev.count++; }"
, function(err, results) {
// Results
test.equal(1, results[0].count);
// Group with a conditional using the EVAL method
collection.group([], {'a':{'$gt':1}}, {"count":0}, "function (obj, prev) { prev.count++; }"
, false, function(err, results) {
// Results
test.equal(1, results[0].count);
// Insert some more test data
collection.insert([{'a':2}, {'b':3}], {safe:true}, function(err, ids) {
// Do a Group by field a
collection.group(['a'], {}, {"count":0}, "function (obj, prev) { prev.count++; }"
, function(err, results) {
// Results
test.equal(2, results[0].a);
test.equal(2, results[0].count);
test.equal(null, results[1].a);
test.equal(2, results[1].count);
test.equal(1, results[2].a);
test.equal(1, results[2].count);
// Do a Group by field a
collection.group({'a':true}, {}, {"count":0}, function (obj, prev) { prev.count++; }
, true, function(err, results) {
// Results
test.equal(2, results[0].a);
test.equal(2, results[0].count);
test.equal(null, results[1].a);
test.equal(2, results[1].count);
test.equal(1, results[2].a);
test.equal(1, results[2].count);
// Correctly handle illegal function
collection.group([], {}, {}, "5 ++ 5", function(err, results) {
test.ok(err instanceof Error);
test.ok(err.message != null);
// Use a function to select the keys used to group by
var keyf = function(doc) { return {a: doc.a}; };
collection.group(keyf, {a: {$gt: 0}}, {"count": 0, "value": 0}
, function(obj, prev) { prev.count++; prev.value += obj.a; }, true, function(err, results) {
// Results
results.sort(function(a, b) { return b.count - a.count; });
test.equal(2, results[0].count);
test.equal(2, results[0].a);
test.equal(4, results[0].value);
test.equal(1, results[1].count);
test.equal(1, results[1].a);
test.equal(1, results[1].value);
// Correctly handle illegal function when using the EVAL method
collection.group([], {}, {}, "5 ++ 5", false, function(err, results) {
test.ok(err instanceof Error);
test.ok(err.message != null);
db.close();
test.done();
});
});
});
});
});
});
});
});
});
});
});
});
});
});
}
/**
* @ignore
*/
exports.shouldCorrectlyExecuteGroupFunctionWithFinalizeFunction = function(test) {
client.createCollection('test_group2', function(err, collection) {
collection.group([], {}, {"count":0}, "function (obj, prev) { prev.count++; }", true, function(err, results) {
test.deepEqual([], results);
// Trigger some inserts
collection.insert([{'a':2}, {'b':5, 'a':0}, {'a':1}, {'c':2, 'a':0}], {safe:true}, function(err, ids) {
collection.group([], {}, {count: 0, running_average: 0}
, function (doc, out) {
out.count++;
out.running_average += doc.a;
}
, function(out) {
out.average = out.running_average / out.count;
}, true, function(err, results) {
test.equal(3, results[0].running_average)
test.equal(0.75, results[0].average)
test.done();
});
});
});
});
}
/**
* A simple map reduce example
*
* @_class collection
* @_function mapReduce
*/
exports.shouldPerformSimpleMapReduceFunctions = function(test) {
var db = new Db('integration_tests', new Server("127.0.0.1", 27017,
{auto_reconnect: false, poolSize: 4, ssl:useSSL}), {native_parser: native_parser});
// Establish connection to db
db.open(function(err, db) {
// Create a test collection
db.createCollection('test_map_reduce_functions', function(err, collection) {
// Insert some documents to perform map reduce over
collection.insert([{'user_id':1}, {'user_id':2}], {safe:true}, function(err, r) {
// Map function
var map = function() { emit(this.user_id, 1); };
// Reduce function
var reduce = function(k,vals) { return 1; };
// Peform the map reduce
collection.mapReduce(map, reduce, {out: {replace : 'tempCollection'}}, function(err, collection) {
// Mapreduce returns the temporary collection with the results
collection.findOne({'_id':1}, function(err, result) {
test.equal(1, result.value);
collection.findOne({'_id':2}, function(err, result) {
test.equal(1, result.value);
db.close();
test.done();
});
});
});
});
});
});
}
/**
* A simple map reduce example using the inline output type on MongoDB > 1.7.6 returning the statistics
*
* @_class collection
* @_function mapReduce
*/
exports.shouldPerformMapReduceFunctionInline = function(test) {
var db = new Db('integration_tests', new Server("127.0.0.1", 27017,
{auto_reconnect: false, poolSize: 4, ssl:useSSL}), {native_parser: native_parser});
// Establish connection to db
db.open(function(err, db) {
// Parse version of server if available
db.admin().serverInfo(function(err, result){
// Only run if the MongoDB version is higher than 1.7.6
if(parseInt((result.version.replace(/\./g, ''))) >= 176) {
// Create a test collection
db.createCollection('test_map_reduce_functions_inline', function(err, collection) {
// Insert some test documents
collection.insert([{'user_id':1}, {'user_id':2}], {safe:true}, function(err, r) {
// Map function
var map = function() { emit(this.user_id, 1); };
// Reduce function
var reduce = function(k,vals) { return 1; };
// Execute map reduce and return results inline
collection.mapReduce(map, reduce, {out : {inline: 1}, verbose:true}, function(err, results, stats) {
test.equal(2, results.length);
test.ok(stats != null);
db.close();
test.done();
});
});
});
} else {
test.done();
}
});
});
}
/**
* Mapreduce different test with a provided scope containing a javascript function.
*
* @_class collection
* @_function mapReduce
*/
exports.shouldPerformMapReduceInContext = function(test) {
var db = new Db('integration_tests', new Server("127.0.0.1", 27017,
{auto_reconnect: false, poolSize: 4, ssl:useSSL}), {native_parser: native_parser});
// Establish connection to db
db.open(function(err, db) {
// Create a test collection
client.createCollection('test_map_reduce_functions_scope', function(err, collection) {
// Insert some test documents
collection.insert([{'user_id':1, 'timestamp':new Date()}
, {'user_id':2, 'timestamp':new Date()}], {safe:true}, function(err, r) {
// Map function
var map = function(){
emit(test(this.timestamp.getYear()), 1);
}
// Reduce function
var reduce = function(k, v){
count = 0;
for(i = 0; i < v.length; i++) {
count += v[i];
}
return count;
}
// Javascript function available in the map reduce scope
var t = function(val){ return val+1; }
// Execute the map reduce with the custom scope
collection.mapReduce(map, reduce, {scope:{test:new Code(t.toString())}
, out: {replace:'replacethiscollection'}}, function(err, collection) {
// Find all entries in the map-reduce collection
collection.find().toArray(function(err, results) {
test.equal(2, results[0].value)
db.close();
test.done();
});
});
});
});
});
}
/**
* Mapreduce tests
* @ignore
*/
exports.shouldPerformMapReduceWithStringFunctions = function(test) {
client.createCollection('test_map_reduce', function(err, collection) {
collection.insert([{'user_id':1}, {'user_id':2}], {safe:true}, function(err, r) {
// String functions
var map = "function() { emit(this.user_id, 1); }";
var reduce = "function(k,vals) { return 1; }";
collection.mapReduce(map, reduce, {out: {replace : 'tempCollection'}}, function(err, collection) {
collection.findOne({'_id':1}, function(err, result) {
test.equal(1, result.value);
});
collection.findOne({'_id':2}, function(err, result) {
test.equal(1, result.value);
test.done();
});
});
});
});
}
/**
* Mapreduce tests
* @ignore
*/
exports.shouldForceMapReduceError = function(test) {
client.createCollection('test_map_reduce', function(err, collection) {
collection.insert([{'user_id':1}, {'user_id':2}], {safe:true}, function(err, r) {
// String functions
var map = "function() { emiddft(this.user_id, 1); }";
var reduce = "function(k,vals) { return 1; }";
// Parse version of server if available
client.admin().serverInfo(function(err, result){
// Only run if the MongoDB version is higher than 1.7.6
if(parseInt((result.version.replace(/\./g, ''))) >= 176) {
collection.mapReduce(map, reduce, {out: {inline : 1}}, function(err, collection) {
test.ok(err != null);
test.done();
});
};
});
});
});
}
/**
* @ignore
*/
exports.shouldPerformMapReduceWithParametersBeingFunctions = function(test) {
client.createCollection('test_map_reduce_with_functions_as_arguments', function(err, collection) {
collection.insert([{'user_id':1}, {'user_id':2}], {safe:true}, function(err, r) {
// String functions
var map = function() { emit(this.user_id, 1); };
var reduce = function(k,vals) { return 1; };
collection.mapReduce(map, reduce, {out: {replace : 'tempCollection'}}, function(err, collection) {
collection.findOne({'_id':1}, function(err, result) {
test.equal(1, result.value);
});
collection.findOne({'_id':2}, function(err, result) {
test.equal(1, result.value);
test.done();
});
});
});
});
}
/**
* @ignore
*/
exports.shouldPerformMapReduceWithCodeObjects = function(test) {
client.createCollection('test_map_reduce_with_code_objects', function(err, collection) {
collection.insert([{'user_id':1}, {'user_id':2}], {safe:true}, function(err, r) {
// String functions
var map = new Code("function() { emit(this.user_id, 1); }");
var reduce = new Code("function(k,vals) { return 1; }");
collection.mapReduce(map, reduce, {out: {replace : 'tempCollection'}}, function(err, collection) {
collection.findOne({'_id':1}, function(err, result) {
test.equal(1, result.value);
});
collection.findOne({'_id':2}, function(err, result) {
test.equal(1, result.value);
test.done();
});
});
});
});
}
/**
* @ignore
*/
exports.shouldPerformMapReduceWithOptions = function(test) {
client.createCollection('test_map_reduce_with_options', function(err, collection) {
collection.insert([{'user_id':1}, {'user_id':2}, {'user_id':3}], {safe:true}, function(err, r) {
// String functions
var map = new Code("function() { emit(this.user_id, 1); }");
var reduce = new Code("function(k,vals) { return 1; }");
collection.mapReduce(map, reduce, {out: {replace : 'tempCollection'}, 'query': {'user_id':{'$gt':1}}}, function(err, collection) {
collection.count(function(err, count) {
test.equal(2, count);
collection.findOne({'_id':2}, function(err, result) {
test.equal(1, result.value);
});
collection.findOne({'_id':3}, function(err, result) {
test.equal(1, result.value);
test.done();
});
});
});
});
});
}
/**
* @ignore
*/
exports.shouldHandleMapReduceErrors = function(test) {
client.createCollection('test_map_reduce_error', function(err, collection) {
collection.insert([{'user_id':1}, {'user_id':2}, {'user_id':3}], {safe:true}, function(err, r) {
// String functions
var map = new Code("function() { throw 'error'; }");
var reduce = new Code("function(k,vals) { throw 'error'; }");
collection.mapReduce(map, reduce, {out : {inline: 1}, 'query': {'user_id':{'$gt':1}}}, function(err, r) {
test.ok(err != null);
test.done();
});
});
});
}
/**
* @ignore
*/
exports.shouldCorrectlyReturnNestedKeys = function(test) {
var start = new Date().setTime(new Date().getTime() - 10000);
var end = new Date().setTime(new Date().getTime() + 10000);
var keys = {
"data.lastname": true
};
var condition = {
"data.date": {
$gte: start,
$lte: end
}
};
condition = {}
var initial = {
count : 0
};
var reduce = function(doc, output) {
output.count++;
}
// Execute the group
client.createCollection('data', function(err, collection) {
collection.insert({
data: {
lastname:'smith',
date:new Date()
}
}, {safe:true}, function(err, result) {
// Execute the group
collection.group(keys, condition, initial, reduce, true, function(err, r) {
test.equal(1, r[0].count)
test.equal('smith', r[0]['data.lastname']);
test.done();
});
});
});
}
/**
* Retrieve the server information for the current
* instance of the db client
*
* @ignore
*/
exports.noGlobalsLeaked = function(test) {
var leaks = gleak.detectNew();
test.equal(0, leaks.length, "global var leak detected: " + leaks.join(', '));
test.done();
}
/**
* Retrieve the server information for the current
* instance of the db client
*
* @ignore
*/
var numberOfTestsRun = Object.keys(this).length - 2;