using Novelly.Api.Beats; using Novelly.Api.Chapters; using Novelly.Api.Characters; using Novelly.Api.Genres; using Novelly.Api.Projects; using Novelly.Api.Questions; using Novelly.Api.Tags; namespace Novelly.Api.Tests; public abstract class ServiceTestFixture { protected TestDatabase Db { get; private set; } = null!; protected TagService Tags { get; private set; } = null!; protected ProjectService Projects { get; private set; } = null!; protected CharacterService Characters { get; private set; } = null!; protected ChapterService Chapters { get; private set; } = null!; protected BeatService Beats { get; private set; } = null!; protected CharacterArcService Arcs { get; private set; } = null!; protected OpenQuestionService Questions { get; private set; } = null!; protected GenreService Genres { get; private set; } = null!; protected CapturingLogger ProjectLogs { get; private set; } = null!; protected CapturingLogger CharacterLogs { get; private set; } = null!; protected CapturingLogger ChapterLogs { get; private set; } = null!; protected CapturingLogger BeatLogs { get; private set; } = null!; protected CapturingLogger TagLogs { get; private set; } = null!; protected CapturingLogger ArcLogs { get; private set; } = null!; protected CapturingLogger QuestionLogs { get; private set; } = null!; protected CapturingLogger GenreLogs { get; private set; } = null!; [SetUp] public void SetUpFixture() { Db = new TestDatabase(); TagLogs = new CapturingLogger(); ProjectLogs = new CapturingLogger(); CharacterLogs = new CapturingLogger(); ChapterLogs = new CapturingLogger(); BeatLogs = new CapturingLogger(); ArcLogs = new CapturingLogger(); QuestionLogs = new CapturingLogger(); GenreLogs = new CapturingLogger(); Tags = new TagService(Db.Context, TagLogs, new CreateTagRequestValidator(), new UpdateTagRequestValidator()); Projects = new ProjectService(Db.Context, ProjectLogs, new CreateProjectRequestValidator(), new UpdateProjectRequestValidator()); Characters = new CharacterService( Db.Context, Tags, CharacterLogs, new CreateCharacterRequestValidator(), new UpdateCharacterRequestValidator(), new CreateRelationshipRequestValidator()); Chapters = new ChapterService(Db.Context, Tags, ChapterLogs, new CreateChapterRequestValidator(), new UpdateChapterRequestValidator()); Beats = new BeatService( Db.Context, Tags, BeatLogs, new CreateBeatRequestValidator(), new UpdateBeatRequestValidator(), new ReorderBeatsRequestValidator(), new AssignCharacterToBeatsRequestValidator()); Arcs = new CharacterArcService( Db.Context, ArcLogs, new CreateArcStageRequestValidator(), new UpdateArcStageRequestValidator(), new ReorderArcStagesRequestValidator()); Questions = new OpenQuestionService( Db.Context, QuestionLogs, new CreateOpenQuestionRequestValidator(), new UpdateOpenQuestionRequestValidator(), new ResolveOpenQuestionRequestValidator()); Genres = new GenreService(Db.Context, GenreLogs); OnSetUp(); } protected virtual void OnSetUp() { } [TearDown] public void TearDownFixture() => Db.Dispose(); }