2017-01-16 20:59:50 +01:00
|
|
|
|
/* Copyright (c) Citrix Systems, Inc.
|
2013-06-24 13:41:48 +02:00
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* 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.Threading;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
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()
|
|
|
|
|
: base(new string[] { "Before You Start", "Select Pools", "Upgrade Mode", "Prechecks","Ready to Upgrade","Apply Upgrade" }
|
|
|
|
|
, true, false)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
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")
|
|
|
|
|
{
|
2018-06-26 18:08:15 +02:00
|
|
|
|
var window = WaitForWindowToAppear(Messages.ROLLING_POOL_UPGRADE,
|
|
|
|
|
w => Control.FromHandle(w.Handle) is NonModalThreeButtonDialog);
|
|
|
|
|
MW(() =>
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2018-06-26 18:08:15 +02:00
|
|
|
|
var dialog = Control.FromHandle(window.Handle) as Form;
|
2018-06-23 00:44:40 +02:00
|
|
|
|
if (dialog != null)
|
2018-06-26 18:08:15 +02:00
|
|
|
|
dialog.CancelButton.PerformClick();
|
|
|
|
|
});
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool CanCancelLastPage
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|