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

178 lines
5.9 KiB
C#
Raw Normal View History

2018-11-23 07:03:32 +00:00
using System;
2013-08-14 03:22:28 +00:00
using System.Diagnostics;
using System.IO;
2020-08-17 21:27:05 +00:00
using System.Linq;
2013-08-14 03:22:28 +00:00
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;
2020-08-17 21:27:05 +00:00
using NzbDrone.Common.Extensions;
using NzbDrone.Common.Processes;
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; }
2020-08-17 21:18:47 +00:00
public int Port { get; private set; }
2013-09-21 02:07:42 +00:00
public NzbDroneRunner(Logger logger, int port = 7878)
2013-08-14 03:22:28 +00:00
{
2014-12-17 07:12:26 +00:00
_processProvider = new ProcessProvider(logger);
2020-08-17 21:18:47 +00:00
_restClient = new RestClient($"http://localhost:{port}/api/v3");
Port = port;
2013-08-14 03:22:28 +00:00
}
public void Start()
{
AppData = Path.Combine(TestContext.CurrentContext.TestDirectory, "_intg_" + TestBase.GetUID());
Directory.CreateDirectory(AppData);
GenerateConfigFile();
2013-08-14 03:22:28 +00:00
string consoleExe;
if (OsInfo.IsWindows)
{
consoleExe = "Radarr.Console.exe";
}
else if (PlatformInfo.IsMono)
{
consoleExe = "Radarr.exe";
}
else
{
consoleExe = "Radarr";
}
2013-08-26 19:35:53 +00:00
2013-08-14 03:22:28 +00:00
if (BuildInfo.IsDebug)
{
2020-08-25 20:26:45 +00:00
var frameworkFolder = PlatformInfo.IsNetCore ? "net5.0" : "net462";
Start(Path.Combine(TestContext.CurrentContext.TestDirectory, "..", "..", "_output", frameworkFolder, consoleExe));
2013-08-14 03:22:28 +00:00
}
else
{
Start(Path.Combine(TestContext.CurrentContext.TestDirectory, "..", "bin", consoleExe));
2013-08-14 03:22:28 +00:00
}
while (true)
{
_nzbDroneProcess.Refresh();
if (_nzbDroneProcess.HasExited)
{
Assert.Fail("Process has exited");
}
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
{
2020-08-17 21:18:47 +00:00
TestContext.Progress.WriteLine($"Radarr {Port} is started. Running Tests");
2013-08-14 03:22:28 +00:00
return;
}
2019-12-18 21:56:41 +00:00
TestContext.Progress.WriteLine("Waiting for Radarr 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);
}
}
2020-08-17 21:18:47 +00:00
public void Kill()
{
try
{
if (_nzbDroneProcess != null)
{
2020-08-17 21:27:05 +00:00
_nzbDroneProcess.Refresh();
if (_nzbDroneProcess.HasExited)
{
var log = File.ReadAllLines(Path.Combine(AppData, "logs", "Radarr.trace.txt"));
var output = log.Join(Environment.NewLine);
TestContext.Progress.WriteLine("Process has exited prematurely: ExitCode={0} Output:\n{1}", _nzbDroneProcess.ExitCode, output);
}
2020-08-17 21:18:47 +00:00
_processProvider.Kill(_nzbDroneProcess.Id);
}
}
catch (InvalidOperationException)
{
// May happen if the process closes while being closed
}
TestBase.DeleteTempFolder(AppData);
}
public void KillAll()
2013-08-14 03:22:28 +00:00
{
try
{
if (_nzbDroneProcess != null)
{
_processProvider.Kill(_nzbDroneProcess.Id);
}
_processProvider.KillAll(ProcessProvider.RADARR_CONSOLE_PROCESS_NAME);
_processProvider.KillAll(ProcessProvider.RADARR_PROCESS_NAME);
}
catch (InvalidOperationException)
{
// May happen if the process closes while being closed
}
TestBase.DeleteTempFolder(AppData);
2013-08-14 03:22:28 +00:00
}
2018-11-23 07:03:32 +00:00
private void Start(string outputRadarrConsoleExe)
2013-08-14 03:22:28 +00:00
{
2020-08-17 21:18:47 +00:00
TestContext.Progress.WriteLine("Starting instance from {0} on port {1}", outputRadarrConsoleExe, Port);
var args = "-nobrowser -nosingleinstancecheck -data=\"" + AppData + "\"";
2018-11-23 07:03:32 +00:00
_nzbDroneProcess = _processProvider.Start(outputRadarrConsoleExe, args, null, OnOutputDataReceived, OnOutputDataReceived);
2013-08-14 03:22:28 +00:00
}
private void OnOutputDataReceived(string data)
{
2020-08-17 21:18:47 +00:00
TestContext.Progress.WriteLine($" [{Port}] > " + data);
2013-08-14 03:28:13 +00:00
2013-08-14 03:22:28 +00:00
if (data.Contains("Press enter to exit"))
{
_nzbDroneProcess.StandardInput.WriteLine(" ");
}
}
private void GenerateConfigFile()
2013-09-21 02:07:42 +00:00
{
var configFile = Path.Combine(AppData, "config.xml");
// Generate and set the api key so we don't have to poll the config file
var apiKey = Guid.NewGuid().ToString().Replace("-", "");
var xDoc = new XDocument(
new XDeclaration("1.0", "utf-8", "yes"),
new XElement(ConfigFileProvider.CONFIG_ELEMENT_NAME,
new XElement(nameof(ConfigFileProvider.ApiKey), apiKey),
2020-08-17 21:27:05 +00:00
new XElement(nameof(ConfigFileProvider.LogLevel), "trace"),
2020-08-17 21:18:47 +00:00
new XElement(nameof(ConfigFileProvider.AnalyticsEnabled), false),
new XElement(nameof(ConfigFileProvider.Port), Port)));
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
}
}