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

43 lines
1.3 KiB
C#
Raw Normal View History

2011-02-03 12:09:19 -08:00
using System;
2010-09-29 23:59:00 -07:00
using System.Collections.Generic;
using System.IO;
2010-09-29 10:19:18 -07:00
using MbUnit.Framework;
using NzbDrone.Core.Repository.Quality;
2010-09-29 10:19:18 -07:00
namespace NzbDrone.Core.Test
{
[TestFixture]
2010-10-07 15:17:24 -07:00
// ReSharper disable InconsistentNaming
2010-09-29 10:19:18 -07:00
public class QualityProfileTest
{
/// <summary>
/// Test_s the storage.
/// </summary>
///
///
[Test]
public void Test_Storage()
{
2010-09-29 23:59:00 -07:00
2010-09-29 10:19:18 -07:00
//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(),
Cutoff = QualityTypes.TV,
Allowed = new List<QualityTypes>() { QualityTypes.HDTV, QualityTypes.DVD },
};
2010-09-29 10:19:18 -07:00
//Act
var id = (int)repo.Add(testProfile);
var fetch = repo.Single<QualityProfile>(c => c.ProfileId == id);
2010-09-29 10:19:18 -07:00
//Assert
Assert.AreEqual(id, fetch.ProfileId);
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
}
}
}