summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/ns1.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/noPassthrough/ns1.js
parenta025d43f3ce2efc1fb1282a718f5d286fa0a4dc1 (diff)
downloadmongo-4ae691e8edc87d0e3cfb633bb91c328426be007b.tar.gz
SERVER-22468 Format JS code with approved style in jstests/
Diffstat (limited to 'jstests/noPassthrough/ns1.js')
-rw-r--r--jstests/noPassthrough/ns1.js57
1 files changed, 28 insertions, 29 deletions
diff --git a/jstests/noPassthrough/ns1.js b/jstests/noPassthrough/ns1.js
index ae5c6efd2f5..adc5f22a82d 100644
--- a/jstests/noPassthrough/ns1.js
+++ b/jstests/noPassthrough/ns1.js
@@ -1,51 +1,50 @@
-load( "jstests/libs/slow_weekly_util.js" );
+load("jstests/libs/slow_weekly_util.js");
-testServer = new SlowWeeklyMongod( "ns1" );
-mydb = testServer.getDB( "test_ns1" );
+testServer = new SlowWeeklyMongod("ns1");
+mydb = testServer.getDB("test_ns1");
-check = function( n , isNew ){
+check = function(n, isNew) {
var coll = mydb["x" + n];
- if ( isNew ){
- assert.eq( 0 , coll.count() , "pop a: " + n );
- coll.insert( { _id : n } );
+ if (isNew) {
+ assert.eq(0, coll.count(), "pop a: " + n);
+ coll.insert({_id: n});
}
- assert.eq( 1 , coll.count() , "pop b: " + n );
- assert.eq( n , coll.findOne()._id , "pop c: " + n );
+ assert.eq(1, coll.count(), "pop b: " + n);
+ assert.eq(n, coll.findOne()._id, "pop c: " + n);
return coll;
};
max = 0;
-for ( ; max<1000; max++ ){
- check(max,true);
+for (; max < 1000; max++) {
+ check(max, true);
}
-function checkall( removed ){
- for ( var i=0; i<max; i++ ){
- if ( removed == i ){
- assert.eq( 0 , mydb["x"+i].count() , "should be 0 : " + removed );
- }
- else {
- check( i , false );
+function checkall(removed) {
+ for (var i = 0; i < max; i++) {
+ if (removed == i) {
+ assert.eq(0, mydb["x" + i].count(), "should be 0 : " + removed);
+ } else {
+ check(i, false);
}
}
}
checkall();
-Random.srand( 123124 );
+Random.srand(123124);
its = max / 2;
-print( "its: " + its );
-for ( i=0; i<its; i++ ){
- x = Random.randInt( max );
- check( x , false ).drop();
- checkall( x );
- check( x , true );
- if ( ( i + 1 ) % 20 == 0 ){
- print( i + "/" + its );
+print("its: " + its);
+for (i = 0; i < its; i++) {
+ x = Random.randInt(max);
+ check(x, false).drop();
+ checkall(x);
+ check(x, true);
+ if ((i + 1) % 20 == 0) {
+ print(i + "/" + its);
}
-}
-print( "yay" );
+}
+print("yay");
mydb.dropDatabase();