2011-10-21 05:04:26 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using AutoMoq;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using Moq;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests.UpdateProviderTests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
internal class PreformUpdateFixture : TestBase
|
|
|
|
|
{
|
|
|
|
|
private AutoMoqer _mocker = null;
|
|
|
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
|
public void setup()
|
|
|
|
|
{
|
|
|
|
|
_mocker = new AutoMoqer(MockBehavior.Strict);
|
|
|
|
|
_mocker.GetMock<EnviromentProvider>()
|
|
|
|
|
.SetupGet(c => c.TempPath).Returns(TempFolder);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
2011-10-21 06:58:23 +00:00
|
|
|
|
public void Should_call_download_and_extract_using_correct_arguments()
|
2011-10-21 05:04:26 +00:00
|
|
|
|
{
|
|
|
|
|
//Act
|
|
|
|
|
var updatePackage = new UpdatePackage
|
|
|
|
|
{
|
|
|
|
|
FileName = "NzbDrone.kay.one.0.6.0.2031.zip",
|
|
|
|
|
Url = "http://update.nzbdrone.com/kayone/NzbDrone.kay.one.0.6.0.2031.zip",
|
|
|
|
|
Version = new Version("0.6.0.2031")
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
_mocker.GetMock<HttpProvider>().Setup(
|
2011-10-21 06:58:23 +00:00
|
|
|
|
c => c.DownloadFile(updatePackage.Url, Path.Combine(TempFolder, UpdateProvider.SandboxFolderName ,updatePackage.FileName)));
|
|
|
|
|
|
|
|
|
|
_mocker.GetMock<DiskProvider>().Setup(
|
|
|
|
|
c => c.ExtractArchive(Path.Combine(TempFolder, UpdateProvider.SandboxFolderName, updatePackage.FileName),
|
|
|
|
|
Path.Combine(TempFolder, UpdateProvider.SandboxFolderName)));
|
2011-10-21 05:04:26 +00:00
|
|
|
|
|
|
|
|
|
_mocker.Resolve<UpdateProvider>().PreformUpdate(updatePackage);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Should_download_and_extract_to_temp_folder()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
var updateSubFolder = new DirectoryInfo(Path.Combine(TempFolder, UpdateProvider.SandboxFolderName));
|
|
|
|
|
|
|
|
|
|
var 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")
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Act
|
|
|
|
|
updateSubFolder.Exists.Should().BeFalse();
|
|
|
|
|
|
|
|
|
|
_mocker.Resolve<HttpProvider>();
|
|
|
|
|
_mocker.Resolve<DiskProvider>();
|
|
|
|
|
_mocker.Resolve<UpdateProvider>().PreformUpdate(updatePackage);
|
|
|
|
|
updateSubFolder.Refresh();
|
|
|
|
|
//Assert
|
|
|
|
|
|
|
|
|
|
updateSubFolder.Exists.Should().BeTrue();
|
|
|
|
|
updateSubFolder.GetDirectories("nzbdrone").Should().HaveCount(1);
|
|
|
|
|
updateSubFolder.GetDirectories().Should().HaveCount(1);
|
|
|
|
|
updateSubFolder.GetFiles().Should().HaveCount(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|