2023-01-24 15:29:31 +01:00
|
|
|
/* Copyright (c) Cloud Software Group, Inc.
|
2013-06-24 13:41:48 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms,
|
|
|
|
* with or without modification, are permitted provided
|
|
|
|
* that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above
|
|
|
|
* copyright notice, this list of conditions and the
|
|
|
|
* following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above
|
|
|
|
* copyright notice, this list of conditions and the
|
|
|
|
* following disclaimer in the documentation and/or other
|
|
|
|
* materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
|
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using Moq;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using XenAdmin.Diagnostics.Hotfixing;
|
|
|
|
using XenAPI;
|
|
|
|
|
|
|
|
namespace XenAdminTests.UnitTests.Diagnostics
|
|
|
|
{
|
2013-07-09 17:03:49 +02:00
|
|
|
[TestFixture, Category(TestCategories.SmokeTest)]
|
2013-06-24 13:41:48 +02:00
|
|
|
public class HotFixFactoryTests : UnitTester_TestFixture
|
|
|
|
{
|
|
|
|
private const string id = "test";
|
|
|
|
|
|
|
|
public HotFixFactoryTests() : base(id){}
|
|
|
|
|
|
|
|
private readonly HotfixFactory factory = new HotfixFactory();
|
|
|
|
|
|
|
|
[TearDown]
|
|
|
|
public void TearDownPerTest()
|
|
|
|
{
|
|
|
|
ObjectManager.ClearXenObjects(id);
|
|
|
|
ObjectManager.RefreshCache(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void HotfixableServerVersionHasExpectedMembers()
|
|
|
|
{
|
|
|
|
string[] enumNames = Enum.GetNames(typeof (HotfixFactory.HotfixableServerVersion));
|
|
|
|
Array.Sort(enumNames);
|
|
|
|
|
2019-02-22 17:50:30 +01:00
|
|
|
string[] expectedNames = {"Dundee", "ElyLima"};
|
2013-06-24 13:41:48 +02:00
|
|
|
Array.Sort(expectedNames);
|
|
|
|
|
|
|
|
CollectionAssert.AreEqual(expectedNames, enumNames, "Expected contents of HotfixableServerVersion enum");
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void UUIDLookedUpFromEnum()
|
|
|
|
{
|
2019-06-21 13:16:57 +02:00
|
|
|
Assert.AreEqual("5b345963-ddcf-4c27-997f-3b46a79bcb07",
|
2016-11-10 15:27:28 +01:00
|
|
|
factory.Hotfix(HotfixFactory.HotfixableServerVersion.Dundee).UUID,
|
|
|
|
"Dundee UUID lookup from enum");
|
2017-04-20 11:15:15 +02:00
|
|
|
|
2019-02-22 17:50:30 +01:00
|
|
|
Assert.AreEqual("d72c237a-eaaf-4d98-be63-48e2add8dc3a",
|
|
|
|
factory.Hotfix(HotfixFactory.HotfixableServerVersion.ElyLima).UUID,
|
|
|
|
"Ely - Lima UUID lookup from enum");
|
2013-06-24 13:41:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void FilenameLookedUpFromEnum()
|
|
|
|
{
|
2016-11-10 15:27:28 +01:00
|
|
|
Assert.AreEqual("RPU003",
|
|
|
|
factory.Hotfix(HotfixFactory.HotfixableServerVersion.Dundee).Filename,
|
|
|
|
"Dundee Filename lookup from enum");
|
2017-04-20 11:15:15 +02:00
|
|
|
|
|
|
|
Assert.AreEqual("RPU004",
|
2019-02-22 17:50:30 +01:00
|
|
|
factory.Hotfix(HotfixFactory.HotfixableServerVersion.ElyLima).Filename,
|
|
|
|
"Ely - Lima Filename lookup from enum");
|
2013-06-24 13:41:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
2019-02-08 17:30:35 +01:00
|
|
|
[TestCase("2.9.50", Description = "Naples")]
|
2013-06-24 13:41:48 +02:00
|
|
|
[TestCase("9999.9999.9999", Description = "Future")]
|
2018-08-22 16:50:13 +02:00
|
|
|
public void TestPlatformVersionNumbersLatestReleaseGiveNulls(string platformVersion)
|
2013-06-24 13:41:48 +02:00
|
|
|
{
|
|
|
|
Mock<Host> host = ObjectManager.NewXenObject<Host>(id);
|
2017-09-03 04:33:29 +02:00
|
|
|
host.Setup(h => h.PlatformVersion()).Returns(platformVersion);
|
2013-06-24 13:41:48 +02:00
|
|
|
Assert.IsNull(factory.Hotfix(host.Object));
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
2019-02-08 17:30:35 +01:00
|
|
|
[TestCase("3.0.0", Description = "Naples", Result = false)]
|
|
|
|
[TestCase("2.7.0", Description = "Lima", Result = true)]
|
2018-08-22 16:50:13 +02:00
|
|
|
[TestCase("2.6.0", Description = "Kolkata", Result = true)]
|
2018-04-04 16:16:45 +02:00
|
|
|
[TestCase("2.5.0", Description = "Jura", Result = true)]
|
|
|
|
[TestCase("2.4.0", Description = "Inverness", Result = true)]
|
2017-11-17 17:48:40 +01:00
|
|
|
[TestCase("2.3.0", Description = "Falcon", Result = true)]
|
2017-04-20 11:15:15 +02:00
|
|
|
[TestCase("2.1.1", Description = "Ely", Result = true)]
|
2016-11-10 15:27:28 +01:00
|
|
|
[TestCase("2.0.0", Description = "Dundee", Result = true)]
|
2013-06-24 13:41:48 +02:00
|
|
|
[TestCase("9999.9999.9999", Description = "Future", Result = false)]
|
|
|
|
public bool TestIsHotfixRequiredBasedOnPlatformVersion(string version)
|
|
|
|
{
|
|
|
|
Mock<Host> host = ObjectManager.NewXenObject<Host>(id);
|
2017-09-03 04:33:29 +02:00
|
|
|
host.Setup(h => h.PlatformVersion()).Returns(version);
|
2013-06-24 13:41:48 +02:00
|
|
|
return factory.IsHotfixRequired(host.Object);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|