fixed logging tests

pull/3113/head
Keivan Beigi 10 years ago
parent 0a341199a8
commit 23a30f3771

@ -44,7 +44,7 @@ namespace NzbDrone.Core.Test.Download
Mocker.GetMock<IProvideDownloadClient>() Mocker.GetMock<IProvideDownloadClient>()
.Setup(c => c.GetDownloadClients()) .Setup(c => c.GetDownloadClients())
.Returns( new IDownloadClient[] { Mocker.GetMock<IDownloadClient>().Object }); .Returns( new[] { Mocker.GetMock<IDownloadClient>().Object });
Mocker.GetMock<IDownloadClient>() Mocker.GetMock<IDownloadClient>()
.SetupGet(c => c.Definition) .SetupGet(c => c.Definition)

@ -1,20 +1,23 @@
using System.Linq;
using NLog; using NLog;
using NLog.Config; using NLog.Config;
using NLog.Targets; using NLog.Targets;
using NUnit.Framework; using NUnit.Framework;
using NzbDrone.Common.EnvironmentInfo; using NzbDrone.Common.EnvironmentInfo;
using NzbDrone.Common.Extensions;
using NzbDrone.Common.Instrumentation;
namespace NzbDrone.Test.Common namespace NzbDrone.Test.Common
{ {
public abstract class LoggingTest public abstract class LoggingTest
{ {
protected static readonly Logger TestLogger = LogManager.GetLogger("TestLogger"); protected static readonly Logger TestLogger = NzbDroneLogger.GetLogger("TestLogger");
protected static void InitLogging() protected static void InitLogging()
{ {
new StartupContext(); new StartupContext();
if (LogManager.Configuration == null || LogManager.Configuration is XmlLoggingConfiguration) if (LogManager.Configuration == null || LogManager.Configuration.AllTargets.None(c => c is ExceptionVerification))
{ {
LogManager.Configuration = new LoggingConfiguration(); LogManager.Configuration = new LoggingConfiguration();
var consoleTarget = new ConsoleTarget { Layout = "${level}: ${message} ${exception}" }; var consoleTarget = new ConsoleTarget { Layout = "${level}: ${message} ${exception}" };
@ -22,6 +25,8 @@ namespace NzbDrone.Test.Common
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Trace, consoleTarget)); LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Trace, consoleTarget));
RegisterExceptionVerification(); RegisterExceptionVerification();
LogManager.ReconfigExistingLoggers();
} }
} }

Loading…
Cancel
Save