Sonarr/src/NzbDrone.Host.Test/RouterTest.cs

111 lines
4.1 KiB
C#
Raw Normal View History

2017-10-16 00:41:48 +00:00
using System.ServiceProcess;
using Moq;
using NUnit.Framework;
using NzbDrone.Common;
using NzbDrone.Common.EnvironmentInfo;
2017-09-18 03:25:28 +00:00
using NzbDrone.Common.Processes;
using NzbDrone.Host;
2011-11-13 18:16:31 +00:00
using NzbDrone.Test.Common;
namespace NzbDrone.App.Test
{
[TestFixture]
2013-04-16 04:52:41 +00:00
public class RouterTest : TestBase<Router>
{
2013-07-27 01:25:45 +00:00
[SetUp]
public void Setup()
{
WindowsOnly();
}
[Test]
public void Route_should_call_install_service_when_application_mode_is_install()
{
2013-05-10 23:53:50 +00:00
var serviceProviderMock = Mocker.GetMock<IServiceProvider>(MockBehavior.Strict);
2017-09-18 03:25:28 +00:00
serviceProviderMock.Setup(c => c.ServiceExist(ServiceProvider.SERVICE_NAME)).Returns(false);
serviceProviderMock.Setup(c => c.Install(ServiceProvider.SERVICE_NAME));
serviceProviderMock.Setup(c => c.SetPermissions(ServiceProvider.SERVICE_NAME));
Mocker.GetMock<IProcessProvider>()
.Setup(c => c.SpawnNewProcess("sc.exe", It.IsAny<string>(), null, true));
Mocker.GetMock<IRuntimeInfo>().SetupGet(c => c.IsUserInteractive).Returns(true);
2013-04-16 04:52:41 +00:00
Subject.Route(ApplicationModes.InstallService);
2017-09-18 03:25:28 +00:00
serviceProviderMock.Verify(c => c.Install(ServiceProvider.SERVICE_NAME), Times.Once());
}
2013-04-16 04:52:41 +00:00
[Test]
public void Route_should_call_uninstall_service_when_application_mode_is_uninstall()
{
2013-05-10 23:53:50 +00:00
var serviceProviderMock = Mocker.GetMock<IServiceProvider>();
2017-10-16 00:41:48 +00:00
serviceProviderMock.Setup(c => c.Uninstall(ServiceProvider.SERVICE_NAME));
Mocker.GetMock<IRuntimeInfo>().SetupGet(c => c.IsUserInteractive).Returns(true);
2017-09-18 03:25:28 +00:00
serviceProviderMock.Setup(c => c.ServiceExist(ServiceProvider.SERVICE_NAME)).Returns(true);
2013-04-16 04:52:41 +00:00
Subject.Route(ApplicationModes.UninstallService);
2017-10-16 00:41:48 +00:00
serviceProviderMock.Verify(c => c.Uninstall(ServiceProvider.SERVICE_NAME), Times.Once());
}
[Test]
public void Route_should_call_console_service_when_application_mode_is_console()
{
Mocker.GetMock<IRuntimeInfo>().SetupGet(c => c.IsUserInteractive).Returns(true);
Subject.Route(ApplicationModes.Interactive);
2013-04-16 04:52:41 +00:00
Mocker.GetMock<INzbDroneServiceFactory>().Verify(c => c.Start(), Times.Once());
}
2013-08-14 04:02:56 +00:00
[Test]
public void Route_should_call_service_start_when_run_in_service_mode()
{
var envMock = Mocker.GetMock<IRuntimeInfo>();
2013-05-10 23:53:50 +00:00
var serviceProvider = Mocker.GetMock<IServiceProvider>();
envMock.SetupGet(c => c.IsUserInteractive).Returns(false);
serviceProvider.Setup(c => c.Run(It.IsAny<ServiceBase>()));
serviceProvider.Setup(c => c.ServiceExist(It.IsAny<string>())).Returns(true);
2013-08-14 04:02:56 +00:00
serviceProvider.Setup(c => c.GetStatus(It.IsAny<string>())).Returns(ServiceControllerStatus.StartPending);
2013-11-26 06:53:36 +00:00
Subject.Route(ApplicationModes.Service);
serviceProvider.Verify(c => c.Run(It.IsAny<ServiceBase>()), Times.Once());
}
[Test]
public void show_error_on_install_if_service_already_exist()
{
2013-04-16 04:52:41 +00:00
var consoleMock = Mocker.GetMock<IConsoleService>();
2013-05-10 23:53:50 +00:00
var serviceMock = Mocker.GetMock<IServiceProvider>();
Mocker.GetMock<IRuntimeInfo>().SetupGet(c => c.IsUserInteractive).Returns(true);
consoleMock.Setup(c => c.PrintServiceAlreadyExist());
2017-09-18 03:25:28 +00:00
serviceMock.Setup(c => c.ServiceExist(ServiceProvider.SERVICE_NAME)).Returns(true);
2013-04-16 04:52:41 +00:00
Subject.Route(ApplicationModes.InstallService);
}
[Test]
public void show_error_on_uninstall_if_service_doesnt_exist()
{
2013-04-16 04:52:41 +00:00
var consoleMock = Mocker.GetMock<IConsoleService>();
2013-05-10 23:53:50 +00:00
var serviceMock = Mocker.GetMock<IServiceProvider>();
Mocker.GetMock<IRuntimeInfo>().SetupGet(c => c.IsUserInteractive).Returns(true);
consoleMock.Setup(c => c.PrintServiceDoesNotExist());
2017-09-18 03:25:28 +00:00
serviceMock.Setup(c => c.ServiceExist(ServiceProvider.SERVICE_NAME)).Returns(false);
2013-04-16 04:52:41 +00:00
Subject.Route(ApplicationModes.UninstallService);
}
}
}