summaryrefslogtreecommitdiff
path: root/jstests/core/geo_haystack3.js
diff options
context:
space:
mode:
authorJonathan Abrahams <jonathan@mongodb.com>2016-03-09 12:27:20 -0500
committerJonathan Abrahams <jonathan@mongodb.com>2016-03-09 12:27:56 -0500
commit8c5ff5834ab1f61e68b7839cd99c3de1f87c2121 (patch)
treeef4d91cc230300a6a48eeeac696ca15df6db1212 /jstests/core/geo_haystack3.js
parent0875be78b405016736ff42e3a50166be7561c2f8 (diff)
downloadmongo-8c5ff5834ab1f61e68b7839cd99c3de1f87c2121.tar.gz
SERVER-22468 Format JS code with approved style in jstests/
Diffstat (limited to 'jstests/core/geo_haystack3.js')
-rw-r--r--jstests/core/geo_haystack3.js38
1 files changed, 18 insertions, 20 deletions
diff --git a/jstests/core/geo_haystack3.js b/jstests/core/geo_haystack3.js
index 4c55e94ad7f..1357ccf4f51 100644
--- a/jstests/core/geo_haystack3.js
+++ b/jstests/core/geo_haystack3.js
@@ -5,52 +5,50 @@ t.drop();
// Tests for geo haystack validity
//
-t.insert({ pos : "invalid" });
-assert.commandFailed(t.ensureIndex({ pos : "geoHaystack", type : 1 }, { bucketSize : 1 }));
+t.insert({pos: "invalid"});
+assert.commandFailed(t.ensureIndex({pos: "geoHaystack", type: 1}, {bucketSize: 1}));
t.drop();
-t.insert({ pos : [] });
-assert.commandFailed(t.ensureIndex({ pos : "geoHaystack", type : 1 }, { bucketSize : 1 }));
+t.insert({pos: []});
+assert.commandFailed(t.ensureIndex({pos: "geoHaystack", type: 1}, {bucketSize: 1}));
t.drop();
-t.insert({ pos : [1, 2] });
-assert.commandWorked(t.ensureIndex({ pos : "geoHaystack", type : 1 }, { bucketSize : 1 }));
+t.insert({pos: [1, 2]});
+assert.commandWorked(t.ensureIndex({pos: "geoHaystack", type: 1}, {bucketSize: 1}));
t.drop();
-t.insert({ pos : {x : 1, y : 2} });
-assert.commandWorked(t.ensureIndex({ pos : "geoHaystack", type : 1 }, { bucketSize : 1 }));
+t.insert({pos: {x: 1, y: 2}});
+assert.commandWorked(t.ensureIndex({pos: "geoHaystack", type: 1}, {bucketSize: 1}));
t.drop();
-t.insert({ pos : {x : 1, y : 2, z : 3} });
-assert.commandWorked(t.ensureIndex({ pos : "geoHaystack", type : 1 }, { bucketSize : 1 }));
+t.insert({pos: {x: 1, y: 2, z: 3}});
+assert.commandWorked(t.ensureIndex({pos: "geoHaystack", type: 1}, {bucketSize: 1}));
t.drop();
//
// Tests for geo haystack search
//
-t.insert({ pos : { long : 34, lat : 33 }});
-t.insert({ pos : { long : 34.2, lat : 33.3 }, type : ["bar", "restaurant" ]});
-t.insert({ pos : { long : 34.2, lat : 37.3 }, type : ["bar", "chicken" ]});
-t.insert({ pos : { long : 59.1, lat : 87.2 }, type : ["baz", "office" ]});
-t.ensureIndex({ pos : "geoHaystack", type : 1 }, { bucketSize : 1 });
+t.insert({pos: {long: 34, lat: 33}});
+t.insert({pos: {long: 34.2, lat: 33.3}, type: ["bar", "restaurant"]});
+t.insert({pos: {long: 34.2, lat: 37.3}, type: ["bar", "chicken"]});
+t.insert({pos: {long: 59.1, lat: 87.2}, type: ["baz", "office"]});
+t.ensureIndex({pos: "geoHaystack", type: 1}, {bucketSize: 1});
// This only matches the first insert. What do we want? First 3 or just the first?
-res = t.runCommand("geoSearch", { near : [33, 33], maxDistance : 6, search : {}, limit : 30 });
+res = t.runCommand("geoSearch", {near: [33, 33], maxDistance: 6, search: {}, limit: 30});
assert.eq(1, res.stats.n, "Right # of matches");
assert.eq(34, res.results[0].pos.long, "expected longitude");
assert.eq(33, res.results[0].pos.lat, "expected latitude");
// This matches the middle 2 of the 4 elements above.
-res = t.runCommand("geoSearch", { near : [33, 33], maxDistance : 6, search : { type : "bar" },
- limit : 2 });
+res = t.runCommand("geoSearch", {near: [33, 33], maxDistance: 6, search: {type: "bar"}, limit: 2});
assert.eq(2, res.stats.n, "Right # of matches");
assert.eq("bar", res.results[0].type[0], "expected value for type");
assert.eq("bar", res.results[1].type[0], "expected value for type");
assert.neq(res.results[0].type[1], res.results[1].type[1], "should get 2 diff results");
// This is a test for the limit being reached/only 1 returned.
-res = t.runCommand("geoSearch", { near : [33, 33], maxDistance : 6, search : { type : "bar" },
- limit : 1 });
+res = t.runCommand("geoSearch", {near: [33, 33], maxDistance: 6, search: {type: "bar"}, limit: 1});
assert.eq(1, res.stats.n, "Right # of matches");
assert.eq("bar", res.results[0].type[0], "expected value for type");