// 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.Collections.Generic; using System.Linq; using System.Windows.Forms; using Core.Common.Base.Geometry; using Core.Components.Chart.Data; using Core.Components.Chart.Forms; using NUnit.Framework; using Ringtoets.Common.Forms.TestUtil; using Ringtoets.MacroStabilityInwards.Data; using Ringtoets.MacroStabilityInwards.Data.SoilProfile; using Ringtoets.MacroStabilityInwards.Data.TestUtil; using Ringtoets.MacroStabilityInwards.Forms.Views; using Ringtoets.MacroStabilityInwards.Primitives; namespace Ringtoets.MacroStabilityInwards.Forms.Test.Views { [TestFixture] public class MacroStabilityInwardsOutputChartControlTest { private const int soilProfileIndex = 0; private const int surfaceLineIndex = 1; private const int nrOfChartData = 14; [Test] public void Constructor_ExpectedValues() { // Call var control = new MacroStabilityInwardsOutputChartControl(); // Assert Assert.IsInstanceOf(control); Assert.IsInstanceOf(control); Assert.IsNull(control.Data); Assert.AreEqual(1, control.Controls.Count); Assert.IsInstanceOf(control.Controls[0]); } [Test] public void DefaultConstructor_Always_AddEmptyChartControl() { // Call using (var control = new MacroStabilityInwardsOutputChartControl()) { // Assert IChartControl chartControl = GetChartControl(control); Assert.IsInstanceOf(chartControl); Assert.AreSame(chartControl, chartControl); Assert.AreEqual(DockStyle.Fill, ((Control) chartControl).Dock); Assert.AreEqual("Afstand [m]", chartControl.BottomAxisTitle); Assert.AreEqual("Hoogte [m+NAP]", chartControl.LeftAxisTitle); Assert.IsNull(chartControl.Data); } } [Test] public void Data_MacroStabilityInwardsCalculationScenario_DataSet() { // Setup using (var control = new MacroStabilityInwardsOutputChartControl()) { MacroStabilityInwardsCalculationScenario calculation = MacroStabilityInwardsCalculationScenarioFactory.CreateMacroStabilityInwardsCalculationScenarioWithValidInput(); // Call control.Data = calculation; // Assert Assert.AreSame(calculation, control.Data); } } [Test] public void Data_OtherThanMacroStabilityInwardsCalculationScenario_DataNull() { // Setup using (var control = new MacroStabilityInwardsOutputChartControl()) { // Call control.Data = new object(); // Assert Assert.IsNull(control.Data); } } [Test] public void Data_SetValue_ChartDatSet() { // Setup using (var control = new MacroStabilityInwardsOutputChartControl()) { MacroStabilityInwardsSurfaceLine surfaceLine = GetSurfaceLineWithGeometry(); MacroStabilityInwardsStochasticSoilProfile stochasticSoilProfile = GetStochasticSoilProfile2D(); var calculation = new MacroStabilityInwardsCalculationScenario { InputParameters = { SurfaceLine = surfaceLine, StochasticSoilProfile = stochasticSoilProfile } }; // Call control.Data = calculation; // Assert Assert.AreSame(calculation, control.Data); ChartDataCollection chartData = GetChartControl(control).Data; Assert.IsInstanceOf(chartData); Assert.AreEqual(nrOfChartData, chartData.Collection.Count()); AssertSurfaceLineChartData(surfaceLine, chartData.Collection.ElementAt(surfaceLineIndex)); AssertSoilProfileChartData(stochasticSoilProfile, chartData.Collection.ElementAt(soilProfileIndex), true); } } private static MacroStabilityInwardsStochasticSoilProfile GetStochasticSoilProfile2D() { return new MacroStabilityInwardsStochasticSoilProfile(0.5, new MacroStabilityInwardsSoilProfile2D("profile 2D", new[] { new MacroStabilityInwardsSoilLayer2D(new Ring(new List { new Point2D(0.0, 1.0), new Point2D(2.0, 4.0) }), new List()), new MacroStabilityInwardsSoilLayer2D(new Ring(new List { new Point2D(3.0, 1.0), new Point2D(8.0, 3.0) }), new List()), new MacroStabilityInwardsSoilLayer2D(new Ring(new List { new Point2D(2.0, 4.0), new Point2D(2.0, 8.0) }), new List()) }, new List())); } private static MacroStabilityInwardsSurfaceLine GetSurfaceLineWithGeometry() { var points = new[] { new Point3D(1.2, 2.3, 4.0), new Point3D(2.7, 2.8, 6.0) }; return GetSurfaceLine(points); } private static MacroStabilityInwardsSurfaceLine GetSurfaceLine(Point3D[] points) { var surfaceLine = new MacroStabilityInwardsSurfaceLine("Surface line name"); surfaceLine.SetGeometry(points); return surfaceLine; } private static void AssertSurfaceLineChartData(MacroStabilityInwardsSurfaceLine surfaceLine, ChartData chartData) { Assert.IsInstanceOf(chartData); var surfaceLineChartData = (ChartLineData) chartData; Assert.AreEqual(surfaceLine.Points.Length, surfaceLineChartData.Points.Length); CollectionAssert.AreEqual(surfaceLine.LocalGeometry, surfaceLineChartData.Points); Assert.AreEqual(surfaceLine.Name, chartData.Name); } private static void AssertSoilProfileChartData(MacroStabilityInwardsStochasticSoilProfile soilProfile, ChartData chartData, bool mapDataShouldContainAreas) { Assert.IsInstanceOf(chartData); var soilProfileChartData = (ChartDataCollection) chartData; int expectedLayerCount = soilProfile.SoilProfile.Layers.Count(); Assert.AreEqual(expectedLayerCount, soilProfileChartData.Collection.Count()); Assert.AreEqual(soilProfile.SoilProfile.Name, soilProfileChartData.Name); string[] soilLayers = soilProfile.SoilProfile.Layers.Select((l, i) => $"{i + 1} {l.Data.MaterialName}").Reverse().ToArray(); for (var i = 0; i < expectedLayerCount; i++) { var chartMultipleAreaData = soilProfileChartData.Collection.ElementAt(i) as ChartMultipleAreaData; Assert.IsNotNull(chartMultipleAreaData); Assert.AreEqual(soilLayers[i], chartMultipleAreaData.Name); Assert.AreEqual(mapDataShouldContainAreas, chartMultipleAreaData.Areas.Any()); } } private static IChartControl GetChartControl(MacroStabilityInwardsOutputChartControl view) { return ControlTestHelper.GetControls(view, "chartControl").Single(); } } }