using ErsatzTV.Core.Domain; using ErsatzTV.Core.Scheduling; using NUnit.Framework; using Shouldly; namespace ErsatzTV.Core.Tests.Scheduling; [TestFixture] public class ChronologicalContentTests { [Test] public void Episodes_Should_Sort_By_ReleaseDate() { List contents = Episodes(10); var state = new CollectionEnumeratorState(); var chronologicalContent = new ChronologicalMediaCollectionEnumerator(contents, state); for (var i = 1; i <= 10; i++) { chronologicalContent.Current.IsSome.ShouldBeTrue(); chronologicalContent.Current.Map(x => x.Id).IfNone(-1).ShouldBe(i); chronologicalContent.MoveNext(Option.None); } } [Test] public void OtherVideos_Should_Sort_By_ReleaseDate() { List contents = OtherVideos(10); var state = new CollectionEnumeratorState(); var chronologicalContent = new ChronologicalMediaCollectionEnumerator(contents, state); for (var i = 1; i <= 10; i++) { chronologicalContent.Current.IsSome.ShouldBeTrue(); chronologicalContent.Current.Map(x => x.Id).IfNone(-1).ShouldBe(10 - i); chronologicalContent.MoveNext(Option.None); } } [Test] public void State_Index_Should_Increment() { List contents = Episodes(10); var state = new CollectionEnumeratorState(); var chronologicalContent = new ChronologicalMediaCollectionEnumerator(contents, state); for (var i = 0; i < 10; i++) { chronologicalContent.State.Index.ShouldBe(i % 10); chronologicalContent.MoveNext(Option.None); } } [Test] public void State_Should_Impact_Iterator_Start() { List contents = Episodes(10); var state = new CollectionEnumeratorState { Index = 5 }; var chronologicalContent = new ChronologicalMediaCollectionEnumerator(contents, state); for (var i = 6; i <= 10; i++) { chronologicalContent.Current.IsSome.ShouldBeTrue(); chronologicalContent.Current.Map(x => x.Id).IfNone(-1).ShouldBe(i); chronologicalContent.State.Index.ShouldBe(i - 1); chronologicalContent.MoveNext(Option.None); } } [Test] public void State_Should_Reset_When_Invalid() { List contents = Episodes(10); var state = new CollectionEnumeratorState { Index = 10 }; var chronologicalContent = new ChronologicalMediaCollectionEnumerator(contents, state); chronologicalContent.State.Index.ShouldBe(0); chronologicalContent.State.Seed.ShouldBe(0); } private static List Episodes(int count) => Range(1, count).Map(i => (MediaItem)new Episode { Id = i, EpisodeMetadata = [ new EpisodeMetadata { ReleaseDate = new DateTime(2020, 1, i), EpisodeNumber = 20 - i } ] }) .Reverse() .ToList(); private static List OtherVideos(int count) => Range(1, count).Map(i => (MediaItem)new OtherVideo { // ids need to count down because fallback sorting is by id // and we need the test to fail when these are sorted by id Id = count - i, OtherVideoMetadata = [ new OtherVideoMetadata { ReleaseDate = new DateTime(2020, 1, i) } ] }) .Reverse() .ToList(); }