refactor racing use cases

This commit is contained in:
2025-12-21 00:43:42 +01:00
parent e9d6f90bb2
commit c12656d671
308 changed files with 14401 additions and 7419 deletions

View File

@@ -1,5 +1,10 @@
import { describe, it, expect, vi, beforeEach } from 'vitest';
import { GetLeagueDriverSeasonStatsUseCase } from './GetLeagueDriverSeasonStatsUseCase';
import {
GetLeagueDriverSeasonStatsUseCase,
type GetLeagueDriverSeasonStatsResult,
type GetLeagueDriverSeasonStatsInput,
type GetLeagueDriverSeasonStatsErrorCode,
} from './GetLeagueDriverSeasonStatsUseCase';
import type { IStandingRepository } from '../../domain/repositories/IStandingRepository';
import type { IResultRepository } from '../../domain/repositories/IResultRepository';
import type { IPenaltyRepository } from '../../domain/repositories/IPenaltyRepository';
@@ -7,6 +12,8 @@ import type { IRaceRepository } from '../../domain/repositories/IRaceRepository'
import type { IDriverRepository } from '../../domain/repositories/IDriverRepository';
import type { ITeamRepository } from '../../domain/repositories/ITeamRepository';
import type { DriverRatingPort } from '../ports/DriverRatingPort';
import type { UseCaseOutputPort } from '@core/shared/application/UseCaseOutputPort';
import type { ApplicationErrorCode } from '@core/shared/errors/ApplicationErrorCode';
describe('GetLeagueDriverSeasonStatsUseCase', () => {
const mockStandingFindByLeagueId = vi.fn();
@@ -25,8 +32,17 @@ describe('GetLeagueDriverSeasonStatsUseCase', () => {
let driverRepository: IDriverRepository;
let teamRepository: ITeamRepository;
let driverRatingPort: DriverRatingPort;
let output: UseCaseOutputPort<GetLeagueDriverSeasonStatsResult> & { present: ReturnType<typeof vi.fn> };
beforeEach(() => {
mockStandingFindByLeagueId.mockReset();
mockResultFindByDriverIdAndLeagueId.mockReset();
mockPenaltyFindByRaceId.mockReset();
mockRaceFindByLeagueId.mockReset();
mockDriverRatingGetRating.mockReset();
mockDriverFindById.mockReset();
mockTeamFindById.mockReset();
standingRepository = {
findByLeagueId: mockStandingFindByLeagueId,
findByDriverIdAndLeagueId: vi.fn(),
@@ -67,6 +83,12 @@ describe('GetLeagueDriverSeasonStatsUseCase', () => {
getRating: mockDriverRatingGetRating,
};
output = {
present: vi.fn(),
} as unknown as UseCaseOutputPort<GetLeagueDriverSeasonStatsResult> & {
present: ReturnType<typeof vi.fn>;
};
useCase = new GetLeagueDriverSeasonStatsUseCase(
standingRepository,
resultRepository,
@@ -75,20 +97,18 @@ describe('GetLeagueDriverSeasonStatsUseCase', () => {
driverRepository,
teamRepository,
driverRatingPort,
output,
);
});
it('should return league driver season stats for given league id', async () => {
const params = { leagueId: 'league-1' };
const input: GetLeagueDriverSeasonStatsInput = { leagueId: 'league-1' };
const mockStandings = [
{ driverId: 'driver-1', position: 1, points: 100, racesCompleted: 5 },
{ driverId: 'driver-2', position: 2, points: 80, racesCompleted: 5 },
];
const mockRaces = [
{ id: 'race-1' },
{ id: 'race-2' },
];
const mockRaces = [{ id: 'race-1' }, { id: 'race-2' }];
const mockPenalties = [
{ driverId: 'driver-1', status: 'applied', type: 'points_deduction', value: 10 },
];
@@ -97,28 +117,31 @@ describe('GetLeagueDriverSeasonStatsUseCase', () => {
const mockDriver = { id: 'driver-1', name: 'Driver One', teamId: 'team-1' };
const mockTeam = { id: 'team-1', name: 'Team One' };
standingRepository.findByLeagueId.mockResolvedValue(mockStandings);
raceRepository.findByLeagueId.mockResolvedValue(mockRaces);
penaltyRepository.findByRaceId.mockImplementation((raceId) => {
mockStandingFindByLeagueId.mockResolvedValue(mockStandings);
mockRaceFindByLeagueId.mockResolvedValue(mockRaces);
mockPenaltyFindByRaceId.mockImplementation((raceId: string) => {
if (raceId === 'race-1') return Promise.resolve(mockPenalties);
return Promise.resolve([]);
});
driverRatingPort.getRating.mockReturnValue(mockRating);
resultRepository.findByDriverIdAndLeagueId.mockResolvedValue(mockResults);
driverRepository.findById.mockImplementation((id) => {
mockDriverRatingGetRating.mockReturnValue(mockRating);
mockResultFindByDriverIdAndLeagueId.mockResolvedValue(mockResults);
mockDriverFindById.mockImplementation((id: string) => {
if (id === 'driver-1') return Promise.resolve(mockDriver);
if (id === 'driver-2') return Promise.resolve({ id: 'driver-2', name: 'Driver Two' });
return Promise.resolve(null);
});
teamRepository.findById.mockResolvedValue(mockTeam);
mockTeamFindById.mockResolvedValue(mockTeam);
const result = await useCase.execute(params);
const result = await useCase.execute(input);
expect(result.isOk()).toBe(true);
const output = result.value!;
expect(output.leagueId).toBe('league-1');
expect(output.stats).toHaveLength(2);
expect(output.stats[0]).toEqual({
expect(result.unwrap()).toBeUndefined();
expect(output.present).toHaveBeenCalledTimes(1);
const presented = output.present.mock.calls[0][0] as GetLeagueDriverSeasonStatsResult;
expect(presented.leagueId).toBe('league-1');
expect(presented.stats).toHaveLength(2);
expect(presented.stats[0]).toEqual({
leagueId: 'league-1',
driverId: 'driver-1',
position: 1,
@@ -141,26 +164,68 @@ describe('GetLeagueDriverSeasonStatsUseCase', () => {
});
it('should handle no penalties', async () => {
const params = { leagueId: 'league-1' };
const input: GetLeagueDriverSeasonStatsInput = { leagueId: 'league-1' };
const mockStandings = [{ driverId: 'driver-1', position: 1, points: 100, racesCompleted: 5 }];
const mockStandings = [
{ driverId: 'driver-1', position: 1, points: 100, racesCompleted: 5 },
];
const mockRaces = [{ id: 'race-1' }];
const mockResults = [{ position: 1 }];
const mockRating = { rating: null, ratingChange: null };
const mockDriver = { id: 'driver-1', name: 'Driver One' };
standingRepository.findByLeagueId.mockResolvedValue(mockStandings);
raceRepository.findByLeagueId.mockResolvedValue(mockRaces);
penaltyRepository.findByRaceId.mockResolvedValue([]);
driverRatingPort.getRating.mockReturnValue(mockRating);
resultRepository.findByDriverIdAndLeagueId.mockResolvedValue(mockResults);
driverRepository.findById.mockResolvedValue(mockDriver);
teamRepository.findById.mockResolvedValue(null);
mockStandingFindByLeagueId.mockResolvedValue(mockStandings);
mockRaceFindByLeagueId.mockResolvedValue(mockRaces);
mockPenaltyFindByRaceId.mockResolvedValue([]);
mockDriverRatingGetRating.mockReturnValue(mockRating);
mockResultFindByDriverIdAndLeagueId.mockResolvedValue(mockResults);
mockDriverFindById.mockResolvedValue(mockDriver);
mockTeamFindById.mockResolvedValue(null);
const result = await useCase.execute(params);
const result = await useCase.execute(input);
expect(result.isOk()).toBe(true);
const output = result.value!;
expect(output.stats[0].penaltyPoints).toBe(0);
expect(result.unwrap()).toBeUndefined();
expect(output.present).toHaveBeenCalledTimes(1);
const presented = output.present.mock.calls[0][0] as GetLeagueDriverSeasonStatsResult;
expect(presented.stats[0].penaltyPoints).toBe(0);
});
});
it('should return LEAGUE_NOT_FOUND when no standings are found', async () => {
const input: GetLeagueDriverSeasonStatsInput = { leagueId: 'missing-league' };
mockStandingFindByLeagueId.mockResolvedValue([]);
mockRaceFindByLeagueId.mockResolvedValue([]);
const result = await useCase.execute(input);
expect(result.isErr()).toBe(true);
const err = result.unwrapErr() as ApplicationErrorCode<
GetLeagueDriverSeasonStatsErrorCode,
{ message: string }
>;
expect(err.code).toBe('LEAGUE_NOT_FOUND');
expect(err.details.message).toBe('League not found');
expect(output.present).not.toHaveBeenCalled();
});
it('should return REPOSITORY_ERROR when an unexpected error occurs', async () => {
const input: GetLeagueDriverSeasonStatsInput = { leagueId: 'league-1' };
const thrown = new Error('repository failure');
mockStandingFindByLeagueId.mockRejectedValue(thrown);
const result = await useCase.execute(input);
expect(result.isErr()).toBe(true);
const err = result.unwrapErr() as ApplicationErrorCode<
GetLeagueDriverSeasonStatsErrorCode,
{ message: string }
>;
expect(err.code).toBe('REPOSITORY_ERROR');
expect(err.details.message).toBe('repository failure');
expect(output.present).not.toHaveBeenCalled();
});
});