summaryrefslogtreecommitdiff
path: root/jstests/mr_errorhandling.js
diff options
context:
space:
mode:
authorAntonin Kral <a.kral@bobek.cz>2010-03-25 19:21:32 +0100
committerAntonin Kral <a.kral@bobek.cz>2010-03-25 19:21:32 +0100
commit0ca01a91ae0a3562e54c226e7b9512feb2ea83d0 (patch)
tree2b3886e435b0217d6afd63a213b04d32bb4b4f6f /jstests/mr_errorhandling.js
parenta696359b248adef0cc8576fce3f473535e995136 (diff)
downloadmongodb-0ca01a91ae0a3562e54c226e7b9512feb2ea83d0.tar.gz
Imported Upstream version 1.4.0
Diffstat (limited to 'jstests/mr_errorhandling.js')
-rw-r--r--jstests/mr_errorhandling.js47
1 files changed, 47 insertions, 0 deletions
diff --git a/jstests/mr_errorhandling.js b/jstests/mr_errorhandling.js
new file mode 100644
index 0000000..57724f1
--- /dev/null
+++ b/jstests/mr_errorhandling.js
@@ -0,0 +1,47 @@
+
+t = db.mr_errorhandling;
+t.drop();
+
+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_bad = function(){
+ for ( var i=0; i<this.a.length; i++ ){
+ emit( this.a[i] );
+ }
+}
+
+r = function( k , v ){
+ var total = 0;
+ for ( var i=0; i<v.length; i++ )
+ total += v[i];
+ return total;
+}
+
+res = t.mapReduce( m_good , r );
+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 );
+}
+catch ( e ){
+ theerror = e.toString();
+}
+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 );
+assert.eq( { 1 : 1 , 2 : 2 , 3 : 2 , 4 : 1 } , res.convertToSingleObject() , "A" );
+res.drop()