You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.7 KiB
62 lines
1.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Providers;
|
|
|
|
namespace NzbDrone.App.Test
|
|
{
|
|
[TestFixture]
|
|
public class ServiceControllerTests
|
|
{
|
|
[Test]
|
|
public void Exists_should_find_spooler_service()
|
|
{
|
|
var serviceController = new ServiceProvider();
|
|
|
|
//Act
|
|
var exists = serviceController.ServiceExist("spooler");
|
|
|
|
exists.Should().BeTrue();
|
|
}
|
|
|
|
[Test]
|
|
public void Exists_should_not_find_random_service()
|
|
{
|
|
var serviceController = new ServiceProvider();
|
|
|
|
//Act
|
|
var exists = serviceController.ServiceExist("random_service_name");
|
|
|
|
exists.Should().BeFalse();
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void Service_should_be_installed_and_then_uninstalled()
|
|
{
|
|
var serviceController = new ServiceProvider();
|
|
|
|
//Act
|
|
serviceController.ServiceExist(ServiceProvider.NzbDroneServiceName).Should().BeFalse("Service already installed");
|
|
serviceController.Install();
|
|
serviceController.ServiceExist(ServiceProvider.NzbDroneServiceName).Should().BeTrue();
|
|
serviceController.UnInstall();
|
|
serviceController.ServiceExist(ServiceProvider.NzbDroneServiceName).Should().BeFalse();
|
|
}
|
|
|
|
[Test]
|
|
[Explicit]
|
|
public void UnInstallService()
|
|
{
|
|
var serviceController = new ServiceProvider();
|
|
|
|
//Act
|
|
serviceController.UnInstall();
|
|
serviceController.ServiceExist(ServiceProvider.NzbDroneServiceName).Should().BeFalse();
|
|
}
|
|
}
|
|
}
|