gpt4 book ai didi

javascript - nodejs async/await try/catch jest 测试在不应该通过的时候通过

转载 作者:行者123 更新时间:2023-11-30 08:27:24 27 4
gpt4 key购买 nike

我正在学习使用最新的 ecmascript 语法对我的 MongoDB 后端代码进行开 Jest 测试。我现在正在测试,看看如果我尝试从空集合中查找文档,测试是否会失败。

游标应该是 null 因为什么都没有返回,这意味着游标是假的,但下面的测试仍然通过,即使我告诉它期望真实但我不知道为什么:

import config from './config'
const mongodb = require('mongodb')

it('sample test', () => {
mongodb.MongoClient.connect(config.mongodb.url, async (connectErr, db) => {
expect(db).toBeTruthy()
let cursor
try {
cursor = await db.collection('my_collection').findOne()
// cursor is null, but test still passes below
expect(cursor).toBeTruthy()
} catch (findErr) {
db.close()
}
})
})

另外,这样的测试测试风格好吗?我在某处读到你不应该在测试中使用 try/catch block 。但这就是您用来处理异步/等待错误的方式。

最佳答案

不要使用 async 函数作为回调——因为回调不应该返回 promise ;他们的结果将被忽略(并且不会处理拒绝)。您应该将 async 函数传递给 it 本身,假设 Jest 知道如何处理 promises。

it('sample test', async () => {
const db = await mongodb.MongoClient.connect(config.mongodb.url);
expect(db).toBeTruthy();
try {
const cursor = await db.collection('my_collection').findOne();
expect(cursor).toBeTruthy();
} finally { // don't `catch` exceptions you want to bubble
db.close()
}
});

关于javascript - nodejs async/await try/catch jest 测试在不应该通过的时候通过,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43383502/

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