バックエンドでTypeScriptを使用してノードを使用し、バックエンドでテストフレームワークとしてjestとsupertestを使用しています。
テストしようとすると、結果は合格ですが、最後にエラーが発生します。結果は次のとおりです。
PASS test/controllers/user.controller.test.ts
Get all users
✓ should return status code 200 (25ms)
console.log node_modules/@overnightjs/logger/lib/Logger.js:173
[2019-12-05T04:54:26.811Z]: Setting up database ...
Test Suites: 1 passed, 1 total
Tests: 1 passed, 1 total
Snapshots: 0 total
Time: 3.284s
Ran all test suites.
server/test/controllers/user.controller.test.ts:32
throw err;
^
Error: connect ECONNREFUSED 127.0.0.1:80
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1104:14)
npm ERR! Test failed. See above for more details.
これが私のテストコードです:
import request from "supertest";
import { AppServer } from '../../config/server';
const server = new AppServer();
describe('Get all users', () => {
it('should return status code 200', async () => {
server.startDB();
const appInstance = server.appInstance;
const req = request(appInstance);
req.get('api/v1/users/')
.expect(200)
.end((err, res) => {
if (err) throw err;
})
})
})
これが私のサーバーのセットアップです。バックエンドでovernightjs
を使用しています
Expressインスタンスを取得するためのゲッターを作成しました。これはovernightjsから来ています
// this should be the very top, should be called before the controllers
require('dotenv').config();
import 'reflect-metadata';
import { Server } from '@overnightjs/core';
import { Logger } from '@overnightjs/logger';
import { createConnection } from 'typeorm';
import helmet from 'helmet';
import * as bodyParser from 'body-parser';
import * as controllers from '../src/controllers/controller_imports';
export class AppServer extends Server {
constructor() {
super(process.env.NODE_ENV === 'development');
this.app.use(helmet());
this.app.use(bodyParser.json());
this.app.use(bodyParser.urlencoded({ extended: true }));
this.setupControllers();
}
get appInstance(): any {
return this.app;
}
private setupControllers(): void {
const controllerInstances = [];
// eslint-disable-next-line
for (const name of Object.keys(controllers)) {
const Controller = (controllers as any)[name];
if (typeof Controller === 'function') {
controllerInstances.Push(new Controller());
}
}
/* You can add option router as second argument */
super.addControllers(controllerInstances);
}
private startServer(portNum?: number): void {
const port = portNum || 8000;
this.app.listen(port, () => {
Logger.Info(`Server Running on port: ${port}`);
});
}
/**
* start Database first then the server
*/
public async startDB(): Promise<any> {
Logger.Info('Setting up database ...');
try {
await createConnection();
this.startServer();
Logger.Info('Database connected');
} catch (error) {
Logger.Warn(error);
return Promise.reject('Server Failed, Restart again...');
}
}
}
私はこれを読みました。 link それが私がメソッドstartDB
を呼び出した理由です
だから私は理解しました、そして解決策は非常に簡単です。理由は説明できません。
このreq.get('api/v1/users/')
は/api/v1/users
である必要があります。先頭に/
が必要です。
スーパーテストのルールはエクスプレスのルールと同じです。ただし、OvernightJSでは先頭または末尾の「/」は必要ありません。
フロントエンドの場合...
axios
を使用していてこのエラーが発生した場合は、testSetup.js
ファイルに移動してこの行を追加してください
axios.defaults.baseURL = "https://yourbaseurl.com/"
これは私のために働いた。したがって、通常、これはbaseURLの問題です。