这是一个类似于我们使用的示例:
var resetCollection = function(name) {
var Collection = this[name];
if (Collection)
// if the collection is already defined, remove its documents
Collection.remove({});
else
// define a new unmanaged collection
this[name] = new Mongo.Collection(null);
};
reset = function() {
var collections = ['Comments', 'Posts'];
// reset all of the collections
_.each(collections(function(name) {resetCollection(name);}));
// insert some documents
var postId = Posts.insert({title: 'example post'});
Comments.insert({postId: postId, message: 'example comment'});
};
Tinytest.add('something', function(test) {
reset();
var post = Posts.findOne();
var comment = Comments.findOne();
return test.equal(comment.postId, post._id);
});
在我们调用的每个测试开始时,reset
它会清理数据库并创建必要的集合。
我如何告诉 Meteor 运行测试数据库而不是我的真实数据库?
当您测试您的包时,将为您创建一个单独的数据库。无需手动指定您的数据库路径。
用数据轻松填充测试数据库的最佳方法是什么?
上面的例子应该给你一些指示。我发现避免包之间冲突的最佳方法是在测试中使用非托管集合(名称 = null
)。该resetCollection
函数应正确避免重新定义由其他包导出的任何托管集合。另请参阅此问题以获取更多详细信息。