2010-09-30 09:59:00 +03:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
2010-09-29 20:19:18 +03:00
|
|
|
using MbUnit.Framework;
|
2010-10-08 06:35:04 +03:00
|
|
|
using NzbDrone.Core.Entities.Quality;
|
2010-09-29 20:19:18 +03:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test
|
|
|
|
{
|
|
|
|
[TestFixture]
|
2010-10-08 01:17:24 +03:00
|
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
|
2010-09-29 20:19:18 +03:00
|
|
|
public class QualityProfileTest
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Test_s the storage.
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
///
|
|
|
|
[Test]
|
|
|
|
public void Test_Storage()
|
|
|
|
{
|
2010-09-30 09:59:00 +03:00
|
|
|
|
2010-09-29 20:19:18 +03:00
|
|
|
//Arrange
|
2010-10-01 03:09:22 +03:00
|
|
|
var repo = MockLib.GetEmptyRepository();
|
2010-09-29 20:19:18 +03:00
|
|
|
var testProfile = new QualityProfile
|
|
|
|
{
|
2010-10-01 03:09:22 +03:00
|
|
|
Cutoff = QualityTypes.SDTV,
|
|
|
|
Allowed = new List<QualityTypes>() { QualityTypes.HDTV, QualityTypes.DVD },
|
2010-09-29 20:19:18 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
//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);
|
2010-09-30 09:59:00 +03:00
|
|
|
Assert.AreEqual(testProfile.Allowed, fetch.Allowed);
|
2010-09-29 20:19:18 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|