summaryrefslogtreecommitdiff
path: root/jstests/core/mr_errorhandling.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/mr_errorhandling.js
parenta025d43f3ce2efc1fb1282a718f5d286fa0a4dc1 (diff)
downloadmongo-4ae691e8edc87d0e3cfb633bb91c328426be007b.tar.gz
SERVER-22468 Format JS code with approved style in jstests/
Diffstat (limited to 'jstests/core/mr_errorhandling.js')
-rw-r--r--jstests/core/mr_errorhandling.js43
1 files changed, 22 insertions, 21 deletions
diff --git a/jstests/core/mr_errorhandling.js b/jstests/core/mr_errorhandling.js
index 1bd94bbd56e..280d6e76891 100644
--- a/jstests/core/mr_errorhandling.js
+++ b/jstests/core/mr_errorhandling.js
@@ -2,48 +2,49 @@
t = db.mr_errorhandling;
t.drop();
-t.save( { a : [ 1 , 2 , 3 ] } );
-t.save( { a : [ 2 , 3 , 4 ] } );
+t.save({a: [1, 2, 3]});
+t.save({a: [2, 3, 4]});
-m_good = function(){
- for ( var i=0; i<this.a.length; i++ ){
- emit( this.a[i] , 1 );
+m_good = function() {
+ for (var i = 0; i < this.a.length; i++) {
+ emit(this.a[i], 1);
}
};
-m_bad = function(){
- for ( var i=0; i<this.a.length; i++ ){
- emit( this.a[i] );
+m_bad = function() {
+ for (var i = 0; i < this.a.length; i++) {
+ emit(this.a[i]);
}
};
-r = function( k , v ){
+r = function(k, v) {
var total = 0;
- for ( var i=0; i<v.length; i++ )
+ for (var i = 0; i < v.length; i++)
total += v[i];
return total;
};
-res = t.mapReduce( m_good , r , "mr_errorhandling_out" );
-assert.eq( { 1 : 1 , 2 : 2 , 3 : 2 , 4 : 1 } , res.convertToSingleObject() , "A" );
+res = t.mapReduce(m_good, r, "mr_errorhandling_out");
+assert.eq({1: 1, 2: 2, 3: 2, 4: 1}, res.convertToSingleObject(), "A");
res.drop();
res = null;
theerror = null;
try {
- res = t.mapReduce( m_bad , r , "mr_errorhandling_out" );
-}
-catch ( e ){
+ res = t.mapReduce(m_bad, r, "mr_errorhandling_out");
+} catch (e) {
theerror = e.toString();
}
-assert.isnull( res , "B1" );
-assert( theerror , "B2" );
-assert( theerror.indexOf( "emit" ) >= 0 , "B3" );
+assert.isnull(res, "B1");
+assert(theerror, "B2");
+assert(theerror.indexOf("emit") >= 0, "B3");
// test things are still in an ok state
-res = t.mapReduce( m_good , r , "mr_errorhandling_out" );
-assert.eq( { 1 : 1 , 2 : 2 , 3 : 2 , 4 : 1 } , res.convertToSingleObject() , "A" );
+res = t.mapReduce(m_good, r, "mr_errorhandling_out");
+assert.eq({1: 1, 2: 2, 3: 2, 4: 1}, res.convertToSingleObject(), "A");
res.drop();
-assert.throws( function(){ t.mapReduce( m_good , r , { out : "xxx" , query : "foo" } ); } );
+assert.throws(function() {
+ t.mapReduce(m_good, r, {out: "xxx", query: "foo"});
+});