1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-12 11:15:43 +02:00
Sonarr/NzbDrone.Core.Test/QualityProfileTest.cs

73 lines
2.3 KiB
C#
Raw Normal View History

2011-05-22 19:53:21 +03:00
// ReSharper disable RedundantUsingDirective
2011-02-03 22:09:19 +02:00
using System;
2010-09-30 09:59:00 +03:00
using System.Collections.Generic;
2011-04-10 05:44:01 +03:00
using System.Linq;
using FizzWare.NBuilder;
2010-09-29 20:19:18 +03:00
using MbUnit.Framework;
using NzbDrone.Core.Repository;
using NzbDrone.Core.Repository.Quality;
using NzbDrone.Core.Test.Framework;
2010-09-29 20:19:18 +03:00
namespace NzbDrone.Core.Test
{
[TestFixture]
2010-10-08 01:17:24 +03:00
// ReSharper disable InconsistentNaming
public class QualityProfileTest : TestBase
2010-09-29 20:19:18 +03:00
{
2011-04-10 05:44:01 +03:00
///<summary>
/// Test_s the storage.
///</summary>
2010-09-29 20:19:18 +03:00
[Test]
public void Test_Storage()
{
//Arrange
var repo = MockLib.GetEmptyRepository();
2010-09-29 20:19:18 +03:00
var testProfile = new QualityProfile
2011-02-03 22:09:19 +02:00
{
Name = Guid.NewGuid().ToString(),
2011-05-23 20:20:43 +03:00
Cutoff = QualityTypes.SDTV,
Allowed = new List<QualityTypes> { QualityTypes.HDTV, QualityTypes.DVD },
2011-02-03 22:09:19 +02:00
};
2010-09-29 20:19:18 +03:00
//Act
var id = (int)repo.Add(testProfile);
var fetch = repo.Single<QualityProfile>(c => c.QualityProfileId == id);
2010-09-29 20:19:18 +03:00
//Assert
Assert.AreEqual(id, fetch.QualityProfileId);
2011-02-03 22:09:19 +02:00
Assert.AreEqual(testProfile.Name, fetch.Name);
2010-09-29 20:19:18 +03:00
Assert.AreEqual(testProfile.Cutoff, fetch.Cutoff);
2010-09-30 09:59:00 +03:00
Assert.AreEqual(testProfile.Allowed, fetch.Allowed);
2010-09-29 20:19:18 +03:00
}
[Test]
public void Test_Series_Quality()
{
//Arrange
var repo = MockLib.GetEmptyRepository();
var testProfile = new QualityProfile
2011-04-10 05:44:01 +03:00
{
Name = Guid.NewGuid().ToString(),
2011-05-23 20:20:43 +03:00
Cutoff = QualityTypes.SDTV,
Allowed = new List<QualityTypes> { QualityTypes.HDTV, QualityTypes.DVD },
2011-04-10 05:44:01 +03: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 20:19:18 +03:00
}
}