summaryrefslogtreecommitdiff
path: root/jstests/aggregation/bugs/server6530.js
blob: 8b0c914648a74405174a7a1cd62d185eed06ad14 (plain)
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
/**
 * Test that $near queries are disallowed in $match stages.
 */
(function() {
"use strict";
load("jstests/aggregation/extras/utils.js");

const coll = db.getCollection("no_near_in_match");
coll.drop();

// Create indexes that could satisfy various $near queries.
assert.commandWorked(coll.createIndex({point2d: "2d"}));
assert.commandWorked(coll.createIndex({point2dsphere: "2dsphere"}));

// Populate the collection so that successful queries can return at least one result.
assert.commandWorked(coll.insert({point2d: [0.25, 0.35]}));
assert.commandWorked(coll.insert({point2dsphere: [0.25, 0.35]}));

const nearQuery = {
    point2d: {$near: [0, 0]}
};
const nearSphereQuery = {
    point2dsphere: {$nearSphere: [0, 0]}
};
const geoNearQuery = {
    point2d: {$geoNear: [0, 0]}
};

// Test that normal finds return a result.
assert.eq(1, coll.find(nearQuery).count());
assert.eq(1, coll.find(nearSphereQuery).count());
assert.eq(1, coll.find(geoNearQuery).count());

// Test that we refuse to run $match with a near query.
assertErrorCode(coll, {$match: nearQuery}, ErrorCodes.BadValue);
assertErrorCode(coll, {$match: nearSphereQuery}, ErrorCodes.BadValue);
assertErrorCode(coll, {$match: geoNearQuery}, ErrorCodes.BadValue);
}());