1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-15 01:25:05 +02:00
Files
Sonarr/NzbDrone.Core.Test/QualityProfileTest.cs

75 lines
2.4 KiB
C#
Raw Normal View History

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