|
|
|
@ -1,7 +1,9 @@
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using FizzWare.NBuilder;
|
|
|
|
|
using Moq;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Core.ImportLists;
|
|
|
|
|
using NzbDrone.Core.Lifecycle;
|
|
|
|
|
using NzbDrone.Core.Profiles.Qualities;
|
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
@ -10,8 +12,16 @@ using NzbDrone.Core.Tv;
|
|
|
|
|
namespace NzbDrone.Core.Test.Profiles
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class ProfileServiceFixture : CoreTest<QualityProfileService>
|
|
|
|
|
public class QualityProfileServiceFixture : CoreTest<QualityProfileService>
|
|
|
|
|
{
|
|
|
|
|
[SetUp]
|
|
|
|
|
public void Setup()
|
|
|
|
|
{
|
|
|
|
|
Mocker.GetMock<IImportListFactory>()
|
|
|
|
|
.Setup(s => s.All())
|
|
|
|
|
.Returns(new List<ImportListDefinition>());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void init_should_add_default_profiles()
|
|
|
|
|
{
|
|
|
|
@ -56,10 +66,8 @@ namespace NzbDrone.Core.Test.Profiles
|
|
|
|
|
Assert.Throws<QualityProfileInUseException>(() => Subject.Delete(profile.Id));
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<IProfileRepository>().Verify(c => c.Delete(It.IsAny<int>()), Times.Never());
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_delete_profile_if_not_assigned_to_series()
|
|
|
|
|
{
|
|
|
|
@ -75,5 +83,36 @@ namespace NzbDrone.Core.Test.Profiles
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<IProfileRepository>().Verify(c => c.Delete(1), Times.Once());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_not_be_able_to_delete_profile_if_assigned_to_import_list()
|
|
|
|
|
{
|
|
|
|
|
var profile = Builder<QualityProfile>.CreateNew()
|
|
|
|
|
.With(p => p.Id = 1)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
var seriesList = Builder<Series>.CreateListOfSize(3)
|
|
|
|
|
.All()
|
|
|
|
|
.With(c => c.QualityProfileId = 2)
|
|
|
|
|
.Build().ToList();
|
|
|
|
|
|
|
|
|
|
var importLists = Builder<ImportListDefinition>.CreateListOfSize(3)
|
|
|
|
|
.Random(1)
|
|
|
|
|
.With(c => c.LanguageProfileId = 1)
|
|
|
|
|
.Build().ToList();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<IProfileRepository>().Setup(c => c.Get(profile.Id)).Returns(profile);
|
|
|
|
|
Mocker.GetMock<ISeriesService>().Setup(c => c.GetAllSeries()).Returns(seriesList);
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<IImportListFactory>()
|
|
|
|
|
.Setup(s => s.All())
|
|
|
|
|
.Returns(importLists);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Assert.Throws<QualityProfileInUseException>(() => Subject.Delete(1));
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<IProfileRepository>().Verify(c => c.Delete(It.IsAny<int>()), Times.Never());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|