Lidarr/NzbDrone.Core.Test/QualityProfileTest.cs

72 lines
2.3 KiB
C#
Raw Normal View History

2011-02-03 20:09:19 +00:00
using System;
2010-09-30 06:59:00 +00:00
using System.Collections.Generic;
2011-04-10 02:44:01 +00:00
using System.Linq;
using FizzWare.NBuilder;
2010-09-29 17:19:18 +00:00
using MbUnit.Framework;
using NzbDrone.Core.Repository;
using NzbDrone.Core.Repository.Quality;
using NzbDrone.Core.Test.Framework;
2010-09-29 17:19:18 +00:00
namespace NzbDrone.Core.Test
{
[TestFixture]
2010-10-07 22:17:24 +00:00
// ReSharper disable InconsistentNaming
public class QualityProfileTest : TestBase
2010-09-29 17:19:18 +00:00
{
2011-04-10 02:44:01 +00:00
///<summary>
/// Test_s the storage.
///</summary>
2010-09-29 17:19:18 +00:00
[Test]
public void Test_Storage()
{
//Arrange
var repo = MockLib.GetEmptyRepository();
2010-09-29 17:19:18 +00:00
var testProfile = new QualityProfile
2011-02-03 20:09:19 +00:00
{
Name = Guid.NewGuid().ToString(),
Cutoff = QualityTypes.TV,
Allowed = new List<QualityTypes> { QualityTypes.HDTV, QualityTypes.DVD },
2011-02-03 20:09:19 +00:00
};
2010-09-29 17:19:18 +00:00
//Act
var id = (int)repo.Add(testProfile);
var fetch = repo.Single<QualityProfile>(c => c.QualityProfileId == id);
2010-09-29 17:19:18 +00:00
//Assert
Assert.AreEqual(id, fetch.QualityProfileId);
2011-02-03 20:09:19 +00:00
Assert.AreEqual(testProfile.Name, fetch.Name);
2010-09-29 17:19:18 +00:00
Assert.AreEqual(testProfile.Cutoff, fetch.Cutoff);
2010-09-30 06:59:00 +00:00
Assert.AreEqual(testProfile.Allowed, fetch.Allowed);
2010-09-29 17:19:18 +00:00
}
[Test]
public void Test_Series_Quality()
{
//Arrange
var repo = MockLib.GetEmptyRepository();
var testProfile = new QualityProfile
2011-04-10 02:44:01 +00:00
{
Name = Guid.NewGuid().ToString(),
Cutoff = QualityTypes.TV,
Allowed = new List<QualityTypes> { QualityTypes.HDTV, QualityTypes.DVD },
2011-04-10 02:44:01 +00:00
};
var profileId = (int)repo.Add(testProfile);
var series = Builder<Series>.CreateNew().Build();
series.QualityProfileId = profileId;
repo.Add(testProfile);
repo.Add(series);
var result = repo.All<Series>();
Assert.Count(1, result);
Assert.AreEqual(result.ToList()[0].QualityProfile.Name, testProfile.Name);
//Act
}
2010-09-29 17:19:18 +00:00
}
}