Nest.js Testing Error: Using the "extends Logger" instruction is not allowed in Nest v8. Please, use "extends ConsoleLogger" instead

Nest.js Testing Error: Using the "extends Logger" instruction is not allowed in Nest v8. Please, use "extends ConsoleLogger" instead

这是我遇到的问题:

我在 Nest.js:

中使用自定义记录器
export class ReportLogger extends ConsoleLogger {
  verbose(message: string) {
    console.log('【Verbose】Reporting', message);
    super.verbose.apply(this, arguments);
  }

  log(message: string) {
    console.log('【Log】Reporting', message);
    super.log.apply(this, arguments);
  }
}

log.interceptor.ts 文件:

export class LogInterceptor implements NestInterceptor {
  constructor(private reportLogger: ReportLogger) {
    this.reportLogger.setContext('LogInterceptor');
  }

  intercept(context: ExecutionContext, next: CallHandler) {
    const http = context.switchToHttp();
    const request = http.getRequest();

    const now = Date.now();
    return next
      .handle()
      .pipe(
        tap(() =>
          this.reportLogger.log(
            `${request.method} ${request.url} ${Date.now() - now}ms`,
          ),
        ),
      );
  }
}

这里是 main.ts 文件:

async function bootstrap() {
  const reportLogger = new ReportLogger();

  const app = await NestFactory.create<NestExpressApplication>(AppModule, {
    cors: {
      origin: ['http://localhost', 'http://localhost:3000'],
      credentials: true,
    },
    bufferLogs: true,
    logger: reportLogger,
  });

  app.useGlobalInterceptors(
    new LogInterceptor(reportLogger),
  );

  setupSwagger(app);

  await app.listen(4200);
}

当我 运行 npm run start:dev 到 运行 dev 上的 Nest App 时,一切正常。但是当我 运行 npm run test:e2enpm run test 测试时,它显示这个错误:

  Using the "extends Logger" instruction is not allowed in Nest v8. Please, use "extends ConsoleLogger" instead.

      10 |     const moduleFixture: TestingModule = await Test.createTestingModule({
      11 |       imports: [AppModule],
    > 12 |     }).compile();
         |        ^
      13 |
      14 |     app = moduleFixture.createNestApplication();
      15 |     await app.init();

我又看了一遍Nest.js文档,在文档中找到了Logging breaking change。但问题是我已经让我的 ReportLogger 扩展了 ConsoleLogger,为什么这个错误又出现了?为什么它只在测试中显示?

我在将 NestJS 升级到版本 8 后遇到了同样的问题

后来发现@nestjs/testing包安装了以前的版本,并没有升级到最新版本。原因是之前版本的NestJS测试模块使用的是旧的Logger。

为了解决这个问题,你只需要升级NestJS测试模块。

运行 最新版本的命令:

npm i @nestjs/testing@latest

特定版本

npm i @nestjs/testing@8.0.6 // <--- Change the NestJS version here

在此之后,再次构建和 运行 测试用例。

外部链接:

即使 "@nestjs/testing": "^8.0.7" 这个问题仍然存在

class Logger implements LoggerService { ... }

await Test.createTestingModule({
  imports: [ApiModule],
})
  .setLogger(new Logger())
  .compile();

设置记录器实例解决了我这边的错误