// Copyright (C) Stichting Deltares 2016. 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.Drawing; using System.Drawing.Drawing2D; using System.Linq; using Core.Common.Base.Geometry; using Core.Components.Gis.Data; using Core.Components.Gis.Geometries; using Core.Components.Gis.Style; using NUnit.Framework; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.HydraRing.Data; using Ringtoets.Piping.Data; using Ringtoets.Piping.Forms.Properties; using Ringtoets.Piping.Forms.Views; using Ringtoets.Piping.Primitives; namespace Ringtoets.Piping.Forms.Test.Views { [TestFixture] public class PipingMapDataFactoryTest { [Test] public void Create_GivenSurfaceLines_ReturnsMapFeaturesWithDefaultStyling() { // Setup var pointsOne = new[] { new Point3D(1.2, 2.3, 4.0), new Point3D(2.7, 2.0, 6.0) }; var pointsTwo = new[] { new Point3D(3.2, 23.3, 34.2), new Point3D(7.7, 12.6, 1.2) }; var lines = new[] { new RingtoetsPipingSurfaceLine(), new RingtoetsPipingSurfaceLine() }; lines[0].SetGeometry(pointsOne); lines[1].SetGeometry(pointsTwo); // Call MapData data = PipingMapDataFactory.Create(lines); // Assert Assert.IsInstanceOf(data); var mapLineData = (MapLineData) data; Assert.AreEqual(1, mapLineData.Features.Count()); Assert.AreEqual(2, mapLineData.Features.ElementAt(0).MapGeometries.Count()); AssertEqualPointCollections(pointsOne, mapLineData.Features.ElementAt(0).MapGeometries.ElementAt(0)); AssertEqualPointCollections(pointsTwo, mapLineData.Features.ElementAt(0).MapGeometries.ElementAt(1)); Assert.AreEqual(Resources.PipingSurfaceLinesCollection_DisplayName, data.Name); AssertEqualStyle(mapLineData.Style, Color.DarkSeaGreen, 2, DashStyle.Solid); } [Test] public void Create_NoSurfaceLines_ThrowsArgumentNullException() { // Call TestDelegate test = () => PipingMapDataFactory.Create((IEnumerable) null); // Assert var parameter = Assert.Throws(test).ParamName; Assert.AreEqual("surfaceLines", parameter); } [Test] public void Create_GivenStochasticSoilModels_ReturnsMapFeaturesWithDefaultStyling() { // Setup var pointsOne = new[] { new Point2D(1.2, 2.3), new Point2D(2.7, 2.0) }; var pointsTwo = new[] { new Point2D(3.2, 23.3), new Point2D(7.7, 12.6) }; var stochasticSoilModels = new[] { new StochasticSoilModel(1, "StochasticSoilModelName1", "StochasticSoilModelSegmentName1"), new StochasticSoilModel(2, "StochasticSoilModelName2", "StochasticSoilModelSegmentName2") }; stochasticSoilModels[0].Geometry.AddRange(pointsOne); stochasticSoilModels[1].Geometry.AddRange(pointsTwo); // Call MapData data = PipingMapDataFactory.Create(stochasticSoilModels); // Assert Assert.IsInstanceOf(data); var mapLineData = (MapLineData) data; Assert.AreEqual(1, mapLineData.Features.Count()); Assert.AreEqual(2, mapLineData.Features.ElementAt(0).MapGeometries.Count()); AssertEqualPointCollections(pointsOne, mapLineData.Features.ElementAt(0).MapGeometries.ElementAt(0)); AssertEqualPointCollections(pointsTwo, mapLineData.Features.ElementAt(0).MapGeometries.ElementAt(1)); Assert.AreEqual(Resources.StochasticSoilModelCollection_DisplayName, data.Name); AssertEqualStyle(mapLineData.Style, Color.FromArgb(70, Color.SaddleBrown), 5, DashStyle.Solid); } [Test] public void Create_NoStochasticSoilModels_ThrowsArgumentNullException() { // Call TestDelegate test = () => PipingMapDataFactory.Create((IEnumerable) null); // Assert var parameter = Assert.Throws(test).ParamName; Assert.AreEqual("stochasticSoilModels", parameter); } [Test] public void Create_GivenSections_ReturnsMapFeaturesWithDefaultStyling() { // Setup var pointsOne = new[] { new Point2D(1.2, 2.3), new Point2D(2.7, 2.0) }; var pointsTwo = new[] { new Point2D(3.2, 23.3), new Point2D(7.7, 12.6) }; var lines = new[] { new FailureMechanismSection(string.Empty, pointsOne), new FailureMechanismSection(string.Empty, pointsTwo) }; // Call MapData data = PipingMapDataFactory.Create(lines); // Assert Assert.IsInstanceOf(data); var mapLineData = (MapLineData) data; Assert.AreEqual(1, mapLineData.Features.Count()); Assert.AreEqual(2, mapLineData.Features.ElementAt(0).MapGeometries.Count()); AssertEqualPointCollections(pointsOne, mapLineData.Features.ElementAt(0).MapGeometries.ElementAt(0)); AssertEqualPointCollections(pointsTwo, mapLineData.Features.ElementAt(0).MapGeometries.ElementAt(1)); Assert.AreEqual(Common.Forms.Properties.Resources.FailureMechanism_Sections_DisplayName, data.Name); AssertEqualStyle(mapLineData.Style, Color.Khaki, 3, DashStyle.Dot); } [Test] public void Create_NoSections_ThrowsArgumentNullException() { // Call TestDelegate test = () => PipingMapDataFactory.Create((IEnumerable) null); // Assert var parameter = Assert.Throws(test).ParamName; Assert.AreEqual("sections", parameter); } [Test] public void CreateStartPoints_GivenSections_ReturnsMapFeaturesWithDefaultStyling() { // Setup var pointsOne = new[] { new Point2D(1.2, 2.3), new Point2D(2.7, 2.0) }; var pointsTwo = new[] { new Point2D(3.2, 23.3), new Point2D(7.7, 12.6) }; var lines = new[] { new FailureMechanismSection(string.Empty, pointsOne), new FailureMechanismSection(string.Empty, pointsTwo) }; // Call MapData data = PipingMapDataFactory.CreateStartPoints(lines); // Assert Assert.IsInstanceOf(data); var mapPointData = (MapPointData) data; Assert.AreEqual(1, mapPointData.Features.Count()); Assert.AreEqual(1, mapPointData.Features.ElementAt(0).MapGeometries.Count()); AssertEqualPointCollections(new[] { pointsOne[0], pointsTwo[0] }, mapPointData.Features.ElementAt(0).MapGeometries.ElementAt(0)); var name = SectionPointDisplayName(Common.Forms.Properties.Resources.FailureMechanismSections_StartPoints_DisplayName); Assert.AreEqual(name, data.Name); AssertEqualStyle(mapPointData.Style, Color.DarkKhaki, 15, PointSymbol.Triangle); } [Test] public void CreateStartPoints_NoSections_ThrowsArgumentNullException() { // Call TestDelegate test = () => PipingMapDataFactory.CreateStartPoints(null); // Assert var parameter = Assert.Throws(test).ParamName; Assert.AreEqual("sections", parameter); } [Test] public void CreateEndPoints_GivenSections_ReturnsMapFeaturesWithDefaultStyling() { // Setup var pointsOne = new[] { new Point2D(1.2, 2.3), new Point2D(2.7, 2.0) }; var pointsTwo = new[] { new Point2D(3.2, 23.3), new Point2D(7.7, 12.6) }; var lines = new[] { new FailureMechanismSection(string.Empty, pointsOne), new FailureMechanismSection(string.Empty, pointsTwo) }; // Call MapData data = PipingMapDataFactory.CreateEndPoints(lines); // Assert Assert.IsInstanceOf(data); var mapPointData = (MapPointData) data; Assert.AreEqual(1, mapPointData.Features.Count()); Assert.AreEqual(1, mapPointData.Features.ElementAt(0).MapGeometries.Count()); AssertEqualPointCollections(new[] { pointsOne[1], pointsTwo[1] }, mapPointData.Features.ElementAt(0).MapGeometries.ElementAt(0)); var name = SectionPointDisplayName(Common.Forms.Properties.Resources.FailureMechanismSections_EndPoints_DisplayName); Assert.AreEqual(name, data.Name); AssertEqualStyle(mapPointData.Style, Color.DarkKhaki, 15, PointSymbol.Triangle); } [Test] public void CreateEndPoints_NoSections_ThrowsArgumentNullException() { // Call TestDelegate test = () => PipingMapDataFactory.CreateEndPoints(null); // Assert var parameter = Assert.Throws(test).ParamName; Assert.AreEqual("sections", parameter); } private void AssertEqualStyle(PointStyle pointStyle, Color color, int width, PointSymbol symbol) { Assert.AreEqual(color, pointStyle.Color); Assert.AreEqual(width, pointStyle.Size); Assert.AreEqual(symbol, pointStyle.Symbol); } private static void AssertEqualStyle(LineStyle lineStyle, Color color, int width, DashStyle style) { Assert.AreEqual(color, lineStyle.Color); Assert.AreEqual(width, lineStyle.Width); Assert.AreEqual(style, lineStyle.Style); } private static string SectionPointDisplayName(string name) { return string.Format("{0} ({1})", Common.Forms.Properties.Resources.FailureMechanism_Sections_DisplayName, name); } private void AssertEqualPointCollections(IEnumerable points, MapGeometry geometry) { AssertEqualPointCollections(points.Select(p => new Point2D(p.X, p.Y)), geometry); } private void AssertEqualPointCollections(IEnumerable points, MapGeometry geometry) { CollectionAssert.AreEqual(points.Select(p => new Point2D(p.X, p.Y)), geometry.PointCollections.First()); } } }