using System.Linq; using System; using System.Diagnostics; using System.IO; using FizzWare.NBuilder; using FluentAssertions; using Moq; using NUnit.Framework; using NzbDrone.Common; using NzbDrone.Core.Jobs; using NzbDrone.Core.Model; using NzbDrone.Core.Providers; using NzbDrone.Core.Providers.Core; using NzbDrone.Core.Test.Framework; using NzbDrone.Test.Common; namespace NzbDrone.Core.Test.JobTests { [TestFixture] internal class AppUpdateJobFixture : CoreTest { private const string SANDBOX_FOLDER = @"C:\Temp\nzbdrone_update\"; private readonly Guid _clientGuid = Guid.NewGuid(); 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") }; [SetUp] public void Setup() { Mocker.GetMock().SetupGet(c => c.SystemTemp).Returns(@"C:\Temp\"); Mocker.GetMock().SetupGet(c => c.Guid).Returns(_clientGuid); Mocker.GetMock().Setup(c => c.GetAvilableUpdate(It.IsAny())).Returns(updatePackage); } [Test] public void should_delete_sandbox_before_update_if_folder_exists() { Mocker.GetMock().Setup(c => c.FolderExists(SANDBOX_FOLDER)).Returns(true); //Act StartUpdate(); //Assert Mocker.GetMock().Verify(c => c.DeleteFolder(SANDBOX_FOLDER, true)); } [Test] public void should_not_delete_sandbox_before_update_if_folder_doesnt_exists() { Mocker.GetMock().Setup(c => c.FolderExists(SANDBOX_FOLDER)).Returns(false); //Act StartUpdate(); //Assert Mocker.GetMock().Verify(c => c.DeleteFolder(SANDBOX_FOLDER, true), Times.Never()); } [Test] public void Should_download_update_package() { var updateArchive = Path.Combine(SANDBOX_FOLDER, updatePackage.FileName); //Act StartUpdate(); //Assert Mocker.GetMock().Verify( c => c.DownloadFile(updatePackage.Url, updateArchive)); } [Test] public void Should_extract_update_package() { var updateArchive = Path.Combine(SANDBOX_FOLDER, updatePackage.FileName); //Act StartUpdate(); //Assert Mocker.GetMock().Verify( c => c.ExtractArchive(updateArchive, SANDBOX_FOLDER)); } [Test] public void Should_copy_update_client_to_root_of_sandbox() { var updateClientFolder = Mocker.GetMock().Object.GetUpdateClientFolder(); //Act StartUpdate(); //Assert Mocker.GetMock().Verify( c => c.MoveDirectory(updateClientFolder, SANDBOX_FOLDER)); } [Test] public void should_start_update_client() { //Setup var updateClientPath = Mocker.GetMock().Object.GetUpdateClientExePath(); Mocker.GetMock() .SetupGet(c => c.NzbDroneProcessIdFromEnviroment).Returns(12); //Act StartUpdate(); //Assert Mocker.GetMock().Verify( c => c.Start(It.Is(p => p.FileName == updateClientPath && p.Arguments == "12 " + _clientGuid.ToString()) )); } [Test] public void when_no_updates_are_available_should_return_without_error_or_warnings() { Mocker.GetMock().Setup(c => c.GetAvilableUpdate(It.IsAny())).Returns((UpdatePackage)null); StartUpdate(); ExceptionVerification.AssertNoUnexcpectedLogs(); } [Test] [Category(INTEGRATION_TEST)] public void Should_download_and_extract_to_temp_folder() { Mocker.GetMock().SetupGet(c => c.SystemTemp).Returns(TempFolder); var updateSubFolder = new DirectoryInfo(Mocker.GetMock().Object.GetUpdateSandboxFolder()); //Act updateSubFolder.Exists.Should().BeFalse(); Mocker.Resolve(); Mocker.Resolve(); Mocker.Resolve(); StartUpdate(); updateSubFolder.Refresh(); //Assert updateSubFolder.Exists.Should().BeTrue(); updateSubFolder.GetDirectories("nzbdrone").Should().HaveCount(1); updateSubFolder.GetDirectories().Should().HaveCount(1); updateSubFolder.GetFiles().Should().HaveCount(1); } private void StartUpdate() { Mocker.Resolve().Start(MockNotification, null); } } }