Files
mongo/jstests/filemd5.js
2011-09-22 23:37:41 -04:00

12 lines
292 B
JavaScript

db.fs.chunks.drop();
db.fs.chunks.insert({files_id:1,n:0,data:new BinData(0,"test")})
x = db.runCommand({"filemd5":1,"root":"fs"});
assert( ! x.ok , tojson(x) )
db.fs.chunks.ensureIndex({files_id:1,n:1})
x = db.runCommand({"filemd5":1,"root":"fs"});
assert( x.ok , tojson(x) )