summaryrefslogtreecommitdiff
path: root/jstests/core/sortd.js
diff options
context:
space:
mode:
authorJonathan Abrahams <jonathan@mongodb.com>2016-03-09 12:17:50 -0500
committerJonathan Abrahams <jonathan@mongodb.com>2016-03-09 12:18:14 -0500
commit4ae691e8edc87d0e3cfb633bb91c328426be007b (patch)
tree52079a593f54382ca13a2e741633eab1b6271893 /jstests/core/sortd.js
parenta025d43f3ce2efc1fb1282a718f5d286fa0a4dc1 (diff)
downloadmongo-4ae691e8edc87d0e3cfb633bb91c328426be007b.tar.gz
SERVER-22468 Format JS code with approved style in jstests/
Diffstat (limited to 'jstests/core/sortd.js')
-rw-r--r--jstests/core/sortd.js67
1 files changed, 33 insertions, 34 deletions
diff --git a/jstests/core/sortd.js b/jstests/core/sortd.js
index 963d32b0ca4..7012915f3ca 100644
--- a/jstests/core/sortd.js
+++ b/jstests/core/sortd.js
@@ -2,69 +2,68 @@
t = db.jstests_sortd;
-function checkNumSorted( n, query ) {
+function checkNumSorted(n, query) {
docs = query.toArray();
- assert.eq( n, docs.length );
- for( i = 1; i < docs.length; ++i ) {
- assert.lte( docs[ i-1 ].a, docs[ i ].a );
+ assert.eq(n, docs.length);
+ for (i = 1; i < docs.length; ++i) {
+ assert.lte(docs[i - 1].a, docs[i].a);
}
}
-
// Test results added by ordered and unordered plans, unordered plan finishes.
t.drop();
-t.save( {a:[1,2,3,4,5]} );
-t.save( {a:10} );
-t.ensureIndex( {a:1} );
+t.save({a: [1, 2, 3, 4, 5]});
+t.save({a: 10});
+t.ensureIndex({a: 1});
-assert.eq( 2, t.find( {a:{$gt:0}} ).sort( {a:1} ).itcount() );
-assert.eq( 2, t.find( {a:{$gt:0},b:null} ).sort( {a:1} ).itcount() );
+assert.eq(2, t.find({a: {$gt: 0}}).sort({a: 1}).itcount());
+assert.eq(2, t.find({a: {$gt: 0}, b: null}).sort({a: 1}).itcount());
// Test results added by ordered and unordered plans, ordered plan finishes.
t.drop();
-t.save( {a:1} );
-t.save( {a:10} );
-for( i = 2; i <= 9; ++i ) {
- t.save( {a:i} );
+t.save({a: 1});
+t.save({a: 10});
+for (i = 2; i <= 9; ++i) {
+ t.save({a: i});
}
-for( i = 0; i < 30; ++i ) {
- t.save( {a:100} );
+for (i = 0; i < 30; ++i) {
+ t.save({a: 100});
}
-t.ensureIndex( {a:1} );
+t.ensureIndex({a: 1});
-checkNumSorted( 10, t.find( {a:{$gte:0,$lte:10}} ).sort( {a:1} ) );
-checkNumSorted( 10, t.find( {a:{$gte:0,$lte:10},b:null} ).sort( {a:1} ) );
+checkNumSorted(10, t.find({a: {$gte: 0, $lte: 10}}).sort({a: 1}));
+checkNumSorted(10, t.find({a: {$gte: 0, $lte: 10}, b: null}).sort({a: 1}));
-// Test results added by ordered and unordered plans, ordered plan finishes and continues with getmore.
+// Test results added by ordered and unordered plans, ordered plan finishes and continues with
+// getmore.
t.drop();
-t.save( {a:1} );
-t.save( {a:200} );
-for( i = 2; i <= 199; ++i ) {
- t.save( {a:i} );
+t.save({a: 1});
+t.save({a: 200});
+for (i = 2; i <= 199; ++i) {
+ t.save({a: i});
}
-for( i = 0; i < 30; ++i ) {
- t.save( {a:2000} );
+for (i = 0; i < 30; ++i) {
+ t.save({a: 2000});
}
-t.ensureIndex( {a:1} );
+t.ensureIndex({a: 1});
-checkNumSorted( 200, t.find( {a:{$gte:0,$lte:200}} ).sort( {a:1} ) );
-checkNumSorted( 200, t.find( {a:{$gte:0,$lte:200},b:null} ).sort( {a:1} ) );
+checkNumSorted(200, t.find({a: {$gte: 0, $lte: 200}}).sort({a: 1}));
+checkNumSorted(200, t.find({a: {$gte: 0, $lte: 200}, b: null}).sort({a: 1}));
// Test results added by ordered and unordered plans, with unordered results excluded during
// getmore.
t.drop();
-for( i = 399; i >= 0; --i ) {
- t.save( {a:i} );
+for (i = 399; i >= 0; --i) {
+ t.save({a: i});
}
-t.ensureIndex( {a:1} );
-
-checkNumSorted( 400, t.find( {a:{$gte:0,$lte:400},b:null} ).batchSize( 50 ).sort( {a:1} ) );
+t.ensureIndex({a: 1});
+checkNumSorted(400, t.find({a: {$gte: 0, $lte: 400}, b: null}).batchSize(50).sort({a: 1}));