// Copyright (C) Stichting Deltares 2017. All rights reserved. // // This file is part of Ringtoets. // // Ringtoets is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. using System; using System.Collections.Generic; using System.Linq; using Assembly.Kernel.Model; using Assembly.Kernel.Model.CategoryLimits; using Assembly.Kernel.Model.FmSectionTypes; using NUnit.Framework; using Ringtoets.AssemblyTool.Data; namespace Ringtoets.AssemblyTool.KernelWrapper.TestUtil { /// /// Class for asserting categories result. /// public static class AssemblyCategoryAssert { /// /// Asserts whether is equal to . /// /// The original with /// . /// The actual collection of . /// Thrown when /// is not equal to . public static void AssertAssessmentSectionAssemblyCategories(CategoriesList original, IEnumerable actual) { Assert.AreEqual(original.Categories.Length, actual.Count()); CollectionAssert.AreEqual(original.Categories.Select(o => GetAssessmentSectionCategoryGroup(o.Category)), actual.Select(r => r.Group)); CollectionAssert.AreEqual(original.Categories.Select(o => o.LowerLimit), actual.Select(r => r.LowerBoundary)); CollectionAssert.AreEqual(original.Categories.Select(o => o.UpperLimit), actual.Select(r => r.UpperBoundary)); } /// /// Asserts whether is equal to . /// /// The original with /// . /// The actual collection of . /// Thrown when /// is not equal to . public static void AssertFailureMechanismAssemblyCategories(CategoriesList original, IEnumerable actual) { Assert.AreEqual(original.Categories.Length, actual.Count()); CollectionAssert.AreEqual(original.Categories.Select(o => GetFailureMechanismCategoryGroup(o.Category)), actual.Select(r => r.Group)); CollectionAssert.AreEqual(original.Categories.Select(o => o.LowerLimit), actual.Select(r => r.LowerBoundary)); CollectionAssert.AreEqual(original.Categories.Select(o => o.UpperLimit), actual.Select(r => r.UpperBoundary)); } /// /// Asserts whether is equal to . /// /// The original /// with . /// The actual collection of . /// Thrown when /// is not equal to . public static void AssertFailureMechanismSectionAssemblyCategories(CategoriesList original, IEnumerable actual) { Assert.AreEqual(original.Categories.Length, actual.Count()); CollectionAssert.AreEqual(original.Categories.Select(o => GetFailureMechanismSectionCategoryGroup(o.Category)), actual.Select(r => r.Group)); CollectionAssert.AreEqual(original.Categories.Select(o => o.LowerLimit), actual.Select(r => r.LowerBoundary)); CollectionAssert.AreEqual(original.Categories.Select(o => o.UpperLimit), actual.Select(r => r.UpperBoundary)); } /// /// Gets the based /// on the given . /// /// The to convert. /// A . /// Thrown when /// is not valid. public static FailureMechanismSectionAssemblyCategoryGroup GetFailureMechanismSectionCategoryGroup(EFmSectionCategory category) { switch (category) { case EFmSectionCategory.Iv: return FailureMechanismSectionAssemblyCategoryGroup.Iv; case EFmSectionCategory.IIv: return FailureMechanismSectionAssemblyCategoryGroup.IIv; case EFmSectionCategory.IIIv: return FailureMechanismSectionAssemblyCategoryGroup.IIIv; case EFmSectionCategory.IVv: return FailureMechanismSectionAssemblyCategoryGroup.IVv; case EFmSectionCategory.Vv: return FailureMechanismSectionAssemblyCategoryGroup.Vv; case EFmSectionCategory.VIv: return FailureMechanismSectionAssemblyCategoryGroup.VIv; case EFmSectionCategory.VIIv: return FailureMechanismSectionAssemblyCategoryGroup.VIIv; case EFmSectionCategory.NotApplicable: return FailureMechanismSectionAssemblyCategoryGroup.NotApplicable; case EFmSectionCategory.Gr: return FailureMechanismSectionAssemblyCategoryGroup.None; default: throw new NotSupportedException(); } } private static AssessmentSectionAssemblyCategoryGroup GetAssessmentSectionCategoryGroup(EAssessmentGrade category) { switch (category) { case EAssessmentGrade.APlus: return AssessmentSectionAssemblyCategoryGroup.APlus; case EAssessmentGrade.A: return AssessmentSectionAssemblyCategoryGroup.A; case EAssessmentGrade.B: return AssessmentSectionAssemblyCategoryGroup.B; case EAssessmentGrade.C: return AssessmentSectionAssemblyCategoryGroup.C; case EAssessmentGrade.D: return AssessmentSectionAssemblyCategoryGroup.D; case EAssessmentGrade.Gr: return AssessmentSectionAssemblyCategoryGroup.None; case EAssessmentGrade.Ngo: return AssessmentSectionAssemblyCategoryGroup.NotAssessed; case EAssessmentGrade.Nvt: return AssessmentSectionAssemblyCategoryGroup.NotApplicable; default: throw new NotSupportedException(); } } private static FailureMechanismAssemblyCategoryGroup GetFailureMechanismCategoryGroup(EFailureMechanismCategory category) { switch (category) { case EFailureMechanismCategory.It: return FailureMechanismAssemblyCategoryGroup.It; case EFailureMechanismCategory.IIt: return FailureMechanismAssemblyCategoryGroup.IIt; case EFailureMechanismCategory.IIIt: return FailureMechanismAssemblyCategoryGroup.IIIt; case EFailureMechanismCategory.IVt: return FailureMechanismAssemblyCategoryGroup.IVt; case EFailureMechanismCategory.Vt: return FailureMechanismAssemblyCategoryGroup.Vt; case EFailureMechanismCategory.VIt: return FailureMechanismAssemblyCategoryGroup.VIt; case EFailureMechanismCategory.VIIt: return FailureMechanismAssemblyCategoryGroup.VIIt; case EFailureMechanismCategory.Nvt: return FailureMechanismAssemblyCategoryGroup.NotApplicable; case EFailureMechanismCategory.Gr: return FailureMechanismAssemblyCategoryGroup.None; default: throw new NotSupportedException(); } } } }