summaryrefslogtreecommitdiff
path: root/jstests/core/geo_s2selfintersectingpoly.js
blob: 0ac522fa6f7163bb0e0aa35da0bbe0a36b77e2a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
var t = db.geo_s2selfintersectingpoly;
t.drop();
t.createIndex({geo: "2dsphere"});

var intersectingPolygon = {
    "type": "Polygon",
    "coordinates": [[[0.0, 0.0], [0.0, 4.0], [-3.0, 2.0], [1.0, 2.0], [0.0, 0.0]]]
};
/**
 * Self intersecting polygons should cause a parse exception.
 */
assert.writeError(t.insert({geo: intersectingPolygon}));