Fixed regression in container registration. Additional logging in case of integration test startup failures

This commit is contained in:
Taloth Saldono 2019-09-13 14:23:01 +02:00 committed by Qstick
parent 4bb6f5d0bc
commit ae6db26a77
3 changed files with 29 additions and 1 deletions

View File

@ -53,7 +53,18 @@ namespace NzbDrone.Common.Composition
{
var factory = CreateSingletonImplementationFactory(implementation);
// For Resolve and ResolveAll
_container.Register(service, factory);
// For ctor(IEnumerable<T>)
var enumerableType = typeof(IEnumerable<>).MakeGenericType(service);
_container.Register(enumerableType, (c, p) =>
{
var instance = factory(c, p);
var result = Array.CreateInstance(service, 1);
result.SetValue(instance, 0);
return result;
});
}
public IEnumerable<T> ResolveAll<T>() where T : class
@ -67,6 +78,7 @@ namespace NzbDrone.Common.Composition
{
var factory = CreateSingletonImplementationFactory(implementation);
// For ResolveAll and ctor(IEnumerable<T>)
_container.Register(service, factory, implementation.FullName);
}
}

View File

@ -63,6 +63,7 @@ namespace NzbDrone.Console
System.Console.WriteLine("");
System.Console.WriteLine("");
Logger.Fatal(ex, "EPIC FAIL!");
System.Console.WriteLine("EPIC FAIL! " + ex.ToString());
Exit(ExitCodes.UnknownFailure);
}

View File

@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Threading;
@ -8,6 +9,7 @@ using System.Xml.XPath;
using NLog;
using NUnit.Framework;
using NzbDrone.Common.EnvironmentInfo;
using NzbDrone.Common.Extensions;
using NzbDrone.Common.Processes;
using NzbDrone.Core.Configuration;
using RestSharp;
@ -19,6 +21,7 @@ namespace NzbDrone.Test.Common
private readonly IProcessProvider _processProvider;
private readonly IRestClient _restClient;
private Process _nzbDroneProcess;
private List<string> _startupLog;
public string AppData { get; private set; }
public string ApiKey { get; private set; }
@ -38,6 +41,7 @@ namespace NzbDrone.Test.Common
var lidarrConsoleExe = OsInfo.IsWindows ? "Lidarr.Console.exe" : "Lidarr.exe";
_startupLog = new List<string>();
if (BuildInfo.IsDebug)
{
Start(Path.Combine(TestContext.CurrentContext.TestDirectory, "..", "_output", "Lidarr.Console.exe"));
@ -53,7 +57,10 @@ namespace NzbDrone.Test.Common
if (_nzbDroneProcess.HasExited)
{
Assert.Fail("Process has exited");
Console.WriteLine("Lidarr has exited unexpectedly");
Thread.Sleep(2000);
var output = _startupLog.Join(Environment.NewLine);
Assert.Fail("Process has exited: ExitCode={0} Output={1}", _nzbDroneProcess.ExitCode, output);
}
var request = new RestRequest("system/status");
@ -64,6 +71,7 @@ namespace NzbDrone.Test.Common
if (statusCall.ResponseStatus == ResponseStatus.Completed)
{
_startupLog = null;
Console.WriteLine("Lidarr is started. Running Tests");
return;
}
@ -96,6 +104,8 @@ namespace NzbDrone.Test.Common
private void Start(string outputNzbdroneConsoleExe)
{
Console.WriteLine("Starting instance from {0}", outputNzbdroneConsoleExe);
var args = "-nobrowser -data=\"" + AppData + "\"";
_nzbDroneProcess = _processProvider.Start(outputNzbdroneConsoleExe, args, null, OnOutputDataReceived, OnOutputDataReceived);
@ -105,6 +115,11 @@ namespace NzbDrone.Test.Common
{
Console.WriteLine(data);
if (_startupLog != null)
{
_startupLog.Add(data);
}
if (data.Contains("Press enter to exit"))
{
_nzbDroneProcess.StandardInput.WriteLine(" ");