Lidarr/NzbDrone.Core.Test/QualityTest.cs

131 lines
3.7 KiB
C#
Raw Normal View History

2011-06-18 02:00:44 +00:00
using NUnit.Framework;
2011-05-28 19:23:35 +00:00
using NzbDrone.Core.Model;
using NzbDrone.Core.Repository.Quality;
using NzbDrone.Core.Test.Framework;
2011-05-28 19:23:35 +00:00
namespace NzbDrone.Core.Test
{
[TestFixture]
// ReSharper disable InconsistentNaming
public class QualityTest : TestBase
2011-05-28 19:23:35 +00:00
{
[Test]
2011-06-02 21:06:46 +00:00
[Ignore("No supported asserts are available")]
2011-05-28 19:23:35 +00:00
public void Icomparer_greater_test()
{
var first = new Quality(QualityTypes.DVD, true);
var second = new Quality(QualityTypes.Bluray1080p, true);
2011-06-02 21:06:46 +00:00
//Assert.GreaterThan(second, first);
2011-05-28 19:23:35 +00:00
}
[Test]
2011-06-02 21:06:46 +00:00
[Ignore("No supported asserts are available")]
2011-05-28 19:23:35 +00:00
public void Icomparer_greater_proper()
{
var first = new Quality(QualityTypes.Bluray1080p, false);
var second = new Quality(QualityTypes.Bluray1080p, true);
2011-06-02 21:06:46 +00:00
//Assert.GreaterThan(second, first);
2011-05-28 19:23:35 +00:00
}
[Test]
2011-06-02 21:06:46 +00:00
[Ignore("No supported asserts are available")]
2011-05-28 19:23:35 +00:00
public void Icomparer_lesser()
{
var first = new Quality(QualityTypes.DVD, true);
var second = new Quality(QualityTypes.Bluray1080p, true);
2011-06-02 21:06:46 +00:00
//Assert.LessThan(first, second);
2011-05-28 19:23:35 +00:00
}
[Test]
2011-06-02 21:06:46 +00:00
[Ignore("No supported asserts are available")]
2011-05-28 19:23:35 +00:00
public void Icomparer_lesser_proper()
{
var first = new Quality(QualityTypes.DVD, false);
var second = new Quality(QualityTypes.DVD, true);
2011-06-02 21:06:46 +00:00
//Assert.LessThan(first, second);
2011-05-28 19:23:35 +00:00
}
[Test]
public void equal_operand()
{
var first = new Quality(QualityTypes.Bluray1080p, true);
var second = new Quality(QualityTypes.Bluray1080p, true);
Assert.IsTrue(first == second);
Assert.IsTrue(first >= second);
Assert.IsTrue(first <= second);
}
[Test]
public void equal_operand_false()
{
var first = new Quality(QualityTypes.Bluray1080p, true);
var second = new Quality(QualityTypes.Unknown, true);
Assert.IsFalse(first == second);
}
[Test]
public void equal_operand_false_proper()
{
var first = new Quality(QualityTypes.Bluray1080p, true);
var second = new Quality(QualityTypes.Bluray1080p, false);
Assert.IsFalse(first == second);
}
[Test]
public void not_equal_operand()
{
var first = new Quality(QualityTypes.Bluray1080p, true);
var second = new Quality(QualityTypes.Bluray1080p, true);
Assert.IsFalse(first != second);
}
[Test]
public void not_equal_operand_false()
{
var first = new Quality(QualityTypes.Bluray1080p, true);
var second = new Quality(QualityTypes.Unknown, true);
Assert.IsTrue(first != second);
}
[Test]
public void not_equal_operand_false_proper()
{
var first = new Quality(QualityTypes.Bluray1080p, true);
var second = new Quality(QualityTypes.Bluray1080p, false);
Assert.IsTrue(first != second);
}
[Test]
public void greater_operand()
{
var first = new Quality(QualityTypes.DVD, true);
var second = new Quality(QualityTypes.Bluray1080p, true);
Assert.IsTrue(first < second);
Assert.IsTrue(first <= second);
}
[Test]
public void lesser_operand()
{
var first = new Quality(QualityTypes.DVD, true);
var second = new Quality(QualityTypes.Bluray1080p, true);
Assert.IsTrue(second > first);
Assert.IsTrue(second >= first);
}
}
}