2013-04-16 00:08:06 +00:00
|
|
|
|
using System;
|
2011-11-14 00:22:18 +00:00
|
|
|
|
using System.Diagnostics;
|
2011-10-21 05:04:26 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using FluentAssertions;
|
2011-11-14 00:22:18 +00:00
|
|
|
|
using Moq;
|
2011-10-21 05:04:26 +00:00
|
|
|
|
using NUnit.Framework;
|
2011-10-29 04:54:33 +00:00
|
|
|
|
using NzbDrone.Common;
|
2013-06-28 00:04:52 +00:00
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
2013-04-16 00:08:06 +00:00
|
|
|
|
using NzbDrone.Common.Model;
|
2011-10-21 05:04:26 +00:00
|
|
|
|
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;
|
2012-01-16 18:10:18 +00:00
|
|
|
|
using NzbDrone.Test.Common;
|
2013-04-30 00:04:14 +00:00
|
|
|
|
using NzbDrone.Test.Common.Categories;
|
2011-10-21 05:04:26 +00:00
|
|
|
|
|
2013-04-16 00:08:06 +00:00
|
|
|
|
namespace NzbDrone.Core.Test.UpdateTests
|
2011-10-21 05:04:26 +00:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2013-06-28 00:04:52 +00:00
|
|
|
|
public class UpdateServiceFixture : CoreTest<InstallUpdateService>
|
2011-10-21 05:04:26 +00:00
|
|
|
|
{
|
2013-04-16 00:08:06 +00:00
|
|
|
|
private string _sandboxFolder;
|
2011-10-21 05:04:26 +00:00
|
|
|
|
|
2013-04-16 00:08:06 +00:00
|
|
|
|
private readonly UpdatePackage _updatePackage = new UpdatePackage
|
2011-10-21 05:04:26 +00:00
|
|
|
|
{
|
2013-07-18 23:36:49 +00:00
|
|
|
|
FileName = "NzbDrone.vnext.0.8.1.385.zip",
|
|
|
|
|
Url = "http://update.nzbdrone.com/vnext/NzbDrone.vnext.0.8.1.385.zip",
|
|
|
|
|
Version = new Version("0.8.1.385")
|
2011-11-14 00:22:18 +00:00
|
|
|
|
};
|
2011-11-13 04:07:06 +00:00
|
|
|
|
|
2011-11-14 00:22:18 +00:00
|
|
|
|
[SetUp]
|
|
|
|
|
public void Setup()
|
|
|
|
|
{
|
2013-07-06 19:10:32 +00:00
|
|
|
|
WindowsOnly();
|
|
|
|
|
|
2013-07-05 04:43:28 +00:00
|
|
|
|
Mocker.GetMock<IAppFolderInfo>().SetupGet(c => c.TempFolder).Returns(TempFolder);
|
2013-06-28 00:04:52 +00:00
|
|
|
|
Mocker.GetMock<ICheckUpdateService>().Setup(c => c.AvailableUpdate()).Returns(_updatePackage);
|
2013-04-16 00:08:06 +00:00
|
|
|
|
|
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-07-05 04:43:28 +00:00
|
|
|
|
_sandboxFolder = Mocker.GetMock<IAppFolderInfo>().Object.GetUpdateSandboxFolder();
|
2011-10-21 05:04:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
2011-11-14 00:22:18 +00:00
|
|
|
|
|
2012-02-26 21:22:35 +00:00
|
|
|
|
|
2011-10-21 05:04:26 +00:00
|
|
|
|
[Test]
|
2011-11-14 00:22:18 +00:00
|
|
|
|
public void Should_download_update_package()
|
2011-10-21 05:04:26 +00:00
|
|
|
|
{
|
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
|
|
|
|
|
2011-11-14 00:22:18 +00:00
|
|
|
|
|
2013-04-16 00:08:06 +00:00
|
|
|
|
Mocker.GetMock<IHttpProvider>().Verify(c => c.DownloadFile(_updatePackage.Url, updateArchive));
|
2011-11-14 00:22:18 +00:00
|
|
|
|
}
|
2011-10-21 05:04:26 +00:00
|
|
|
|
|
2011-11-14 00:22:18 +00:00
|
|
|
|
[Test]
|
2011-11-14 01:27:11 +00:00
|
|
|
|
public void Should_extract_update_package()
|
2011-11-14 00:22:18 +00:00
|
|
|
|
{
|
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-07-18 23:36:49 +00:00
|
|
|
|
Mocker.GetMock<IArchiveService>().Verify(c => c.Extract(updateArchive, _sandboxFolder));
|
2011-11-14 00:22:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-14 01:27:11 +00:00
|
|
|
|
[Test]
|
|
|
|
|
public void Should_copy_update_client_to_root_of_sandbox()
|
|
|
|
|
{
|
2013-07-05 04:43:28 +00:00
|
|
|
|
var updateClientFolder = Mocker.GetMock<IAppFolderInfo>().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-07-05 04:43:28 +00:00
|
|
|
|
Mocker.GetMock<IDiskProvider>().Verify(c => c.MoveFolder(updateClientFolder, _sandboxFolder));
|
2011-11-14 01:27:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-14 00:22:18 +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(
|
2011-11-14 00:57:03 +00:00
|
|
|
|
c => c.Start(It.Is<ProcessStartInfo>(p =>
|
2013-05-23 05:32:54 +00:00
|
|
|
|
!string.IsNullOrWhiteSpace(p.FileName) &&
|
|
|
|
|
p.Arguments == "12")));
|
2011-10-21 05:04:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-16 18:10:18 +00:00
|
|
|
|
[Test]
|
|
|
|
|
public void when_no_updates_are_available_should_return_without_error_or_warnings()
|
|
|
|
|
{
|
2013-06-28 00:04:52 +00:00
|
|
|
|
Mocker.GetMock<ICheckUpdateService>().Setup(c => c.AvailableUpdate()).Returns<UpdatePackage>(null);
|
2012-02-26 21:22:35 +00:00
|
|
|
|
|
2013-05-16 00:16:21 +00:00
|
|
|
|
Subject.Execute(new ApplicationUpdateCommand());
|
2013-05-16 00:16:06 +00:00
|
|
|
|
|
2012-01-16 18:10:18 +00:00
|
|
|
|
|
|
|
|
|
ExceptionVerification.AssertNoUnexcpectedLogs();
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-21 05:04:26 +00:00
|
|
|
|
[Test]
|
2013-04-16 00:08:06 +00:00
|
|
|
|
[IntegrationTest]
|
2011-10-21 05:04:26 +00:00
|
|
|
|
public void Should_download_and_extract_to_temp_folder()
|
|
|
|
|
{
|
2013-04-16 00:08:06 +00:00
|
|
|
|
UseRealHttp();
|
2011-11-13 05:19:19 +00:00
|
|
|
|
|
2013-07-05 04:43:28 +00:00
|
|
|
|
var updateSubFolder = new DirectoryInfo(Mocker.GetMock<IAppFolderInfo>().Object.GetUpdateSandboxFolder());
|
2011-10-21 05:04:26 +00:00
|
|
|
|
|
|
|
|
|
updateSubFolder.Exists.Should().BeFalse();
|
|
|
|
|
|
2013-05-11 06:16:10 +00:00
|
|
|
|
Mocker.Resolve<DiskProvider>();
|
2013-07-18 23:36:49 +00:00
|
|
|
|
Mocker.SetConstant<IArchiveService>(Mocker.Resolve<ArchiveService>());
|
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();
|
2011-10-21 05:04:26 +00:00
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
}
|
2011-10-21 05:04:26 +00:00
|
|
|
|
}
|
|
|
|
|
}
|