// 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 Core.Common.Base.Geometry; using Core.Common.TestUtil; using NUnit.Framework; using Ringtoets.Common.IO.Exceptions; using Ringtoets.Common.IO.SoilProfile; using Ringtoets.Common.IO.SoilProfile.Schema; using Ringtoets.Common.IO.TestUtil; using Ringtoets.Piping.Data.SoilProfile; using Ringtoets.Piping.IO.SoilProfiles; using Ringtoets.Piping.IO.TestUtil; namespace Ringtoets.Piping.IO.Test.SoilProfiles { [TestFixture] public class PipingStochasticSoilModelTransformerTest { [Test] public void Constructor_ExpectedValues() { // Call var transformer = new PipingStochasticSoilModelTransformer(); // Assert Assert.IsInstanceOf>(transformer); } [Test] public void Transform_StochasticSoilModelNull_ThrowsArgumentNullException() { // Setup var transformer = new PipingStochasticSoilModelTransformer(); // Call TestDelegate test = () => transformer.Transform(null); // Assert var exception = Assert.Throws(test); Assert.AreEqual("stochasticSoilModel", exception.ParamName); } [Test] [TestCaseSource(nameof(GetInvalidFailureMechanismTypes))] public void Transform_InvalidFailureMechanismType_ThrowsImportedDataTransformException(FailureMechanismType failureMechanismType) { // Setup var transformer = new PipingStochasticSoilModelTransformer(); var soilModel = new StochasticSoilModel("some name", failureMechanismType); // Call TestDelegate test = () => transformer.Transform(soilModel); // Assert var exception = Assert.Throws(test); Assert.AreEqual($"Het stochastische ondergrondmodel met '{failureMechanismType}' als faalmechanisme type is niet ondersteund. " + "Alleen stochastische ondergrondmodellen met 'Piping' als faalmechanisme type zijn ondersteund.", exception.Message); } [Test] public void Transform_StochasticSoilModelWithInvalidSoilProfile_ThrowsImportedDataTransformException() { // Setup var transformer = new PipingStochasticSoilModelTransformer(); StochasticSoilModel soilModel = PipingStochasticSoilModelTestFactory.CreatePipingStochasticSoilModelWithGeometry(new[] { StochasticSoilProfileTestFactory.CreateStochasticSoilProfileWithValidProbability(new TestSoilProfile()) }); // Call TestDelegate test = () => transformer.Transform(soilModel); // Assert var exception = Assert.Throws(test); const string message = "De ondergrondschematisatie van het type 'TestSoilProfile' is niet ondersteund. " + "Alleen ondergrondschematisaties van het type 'SoilProfile1D' of 'SoilProfile2D' zijn ondersteund."; Assert.AreEqual(message, exception.Message); } [Test] public void Transform_SoilProfile2DWithoutIntersection_ThrowsImportedDataTransformException() { // Setup const string name = "name"; var transformer = new PipingStochasticSoilModelTransformer(); StochasticSoilModel soilModel = PipingStochasticSoilModelTestFactory.CreatePipingStochasticSoilModelWithGeometry(name, new[] { StochasticSoilProfileTestFactory.CreateStochasticSoilProfileWithValidProbability(new SoilProfile2D(0, name, new[] { new SoilLayer2D(new SoilLayer2DLoop(new Segment2D[0]), Enumerable.Empty()) }, Enumerable.Empty())) }); // Call TestDelegate test = () => transformer.Transform(soilModel); // Assert var exception = Assert.Throws(test); Assert.AreEqual($"Geen geldige X waarde gevonden om intersectie te maken uit 2D profiel '{name}'.", exception.Message); } [Test] public void Transform_InvalidStochasticSoilModel_ThrowsImportedDataTransformException() { // Setup var stochasticSoilModel = new StochasticSoilModel("name", FailureMechanismType.Piping); var transformer = new PipingStochasticSoilModelTransformer(); // Call TestDelegate test = () => transformer.Transform(stochasticSoilModel); // Assert var exception = Assert.Throws(test); Exception innerException = exception.InnerException; Assert.IsNotNull(innerException); Assert.IsInstanceOf(innerException); Assert.AreEqual(innerException.Message, exception.Message); } [Test] public void Transform_ValidStochasticSoilModelWithSoilProfile2D_ReturnsExpectedPipingStochasticSoilModel() { // Setup var random = new Random(21); const string name = "name"; const double intersectionX = 1.0; SoilLayer2D layer = SoilLayer2DTestFactory.CreateSoilLayer2D(); var profile = new SoilProfile2D(0, "SoilProfile2D", new[] { layer }, Enumerable.Empty()) { IntersectionX = intersectionX }; var transformer = new PipingStochasticSoilModelTransformer(); double probability = random.NextDouble(); var soilModel = new StochasticSoilModel(name, FailureMechanismType.Piping) { StochasticSoilProfiles = { new StochasticSoilProfile(probability, profile) }, Geometry = { new Point2D(1.0, 0.0), new Point2D(0.0, 0.0) } }; // Call PipingStochasticSoilModel transformed = transformer.Transform(soilModel); // Assert Assert.AreEqual(name, transformed.Name); Assert.AreEqual(1, transformed.StochasticSoilProfiles.Count()); CollectionAssert.AreEqual(soilModel.Geometry, transformed.Geometry); var expectedPipingSoilProfile = new[] { new PipingStochasticSoilProfile(probability, PipingSoilProfileTransformer.Transform(profile)) }; AssertPipingStochasticSoilProfiles(expectedPipingSoilProfile, transformed.StochasticSoilProfiles.ToArray()); } [Test] public void Transform_ValidTwoStochasticSoilModelWithSameProfile_ReturnsExpectedPipingStochasticSoilModel() { // Setup const double intersectionX = 1.0; SoilLayer2D layer = SoilLayer2DTestFactory.CreateSoilLayer2D(); var profile = new SoilProfile2D(0, "SoilProfile2D", new[] { layer }, Enumerable.Empty()) { IntersectionX = intersectionX }; var transformer = new PipingStochasticSoilModelTransformer(); StochasticSoilModel soilModel1 = PipingStochasticSoilModelTestFactory.CreatePipingStochasticSoilModelWithGeometry(new[] { StochasticSoilProfileTestFactory.CreateStochasticSoilProfileWithValidProbability(profile) }); StochasticSoilModel soilModel2 = PipingStochasticSoilModelTestFactory.CreatePipingStochasticSoilModelWithGeometry(new[] { StochasticSoilProfileTestFactory.CreateStochasticSoilProfileWithValidProbability(profile) }); // Call PipingStochasticSoilModel transformed1 = transformer.Transform(soilModel1); PipingStochasticSoilModel transformed2 = transformer.Transform(soilModel2); // Assert PipingStochasticSoilProfile[] transformedStochasticSoilProfiles1 = transformed1.StochasticSoilProfiles.ToArray(); PipingStochasticSoilProfile[] transformedStochasticSoilProfiles2 = transformed2.StochasticSoilProfiles.ToArray(); Assert.AreEqual(1, transformedStochasticSoilProfiles1.Length); Assert.AreEqual(1, transformedStochasticSoilProfiles2.Length); PipingStochasticSoilProfile pipingStochasticSoilProfile1 = transformedStochasticSoilProfiles1[0]; PipingStochasticSoilProfile pipingStochasticSoilProfile2 = transformedStochasticSoilProfiles2[0]; Assert.AreSame(pipingStochasticSoilProfile1.SoilProfile, pipingStochasticSoilProfile2.SoilProfile); } [Test] public void Transform_ValidStochasticSoilModelWithSameProfileInTwoStochasticSoilProfiles_ReturnsExpectedPipingStochasticSoilModel() { // Setup const string soilModelName = "name"; const string soilProfileName = "SoilProfile"; const double intersectionX = 1.0; SoilLayer2D layer = SoilLayer2DTestFactory.CreateSoilLayer2D(); var profile = new SoilProfile2D(0, soilProfileName, new[] { layer }, Enumerable.Empty()) { IntersectionX = intersectionX }; const double originalProfileOneProbability = 0.2; const double originalProfileTwoProbability = 0.7; StochasticSoilModel soilModel = PipingStochasticSoilModelTestFactory.CreatePipingStochasticSoilModelWithGeometry(soilModelName, new[] { new StochasticSoilProfile(originalProfileOneProbability, profile), new StochasticSoilProfile(originalProfileTwoProbability, profile) }); var transformer = new PipingStochasticSoilModelTransformer(); PipingStochasticSoilModel transformed = null; // Call Action call = () => transformed = transformer.Transform(soilModel); // Assert string expectedMessage = $"Ondergrondschematisatie '{soilProfileName}' is meerdere keren gevonden in ondergrondmodel '{soilModelName}'. " + "Kansen van voorkomen worden opgeteld."; TestHelper.AssertLogMessageWithLevelIsGenerated(call, Tuple.Create(expectedMessage, LogLevelConstant.Warn)); PipingStochasticSoilProfile[] transformedStochasticSoilProfiles = transformed.StochasticSoilProfiles.ToArray(); Assert.AreEqual(1, transformedStochasticSoilProfiles.Length); const double expectedProbability = originalProfileOneProbability + originalProfileTwoProbability; Assert.AreEqual(expectedProbability, transformedStochasticSoilProfiles[0].Probability, 1e-6); } [Test] [SetCulture("nl-NL")] [TestCaseSource(nameof(GetSupportedStochasticSoilProfilesWithInvalidProbabilities))] public void Transform_ValidStochasticSoilModelWithStochasticProfileInvalidProbability_ThrowsImportedDataException(StochasticSoilProfile profile) { // Setup StochasticSoilModel soilModel = PipingStochasticSoilModelTestFactory.CreatePipingStochasticSoilModelWithGeometry(new[] { profile }); var transformer = new PipingStochasticSoilModelTransformer(); // Call TestDelegate call = () => transformer.Transform(soilModel); // Assert var exception = Assert.Throws(call); const string expectedMessage = "Het aandeel van de ondergrondschematisatie in het stochastische ondergrondmodel " + "moet in het bereik [0,0, 1,0] liggen."; StringAssert.StartsWith(expectedMessage, exception.Message); } [Test] [SetCulture("nl-NL")] [TestCaseSource(nameof(GetValidConfiguredAndSupportedSoilProfiles))] public void Transform_ValidStochasticSoilModelWithSameProfileProbabilityExceedingValidRange_ThrowsImportedDataException(ISoilProfile profile) { // Setup StochasticSoilModel soilModel = PipingStochasticSoilModelTestFactory.CreatePipingStochasticSoilModelWithGeometry(new[] { new StochasticSoilProfile(0.9, profile), new StochasticSoilProfile(0.9, profile) }); var transformer = new PipingStochasticSoilModelTransformer(); // Call TestDelegate call = () => transformer.Transform(soilModel); // Assert var exception = Assert.Throws(call); const string expectedMessage = "Het aandeel van de ondergrondschematisatie in het stochastische ondergrondmodel " + "moet in het bereik [0,0, 1,0] liggen."; StringAssert.StartsWith(expectedMessage, exception.Message); } [Test] public void Transform_ValidStochasticSoilModelWithSimilarProfileInTwoStochasticSoilProfiles_ReturnsExpectedPipingStochasticSoilModel() { // Setup var random = new Random(21); const string soilProfileName = "SoilProfile"; const double intersectionX = 1.0; var soilProfile2D = new SoilProfile2D(0, soilProfileName, new[] { SoilLayer2DTestFactory.CreateSoilLayer2D() }, Enumerable.Empty()) { IntersectionX = intersectionX }; var stochasticSoilProfile2D = new StochasticSoilProfile(random.NextDouble(), soilProfile2D); var soilProfile1D = new SoilProfile1D(0, soilProfileName, 0, new[] { SoilLayer1DTestFactory.CreateSoilLayer1DWithValidAquifer() }); var stochasticSoilProfile1D = new StochasticSoilProfile(random.NextDouble(), soilProfile1D); var transformer = new PipingStochasticSoilModelTransformer(); StochasticSoilModel soilModel = PipingStochasticSoilModelTestFactory.CreatePipingStochasticSoilModelWithGeometry(new[] { stochasticSoilProfile2D, stochasticSoilProfile1D }); // Call PipingStochasticSoilModel transformed = transformer.Transform(soilModel); // Assert PipingStochasticSoilProfile[] transformedStochasticSoilProfiles = transformed.StochasticSoilProfiles.ToArray(); Assert.AreEqual(2, transformedStochasticSoilProfiles.Length); Assert.AreEqual(stochasticSoilProfile2D.Probability, transformedStochasticSoilProfiles[0].Probability, 1e-6); Assert.AreEqual(stochasticSoilProfile1D.Probability, transformedStochasticSoilProfiles[1].Probability, 1e-6); } private static void AssertPipingStochasticSoilProfiles(PipingStochasticSoilProfile[] expected, PipingStochasticSoilProfile[] actual) { Assert.AreEqual(expected.Length, actual.Length); for (var i = 0; i < expected.Length; i++) { AssertPipingStochasticSoilProfile(expected[i], actual[i]); } } private static void AssertPipingStochasticSoilProfile(PipingStochasticSoilProfile expected, PipingStochasticSoilProfile actual) { Assert.AreEqual(expected.Probability, actual.Probability); Assert.AreEqual(expected.SoilProfile, actual.SoilProfile); } private class TestSoilProfile : ISoilProfile { public string Name { get; } } private static IEnumerable GetInvalidFailureMechanismTypes() { return Enum.GetValues(typeof(FailureMechanismType)) .Cast() .Where(t => t != FailureMechanismType.Piping); } private static IEnumerable GetSupportedStochasticSoilProfilesWithInvalidProbabilities() { var invalidProbabilities = new[] { double.NaN, double.NegativeInfinity, double.PositiveInfinity, 1.1, -0.1, 5, -5 }; const long id = 1; const string name = "test"; foreach (double invalidProbability in invalidProbabilities) { yield return new TestCaseData(new StochasticSoilProfile(invalidProbability, new SoilProfile2D(id, name, new[] { SoilLayer2DTestFactory.CreateSoilLayer2D() }, Enumerable.Empty()) { IntersectionX = 1.0 })) .SetName($"2D Soil Profile - {invalidProbability}"); yield return new TestCaseData(new StochasticSoilProfile(invalidProbability, new SoilProfile1D(id, name, 1, new[] { SoilLayer1DTestFactory.CreateSoilLayer1DWithValidAquifer() }))) .SetName($"1D Soil Profile - {invalidProbability}"); } } private static IEnumerable GetValidConfiguredAndSupportedSoilProfiles() { var random = new Random(21); const long id = 1; const string name = "test"; yield return new TestCaseData(new SoilProfile2D(id, name, new[] { SoilLayer2DTestFactory.CreateSoilLayer2D() }, Enumerable.Empty()) { IntersectionX = random.NextDouble() + 1 }) .SetName("2D Profile"); yield return new TestCaseData(new SoilProfile1D(id, name, random.NextDouble(), new[] { SoilLayer1DTestFactory.CreateSoilLayer1DWithValidAquifer() })) .SetName("1D Profile"); } } }