在 Jest 中使用 Next.Js 测试 Api

Posted

技术标签:

【中文标题】在 Jest 中使用 Next.Js 测试 Api【英文标题】:Testing Api with Next.Js in Jest 【发布时间】:2020-12-10 14:57:01 【问题描述】:

我想使用 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;
      );
  

TestFile.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);
  );
);

我尝试了很多方法。任何参考或建议都会起作用。 提前致谢

【问题讨论】:

【参考方案1】:

这是我如何unit tested a flight data API 使用 Jest 和 next-test-api-route-handler 的示例,next-test-api-route-handler 是一个包(我创建!),用于为 Next API 路由编写单元测试。我的测试结构与您的非常相似。

要通过 Jest 生成覆盖率数据(假设您安装了 Node),我运行以下命令:

npx jest --coverage --collectCoverageFrom 'src/**/*.ts' --collectCoverageFrom 'lib/**/*.ts'

具体来说,--coverage 告诉 Jest 收集覆盖率数据,通常到目录 ./coverage 中,可选的 --collectCoverageFrom X 告诉 Jest 只从特定目录(或指定多个目录时)收集覆盖率。

【讨论】:

以上是关于在 Jest 中使用 Next.Js 测试 Api的主要内容,如果未能解决你的问题,请参考以下文章

Next.JS & JEST - publicRuntimeConfig 未定义

使用 webpack 配置运行 Jest 测试

跨测试重用 Jest 模块模拟

如何在 Next JS 中使用链接测试路由?

为啥 Jest 不让我使用节点测试环境,即使他们自己更改了它?

如何用玩笑测试 Next.js 的 getServerSideProps