2acbaa5b77
Use cases (Marathon.Application/UseCases/): - PullUpcomingEventsUseCase: scrape + persist new events + capture pre-match snapshots - PullLiveOddsUseCase: refresh live snapshots for all stored events - PullResultsUseCase: Phase 4 scaffold; delegates to ScrapeResultsAsync (Phase 3 no-op); Phase 8 will replace with watch-list polling - ExportToExcelUseCase: resolves export dir from StorageOptions, delegates to IExcelExporter ApplicationModule.AddMarathonApplication(IServiceCollection) — no IConfiguration needed. Background workers (Marathon.Infrastructure/Workers/): - UpcomingEventsPoller: Cronos 6-field cron schedule (default every 6 h) - LiveOddsPoller: fixed interval (WorkerOptions.LivePollIntervalSeconds, default 30 s) - ResultsWatchListPoller: scaffold, disabled by default (WorkerOptions.ResultsPollerEnabled=false) All three: exception-swallowing, cancellation-aware, scoped DI via CreateAsyncScope(). InfrastructureModule.AddMarathonInfrastructure(IServiceCollection, IConfiguration): - Composes AddMarathonPersistence + AddMarathonScraping + WorkerOptions + 3 hosted services App.xaml.cs: replace reflection-based TryAddApplicationAndInfrastructure with direct AddMarathonApplication() + AddMarathonInfrastructure(config) calls. Resolved Phase 3 TODO: bind Sports:Basketball:QuarterMode from config in ScrapingModule. appsettings.json: add Workers.LivePollIntervalSeconds, ResultsPollIntervalSeconds, ResultsPollerEnabled; add Sports.Basketball.QuarterMode. Settings.razor + WorkerOptions (UI) + SharedResource.*.resx: surface new Workers fields. Tests: +14 Application use-case tests, +3 Infrastructure worker tests (185 → 202 total).
46 lines
1.7 KiB
C#
46 lines
1.7 KiB
C#
using Marathon.Domain.Entities;
|
|
using Marathon.Domain.Enums;
|
|
using Marathon.Domain.ValueObjects;
|
|
|
|
namespace Marathon.Application.Tests.UseCases;
|
|
|
|
/// <summary>
|
|
/// Shared factory helpers for domain objects used across use-case tests.
|
|
/// </summary>
|
|
internal static class TestFixtures
|
|
{
|
|
private static readonly TimeSpan MoscowOffset = TimeSpan.FromHours(3);
|
|
|
|
/// <summary>Creates a minimal valid <see cref="Event"/> with the given event ID string.</summary>
|
|
public static Event MakeEvent(string eventIdValue = "12345678")
|
|
{
|
|
return new Event(
|
|
Id: new EventId(eventIdValue),
|
|
Sport: new SportCode(6),
|
|
CountryCode: "BY",
|
|
LeagueId: "league-1",
|
|
Category: "Group A",
|
|
ScheduledAt: new DateTimeOffset(2026, 5, 10, 18, 0, 0, MoscowOffset),
|
|
Side1Name: "Team A",
|
|
Side2Name: "Team B");
|
|
}
|
|
|
|
/// <summary>Creates a minimal valid <see cref="OddsSnapshot"/> for the given event.</summary>
|
|
public static OddsSnapshot MakeSnapshot(EventId eventId, OddsSource source = OddsSource.PreMatch)
|
|
{
|
|
var bets = new List<Bet>
|
|
{
|
|
new Bet(MatchScope.Instance, BetType.Win, Side.Side1, value: null, new OddsRate(1.85m)),
|
|
new Bet(MatchScope.Instance, BetType.Win, Side.Side2, value: null, new OddsRate(2.10m)),
|
|
};
|
|
|
|
return new OddsSnapshot(eventId, DateTimeOffset.UtcNow, source, bets);
|
|
}
|
|
|
|
/// <summary>Creates a minimal valid <see cref="EventResult"/> for the given event ID.</summary>
|
|
public static EventResult MakeResult(EventId eventId)
|
|
{
|
|
return new EventResult(eventId, 2, 1, Side.Side1, DateTimeOffset.UtcNow);
|
|
}
|
|
}
|