summaryrefslogtreecommitdiff
path: root/jstests/map1.js
diff options
context:
space:
mode:
authorAntonin Kral <a.kral@bobek.cz>2010-01-31 08:32:52 +0100
committerAntonin Kral <a.kral@bobek.cz>2010-01-31 08:32:52 +0100
commit4eefaf421bfeddf040d96a3dafb12e09673423d7 (patch)
treecb2e5ccc7f98158894f977ff131949da36673591 /jstests/map1.js
downloadmongodb-4eefaf421bfeddf040d96a3dafb12e09673423d7.tar.gz
Imported Upstream version 1.3.1
Diffstat (limited to 'jstests/map1.js')
-rw-r--r--jstests/map1.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/jstests/map1.js b/jstests/map1.js
new file mode 100644
index 0000000..1db53cd
--- /dev/null
+++ b/jstests/map1.js
@@ -0,0 +1,24 @@
+
+function basic1( key , lookup , shouldFail){
+ var m = new Map();
+ m.put( key , 17 );
+
+ var out = m.get( lookup || key );
+
+ if ( ! shouldFail ){
+ assert.eq( 17 , out , "basic1 missing: " + tojson( key ) );
+ }
+ else {
+ assert.isnull( out , "basic1 not missing: " + tojson( key ) );
+ }
+
+}
+
+basic1( 6 )
+basic1( new Date() )
+basic1( "eliot" )
+basic1( { a : 1 } );
+basic1( { a : 1 , b : 1 } )
+basic1( { a : 1 } , { b : 1 } , true )
+basic1( { a : 1 , b : 1 } , { b : 1 , a : 1 } , true )
+basic1( { a : 1 } , { a : 2 } , true );