2011-10-21 07:04:26 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
2011-10-29 06:54:33 +02:00
|
|
|
|
using NzbDrone.Common;
|
2011-10-21 07:04:26 +02:00
|
|
|
|
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]
|
2011-11-13 08:27:16 +01:00
|
|
|
|
internal class PreformUpdateFixture : CoreTest
|
2011-10-21 07:04:26 +02:00
|
|
|
|
{
|
2011-11-13 05:07:06 +01:00
|
|
|
|
|
2011-11-13 06:19:19 +01:00
|
|
|
|
|
|
|
|
|
private const string SANDBOX_FOLDER = @"C:\Temp\nzbdrone_update\";
|
2011-10-21 07:04:26 +02:00
|
|
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
|
public void setup()
|
|
|
|
|
{
|
2011-11-13 05:07:06 +01:00
|
|
|
|
WithStrictMocker();
|
|
|
|
|
|
|
|
|
|
|
2011-10-21 07:04:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
2011-10-21 08:58:23 +02:00
|
|
|
|
public void Should_call_download_and_extract_using_correct_arguments()
|
2011-10-21 07:04:26 +02:00
|
|
|
|
{
|
2011-11-13 08:27:16 +01:00
|
|
|
|
Mocker.GetMock<EnviromentProvider>().SetupGet(c => c.SystemTemp).Returns(@"C:\Temp\");
|
2011-11-13 06:19:19 +01:00
|
|
|
|
|
2011-10-21 07:04:26 +02:00
|
|
|
|
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")
|
|
|
|
|
};
|
|
|
|
|
|
2011-11-13 06:19:19 +01:00
|
|
|
|
var updateArchive = Path.Combine(SANDBOX_FOLDER, updatePackage.FileName);
|
|
|
|
|
|
2011-11-13 05:07:06 +01:00
|
|
|
|
Mocker.GetMock<HttpProvider>().Setup(
|
2011-11-13 06:19:19 +01:00
|
|
|
|
c => c.DownloadFile(updatePackage.Url, updateArchive));
|
2011-10-21 08:58:23 +02:00
|
|
|
|
|
2011-11-13 05:07:06 +01:00
|
|
|
|
Mocker.GetMock<ArchiveProvider>().Setup(
|
2011-11-13 06:19:19 +01:00
|
|
|
|
c => c.ExtractArchive(updateArchive, SANDBOX_FOLDER));
|
2011-10-21 07:04:26 +02:00
|
|
|
|
|
2011-11-13 06:19:19 +01:00
|
|
|
|
//Act
|
2011-11-13 05:07:06 +01:00
|
|
|
|
Mocker.Resolve<UpdateProvider>().StartUpgrade(updatePackage);
|
2011-10-21 07:04:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Should_download_and_extract_to_temp_folder()
|
|
|
|
|
{
|
|
|
|
|
|
2011-11-13 08:27:16 +01:00
|
|
|
|
Mocker.GetMock<EnviromentProvider>().SetupGet(c => c.SystemTemp).Returns(TempFolder);
|
2011-11-13 06:19:19 +01:00
|
|
|
|
|
2011-11-13 08:27:16 +01:00
|
|
|
|
var updateSubFolder = new DirectoryInfo(Mocker.GetMock<EnviromentProvider>().Object.GetUpdateSandboxFolder());
|
2011-10-21 07:04:26 +02:00
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
2011-11-13 05:07:06 +01:00
|
|
|
|
Mocker.Resolve<HttpProvider>();
|
|
|
|
|
Mocker.Resolve<DiskProvider>();
|
|
|
|
|
Mocker.Resolve<ArchiveProvider>();
|
|
|
|
|
Mocker.Resolve<UpdateProvider>().StartUpgrade(updatePackage);
|
2011-10-21 07:04:26 +02:00
|
|
|
|
updateSubFolder.Refresh();
|
|
|
|
|
//Assert
|
|
|
|
|
|
|
|
|
|
updateSubFolder.Exists.Should().BeTrue();
|
|
|
|
|
updateSubFolder.GetDirectories("nzbdrone").Should().HaveCount(1);
|
|
|
|
|
updateSubFolder.GetDirectories().Should().HaveCount(1);
|
|
|
|
|
updateSubFolder.GetFiles().Should().HaveCount(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|