Skip to content

Commit f7ba66e

Browse files
committed
Added test coverage for map-reduce errors
1 parent 8c2d253 commit f7ba66e

File tree

3 files changed

+33
-16
lines changed

3 files changed

+33
-16
lines changed

HISTORY

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
- stats not returned from map reduce with inline results (Issue #542)
12
- Re-enable testing of whether or not the callback is called in the multi-chunk seek, fix small GridStore bug (Issue #543, https://github.com/pgebheim)
23

34
0.9.9.6 2012-03-12

lib/mongodb/collection.js

+4-15
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ Collection.prototype.reIndex = function(callback) {
10251025
* @param {Function|String} map the mapping function.
10261026
* @param {Function|String} reduce the reduce function.
10271027
* @param {Objects} [options] options for the map reduce job.
1028-
* @param {Function} callback returns the result of the map reduce job.
1028+
* @param {Function} callback returns the result of the map reduce job, (error, results, [stats])
10291029
* @return {null}
10301030
* @api public
10311031
*/
@@ -1059,28 +1059,17 @@ Collection.prototype.mapReduce = function mapReduce (map, reduce, options, callb
10591059
mapCommandHash[name] = options[name];
10601060
}
10611061

1062-
// console.log("+++++++++++++++++++++++++++++++++++++ mapCommandHash")
1063-
// console.dir(mapCommandHash)
1064-
10651062
var self = this;
10661063
var cmd = DbCommand.createDbSlaveOkCommand(this.db, mapCommandHash);
10671064

10681065
this.db._executeQueryCommand(cmd, {read:true}, function (err, result) {
1069-
// console.log("++++++++++++++++++++++++++++++++++++++++++++++++++++++++ RESULTS")
1070-
// console.dir(err)
1071-
// console.dir(result)
1072-
10731066
if (err) {
10741067
return callback(err);
10751068
}
10761069

1077-
if (1 != result.documents[0].ok) {
1078-
return callback(result.documents[0]);
1079-
}
1080-
1081-
// If we wish for no verbosity
1082-
if(options['verbose'] == null || !options['verbose']) {
1083-
return callback(err, collection);
1070+
//
1071+
if (1 != result.documents[0].ok || result.documents[0].err || result.documents[0].errmsg) {
1072+
return callback(self.db.wrap(result.documents[0]));
10841073
}
10851074

10861075
// Create statistics value

test/map_reduce_test.js

+28-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ exports.shouldPerformSimpleMapReduceFunctions = function(test) {
234234
}
235235

236236
/**
237-
* A simple map reduce example using the inline output type on MongoDB > 1.7.6
237+
* A simple map reduce example using the inline output type on MongoDB > 1.7.6 returning the statistics
238238
*
239239
* @_class collection
240240
* @_function mapReduce
@@ -359,6 +359,33 @@ exports.shouldPerformMapReduceWithStringFunctions = function(test) {
359359
});
360360
}
361361

362+
/**
363+
* Mapreduce tests
364+
* @ignore
365+
*/
366+
exports.shouldForceMapReduceError = function(test) {
367+
client.createCollection('test_map_reduce', function(err, collection) {
368+
collection.insert([{'user_id':1}, {'user_id':2}], {safe:true}, function(err, r) {
369+
// String functions
370+
var map = "function() { emiddft(this.user_id, 1); }";
371+
var reduce = "function(k,vals) { return 1; }";
372+
373+
// Parse version of server if available
374+
client.admin().serverInfo(function(err, result){
375+
376+
// Only run if the MongoDB version is higher than 1.7.6
377+
if(parseInt((result.version.replace(/\./g, ''))) >= 176) {
378+
379+
collection.mapReduce(map, reduce, {out: {inline : 1}}, function(err, collection) {
380+
test.ok(err != null);
381+
test.done();
382+
});
383+
};
384+
});
385+
});
386+
});
387+
}
388+
362389
/**
363390
* @ignore
364391
*/

0 commit comments

Comments
 (0)