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.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-01-13 01:39:12 +01:00
|
|
|
|
using System.Linq;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using NUnit.Framework;
|
2018-06-26 18:08:15 +02:00
|
|
|
|
using XenAdmin;
|
|
|
|
|
using XenAdmin.Dialogs;
|
2018-06-21 13:28:49 +02:00
|
|
|
|
using XenAdmin.Wizards.PatchingWizard;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
using XenAdmin.Wizards.RollingUpgradeWizard;
|
|
|
|
|
|
|
|
|
|
namespace XenAdminTests.WizardTests.state5_xml
|
|
|
|
|
{
|
|
|
|
|
|
2013-07-09 17:03:49 +02:00
|
|
|
|
[TestFixture, Category(TestCategories.UICategoryB), Category(TestCategories.SmokeTest)]
|
2013-06-24 13:41:48 +02:00
|
|
|
|
class RollingUpgradeWizardTest : WizardTest<RollingUpgradeWizard>
|
|
|
|
|
{
|
|
|
|
|
public RollingUpgradeWizardTest()
|
2019-01-28 15:44:58 +01:00
|
|
|
|
: base(new[] {"Before You Start", "Select Pools", "Upgrade Mode", "Upgrade Options", "Prechecks", "Apply Upgrade"}, doFinish: false)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
protected override RollingUpgradeWizard NewWizard()
|
|
|
|
|
{
|
|
|
|
|
return new RollingUpgradeWizard();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void TestPage(string pageName)
|
|
|
|
|
{
|
|
|
|
|
if (pageName == "Select Pools")
|
|
|
|
|
{
|
|
|
|
|
MW(TestUtils.GetButton(wizard, "RollingUpgradeWizardSelectPool.buttonSelectAll").PerformClick);
|
|
|
|
|
}
|
|
|
|
|
else if (pageName == "Prechecks")
|
|
|
|
|
{
|
|
|
|
|
while (!btnNext.Enabled)
|
|
|
|
|
{
|
2018-06-27 01:04:38 +02:00
|
|
|
|
var btnResolveAll = TestUtils.GetButton(wizard, "RollingUpgradeWizardPrecheckPage.buttonResolveAll");
|
|
|
|
|
if (btnResolveAll.Enabled)
|
|
|
|
|
{
|
|
|
|
|
MW(btnResolveAll.PerformClick);
|
|
|
|
|
Thread.Sleep(1000);
|
|
|
|
|
}
|
|
|
|
|
Assert.IsFalse(btnResolveAll.Enabled, "Upgrade prechecks failed.");
|
2013-06-24 13:41:48 +02:00
|
|
|
|
Thread.Sleep(1000);
|
|
|
|
|
}
|
|
|
|
|
Thread.Sleep(1000);
|
|
|
|
|
|
|
|
|
|
}
|
2018-06-26 18:08:15 +02:00
|
|
|
|
else if (pageName == "Upgrade Mode")
|
|
|
|
|
{
|
|
|
|
|
MW(TestUtils.GetRadioButton(wizard, "RollingUpgradeWizardUpgradeModePage.radioButtonManual").PerformClick);
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
else if (pageName == "Apply Upgrade")
|
|
|
|
|
{
|
2019-01-13 01:39:12 +01:00
|
|
|
|
MWWaitFor(() => wizard.OwnedForms.Length > 0);
|
|
|
|
|
|
2018-06-26 18:08:15 +02:00
|
|
|
|
MW(() =>
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2019-01-13 01:39:12 +01:00
|
|
|
|
var dialog = wizard.OwnedForms.FirstOrDefault(w =>
|
|
|
|
|
w.Text == Messages.ROLLING_POOL_UPGRADE && w is NonModalThreeButtonDialog);
|
|
|
|
|
|
|
|
|
|
Assert.NotNull(dialog, "Manual upgrade prompt was not found");
|
|
|
|
|
dialog.CancelButton.PerformClick();
|
2018-06-26 18:08:15 +02:00
|
|
|
|
});
|
2019-01-14 13:04:36 +01:00
|
|
|
|
|
2019-01-16 02:32:19 +01:00
|
|
|
|
//since we clicked cancel the retry button will become visible
|
|
|
|
|
var retryBtn = TestUtils.GetButton(wizard, "RollingUpgradeUpgradePage.buttonRetry");
|
|
|
|
|
|
|
|
|
|
MWWaitFor(() => wizard.Visible && wizard.CanFocus &&
|
|
|
|
|
retryBtn.Visible && retryBtn.Enabled);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-10 14:24:42 +01:00
|
|
|
|
protected override bool IsCancelButtonEnabledOnLastPage
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
var page = TestUtils.GetXenTabPage(wizard, "RollingUpgradeUpgradePage") as RollingUpgradeUpgradePage;
|
2018-06-21 13:28:49 +02:00
|
|
|
|
return page.Status == Status.NotStarted || page.Status == Status.Started;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|