/* 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 ConnectionManager { get; } public abstract List ConnectionManagerCopy { get; } protected IXenConnection GetAnyConnection(Predicate cond = null) { foreach (IXenConnection connection in ConnectionManager) { if (cond == null || cond(connection)) return connection; } Assert.Fail("Failed to find connection"); return null; } /// /// Only returns true pools, not pools-of-one /// protected Pool GetAnyPool(Predicate 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; } /// /// Returns any pool or pool-of-one /// protected Pool GetAnyPoolOfOne(Predicate 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 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 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 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 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 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 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 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 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 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 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 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 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 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 GetAllXenObjects() where T : IXenObject { return GetAllXenObjects(t => true); } protected List GetAllXenObjects(Predicate cond) where T : IXenObject { List output = new List(); 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; } } }