// Copyright (C) Stichting Deltares 2024. All rights reserved. // // This file is part of the Dam Engine. // // The Dam Engine is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero 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 Affero General Public License for more details. // // You should have received a copy of the GNU Affero 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.Globalization; using System.IO; using System.Threading; using Deltares.DamEngine.Io.XmlOutput; using Deltares.DamEngine.TestHelpers; using NUnit.Framework; namespace Deltares.DamEngine.IntegrationTests.IntegrationTests; public class DesignCalculatorTests { [Test] [SetUICulture("en-US")] public void MessageWhenNoPipingSegmentsFound() { // Based on ".\data\DamEngineTestProjects\PipingVoorbeeld1\PipingVoorbeeld1.damx" // but without piping segments for piping // Set Analysis type to "No Adaption" // Set model to Piping Sellmeijer Revised (WBI) // Select first location (100) Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture; const string fileName = @"TestFiles\PipingVoorbeeld1_WtiSellmeijerRevisedNoPipingInputFile.xml"; string inputString = File.ReadAllText(fileName); Output output = GeneralHelper.RunAfterInputValidation(inputString, false); Assert.That(output.Results.CalculationMessages.Length, Is.EqualTo(1)); Assert.That(output.Results.CalculationResults, Is.EqualTo(null)); Assert.That(output.Results.CalculationMessages[0].Message1, Is.EqualTo("No segments with failure mechanism Piping present")); } [Test] [SetUICulture("nl-NL")] public void MessageWhenNoStabilityInsideSegmentsFound() { // Based on ".\data\DamEngineTestProjects\Larenstein_AaenMaas\Rechter Diezedijk.damx" // Set Analysis type to "No Adaption" // Select Failure mechanism Stability Inside // Select second location (101) Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture; const string fileName = @"TestFiles\Rechter Diezedijk_NoStabilityInsideInputFile.xml"; string inputString = File.ReadAllText(fileName); Output output = GeneralHelper.RunAfterInputValidation(inputString, false); Assert.That(output.Results.CalculationMessages.Length, Is.EqualTo(1)); Assert.That(output.Results.CalculationResults, Is.EqualTo(null)); Assert.That(output.Results.CalculationMessages[0].Message1, Is.EqualTo("Geen segmenten met faalmechanisme StabilityInside aanwezig")); } [Test, Category(Categories.Slow)] [SetUICulture("nl-NL")] public void TestValidInputXML() { // Based on DeltaDijkInputFile.xml (1D, UpliftVan, Design, No Adaption) as produced by DAM UI in debug mode Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture; const string fileName = @"TestFiles\DeltaDijkInputFile.xml"; string inputString = File.ReadAllText(fileName); Output output = GeneralHelper.RunAfterInputValidation(inputString); Assert.That(output.Results.CalculationMessages, Has.Length.EqualTo(653), "Number of messages found = " + output.Results.CalculationMessages.Length); } }