|
|
|
using System.Threading;
|
|
|
|
using NLog;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using NzbDrone.Common.Extensions;
|
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
using NzbDrone.Core.Datastore.Migration.Framework;
|
|
|
|
using NzbDrone.Core.Indexers.Newznab;
|
|
|
|
using NzbDrone.Test.Common;
|
|
|
|
using NzbDrone.Test.Common.Datastore;
|
|
|
|
using Radarr.Http.ClientSchema;
|
|
|
|
|
|
|
|
namespace NzbDrone.Integration.Test
|
|
|
|
{
|
|
|
|
[Parallelizable(ParallelScope.Fixtures)]
|
|
|
|
public abstract class IntegrationTest : IntegrationTestBase
|
|
|
|
{
|
|
|
|
protected static int StaticPort = 7878;
|
|
|
|
|
|
|
|
protected NzbDroneRunner _runner;
|
|
|
|
|
|
|
|
public override string MovieRootFolder => GetTempDirectory("MovieRootFolder");
|
|
|
|
|
|
|
|
protected int Port { get; private set; }
|
|
|
|
|
|
|
|
protected PostgresOptions PostgresOptions { get; set; } = new ();
|
|
|
|
|
|
|
|
protected override string RootUrl => $"http://localhost:{Port}/";
|
|
|
|
|
|
|
|
protected override string ApiKey => _runner.ApiKey;
|
|
|
|
|
|
|
|
protected override void StartTestTarget()
|
|
|
|
{
|
|
|
|
Port = Interlocked.Increment(ref StaticPort);
|
|
|
|
|
|
|
|
PostgresOptions = PostgresDatabase.GetTestOptions();
|
|
|
|
|
|
|
|
if (PostgresOptions?.Host != null)
|
|
|
|
{
|
|
|
|
CreatePostgresDb(PostgresOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
_runner = new NzbDroneRunner(LogManager.GetCurrentClassLogger(), PostgresOptions, Port);
|
|
|
|
_runner.Kill();
|
|
|
|
|
|
|
|
_runner.Start();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void InitializeTestTarget()
|
|
|
|
{
|
|
|
|
// Make sure tasks have been initialized so the config put below doesn't cause errors
|
|
|
|
WaitForCompletion(() => Tasks.All().SelectList(x => x.TaskName).Contains("RssSync"));
|
|
|
|
|
|
|
|
Indexers.Post(new Radarr.Api.V3.Indexers.IndexerResource
|
|
|
|
{
|
|
|
|
EnableRss = false,
|
|
|
|
EnableInteractiveSearch = false,
|
|
|
|
EnableAutomaticSearch = false,
|
|
|
|
ConfigContract = nameof(NewznabSettings),
|
|
|
|
Implementation = nameof(Newznab),
|
|
|
|
Name = "NewznabTest",
|
|
|
|
Protocol = Core.Indexers.DownloadProtocol.Usenet,
|
|
|
|
Fields = SchemaBuilder.ToSchema(new NewznabSettings())
|
|
|
|
});
|
|
|
|
|
|
|
|
// Change Console Log Level to Debug so we get more details.
|
|
|
|
var config = HostConfig.Get(1);
|
|
|
|
config.ConsoleLogLevel = "Debug";
|
|
|
|
HostConfig.Put(config);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void StopTestTarget()
|
|
|
|
{
|
|
|
|
_runner.Kill();
|
|
|
|
if (PostgresOptions?.Host != null)
|
|
|
|
{
|
|
|
|
DropPostgresDb(PostgresOptions);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void CreatePostgresDb(PostgresOptions options)
|
|
|
|
{
|
|
|
|
PostgresDatabase.Create(options, MigrationType.Main);
|
|
|
|
PostgresDatabase.Create(options, MigrationType.Log);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void DropPostgresDb(PostgresOptions options)
|
|
|
|
{
|
|
|
|
PostgresDatabase.Drop(options, MigrationType.Main);
|
|
|
|
PostgresDatabase.Drop(options, MigrationType.Log);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|