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