NestJSのservice(DB接続あり)をjestでテストすると、
$ npm test > jest PASS src/app.controller.spec.ts (6.58 s) PASS src/users/users.controller.spec.ts (7.325 s) FAIL src/users/users.service.spec.ts (7.758 s) ● UsersService › should be defined RepositoryNotFoundError: No repository for "User" was found. Looks like this entity is not registered in current "default" connection?
とエラーがでます。
エラーのとおりDBへの接続ができていないのですが、jestによるテストの場合、どのようにしたらDBへの接続ができるのか分かりません。
以下がソースになります。
[users.service.ts]
import { Injectable } from '@nestjs/common'; import { InjectRepository } from '@nestjs/typeorm'; import { User } from 'src/entities/user.entity'; import { Repository } from 'typeorm'; @Injectable() export class UsersService { constructor( @InjectRepository(User) private userRepository: Repository<User>, ) {} async findAll(): Promise<User[]> { return await this.userRepository.find({ relations: ['photos'] }); } }
[users.service.spec.ts]
import { Test, TestingModule } from '@nestjs/testing'; import { User } from 'src/entities/user.entity'; import { UsersService } from './users.service'; import { TypeOrmModule } from '@nestjs/typeorm'; describe('UsersService', () => { let service: UsersService; beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ imports: [TypeOrmModule.forRoot(), TypeOrmModule.forFeature([User])], providers: [ UsersService, ], }).compile(); service = module.get<UsersService>(UsersService); }); it('should be defined', async () => { expect(await service.findAll()).toHaveLength(1); }); });
contollerとmoduleは以下のように記載しており、GET /usersすると、データを取得できるので、users.service.spec.tsに何かが足りないと思っております。
以下に、contollerとmoduleを記載いたします。
[users.controller.ts]
import { Controller, Get } from '@nestjs/common'; import { UsersService } from './users.service'; @Controller('users') export class UsersController { constructor(private readonly service: UsersService) {} @Get() getUsers() { return this.service.findAll(); } }
[users.module.ts]
import { Module } from '@nestjs/common'; import { TypeOrmModule } from '@nestjs/typeorm'; import { User } from 'src/entities/user.entity'; import { UsersController } from './users.controller'; import { UsersService } from './users.service'; @Module({ imports: [TypeOrmModule.forFeature([User])], controllers: [UsersController], providers: [UsersService], }) export class UsersModule {}
よろしくお願いいたします。
あなたの回答
tips
プレビュー