using System.Collections.Generic; using System.Linq; using FizzWare.NBuilder; using FluentAssertions; using Moq; using NUnit.Framework; using NzbDrone.Core.Tv; using NzbDrone.Core.Test.Framework; using NzbDrone.Test.Common; namespace NzbDrone.Core.Test.TvTests.SeriesServiceTests { [TestFixture] public class UpdateMultipleSeriesFixture : CoreTest { private List _series; [SetUp] public void Setup() { _series = Builder.CreateListOfSize(5) .All() .With(s => s.QualityProfileId = 1) .With(s => s.Monitored) .With(s => s.SeasonFolder) .With(s => s.Path = @"C:\Test\name".AsOsAgnostic()) .With(s => s.RootFolderPath = "") .Build().ToList(); } [Test] public void should_call_repo_updateMany() { Subject.UpdateSeries(_series); Mocker.GetMock().Verify(v => v.UpdateMany(_series), Times.Once()); } [Test] public void should_update_path_when_rootFolderPath_is_supplied() { var newRoot = @"C:\Test\TV2".AsOsAgnostic(); _series.ForEach(s => s.RootFolderPath = newRoot); Subject.UpdateSeries(_series).ForEach(s => s.Path.Should().StartWith(newRoot)); } } }