web-dev-qa-db-ja.com

JestでNestJsサービスをテストする

NestJs PlayerControllerをJestでテストする方法を探しています。私のコントローラーとサービス宣言:

import { QueryBus, CommandBus, EventBus } from '@nestjs/cqrs';

/**
 * The service assigned to query the database by means of commands
 */
@Injectable()
export class PlayerService {
    /**
     * Ctor
     * @param queryBus
     */
    constructor(
        private readonly queryBus: QueryBus,
        private readonly commandBus: CommandBus,
        private readonly eventBus: EventBus
    ) { }


@Controller('player')
@ApiUseTags('player')
export class PlayerController {
    /**
     * Ctor
     * @param playerService
     */
    constructor(private readonly playerService: PlayerService) { }

私のテスト:

describe('Player Controller', () => {
  let controller: PlayerController;

  beforeEach(async () => {
    const module: TestingModule = await Test.createTestingModule({
      imports: [PlayerService, CqrsModule],
      controllers: [PlayerController],
      providers: [
        PlayerService,
      ],
    }).compile();


    controller = module.get<PlayerController>(PlayerController);
  });

  it('should be defined', () => {
    expect(controller).toBeDefined();
  });
...

Nestは、PlayerService(?、CommandBus、EventBus)の依存関係を解決できません。インデックス[0]の引数がPlayerServiceコンテキストで使用可能であることを確認してください。

  at Injector.lookupComponentInExports (../node_modules/@nestjs/core/injector/injector.js:180:19)

この依存関係の問題を回避する方法はありますか?

3
alessandro

これは私のために働いた。

import { UserEntity } from './user.entity';
import { TypeOrmModule } from '@nestjs/typeorm';
const module = await Test.createTestingModule({
    controllers: [UsersController],
    providers: [UsersService],
    imports: [TypeOrmModule.forRoot(), TypeOrmModule.forFeature([UserEntity])], // <== This line
}).compile();
0
Binh Ho