19 lines
553 B
JavaScript
19 lines
553 B
JavaScript
// This test just make sure that aggregation is possible on a secondary node.
|
|
var replTest = new ReplSetTest( {name: 'aggTestSlave', nodes: 2} );
|
|
var nodes = replTest.startSet();
|
|
replTest.initiate();
|
|
replTest.awaitReplication();
|
|
|
|
var mast = nodes[0].getDB('test');
|
|
var slav = nodes[1].getDB('test');
|
|
|
|
mast.agg.insert({});
|
|
mast.agg.insert({});
|
|
mast.agg.insert({});
|
|
mast.getLastError(2);
|
|
|
|
var res = slav.agg.aggregate({$group: {_id: null, count: {$sum: 1}}});
|
|
assert.commandWorked(res);
|
|
assert.eq(res.result, [{_id:null, count: 3}]);
|
|
|
|
replTest.stopSet();
|