我想使用 Jest 为我的 Api 文件编写测试用例。使用 Next.js。我尝试了很多东西,但无法获得任何文件覆盖。
ApiFile.js
const axios = require('axios');
import getConfig from 'next/config';
export default async (req, res) => {
const {query: { param }} = req;
const response = await customerInfo(param);
if (!response.data || response.data == null)
res.status(200).send({ data: [], status: response.status});
else
res.status(200).send({ data: response.data.results, status: response.status });
};
async function customerInfo(params) {
const { serverRuntimeConfig } = getConfig();
const URL = serverRuntimeConfig.API;
const config = {
timeout: 15000,
headers: {
'content-type': 'application/json'
},
};
const customer_id = params[0];
const url = `${URL}/customer/${customer_id}`;
return await axios
.get(`${url}`, config)
.then(response => {
return response
})
.catch(function(error) {
throw error;
});
}
测试文件.js
import mockAxios from "axios";
import mockData from "./customerMock.json";
import customerInfo from "../[...param]";
describe('fetchData', () => {
it('fetches successfully data from an API', async () => {
const data = mockData.data;
jest.spyOn(mockAxios, 'default');
const endpoint = '${URL}/customer/abcdef';
const method = 'get';
const params = {
customer_id : 'abcdef'
}
customerInfo(params);
expect(mockAxios.default).toBeCalledWith(params);
});
it('fetches erroneously data from an API', async () => {
const errorMessage = 'Network Error';
mockAxios.get.mockImplementationOnce(() =>
Promise.reject(new Error(errorMessage)),
);
await expect(customerInfo('react')).rejects.toThrow(errorMessage);
});
});
我尝试了很多方法。任何参考或建议都会起作用。提前致谢