summaryrefslogtreecommitdiff
path: root/jstests/core/geo_parse_err.js
blob: 73bc451bd7ccdbe226fa75157c31ce3e7b2b5fbe (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/**
 * Test the error messages users get when creating geo objects. For example:
 * - Do we get the error message we expect when:
 * - We insert something of a different type than an array of doubles for coordinates?
 * - When the number of loops in a simple polygon exceeds 1?
 * @tags: [
 *  multiversion_incompatible
 * ]
 */

(function() {
"use strict";
let t = db.geo_parse_err;
t.drop();

const indexname = "2dsphere";
const bigCRS = {
    type: "name",
    properties: {name: "urn:x-mongodb:crs:strictwinding:EPSG:4326"}
};

t.createIndex({loc: indexname});

// parseFlatPoint
let err = t.insert({loc: {type: "Point", coordinates: "hello"}});
assert.includes(err.getWriteError().errmsg,
                'Point must be an array or object, instead got type string');

err = t.insert({loc: {type: "Point", coordinates: ["hello", 5]}});
assert.includes(err.getWriteError().errmsg,
                "Point must only contain numeric elements, instead got type string");

err = t.insert({loc: {type: "Point", coordinates: [5 / 0, 5]}});
assert.includes(err.getWriteError().errmsg, "Point coordinates must be finite numbers");

// parseGeoJSONCoordinate
err = t.insert({loc: {type: "LineString", coordinates: [5, 5]}});
assert.includes(err.getWriteError().errmsg,
                "GeoJSON coordinates must be an array, instead got type double");

// parseArrayOfCoordinates
err = t.insert({loc: {type: "LineString", coordinates: 5}});
assert.includes(err.getWriteError().errmsg,
                "GeoJSON coordinates must be an array of coordinates, instead got type double");
// isLoopClosed
err = t.insert({loc: {type: "Polygon", coordinates: [[[0, 0], [1, 2], [2, 3]]]}});
assert.includes(err.getWriteError().errmsg,
                "Loop is not closed, first vertex does not equal last vertex:");

// parseGeoJSONPolygonCoordinates
err = t.insert({loc: {type: "Polygon", coordinates: "hi"}});
assert.includes(err.getWriteError().errmsg,
                "Polygon coordinates must be an array, instead got type string");

err = t.insert({loc: {type: "Polygon", coordinates: [[[0, 0], [1, 2], [0, 0]]]}});
assert.includes(err.getWriteError().errmsg,
                "Loop must have at least 3 different vertices, 2 unique vertices were provided:");

// parseBigSimplePolygonCoordinates
err = t.insert({loc: {type: "Polygon", coordinates: "", crs: bigCRS}});
assert.includes(err.getWriteError().errmsg,
                "Coordinates of polygon must be an array, instead got type string");

err = t.insert({
    loc: {
        type: "Polygon",
        coordinates:
            [[[10.0, 10.0], [-10.0, 10.0], [-10.0, -10.0], [10.0, -10.0], [10.0, 10.0]], []],
        crs: bigCRS
    }
});
assert.includes(err.getWriteError().errmsg,
                "Only one simple loop is allowed in a big polygon, instead provided 2");
err = t.insert({
    loc: {type: "Polygon", coordinates: [[[10.0, 10.0], [-10.0, 10.0], [10.0, 10.0]]], crs: bigCRS}
});
assert.includes(err.getWriteError().errmsg,
                "Loop must have at least 3 different vertices, 2 unique vertices were provided:");

// parseGeoJSONCRS
const bigPoly20 = [[[10.0, 10.0], [-10.0, 10.0], [10.0, 10.0]]];

err = t.insert({loc: {type: "Polygon", coordinates: bigPoly20, crs: {type: "name"}}});

assert.includes(err.getWriteError().errmsg,
                "CRS must have field \"properties\" which is an object, instead got type missing");

err = t.insert({
    loc: {
        type: "Polygon",
        coordinates: bigPoly20,
        crs: {type: "name", properties: {nam: "urn:x-mongodb:crs:strictwinding:EPSG:4326"}}
    }
});
assert.includes(err.getWriteError().errmsg,
                "In CRS, \"properties.name\" must be a string, instead got type missing");

// parseMultiPolygon
err = t.insert({loc: {type: "MultiPolygon", coordinates: ""}});

assert.includes(err.getWriteError().errmsg,
                "MultiPolygon coordinates must be an array, instead got type string");

// Geometry collection
err = t.insert({
    loc: {
        type: "GeometryCollection",
        geometries: [
            {
                type: "MultiPoint",
                coordinates: [
                    [-73.9580, 40.8003],
                    [-73.9498, 40.7968],
                    [-73.9737, 40.7648],
                    [-73.9814, 40.7681]
                ]
            },
            5
        ]
    }
});
assert.includes(err.getWriteError().errmsg,
                "Element 1 of \"geometries\" must be an object, instead got type double:");
})();