gpt4 book ai didi

unit-testing - 使用 JEST 测试快速路线

转载 作者:行者123 更新时间:2023-12-03 14:33:37 25 4
gpt4 key购买 nike

我想用 JEST 测试我的快速 API 端点。

下面是我的 Express API 代码。

溃败.ts

// Get release notes
routes.get('/release-notes', (req, res) => {
request.get({
url: 'https://host.com/rest/api/content/search?cql=parent=209266565',
json: true
})
.pipe(res);
});

export default routes;

上面的代码将返回数据,但我想测试 API,使用 Mock 而不发出 API 请求

所以我手动创建了一个模拟响应,需要用它来验证代码。

模拟.ts
export const releaseNotesMockData = {
'results': [
{
'id': '206169942',
'type': 'page',
'status': 'current',
'title': 'Release 2018-10-18 Full Flow CM00294965',
}]
};

使用下面的代码,我点击了真正的 API 并且测试通过了
describe('Test a 200', () => {
test('It should respond with a 200 status', async () => {
const response = await request(app).get('/release-notes');
expect(response.statusCode).toBe(200);
});
});

问题是,我不想使用真正的 API 进行测试,而是想使用 Mocks 进行测试。

下面是我尝试过的代码,但它不起作用。请帮忙

routs.test.ts
describe('api test', () => {
const url = '/release-notes';
it('user GET should be 200', async () => {
const result = await http({
url,
method: 'get'
});
expect(result).toBe('200');
});
});

最佳答案

问题是你没有 mock request您正在导入的模块。

https://jestjs.io/docs/en/tutorial-async有关模拟的详细信息。

关于unit-testing - 使用 JEST 测试快速路线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53908027/

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