Sonarr/NzbDrone.Core.Test/UpdateTests/UpdateServiceFixture.cs

151 lines
4.7 KiB
C#
Raw Normal View History

2013-04-16 00:08:06 +00:00
using System;
using System.Diagnostics;
using System.IO;
using FluentAssertions;
using Moq;
using NUnit.Framework;
using NzbDrone.Common;
2013-04-16 00:08:06 +00:00
using NzbDrone.Common.Model;
using NzbDrone.Core.Test.Framework;
2013-04-13 23:57:10 +00:00
using NzbDrone.Core.Update;
2013-05-16 00:16:06 +00:00
using NzbDrone.Core.Update.Commands;
using NzbDrone.Test.Common;
2013-04-30 00:04:14 +00:00
using NzbDrone.Test.Common.Categories;
2013-04-16 00:08:06 +00:00
namespace NzbDrone.Core.Test.UpdateTests
{
[TestFixture]
2013-04-16 04:52:41 +00:00
public class UpdateServiceFixture : CoreTest<UpdateService>
{
2013-04-16 00:08:06 +00:00
private string _sandboxFolder;
2013-04-16 00:08:06 +00:00
private readonly UpdatePackage _updatePackage = new UpdatePackage
{
FileName = "NzbDrone.kay.one.0.6.0.2031.zip",
Url = "http://update.nzbdrone.com/_test/NzbDrone.zip",
Version = new Version("0.6.0.2031")
};
2011-11-13 04:07:06 +00:00
[SetUp]
public void Setup()
{
2013-05-10 23:53:50 +00:00
Mocker.GetMock<IEnvironmentProvider>().SetupGet(c => c.SystemTemp).Returns(TempFolder);
2013-04-16 00:08:06 +00:00
Mocker.GetMock<IUpdatePackageProvider>().Setup(c => c.GetLatestUpdate()).Returns(_updatePackage);
2013-05-10 23:53:50 +00:00
Mocker.GetMock<IProcessProvider>().Setup(c => c.GetCurrentProcess()).Returns(new ProcessInfo { Id = 12 });
2013-04-16 00:08:06 +00:00
2013-05-10 23:53:50 +00:00
_sandboxFolder = Mocker.GetMock<IEnvironmentProvider>().Object.GetUpdateSandboxFolder();
}
2013-04-16 00:08:06 +00:00
2011-11-14 02:54:09 +00:00
[Test]
public void should_delete_sandbox_before_update_if_folder_exists()
{
2013-05-10 23:53:50 +00:00
Mocker.GetMock<IDiskProvider>().Setup(c => c.FolderExists(_sandboxFolder)).Returns(true);
2011-11-14 02:54:09 +00:00
2013-05-16 00:16:21 +00:00
Subject.Execute(new ApplicationUpdateCommand());
2013-04-11 05:08:55 +00:00
2013-05-10 23:53:50 +00:00
Mocker.GetMock<IDiskProvider>().Verify(c => c.DeleteFolder(_sandboxFolder, true));
2011-11-14 02:54:09 +00:00
}
[Test]
public void should_not_delete_sandbox_before_update_if_folder_doesnt_exists()
{
2013-05-10 23:53:50 +00:00
Mocker.GetMock<IDiskProvider>().Setup(c => c.FolderExists(_sandboxFolder)).Returns(false);
2011-11-14 02:54:09 +00:00
2013-05-16 00:16:21 +00:00
Subject.Execute(new ApplicationUpdateCommand());
2013-05-16 00:16:06 +00:00
2013-04-11 05:08:55 +00:00
2013-05-10 23:53:50 +00:00
Mocker.GetMock<IDiskProvider>().Verify(c => c.DeleteFolder(_sandboxFolder, true), Times.Never());
2011-11-14 02:54:09 +00:00
}
[Test]
public void Should_download_update_package()
{
2013-04-16 00:08:06 +00:00
var updateArchive = Path.Combine(_sandboxFolder, _updatePackage.FileName);
2013-04-11 05:08:55 +00:00
2013-05-16 00:16:21 +00:00
Subject.Execute(new ApplicationUpdateCommand());
2013-05-16 00:16:06 +00:00
2013-04-16 00:08:06 +00:00
Mocker.GetMock<IHttpProvider>().Verify(c => c.DownloadFile(_updatePackage.Url, updateArchive));
}
[Test]
2011-11-14 01:27:11 +00:00
public void Should_extract_update_package()
{
2013-04-16 00:08:06 +00:00
var updateArchive = Path.Combine(_sandboxFolder, _updatePackage.FileName);
2011-10-21 06:58:23 +00:00
2013-05-16 00:16:21 +00:00
Subject.Execute(new ApplicationUpdateCommand());
2013-05-16 00:16:06 +00:00
2013-04-11 05:08:55 +00:00
2013-04-16 00:08:06 +00:00
Mocker.GetMock<ArchiveProvider>().Verify(c => c.ExtractArchive(updateArchive, _sandboxFolder));
}
2011-11-14 01:27:11 +00:00
[Test]
public void Should_copy_update_client_to_root_of_sandbox()
{
2013-05-10 23:53:50 +00:00
var updateClientFolder = Mocker.GetMock<IEnvironmentProvider>().Object.GetUpdateClientFolder();
2011-11-14 01:27:11 +00:00
2013-05-16 00:16:21 +00:00
Subject.Execute(new ApplicationUpdateCommand());
2013-05-16 00:16:06 +00:00
2013-04-11 05:08:55 +00:00
2011-11-14 01:27:11 +00:00
2013-05-10 23:53:50 +00:00
Mocker.GetMock<IDiskProvider>().Verify(c => c.MoveDirectory(updateClientFolder, _sandboxFolder));
2011-11-14 01:27:11 +00:00
}
[Test]
public void should_start_update_client()
{
2013-05-16 00:16:21 +00:00
Subject.Execute(new ApplicationUpdateCommand());
2013-05-16 00:16:06 +00:00
2013-05-10 23:53:50 +00:00
Mocker.GetMock<IProcessProvider>().Verify(
c => c.Start(It.Is<ProcessStartInfo>(p =>
2013-05-23 05:32:54 +00:00
!string.IsNullOrWhiteSpace(p.FileName) &&
p.Arguments == "12")));
}
[Test]
public void when_no_updates_are_available_should_return_without_error_or_warnings()
{
2013-04-16 00:08:06 +00:00
Mocker.GetMock<IUpdatePackageProvider>().Setup(c => c.GetLatestUpdate()).Returns<UpdatePackage>(null);
2013-05-16 00:16:21 +00:00
Subject.Execute(new ApplicationUpdateCommand());
2013-05-16 00:16:06 +00:00
ExceptionVerification.AssertNoUnexcpectedLogs();
}
[Test]
2013-04-16 00:08:06 +00:00
[IntegrationTest]
public void Should_download_and_extract_to_temp_folder()
{
2013-04-16 00:08:06 +00:00
UseRealHttp();
2013-05-10 23:53:50 +00:00
var updateSubFolder = new DirectoryInfo(Mocker.GetMock<IEnvironmentProvider>().Object.GetUpdateSandboxFolder());
updateSubFolder.Exists.Should().BeFalse();
2013-05-11 06:16:10 +00:00
Mocker.Resolve<DiskProvider>();
2011-11-13 04:07:06 +00:00
Mocker.Resolve<ArchiveProvider>();
2013-04-11 05:08:55 +00:00
2013-05-16 00:16:21 +00:00
Subject.Execute(new ApplicationUpdateCommand());
2013-05-16 00:16:06 +00:00
2013-04-16 00:08:06 +00:00
updateSubFolder.Refresh();
updateSubFolder.Exists.Should().BeTrue();
updateSubFolder.GetDirectories("nzbdrone").Should().HaveCount(1);
updateSubFolder.GetDirectories().Should().HaveCount(1);
2013-04-16 00:08:06 +00:00
updateSubFolder.GetFiles().Should().NotBeEmpty();
2011-11-21 02:59:42 +00:00
}
2013-05-20 02:40:22 +00:00
[TearDown]
public void TearDown()
{
ExceptionVerification.IgnoreErrors();
}
}
}