diff options
author | Randolph Tan <randolph@10gen.com> | 2014-01-14 14:09:42 -0500 |
---|---|---|
committer | Randolph Tan <randolph@10gen.com> | 2014-02-28 16:26:33 -0500 |
commit | 5595b945603b0712c537787e31e6da661c424fee (patch) | |
tree | 90945ee3fe4931032f3af2d397bb755fbf5d30ef /jstests/core/dbref2.js | |
parent | cd62080dcb036e83f8fca6d68d9bcab67bf7a21c (diff) | |
download | mongo-5595b945603b0712c537787e31e6da661c424fee.tar.gz |
SERVER-12127 migrate js tests to jscore suite when not related to writes
Moved test jstest/[a-i].js -> jstests/core/ and made changes to comply with write command api
Diffstat (limited to 'jstests/core/dbref2.js')
-rw-r--r-- | jstests/core/dbref2.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/jstests/core/dbref2.js b/jstests/core/dbref2.js new file mode 100644 index 00000000000..d1b4870322d --- /dev/null +++ b/jstests/core/dbref2.js @@ -0,0 +1,20 @@ + +a = db.dbref2a; +b = db.dbref2b; +c = db.dbref2c; + +a.drop(); +b.drop(); +c.drop(); + +a.save( { name : "eliot" } ); +b.save( { num : 1 , link : new DBRef( "dbref2a" , a.findOne()._id ) } ); +c.save( { num : 1 , links : [ new DBRef( "dbref2a" , a.findOne()._id ) ] } ); + +assert.eq( "eliot" , b.findOne().link.fetch().name , "A" ); +assert.neq( "el" , b.findOne().link.fetch().name , "B" ); + +// $elemMatch value +var doc = c.findOne( { links: { $elemMatch: { $ref : "dbref2a", $id : a.findOne()._id } } } ); +assert.eq( "eliot" , doc.links[0].fetch().name , "C" ); +assert.neq( "el" , doc.links[0].fetch().name , "D" ); |