gpt4 book ai didi

node.js - 用于测试的内存 MongoDB?

转载 作者:IT老高 更新时间:2023-10-28 13:25:36 29 4
gpt4 key购买 nike

我正在使用 MongoDB 数据库为我的 NodeJS 应用程序编写一些集成和系统测试。我使用的测试框架是 Mocha 和 Supertest。是否可以将 MongoDB 设置为内存数据库,我只能使用它进行测试,然后在测试完成后删除我所有的集合和文档?

最佳答案

您可以使用 mongodb-memory-server 完成此操作.该软件包将 mongod 二进制文件下载到您的主目录,并根据需要实例化一个新的内存支持 MondoDB 实例。对于每个测试文件,您都可以启动一个新服务器,这意味着您可以并行运行它们。


对于使用 jest 的读者和 native mongodb driver ,你可能会发现这个类很有用:

const { MongoClient } = require('mongodb');
const { MongoMemoryServer } = require('mongodb-memory-server');

// Extend the default timeout so MongoDB binaries can download
jest.setTimeout(60000);

// List your collection names here
const COLLECTIONS = [];

class DBManager {
constructor() {
this.db = null;
this.server = new MongoMemoryServer();
this.connection = null;
}

async start() {
const url = await this.server.getUri();
this.connection = await MongoClient.connect(url, { useNewUrlParser: true });
this.db = this.connection.db(await this.server.getDbName());
}

stop() {
this.connection.close();
return this.server.stop();
}

cleanup() {
return Promise.all(COLLECTIONS.map(c => this.db.collection(c).remove({})));
}
}

module.exports = DBManager;

然后在每个测试文件中您可以执行以下操作:

const dbman = new DBManager();

afterAll(() => dbman.stop());
beforeAll(() => dbman.start());
afterEach(() => dbman.cleanup());

我怀疑这种方法可能与其他测试框架类似。

关于node.js - 用于测试的内存 MongoDB?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13607732/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com