From 4ae691e8edc87d0e3cfb633bb91c328426be007b Mon Sep 17 00:00:00 2001 From: Jonathan Abrahams Date: Wed, 9 Mar 2016 12:17:50 -0500 Subject: SERVER-22468 Format JS code with approved style in jstests/ --- jstests/readonly/aggregate.js | 145 +++++++++++++++++++----------------------- 1 file changed, 65 insertions(+), 80 deletions(-) (limited to 'jstests/readonly/aggregate.js') diff --git a/jstests/readonly/aggregate.js b/jstests/readonly/aggregate.js index 5710dec9139..9f74f739c4d 100644 --- a/jstests/readonly/aggregate.js +++ b/jstests/readonly/aggregate.js @@ -6,99 +6,84 @@ runReadOnlyTest(function() { name: 'aggregate', load: function(writableCollection) { - assert.doesNotThrow(() => { writableCollection.insertMany([ - {award: "Best Picture", - nominations: [ - {title: "The Big Short"}, - {title: "Bridge of Spies"}, - {title: "Brooklyn"}, - {title: "Max Max: Fury Road"}, - {title: "The Martian"}, - {title: "The Revenant"}, - {title: "Room"}, - {title: "Spotlight"} - ] - }, - {award: "Best Actor", - nominations: [ - {title: "Trumbo", - person: "Bryan Cranston"}, - {title: "The Martian", - person: "Matt Damon"}, - {title: "The Revenant", - person: "Leonardo DiCaprio"}, - {title: "Steve Jobs", - person: "Michael Fassbender"}, - {title: "The Danish Girl", - person: "Eddie Redmayne"} - ] - }, - {award: "Best Actress", - nominations: [ - {title: "Carol", - person: "Cate Blanchett"}, - {title: "Room", - person: "Brie Larson"}, - {title: "Joy", - person: "Jennifer Lawrence"}, - {title: "45 Years", - person: "Charlotte Rampling"}, - {title: "Brooklyn", - person: "Saoirse Ronan"} - ] - }, - {award: "Best Supporting Actor", - nominations: [ - {title: "The Big Short", - person: "Christian Bale"}, - {title: "The Revenant", - person: "Tom Hardy"}, - {title: "Spotlight", - person: "Mark Ruffalo"}, - {title: "Bridge Of Spies", - person: "Mark Rylance"}, - {title: "Creed", - person: "Sylvester Stallone"} - ] - }, - {award: "Best Supporting Actress", - nominations: [ - {title: "The Hateful Eight", - person: "Jennifer Jason Leigh"}, - {title: "Carol", - person: "Rooney Mara"}, - {title: "Spotlight", - person: "Rachel McAdams"}, - {title: "The Danish Girl", - person: "Alicia Vikander"}, - {title: "Steve Jobs", - person: "Kate Winslet"} - ] - } - ]); }); + assert.doesNotThrow(() => { + writableCollection.insertMany([ + { + award: "Best Picture", + nominations: [ + {title: "The Big Short"}, + {title: "Bridge of Spies"}, + {title: "Brooklyn"}, + {title: "Max Max: Fury Road"}, + {title: "The Martian"}, + {title: "The Revenant"}, + {title: "Room"}, + {title: "Spotlight"} + ] + }, + { + award: "Best Actor", + nominations: [ + {title: "Trumbo", person: "Bryan Cranston"}, + {title: "The Martian", person: "Matt Damon"}, + {title: "The Revenant", person: "Leonardo DiCaprio"}, + {title: "Steve Jobs", person: "Michael Fassbender"}, + {title: "The Danish Girl", person: "Eddie Redmayne"} + ] + }, + { + award: "Best Actress", + nominations: [ + {title: "Carol", person: "Cate Blanchett"}, + {title: "Room", person: "Brie Larson"}, + {title: "Joy", person: "Jennifer Lawrence"}, + {title: "45 Years", person: "Charlotte Rampling"}, + {title: "Brooklyn", person: "Saoirse Ronan"} + ] + }, + { + award: "Best Supporting Actor", + nominations: [ + {title: "The Big Short", person: "Christian Bale"}, + {title: "The Revenant", person: "Tom Hardy"}, + {title: "Spotlight", person: "Mark Ruffalo"}, + {title: "Bridge Of Spies", person: "Mark Rylance"}, + {title: "Creed", person: "Sylvester Stallone"} + ] + }, + { + award: "Best Supporting Actress", + nominations: [ + {title: "The Hateful Eight", person: "Jennifer Jason Leigh"}, + {title: "Carol", person: "Rooney Mara"}, + {title: "Spotlight", person: "Rachel McAdams"}, + {title: "The Danish Girl", person: "Alicia Vikander"}, + {title: "Steve Jobs", person: "Kate Winslet"} + ] + } + ]); + }); }, exec: function(readableCollection) { // Find titles nominated for the most awards. var mostAwardsPipeline = [ {$unwind: "$nominations"}, - {$group: { - _id: "$nominations.title", - count: {$sum: 1}}}, + {$group: {_id: "$nominations.title", count: {$sum: 1}}}, {$sort: {count: -1}}, {$limit: 2} ]; - assert.docEq(readableCollection.aggregate(mostAwardsPipeline).toArray(), [ - {_id: "The Revenant", count: 3}, - {_id: "Spotlight", count: 3} - ]); + assert.docEq(readableCollection.aggregate(mostAwardsPipeline).toArray(), + [{_id: "The Revenant", count: 3}, {_id: "Spotlight", count: 3}]); // Check that pipelines fail with allowDiskUse true. We use runCommand manually because // the helper has conflicting error handling logic. - var allowDiskUseCmd = {aggregate: readableCollection.getName(), - pipeline: [], - allowDiskUse: true}; + var allowDiskUseCmd = { + aggregate: readableCollection.getName(), + pipeline: [], + allowDiskUse: true + }; assert.commandFailedWithCode(readableCollection.runCommand(allowDiskUseCmd), ErrorCodes.IllegalOperation, -- cgit v1.2.1