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