You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
using System.Collections.Generic;
|
|
using System.IO;
|
|
using MbUnit.Framework;
|
|
using NzbDrone.Core.Repository;
|
|
using NzbDrone.Core.Repository.Quality;
|
|
|
|
namespace NzbDrone.Core.Test
|
|
{
|
|
[TestFixture]
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
public class QualityProfileTest
|
|
{
|
|
/// <summary>
|
|
/// Test_s the storage.
|
|
/// </summary>
|
|
///
|
|
///
|
|
[Test]
|
|
public void Test_Storage()
|
|
{
|
|
|
|
//Arrange
|
|
var repo = MockLib.GetEmptyRepository();
|
|
var testProfile = new QualityProfile
|
|
{
|
|
Cutoff = QualityTypes.SDTV,
|
|
Allowed = new List<QualityTypes>() { QualityTypes.HDTV, QualityTypes.DVD },
|
|
};
|
|
|
|
//Act
|
|
var id = (int)repo.Add(testProfile);
|
|
var fetch = repo.Single<QualityProfile>(c => c.Id == id);
|
|
|
|
//Assert
|
|
Assert.AreEqual(id, fetch.Id);
|
|
Assert.AreEqual(testProfile.Cutoff, fetch.Cutoff);
|
|
Assert.AreEqual(testProfile.Allowed, fetch.Allowed);
|
|
}
|
|
}
|
|
} |