mirror of https://github.com/Sonarr/Sonarr
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
|
|
using FizzWare.NBuilder;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Model;
|
|
using NzbDrone.Test.Common;
|
|
|
|
namespace NzbDrone.App.Test
|
|
{
|
|
[TestFixture]
|
|
public class MonitoringProviderTest : TestBase
|
|
{
|
|
|
|
[Test]
|
|
public void Ensure_priority_doesnt_fail_on_invalid_iis_proccess_id()
|
|
{
|
|
Mocker.GetMock<ProcessProvider>().Setup(c => c.GetCurrentProcess())
|
|
.Returns(Builder<ProcessInfo>.CreateNew().With(c => c.Priority == ProcessPriorityClass.Normal).Build());
|
|
|
|
Mocker.GetMock<ProcessProvider>().Setup(c => c.GetProcessById(It.IsAny<int>())).Returns((ProcessInfo)null);
|
|
|
|
Mocker.Resolve<PriorityMonitor>().EnsurePriority(null);
|
|
}
|
|
|
|
[Test]
|
|
public void Ensure_should_log_warn_exception_rather_than_throw()
|
|
{
|
|
Mocker.GetMock<ProcessProvider>().Setup(c => c.GetCurrentProcess()).Throws<InvalidOperationException>();
|
|
Mocker.Resolve<PriorityMonitor>().EnsurePriority(null);
|
|
|
|
ExceptionVerification.ExpectedWarns(1);
|
|
}
|
|
|
|
|
|
}
|
|
}
|