403 lines
13 KiB
C#
403 lines
13 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using FluentAssertions;
|
|
using Microsoft.AspNetCore.SignalR.Client;
|
|
using NLog;
|
|
using NLog.Config;
|
|
using NLog.Targets;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
using NzbDrone.Common.Processes;
|
|
using NzbDrone.Core.Qualities;
|
|
using NzbDrone.Core.Tv.Commands;
|
|
using NzbDrone.Integration.Test.Client;
|
|
using NzbDrone.SignalR;
|
|
using NzbDrone.Test.Common.Categories;
|
|
using RestSharp;
|
|
using Sonarr.Api.V3.Blocklist;
|
|
using Sonarr.Api.V3.Config;
|
|
using Sonarr.Api.V3.DownloadClient;
|
|
using Sonarr.Api.V3.EpisodeFiles;
|
|
using Sonarr.Api.V3.Episodes;
|
|
using Sonarr.Api.V3.History;
|
|
using Sonarr.Api.V3.Profiles.Quality;
|
|
using Sonarr.Api.V3.RootFolders;
|
|
using Sonarr.Api.V3.Series;
|
|
using Sonarr.Api.V3.System.Tasks;
|
|
using Sonarr.Api.V3.Tags;
|
|
|
|
namespace NzbDrone.Integration.Test
|
|
{
|
|
[IntegrationTest]
|
|
public abstract class IntegrationTestBase
|
|
{
|
|
protected RestClient RestClient { get; private set; }
|
|
|
|
public ClientBase<BlocklistResource> Blocklist;
|
|
public CommandClient Commands;
|
|
public ClientBase<TaskResource> Tasks;
|
|
public DownloadClientClient DownloadClients;
|
|
public EpisodeClient Episodes;
|
|
public ClientBase<HistoryResource> History;
|
|
public ClientBase<HostConfigResource> HostConfig;
|
|
public IndexerClient Indexers;
|
|
public IndexerClient Indexersv3;
|
|
public LogsClient Logs;
|
|
public ClientBase<NamingConfigResource> NamingConfig;
|
|
public NotificationClient Notifications;
|
|
public ClientBase<QualityProfileResource> QualityProfiles;
|
|
public ReleaseClient Releases;
|
|
public ReleasePushClient ReleasePush;
|
|
public ClientBase<RootFolderResource> RootFolders;
|
|
public SeriesClient Series;
|
|
public ClientBase<TagResource> Tags;
|
|
public ClientBase<EpisodeResource> WantedMissing;
|
|
public ClientBase<EpisodeResource> WantedCutoffUnmet;
|
|
|
|
private List<SignalRMessage> _signalRReceived;
|
|
|
|
private HubConnection _signalrConnection;
|
|
|
|
protected IEnumerable<SignalRMessage> SignalRMessages => _signalRReceived;
|
|
|
|
public IntegrationTestBase()
|
|
{
|
|
new StartupContext();
|
|
|
|
LogManager.Configuration = new LoggingConfiguration();
|
|
var consoleTarget = new ConsoleTarget { Layout = "${level}: ${message} ${exception}" };
|
|
LogManager.Configuration.AddTarget(consoleTarget.GetType().Name, consoleTarget);
|
|
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Trace, consoleTarget));
|
|
}
|
|
|
|
public string TempDirectory { get; private set; }
|
|
|
|
public abstract string SeriesRootFolder { get; }
|
|
|
|
protected abstract string RootUrl { get; }
|
|
|
|
protected abstract string ApiKey { get; }
|
|
|
|
protected abstract void StartTestTarget();
|
|
|
|
protected abstract void InitializeTestTarget();
|
|
|
|
protected abstract void StopTestTarget();
|
|
|
|
[OneTimeSetUp]
|
|
public void SmokeTestSetup()
|
|
{
|
|
StartTestTarget();
|
|
InitRestClients();
|
|
InitializeTestTarget();
|
|
}
|
|
|
|
protected virtual void InitRestClients()
|
|
{
|
|
RestClient = new RestClient(RootUrl + "api/v3/");
|
|
RestClient.AddDefaultHeader("Authentication", ApiKey);
|
|
RestClient.AddDefaultHeader("X-Api-Key", ApiKey);
|
|
|
|
Blocklist = new ClientBase<BlocklistResource>(RestClient, ApiKey);
|
|
Commands = new CommandClient(RestClient, ApiKey);
|
|
Tasks = new ClientBase<TaskResource>(RestClient, ApiKey, "system/task");
|
|
DownloadClients = new DownloadClientClient(RestClient, ApiKey);
|
|
Episodes = new EpisodeClient(RestClient, ApiKey);
|
|
History = new ClientBase<HistoryResource>(RestClient, ApiKey);
|
|
HostConfig = new ClientBase<HostConfigResource>(RestClient, ApiKey, "config/host");
|
|
Indexers = new IndexerClient(RestClient, ApiKey);
|
|
Logs = new LogsClient(RestClient, ApiKey);
|
|
NamingConfig = new ClientBase<NamingConfigResource>(RestClient, ApiKey, "config/naming");
|
|
Notifications = new NotificationClient(RestClient, ApiKey);
|
|
QualityProfiles = new ClientBase<QualityProfileResource>(RestClient, ApiKey);
|
|
Releases = new ReleaseClient(RestClient, ApiKey);
|
|
ReleasePush = new ReleasePushClient(RestClient, ApiKey);
|
|
RootFolders = new ClientBase<RootFolderResource>(RestClient, ApiKey);
|
|
Series = new SeriesClient(RestClient, ApiKey);
|
|
Tags = new ClientBase<TagResource>(RestClient, ApiKey);
|
|
WantedMissing = new ClientBase<EpisodeResource>(RestClient, ApiKey, "wanted/missing");
|
|
WantedCutoffUnmet = new ClientBase<EpisodeResource>(RestClient, ApiKey, "wanted/cutoff");
|
|
}
|
|
|
|
[OneTimeTearDown]
|
|
public void SmokeTestTearDown()
|
|
{
|
|
StopTestTarget();
|
|
}
|
|
|
|
[SetUp]
|
|
public void IntegrationSetUp()
|
|
{
|
|
TempDirectory = Path.Combine(TestContext.CurrentContext.TestDirectory, "_test_" + ProcessProvider.GetCurrentProcessId() + "_" + DateTime.UtcNow.Ticks);
|
|
|
|
// Wait for things to get quiet, otherwise the previous test might influence the current one.
|
|
Commands.WaitAll();
|
|
}
|
|
|
|
[TearDown]
|
|
public async Task IntegrationTearDown()
|
|
{
|
|
if (_signalrConnection != null)
|
|
{
|
|
await _signalrConnection.StopAsync();
|
|
|
|
_signalrConnection = null;
|
|
_signalRReceived = new List<SignalRMessage>();
|
|
}
|
|
|
|
if (Directory.Exists(TempDirectory))
|
|
{
|
|
try
|
|
{
|
|
Directory.Delete(TempDirectory, true);
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|
|
public string GetTempDirectory(params string[] args)
|
|
{
|
|
var path = Path.Combine(TempDirectory, Path.Combine(args));
|
|
|
|
Directory.CreateDirectory(path);
|
|
|
|
return path;
|
|
}
|
|
|
|
protected async Task ConnectSignalR()
|
|
{
|
|
_signalRReceived = new List<SignalRMessage>();
|
|
_signalrConnection = new HubConnectionBuilder().WithUrl("http://localhost:8989/signalr/messages").Build();
|
|
|
|
var cts = new CancellationTokenSource();
|
|
|
|
_signalrConnection.Closed += e =>
|
|
{
|
|
cts.Cancel();
|
|
return Task.CompletedTask;
|
|
};
|
|
|
|
_signalrConnection.On<SignalRMessage>("receiveMessage", (message) =>
|
|
{
|
|
_signalRReceived.Add(message);
|
|
});
|
|
|
|
var connected = false;
|
|
var retryCount = 0;
|
|
|
|
while (!connected)
|
|
{
|
|
try
|
|
{
|
|
Console.WriteLine("Connecting to signalR");
|
|
|
|
await _signalrConnection.StartAsync();
|
|
connected = true;
|
|
break;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
if (retryCount > 25)
|
|
{
|
|
Assert.Fail("Couldn't establish signalR connection");
|
|
}
|
|
}
|
|
|
|
retryCount++;
|
|
Thread.Sleep(200);
|
|
}
|
|
}
|
|
|
|
public static void WaitForCompletion(Func<bool> predicate, int timeout = 10000, int interval = 500)
|
|
{
|
|
var count = timeout / interval;
|
|
for (var i = 0; i < count; i++)
|
|
{
|
|
if (predicate())
|
|
{
|
|
return;
|
|
}
|
|
|
|
Thread.Sleep(interval);
|
|
}
|
|
|
|
if (predicate())
|
|
{
|
|
return;
|
|
}
|
|
|
|
Assert.Fail("Timed on wait");
|
|
}
|
|
|
|
public SeriesResource EnsureSeries(int tvdbId, string seriesTitle, bool? monitored = null)
|
|
{
|
|
var result = Series.All().FirstOrDefault(v => v.TvdbId == tvdbId);
|
|
|
|
if (result == null)
|
|
{
|
|
var lookup = Series.Lookup("tvdb:" + tvdbId);
|
|
var series = lookup.First();
|
|
series.QualityProfileId = 1;
|
|
series.Path = Path.Combine(SeriesRootFolder, series.Title);
|
|
series.Monitored = true;
|
|
series.Seasons.ForEach(v => v.Monitored = true);
|
|
series.AddOptions = new Core.Tv.AddSeriesOptions();
|
|
Directory.CreateDirectory(series.Path);
|
|
|
|
result = Series.Post(series);
|
|
Commands.WaitAll();
|
|
WaitForCompletion(() => Episodes.GetEpisodesInSeries(result.Id).Count > 0);
|
|
}
|
|
|
|
if (monitored.HasValue)
|
|
{
|
|
var changed = false;
|
|
if (result.Monitored != monitored.Value)
|
|
{
|
|
result.Monitored = monitored.Value;
|
|
changed = true;
|
|
}
|
|
|
|
result.Seasons.ForEach(season =>
|
|
{
|
|
if (season.Monitored != monitored.Value)
|
|
{
|
|
season.Monitored = monitored.Value;
|
|
changed = true;
|
|
}
|
|
});
|
|
|
|
if (changed)
|
|
{
|
|
Series.Put(result);
|
|
}
|
|
}
|
|
|
|
Commands.WaitAll();
|
|
|
|
return result;
|
|
}
|
|
|
|
public void EnsureNoSeries(int tvdbId, string seriesTitle)
|
|
{
|
|
var result = Series.All().FirstOrDefault(v => v.TvdbId == tvdbId);
|
|
|
|
if (result != null)
|
|
{
|
|
Series.Delete(result.Id);
|
|
}
|
|
}
|
|
|
|
public EpisodeFileResource EnsureEpisodeFile(SeriesResource series, int season, int episode, Quality quality)
|
|
{
|
|
var result = Episodes.GetEpisodesInSeries(series.Id).Single(v => v.SeasonNumber == season && v.EpisodeNumber == episode);
|
|
|
|
if (result.EpisodeFile == null)
|
|
{
|
|
var path = Path.Combine(SeriesRootFolder, series.Title, string.Format("Series.S{0}E{1}.{2}.mkv", season, episode, quality.Name));
|
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(path));
|
|
File.WriteAllText(path, "Fake Episode");
|
|
|
|
Commands.PostAndWait(new RefreshSeriesCommand(new List<int> { series.Id }));
|
|
|
|
Commands.WaitAll();
|
|
|
|
result = Episodes.GetEpisodesInSeries(series.Id).Single(v => v.SeasonNumber == season && v.EpisodeNumber == episode);
|
|
|
|
result.EpisodeFileId.Should().NotBe(0);
|
|
}
|
|
|
|
return result.EpisodeFile;
|
|
}
|
|
|
|
public QualityProfileResource EnsureQualityProfileCutoff(int profileId, Quality cutoff, bool upgradeAllowed)
|
|
{
|
|
var needsUpdate = false;
|
|
var profile = QualityProfiles.Get(profileId);
|
|
|
|
if (profile.Cutoff != cutoff.Id)
|
|
{
|
|
profile.Cutoff = cutoff.Id;
|
|
needsUpdate = true;
|
|
}
|
|
|
|
if (profile.UpgradeAllowed != upgradeAllowed)
|
|
{
|
|
profile.UpgradeAllowed = upgradeAllowed;
|
|
needsUpdate = true;
|
|
}
|
|
|
|
if (needsUpdate)
|
|
{
|
|
profile = QualityProfiles.Put(profile);
|
|
}
|
|
|
|
return profile;
|
|
}
|
|
|
|
public TagResource EnsureTag(string tagLabel)
|
|
{
|
|
var tag = Tags.All().FirstOrDefault(v => v.Label == tagLabel);
|
|
|
|
if (tag == null)
|
|
{
|
|
tag = Tags.Post(new TagResource { Label = tagLabel });
|
|
}
|
|
|
|
return tag;
|
|
}
|
|
|
|
public void EnsureNoTag(string tagLabel)
|
|
{
|
|
var tag = Tags.All().FirstOrDefault(v => v.Label == tagLabel);
|
|
|
|
if (tag != null)
|
|
{
|
|
Tags.Delete(tag.Id);
|
|
}
|
|
}
|
|
|
|
public DownloadClientResource EnsureDownloadClient(bool enabled = true)
|
|
{
|
|
var client = DownloadClients.All().FirstOrDefault(v => v.Name == "Test UsenetBlackhole");
|
|
|
|
if (client == null)
|
|
{
|
|
var schema = DownloadClients.Schema().First(v => v.Implementation == "UsenetBlackhole");
|
|
|
|
schema.Enable = enabled;
|
|
schema.Name = "Test UsenetBlackhole";
|
|
schema.Fields.First(v => v.Name == "watchFolder").Value = GetTempDirectory("Download", "UsenetBlackhole", "Watch");
|
|
schema.Fields.First(v => v.Name == "nzbFolder").Value = GetTempDirectory("Download", "UsenetBlackhole", "Nzb");
|
|
|
|
client = DownloadClients.Post(schema);
|
|
}
|
|
else if (client.Enable != enabled)
|
|
{
|
|
client.Enable = enabled;
|
|
|
|
client = DownloadClients.Put(client);
|
|
}
|
|
|
|
return client;
|
|
}
|
|
|
|
public void EnsureNoDownloadClient()
|
|
{
|
|
var clients = DownloadClients.All();
|
|
|
|
foreach (var client in clients)
|
|
{
|
|
DownloadClients.Delete(client.Id);
|
|
}
|
|
}
|
|
}
|
|
}
|