我正在寻找一种用Jest测试我的 NestJs PlayerController的方法。 我的控制器和服务声明:
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();
});
...
嵌套无法解析PlayerService的依赖项(?,CommandBus, EventBus)。请确保索引为[0]的参数为 在PlayerService上下文中可用。
at Injector.lookupComponentInExports (../node_modules/@nestjs/core/injector/injector.js:180:19)
有什么方法可以解决此依赖性问题?
答案 0 :(得分:1)
该操作无效,因为您正在导入PlayerService
。您只能导入模块,提供程序可以通过模块导入,也可以在providers
数组中声明:
imports: [PlayerService, CqrsModule]
^^^^^^^^^^^^^
但是,在单元测试中,您要隔离地测试单个单元,而不是不同单元及其依存关系之间的交互。因此,比导入或声明依赖项更好的是为PlayerService
或CqrsModule
的提供者提供模拟。
有关单元测试和e2e测试之间的区别,请参见this answer。
有关如何创建模拟的信息,请参见this answer。
答案 1 :(得分:0)
这对我有用。
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();