2011-10-21 07:04:26 +02:00
|
|
|
|
using System;
|
2011-11-14 01:22:18 +01:00
|
|
|
|
|
2011-10-21 07:04:26 +02:00
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using Moq;
|
|
|
|
|
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.Providers;
|
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
2011-11-14 01:22:18 +01:00
|
|
|
|
using NzbDrone.Test.Common.AutoMoq;
|
2011-10-21 07:04:26 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests.UpdateProviderTests
|
|
|
|
|
{
|
2011-11-13 08:27:16 +01:00
|
|
|
|
class GetAvilableUpdateFixture : CoreTest
|
2011-10-21 07:04:26 +02:00
|
|
|
|
{
|
|
|
|
|
private static Version _latestsTestVersion = new Version("0.6.0.3");
|
|
|
|
|
private static string _latestsTestUrl = "http://update.nzbdrone.com/_test/NzbDrone.master.0.6.0.3.zip";
|
|
|
|
|
private static string _latestsTestFileName = "NzbDrone.master.0.6.0.3.zip";
|
|
|
|
|
|
|
|
|
|
[SetUp]
|
2012-02-05 07:34:36 +01:00
|
|
|
|
public void Setup()
|
2011-10-21 07:04:26 +02:00
|
|
|
|
{
|
2011-12-15 05:15:53 +01:00
|
|
|
|
WithStrictMocker();
|
2011-10-21 07:04:26 +02:00
|
|
|
|
|
2011-12-15 05:15:53 +01:00
|
|
|
|
Mocker.GetMock<ConfigProvider>().SetupGet(c => c.UpdateUrl).Returns("http://update.nzbdrone.com/_test/");
|
|
|
|
|
Mocker.Resolve<HttpProvider>();
|
2011-10-21 07:04:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestCase("0.6.0.9")]
|
|
|
|
|
[TestCase("0.7.0.1")]
|
|
|
|
|
[TestCase("1.0.0.0")]
|
|
|
|
|
public void should_return_null_if_latests_is_lower_than_current_version(string currentVersion)
|
|
|
|
|
{
|
|
|
|
|
|
2012-02-05 07:34:36 +01:00
|
|
|
|
var updatePackage = Mocker.Resolve<UpdateProvider>().GetAvilableUpdate(new Version(currentVersion));
|
2011-10-21 07:04:26 +02:00
|
|
|
|
|
|
|
|
|
updatePackage.Should().BeNull();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_return_null_if_latests_is_equal_to_current_version()
|
|
|
|
|
{
|
2012-02-05 07:34:36 +01:00
|
|
|
|
var updatePackage = Mocker.Resolve<UpdateProvider>().GetAvilableUpdate(_latestsTestVersion);
|
2011-10-21 07:04:26 +02:00
|
|
|
|
|
|
|
|
|
updatePackage.Should().BeNull();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestCase("0.0.0.0")]
|
|
|
|
|
[TestCase("0.0.0.1")]
|
|
|
|
|
[TestCase("0.0.10.10")]
|
|
|
|
|
public void should_return_update_if_latests_is_higher_than_current_version(string currentVersion)
|
|
|
|
|
{
|
2012-02-05 07:34:36 +01:00
|
|
|
|
var updatePackage = Mocker.Resolve<UpdateProvider>().GetAvilableUpdate(new Version(currentVersion));
|
2011-10-21 07:04:26 +02:00
|
|
|
|
|
|
|
|
|
updatePackage.Should().NotBeNull();
|
|
|
|
|
updatePackage.Version.Should().Be(_latestsTestVersion);
|
|
|
|
|
updatePackage.FileName.Should().BeEquivalentTo(_latestsTestFileName);
|
|
|
|
|
updatePackage.Url.Should().BeEquivalentTo(_latestsTestUrl);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|