xenadmin/XenAdminTests/TestObjectProvider.cs
Konstantina Chremmou ada6f7dac7 CA-296490: Upload single update to multiple pools in parallel. (#2338)
* Simplification: use auto-properties.

* Removed unnecessary null check. Converted private methods to linq method chain.

* Removed unused file. Added null check.

* Corrected property names as it was difficult to distinguish between the alert,
the patch and the filepath.

* Removed duplicate lock.

* CA-296490: Rewrote the logic uploading single updates so as to facilitate uploading to multiple pools in parallel.

* Corrections as per code review.

* Account for the case of uploading from disk legacy updates that do not correspond to an update alert.
Removed unfriendly error messages (the failure is written out in the logs anyway).

* Wizard test corrections and some modernising:
- Only call cancel on the last page if the test allows us to.
- Do finish the UpdatesWizard test.
- Finish the RunWizardKeyboardTests using key strokes instead of button clicks.
- Ensure the Cancel/Previous buttons do not have focus when sending an Enter stroke.
- Use optional parameters in the WizardTest constructor and string interpolation.

* Renamed badly named property.

* Improved code cloning VMs by assigning new opaque_refs to cloned VBDs.
Compacted test object provider: use optional parameters instead of method overloads.

* Modifications to prevent multiple update of enabled state and ensure the wizard
buttons are updated last.

Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
2019-01-10 13:24:42 +00:00

349 lines
11 KiB
C#

/* Copyright (c) Citrix Systems, Inc.
* 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;
using System.Collections.Generic;
using NUnit.Framework;
using XenAdmin;
using XenAdmin.Core;
using XenAdmin.Model;
using XenAdmin.Network;
using XenAdminTests.XenModelTests;
using XenAPI;
namespace XenAdminTests
{
public abstract class TestObjectProvider
{
public abstract List<IXenConnection> ConnectionManager { get; }
public abstract List<IXenConnection> ConnectionManagerCopy { get; }
protected IXenConnection GetAnyConnection(Predicate<IXenConnection> cond = null)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (cond == null || cond(connection))
return connection;
}
Assert.Fail("Failed to find connection");
return null;
}
/// <summary>
/// Only returns true pools, not pools-of-one
/// </summary>
protected Pool GetAnyPool(Predicate<Pool> cond = null)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (!connection.IsConnected)
continue;
Pool pool = Helpers.GetPool(connection);
if (pool != null && (cond == null || cond(pool)))
return pool;
}
Assert.Fail("Failed to find pool");
return null;
}
///<summary>
/// Returns any pool or pool-of-one
/// </summary>
protected Pool GetAnyPoolOfOne(Predicate<Pool> cond = null)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (!connection.IsConnected)
continue;
Pool pool = Helpers.GetPoolOfOne(connection);
if (pool != null && (cond == null || cond(pool)))
return pool;
}
Assert.Fail("Failed to find pool");
return null;
}
protected Host GetAnyHost(Predicate<Host> cond = null)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (!connection.IsConnected)
continue;
foreach (Host host in connection.Cache.Hosts)
{
if (cond == null || cond(host))
return host;
}
}
Assert.Fail("Failed to find host");
return null;
}
protected VM GetAnyVM(Predicate<VM> cond = null)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (!connection.IsConnected)
continue;
foreach (VM vm in connection.Cache.VMs)
{
if (vm.is_a_real_vm() && (cond == null || cond(vm)))
return vm;
}
}
Assert.Fail("Failed to find VM");
return null;
}
protected VM GetAnyDefaultTemplate(Predicate<VM> cond = null)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (!connection.IsConnected)
continue;
foreach (VM vm in connection.Cache.VMs)
{
if (vm.is_a_template && !vm.is_a_snapshot &&
vm.Show(XenAdminConfigManager.Provider.ShowHiddenVMs) &&
vm.DefaultTemplate() && (cond == null || cond(vm)))
return vm;
}
}
Assert.Fail("Failed to find default template");
return null;
}
protected VM GetAnyUserTemplate(Predicate<VM> cond = null)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (!connection.IsConnected)
continue;
foreach (VM vm in connection.Cache.VMs)
{
if (vm.is_a_template && !vm.is_a_snapshot &&
!vm.DefaultTemplate() && (cond == null || cond(vm)))
return vm;
}
}
Assert.Fail("Failed to find user template");
return null;
}
protected VM GetAnyTemplate(Predicate<VM> cond)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (!connection.IsConnected)
continue;
foreach (VM vm in connection.Cache.VMs)
{
if (vm.is_a_template && (cond == null || cond(vm)))
return vm;
}
}
Assert.Fail("Failed to find user template");
return null;
}
protected VM GetAnySnapshot(Predicate<VM> cond = null)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (!connection.IsConnected)
continue;
foreach (VM vm in connection.Cache.VMs)
{
if (vm.is_a_snapshot && (cond == null || cond(vm)))
return vm;
}
}
Assert.Fail("Failed to find snapshot");
return null;
}
protected SR GetAnySR(Predicate<SR> cond = null)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (!connection.IsConnected)
continue;
foreach (SR sr in connection.Cache.SRs)
{
if (cond == null || cond(sr))
return sr;
}
}
Assert.Fail("Failed to find storage repository");
return null;
}
protected Network GetAnyNetwork(Predicate<Network> cond = null)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (!connection.IsConnected)
continue;
foreach (Network network in connection.Cache.Networks)
{
if (cond == null || cond(network))
return network;
}
}
Assert.Fail("Failed to find network");
return null;
}
protected VBD GetAnyVBD(Predicate<VBD> cond = null)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (!connection.IsConnected)
continue;
foreach (VBD vbd in connection.Cache.VBDs)
{
if (cond == null || cond(vbd))
return vbd;
}
}
Assert.Fail("Failed to find VBD");
return null;
}
protected VIF GetAnyVIF(Predicate<VIF> cond = null)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (!connection.IsConnected)
continue;
foreach (VIF vif in connection.Cache.VIFs)
{
if (cond == null || cond(vif))
return vif;
}
}
Assert.Fail("Failed to find VIF");
return null;
}
protected VDI GetAnyVDI(Predicate<VDI> cond = null)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (!connection.IsConnected)
continue;
foreach (VDI vdi in connection.Cache.VDIs)
{
if (cond == null || cond(vdi))
return vdi;
}
}
Assert.Fail("Failed to find VDI");
return null;
}
protected Folder GetAnyFolder(Predicate<Folder> cond = null)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (!connection.IsConnected)
continue;
foreach (Folder folder in connection.Cache.Folders)
{
if (cond == null || cond(folder))
return folder;
}
}
Assert.Fail("Failed to find folder");
return null;
}
protected IXenObject GetAnyXenObject(Predicate<IXenObject> cond)
{
foreach (IXenConnection connection in ConnectionManager)
{
if (connection.IsConnected)
{
foreach (IXenObject o in connection.Cache.XenSearchableObjects)
{
if (cond(o))
{
return o;
}
}
}
}
Assert.Fail("Failed to find IXenObject");
return null;
}
protected List<T> GetAllXenObjects<T>() where T : IXenObject
{
return GetAllXenObjects<T>(t => true);
}
protected List<T> GetAllXenObjects<T>(Predicate<T> cond) where T : IXenObject
{
List<T> output = new List<T>();
foreach (IXenConnection connection in ConnectionManager)
{
if (connection.IsConnected)
{
foreach (IXenObject o in connection.Cache.XenSearchableObjects)
{
if (o is T && cond((T)o))
{
output.Add((T)o);
}
}
}
}
return output;
}
}
}