Lidarr/src/NzbDrone.Test.Common/NzbDroneRunner.cs

140 lines
4.6 KiB
C#
Raw Normal View History

2017-09-27 02:06:05 +00:00
using System;
2013-08-14 03:22:28 +00:00
using System.Diagnostics;
using System.IO;
using System.Threading;
2013-09-21 02:07:42 +00:00
using System.Xml.Linq;
2014-12-17 07:12:26 +00:00
using NLog;
2013-08-14 03:22:28 +00:00
using NUnit.Framework;
using NzbDrone.Common.EnvironmentInfo;
using NzbDrone.Common.Processes;
2019-08-22 20:15:25 +00:00
using NzbDrone.Core.Configuration;
2013-08-14 03:22:28 +00:00
using RestSharp;
2013-11-12 03:25:54 +00:00
namespace NzbDrone.Test.Common
2013-08-14 03:22:28 +00:00
{
public class NzbDroneRunner
{
private readonly IProcessProvider _processProvider;
private readonly IRestClient _restClient;
private Process _nzbDroneProcess;
2013-09-21 02:07:42 +00:00
public string AppData { get; private set; }
public string ApiKey { get; private set; }
2017-03-31 18:55:07 +00:00
public NzbDroneRunner(Logger logger, int port = 8686)
2013-08-14 03:22:28 +00:00
{
2014-12-17 07:12:26 +00:00
_processProvider = new ProcessProvider(logger);
_restClient = new RestClient("http://localhost:8686/api/v1");
2013-08-14 03:22:28 +00:00
}
public void Start()
{
2019-08-22 20:15:25 +00:00
AppData = Path.Combine(TestContext.CurrentContext.TestDirectory, "_intg_" + TestBase.GetUID());
Directory.CreateDirectory(AppData);
2013-08-14 03:22:28 +00:00
2019-08-22 20:15:25 +00:00
GenerateConfigFile();
2017-09-27 02:06:05 +00:00
var lidarrConsoleExe = OsInfo.IsWindows ? "Lidarr.Console.exe" : "Lidarr.exe";
var frameworkFolder = "net462";
2013-08-26 19:35:53 +00:00
2013-08-14 03:22:28 +00:00
if (BuildInfo.IsDebug)
{
Start(Path.Combine(TestContext.CurrentContext.TestDirectory, "..", "..", "_output", frameworkFolder, lidarrConsoleExe));
2013-08-14 03:22:28 +00:00
}
else
{
2017-09-27 02:06:05 +00:00
Start(Path.Combine("bin", lidarrConsoleExe));
2013-08-14 03:22:28 +00:00
}
while (true)
{
_nzbDroneProcess.Refresh();
if (_nzbDroneProcess.HasExited)
{
TestContext.Progress.WriteLine("Lidarr has exited unexpectedly");
Thread.Sleep(2000);
Assert.Fail("Process has exited: ExitCode={0}", _nzbDroneProcess.ExitCode);
2013-08-14 03:22:28 +00:00
}
2013-09-21 02:07:42 +00:00
var request = new RestRequest("system/status");
request.AddHeader("Authorization", ApiKey);
request.AddHeader("X-Api-Key", ApiKey);
2013-09-21 02:07:42 +00:00
var statusCall = _restClient.Get(request);
if (statusCall.ResponseStatus == ResponseStatus.Completed)
2013-08-14 03:22:28 +00:00
{
TestContext.Progress.WriteLine("Lidarr is started. Running Tests");
2013-08-14 03:22:28 +00:00
return;
}
TestContext.Progress.WriteLine("Waiting for Lidarr to start. Response Status : {0} [{1}] {2}", statusCall.ResponseStatus, statusCall.StatusDescription, statusCall.ErrorException.Message);
2013-08-14 03:22:28 +00:00
Thread.Sleep(500);
}
}
public void KillAll()
{
2019-08-22 20:15:25 +00:00
try
{
if (_nzbDroneProcess != null)
{
_processProvider.Kill(_nzbDroneProcess.Id);
}
_processProvider.KillAll(ProcessProvider.LIDARR_CONSOLE_PROCESS_NAME);
_processProvider.KillAll(ProcessProvider.LIDARR_PROCESS_NAME);
}
catch (InvalidOperationException)
{
2019-08-22 20:15:25 +00:00
// May happen if the process closes while being closed
}
2019-08-22 20:15:25 +00:00
TestBase.DeleteTempFolder(AppData);
2013-08-14 03:22:28 +00:00
}
private void Start(string outputNzbdroneConsoleExe)
{
TestContext.Progress.WriteLine("Starting instance from {0}", outputNzbdroneConsoleExe);
2013-09-21 02:07:42 +00:00
var args = "-nobrowser -data=\"" + AppData + "\"";
_nzbDroneProcess = _processProvider.Start(outputNzbdroneConsoleExe, args, null, OnOutputDataReceived, OnOutputDataReceived);
2013-08-14 03:22:28 +00:00
}
private void OnOutputDataReceived(string data)
{
TestContext.Progress.WriteLine(" > " + data);
2013-08-14 03:22:28 +00:00
if (data.Contains("Press enter to exit"))
{
_nzbDroneProcess.StandardInput.WriteLine(" ");
}
}
2019-08-22 20:15:25 +00:00
private void GenerateConfigFile()
2013-09-21 02:07:42 +00:00
{
var configFile = Path.Combine(AppData, "config.xml");
2019-08-22 20:15:25 +00:00
// Generate and set the api key so we don't have to poll the config file
var apiKey = Guid.NewGuid().ToString().Replace("-", "");
2019-08-22 20:15:25 +00:00
var xDoc = new XDocument(
new XDeclaration("1.0", "utf-8", "yes"),
new XElement(ConfigFileProvider.CONFIG_ELEMENT_NAME,
new XElement(nameof(ConfigFileProvider.ApiKey), apiKey),
new XElement(nameof(ConfigFileProvider.AnalyticsEnabled), false)
)
);
var data = xDoc.ToString();
File.WriteAllText(configFile, data);
ApiKey = apiKey;
2013-09-21 02:07:42 +00:00
}
2013-08-14 03:22:28 +00:00
}
2017-09-27 02:06:05 +00:00
}