【问题标题】:Testing express NodeJS endpoints using supertest使用 supertest 测试 Express NodeJS 端点
【发布时间】:2020-02-15 08:54:59
【问题描述】:

我正在尝试设置一个测试环境来测试我的 typescript express nodejs 端点,但我似乎无法让它工作。我已经安装了:

  1. 开玩笑
  2. ts-jest
  3. jest-junit
  4. 超级测试
  5. @types/supertest
  6. @types/jest

这是规范文件的外观:

import * as request from 'supertest';
import seed from '../../modules/contract/seed'; //empty seed function
import app from '../../index'; // export default app which is an express()

beforeAll(seed);

describe('contractService', () => {
  it('getContracts ', async () => {
    const res = await request(app).get('/getContracts');
    console.log(res.body);
  });
  it('makeContract makes and returns a new contract', async () => {
    const res = await request(app)
      .post('/makeContract')
      .send({
        name: 'testContract',
        startDate: '2019-10-3',
        challenges: []
      });
    expect(res.statusCode).toEqual(200);
    expect(res.body.challenges).toEqual([]);
    expect(res.body.name).toEqual('testContract');
    expect(res.body.startDate).toContain('2019-10-3');
  });
});

我在请求(应用程序)时收到错误提示

此表达式不可调用。 类型“typeof supertest”没有调用签名

contractService.spec.ts(1, 1):类型源自此导入。命名空间样式的导入不能被调用或构造,并且会在运行时导致失败。请考虑在此处使用默认导入或导入要求。

我不知道该怎么做,因为如果我使用 require 而不是 import,我会收到下一个错误

TypeError: 无法读取未定义的属性“地址”

it('getContracts ', async () => {
     const res = await request(app)
       .get('/')
        ^
       .expect(200);
});

index.ts

import './config/environment';
import http, { Server } from 'http';
import express, { Express, Router } from 'express';
import bodyParser from 'body-parser';
import mongoose from 'mongoose';
import connect from './database/index';
import patientRouter from './services/patientService';
import challengeRouter from './services/challengeService';
import contractRouter from './services/contractService';

let app: Express;

const startServer = async () => {
  try {
    await connect();
    app = express();
    const routes = Router();
    app.use(bodyParser.json());
    app.use(routes);
    // app.get('/', (req: Request, res: Response) => res.sendStatus(200));
    routes.get('/', (req, res) => res.send('OK'));
    // use routers from services
    routes.use('/', patientRouter);
    routes.use('/', challengeRouter);
    routes.use('/', contractRouter);
    const httpServer: Server = http.createServer(app);
    httpServer.listen(process.env.PORT, async () => {
      console.log(`???? Server ready at http://localhost:${process.env.PORT}`);
    });
    const shutdown = async () => {
      await new Promise(resolve => httpServer.close(() => resolve()));
      await mongoose.disconnect();
      if (process.env.NODE_ENV === 'test') return;
      process.exit(0);
    };
    process.on('SIGTERM', shutdown);
    process.on('SIGINT', shutdown);
    process.on('SIGQUIT', shutdown);
  } catch (e) {
    console.log(e);
  }
};

startServer();

export default app;

笑话配置:

module.exports = {
  preset: 'ts-jest',
  testEnvironment: 'node',
  testMatch: ['<rootDir>/**/__tests__/**/*.spec.ts'],
  testPathIgnorePatterns: ['/node_modules/'],
  coverageDirectory: './test-reports',
  coveragePathIgnorePatterns: ['node_modules', 'src/database', 'src/test', 'src/types'],
  reporters: ['default', 'jest-junit'],
  globals: { 'ts-jest': { diagnostics: false } }
};

【问题讨论】:

  • 你能显示jest.config.js
  • @winwiz1 我刚刚做了
  • 我建议尝试已知可行的设置。喜欢thisthat。第二个使用 jest 和 supertest 测试用 typescript 编写的 express 代码。
  • 我会检查它们,但我可能会切换到存根请求

标签: node.js typescript express jestjs supertest


【解决方案1】:

比赛迟到了,但是:

import request from 'supertest';

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2016-06-05
    • 2021-08-15
    • 1970-01-01
    • 2014-09-02
    • 1970-01-01
    • 2013-12-10
    • 1970-01-01
    • 2023-04-10
    相关资源
    最近更新 更多