mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-28 07:59:02 +01:00
32 lines
866 B
JavaScript
32 lines
866 B
JavaScript
|
|
db.somecollection.drop();
|
|
|
|
assert.eq(0, db.system.namespaces.find({name: /somecollection/}).length(), "1");
|
|
|
|
db.somecollection.save({a: 1});
|
|
|
|
assert.eq(2, db.system.namespaces.find({name: /somecollection/}).length(), "2");
|
|
|
|
db.somecollection.ensureIndex({a: 1});
|
|
|
|
var z = db.system.namespaces.find({name: /somecollection/}).length();
|
|
assert.gte(z, 1, "3");
|
|
|
|
if (z == 1)
|
|
print("warning: z==1, should only happen with alternate storage engines");
|
|
|
|
db.somecollection.drop();
|
|
|
|
assert.eq(0, db.system.namespaces.find({name: /somecollection/}).length(), "4");
|
|
|
|
db.somecollection.save({a: 1});
|
|
|
|
assert.eq(2, db.system.namespaces.find({name: /somecollection/}).length(), "5");
|
|
|
|
db.somecollection.ensureIndex({a: 1});
|
|
|
|
var x = db.system.namespaces.find({name: /somecollection/}).length();
|
|
assert(x == 2 || x == z, "6");
|
|
|
|
assert(db.somecollection.validate().valid, "7");
|