Lidarr/src/NzbDrone.Integration.Test/IntegrationTest.cs

45 lines
1.2 KiB
C#
Raw Normal View History

2016-12-23 21:45:24 +00:00
using System.Collections.Generic;
2013-11-13 20:08:37 +00:00
using NLog;
2013-11-12 03:25:54 +00:00
using NzbDrone.Test.Common;
namespace NzbDrone.Integration.Test
{
public abstract class IntegrationTest : IntegrationTestBase
{
2016-07-31 21:40:07 +00:00
protected NzbDroneRunner _runner;
2013-11-13 20:08:37 +00:00
2016-12-09 06:54:15 +00:00
public override string SeriesRootFolder => GetTempDirectory("SeriesRootFolder");
2013-08-14 03:22:28 +00:00
2016-12-09 06:54:15 +00:00
protected override string RootUrl => "http://localhost:8989/";
2013-08-14 05:02:25 +00:00
2016-12-09 06:54:15 +00:00
protected override string ApiKey => _runner.ApiKey;
2013-08-14 05:02:25 +00:00
protected override void StartTestTarget()
{
2014-12-17 07:12:26 +00:00
_runner = new NzbDroneRunner(LogManager.GetCurrentClassLogger());
2013-08-14 03:22:28 +00:00
_runner.KillAll();
2013-08-14 03:22:28 +00:00
_runner.Start();
}
protected override void InitializeTestTarget()
{
// Add Wombles
Indexers.Post(new Api.Indexers.IndexerResource
{
EnableRss = true,
ConfigContract = "NullConfig",
Implementation = "Wombles",
Name = "Wombles",
Protocol = Core.Indexers.DownloadProtocol.Usenet,
Fields = new List<Api.ClientSchema.Field>()
});
}
protected override void StopTestTarget()
{
2013-08-14 03:22:28 +00:00
_runner.KillAll();
}
}
}