mirror of https://github.com/lidarr/Lidarr
removed old tests.
This commit is contained in:
parent
eba9fab518
commit
fa993109fc
|
@ -198,7 +198,6 @@
|
||||||
<Compile Include="TvTests\SeriesRepositoryTests\QualityProfileRepositoryFixture.cs" />
|
<Compile Include="TvTests\SeriesRepositoryTests\QualityProfileRepositoryFixture.cs" />
|
||||||
<Compile Include="TvTests\SeriesServiceTests\UpdateSeriesFixture.cs" />
|
<Compile Include="TvTests\SeriesServiceTests\UpdateSeriesFixture.cs" />
|
||||||
<Compile Include="UpdateTests\UpdateServiceFixture.cs" />
|
<Compile Include="UpdateTests\UpdateServiceFixture.cs" />
|
||||||
<Compile Include="ProviderTests\XemCommunicationProviderTests\GetSceneTvdbMappingsFixture.cs" />
|
|
||||||
<Compile Include="HelperTests\SortHelperTest.cs" />
|
<Compile Include="HelperTests\SortHelperTest.cs" />
|
||||||
<Compile Include="DecisionEngineTests\AcceptableSizeSpecificationFixture.cs" />
|
<Compile Include="DecisionEngineTests\AcceptableSizeSpecificationFixture.cs" />
|
||||||
<Compile Include="Qualities\QualitySizeServiceFixture.cs" />
|
<Compile Include="Qualities\QualitySizeServiceFixture.cs" />
|
||||||
|
|
|
@ -1,71 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Linq;
|
|
||||||
using FluentAssertions;
|
|
||||||
using Moq;
|
|
||||||
using NUnit.Framework;
|
|
||||||
using NzbDrone.Common;
|
|
||||||
using NzbDrone.Core.Providers;
|
|
||||||
|
|
||||||
using NzbDrone.Core.Test.Framework;
|
|
||||||
using NzbDrone.Test.Common.Categories;
|
|
||||||
|
|
||||||
namespace NzbDrone.Core.Test.ProviderTests.XemCommunicationProviderTests
|
|
||||||
{
|
|
||||||
[TestFixture]
|
|
||||||
[IntegrationTest]
|
|
||||||
public class GetSceneTvdbMappingsFixture : CoreTest
|
|
||||||
{
|
|
||||||
private void WithFailureJson()
|
|
||||||
{
|
|
||||||
Mocker.GetMock<IHttpProvider>().Setup(s => s.DownloadString(It.IsAny<String>()))
|
|
||||||
.Returns(ReadAllText("Files", "Xem", "Failure.txt"));
|
|
||||||
}
|
|
||||||
|
|
||||||
private void WithIdsJson()
|
|
||||||
{
|
|
||||||
Mocker.GetMock<IHttpProvider>().Setup(s => s.DownloadString(It.IsAny<String>()))
|
|
||||||
.Returns(ReadAllText("Files", "Xem", "Ids.txt"));
|
|
||||||
}
|
|
||||||
|
|
||||||
private void WithMappingsJson()
|
|
||||||
{
|
|
||||||
Mocker.GetMock<IHttpProvider>().Setup(s => s.DownloadString(It.IsAny<String>()))
|
|
||||||
.Returns(ReadAllText("Files", "Xem", "Mappings.txt"));
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void should_throw_when_failure_is_found()
|
|
||||||
{
|
|
||||||
WithFailureJson();
|
|
||||||
Assert.Throws<Exception>(() => Mocker.Resolve<XemProxy>().GetSceneTvdbMappings(12345));
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void should_get_list_of_mappings()
|
|
||||||
{
|
|
||||||
WithMappingsJson();
|
|
||||||
Mocker.Resolve<XemProxy>().GetSceneTvdbMappings(12345).Should().NotBeEmpty();
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void should_have_two_mappings()
|
|
||||||
{
|
|
||||||
WithMappingsJson();
|
|
||||||
Mocker.Resolve<XemProxy>().GetSceneTvdbMappings(12345).Should().HaveCount(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void should_have_expected_results()
|
|
||||||
{
|
|
||||||
WithMappingsJson();
|
|
||||||
var results = Mocker.Resolve<XemProxy>().GetSceneTvdbMappings(12345);
|
|
||||||
var first = results.First();
|
|
||||||
first.Scene.Absolute.Should().Be(1);
|
|
||||||
first.Scene.Season.Should().Be(1);
|
|
||||||
first.Scene.Episode.Should().Be(1);
|
|
||||||
first.Tvdb.Absolute.Should().Be(1);
|
|
||||||
first.Tvdb.Season.Should().Be(1);
|
|
||||||
first.Tvdb.Episode.Should().Be(1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue