1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 09:21:43 +02:00
Radarr/NzbDrone.Test.Common/LoggingTest.cs

44 lines
1.3 KiB
C#
Raw Normal View History

2011-10-24 07:54:09 +02:00
using NLog;
using NLog.Config;
2011-11-13 08:27:16 +01:00
using NUnit.Framework;
2011-10-24 07:54:09 +02:00
using NzbDrone.Common;
namespace NzbDrone.Test.Common
{
public abstract class LoggingTest
2011-10-24 07:54:09 +02:00
{
protected static void InitLogging()
2011-10-24 07:54:09 +02:00
{
2011-11-08 08:01:52 +01:00
if (LogManager.Configuration == null || LogManager.Configuration is XmlLoggingConfiguration)
{
LogManager.Configuration = new LoggingConfiguration();
LogConfiguration.RegisterConsoleLogger(LogLevel.Trace);
LogConfiguration.RegisterUdpLogger();
2011-10-24 07:54:09 +02:00
2011-11-08 08:01:52 +01:00
RegisterExceptionVerification();
2011-11-13 08:27:16 +01:00
LogConfiguration.Reload();
2011-11-08 08:01:52 +01:00
}
2011-10-24 07:54:09 +02:00
}
private static void RegisterExceptionVerification()
{
var exceptionVerification = new ExceptionVerification();
LogManager.Configuration.AddTarget("ExceptionVerification", exceptionVerification);
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Trace, exceptionVerification));
2011-11-13 08:27:16 +01:00
}
[SetUp]
public void LoggingTestSetup()
{
InitLogging();
ExceptionVerification.Reset();
}
[TearDown]
public void LoggingDownBase()
{
ExceptionVerification.AssertNoUnexcpectedLogs();
2011-10-24 07:54:09 +02:00
}
}
}