Files
mongo/jstests/core/geo_s2selfintersectingpoly.js
Randolph Tan 5595b94560 SERVER-12127 migrate js tests to jscore suite when not related to writes
Moved test jstest/[a-i].js -> jstests/core/ and made changes to comply with write command api
2014-02-28 16:26:33 -05:00

12 lines
344 B
JavaScript

var t = db.geo_s2selfintersectingpoly;
t.drop();
t.ensureIndex({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}));