using System; using System.Collections.Generic; using System.Linq; using FizzWare.NBuilder; using MbUnit.Framework; using NzbDrone.Core.Repository; using NzbDrone.Core.Repository.Quality; namespace NzbDrone.Core.Test { [TestFixture] // ReSharper disable InconsistentNaming public class QualityProfileTest { /// /// Test_s the storage. /// [Test] public void Test_Storage() { //Arrange var repo = MockLib.GetEmptyRepository(); var testProfile = new QualityProfile { Name = Guid.NewGuid().ToString(), Cutoff = QualityTypes.TV, Allowed = new List {QualityTypes.HDTV, QualityTypes.DVD}, }; //Act var id = (int) repo.Add(testProfile); var fetch = repo.Single(c => c.QualityProfileId == id); //Assert Assert.AreEqual(id, fetch.QualityProfileId); Assert.AreEqual(testProfile.Name, fetch.Name); Assert.AreEqual(testProfile.Cutoff, fetch.Cutoff); Assert.AreEqual(testProfile.Allowed, fetch.Allowed); } [Test] public void Test_Series_Quality() { //Arrange var repo = MockLib.GetEmptyRepository(); var testProfile = new QualityProfile { Name = Guid.NewGuid().ToString(), Cutoff = QualityTypes.TV, Allowed = new List {QualityTypes.HDTV, QualityTypes.DVD}, }; var profileId = (int) repo.Add(testProfile); var series = Builder.CreateNew().Build(); series.QualityProfileId = profileId; var seriesID = (int) repo.Add(series); var result = repo.All(); var quality = repo.All(); Assert.Count(1, result); Assert.AreEqual(result.ToList()[0].QualityProfile.Name, testProfile.Name); //Act } } }