gpt4 book ai didi

typescript - 在 Typescript 中使用 Jest + Supertest 进行模拟

转载 作者:行者123 更新时间:2023-12-05 03:49:08 24 4
gpt4 key购买 nike

我正在用 typescript 中的 jest 编写一个模拟测试用例并尝试使用 supertest 模拟 API 调用,但无法获得模拟响应作为返回,因为我在登录功能上使用 Axios 甚至试图模拟 Axios打电话但没有运气。

这是我的代码:

auth.controller.ts

import { AxiosService } from "helpers";

export class AuthController {
constructor() {
...
// Some logic is written here
this.init()
}

public init() {
// prepared an route for login
router.post('/api/auth/login', this.login);
}

login = async function (req: Request, res: Response): Promise<void> {
// Preparing config for axios call with some logic
...

// created a service for Axios call to some third party.
AxiosService.call(req, res, config, "login");
}
}


auth.test.ts

import { AuthController } from "../../modules/auth/auth.controller";
jest.mock("../../modules/auth/auth.controller");

beforeAll(async () => {
const auth = new AuthController();
mockLogin = jest.spyOn(auth, "login");
});

afterAll(async () => {
server.stop();
});

test("should give login response", async () => {
mockLogin.mockImplementation(() => {
return Promise.resolve({ Success: true, body: "Login" });
});

const response = await request(server.app)
.post("/api/auth/login")
.send(requestBody)
.expect(200);

response.body // Getting the server response instead of mocked one
})


也尝试过这段代码,但没有成功:

jest.mock('../../modules/auth/auth.controller', () => {
return {
AuthController: jest.fn().mockImplementation(() => {
return {
login: jest.fn()
}
})
}
})


这是我的 AxiosService 类:

export class AxiosService {

public static async call(...):Promise<void> {
try {
const { data } = await axios(...);

res.status(200).json(data);
} catch(err) {
res.status(400).send(err);
}

}

尝试使用以下行模拟 AxiosService 调用方法:

jest.mock('../../helpers/AxiosService', () => {
return jest.fn().mockImplementation(() => {
return { call: () => { return {success:true, data:'mock'}} }
})
})

但是,在模拟 Axios 调用之后,我得到在 jest.setTimeout 指定的 10000(我已经给出)毫秒超时内未调用异步回调

任何人都可以提供帮助,这对我来说非常好,因为我是模拟概念的新手,所以我可能在这里遗漏了一些东西。

提前致谢

最佳答案

一个适当的测试策略,除了被测试的单元之外的每个单元都需要被模拟。

发生超时是因为 Supertest 等待服务器响应,而在模拟 AxiosService 的情况下没有超时,因此需要像这样模拟:

...
return { call: (req, res) => { res.status(200).json({success:true, data:'mock'}); }

在这种情况下,测试可以模拟 Controller 类和模拟服务类,或者将它们与模拟 Axios 一起测试。由于 AuthController 不能单独做很多事情(AuthController 和 AxiosService 是对简单 Express 处理程序的抽象),它可以是:

jest.mock('axios', () => jest.fn()) // at top level
...
axios.mockResolvedValue({ data: ... });
const response = await request(server.app)

关于typescript - 在 Typescript 中使用 Jest + Supertest 进行模拟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64098340/

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