0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/jstests/update.js
2009-01-31 17:22:22 -05:00

26 lines
456 B
JavaScript

asdf = db.getCollection( "asdf" );
asdf.drop();
var txt = "asdf";
for(var i=0; i<10; i++) {
txt = txt + txt;
}
// fill db
for(var i=1; i<=5000; i++) {
var obj = {txt : txt};
asdf.save(obj);
var obj2 = {txt: txt, comments: [{num: i, txt: txt}, {num: [], txt: txt}, {num: true, txt: txt}]};
asdf.update(obj, obj2);
if(i%100 == 0) {
var c = asdf.count();
assert.eq(c , i);
}
}
assert(asdf.validate().valid);