mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-27 23:27:11 +01:00
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
import {cycleN, runReadOnlyTest, zip2} from "jstests/readonly/lib/read_only_test.js";
|
|
|
|
runReadOnlyTest(function() {
|
|
return {
|
|
name: 'find',
|
|
|
|
colors: ['blue', 'green', 'orange', 'white'],
|
|
nums: [1, 2, 3, 4, 5, 6],
|
|
|
|
load: function(writableCollection) {
|
|
var N = 1000;
|
|
|
|
this.colors.sort();
|
|
this.nums.sort();
|
|
|
|
var bulk = writableCollection.initializeUnorderedBulkOp();
|
|
|
|
for (var [color, num] of zip2(cycleN(this.colors, N), cycleN(this.nums, N))) {
|
|
bulk.insert({color, num});
|
|
}
|
|
assert.commandWorked(bulk.execute());
|
|
},
|
|
exec: function(readableCollection) {
|
|
var distinctColors = readableCollection.distinct('color');
|
|
var distinctNums = readableCollection.distinct('num');
|
|
|
|
distinctColors.sort();
|
|
distinctNums.sort();
|
|
|
|
assert.eq(distinctColors.length, this.colors.length);
|
|
for (var i = 0; i < distinctColors; ++i) {
|
|
assert.eq(distinctColors[i], this.colors[i]);
|
|
}
|
|
|
|
assert.eq(distinctNums.length, this.nums.length);
|
|
for (var i = 0; i < distinctNums; ++i) {
|
|
assert.eq(distinctNums[i], this.nums[i]);
|
|
}
|
|
}
|
|
};
|
|
}());
|