// 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 NUnit.Framework; using Ringtoets.Common.Data.Hydraulics; using Ringtoets.Common.Data.TestUtil; using Ringtoets.Revetment.Data; using Ringtoets.Revetment.Data.TestUtil; using Ringtoets.Revetment.IO.WaveConditions; namespace Ringtoets.Revetment.IO.Test.WaveConditions { [TestFixture] public class ExportableWaveConditionsTest { private readonly WaveConditionsOutput waveConditionsOutput = new TestWaveConditionsOutput(); [Test] public void Constructor_NameNull_ThrowsArgumentNullException() { // Call TestDelegate call = () => new ExportableWaveConditions(null, CreateValidWaveConditionsInput(), waveConditionsOutput, CoverType.StoneCoverColumns); // Assert var exception = Assert.Throws(call); Assert.AreEqual("name", exception.ParamName); } [Test] public void Constructor_WaveConditionsInputNull_ThrowsArgumentNullException() { // Call TestDelegate call = () => new ExportableWaveConditions("aName", null, waveConditionsOutput, CoverType.StoneCoverColumns); // Assert var exception = Assert.Throws(call); Assert.AreEqual("waveConditionsInput", exception.ParamName); } [Test] public void Constructor_WaveConditionsOutputNull_ThrowsArgumentNullException() { // Call TestDelegate call = () => new ExportableWaveConditions("aName", CreateValidWaveConditionsInput(), null, CoverType.StoneCoverColumns); // Assert var exception = Assert.Throws(call); Assert.AreEqual("waveConditionsOutput", exception.ParamName); } [Test] public void Constructor_WaveConditionsInputHydraulicBoundaryLocationNull_ThrowsArgumentException() { // Call TestDelegate call = () => new ExportableWaveConditions("aName", new WaveConditionsInput(), waveConditionsOutput, CoverType.StoneCoverColumns); // Assert var exception = Assert.Throws(call); StringAssert.StartsWith("HydraulicBoundaryLocation is null.", exception.Message); Assert.AreEqual("waveConditionsInput", exception.ParamName); } [Test] [Combinatorial] public void Constructor_ValidDataWithoutForeshore_ExpectedValues( [Values(true, false)] bool useBreakWater, [Values(true, false)] bool useForeshore) { // Setup WaveConditionsInput waveConditionsInput = CreateValidWaveConditionsInput(); waveConditionsInput.UseBreakWater = useBreakWater; waveConditionsInput.UseForeshore = useForeshore; // Call var exportableWaveConditions = new ExportableWaveConditions("ewcName", waveConditionsInput, waveConditionsOutput, CoverType.StoneCoverColumns); // Assert Assert.AreEqual("ewcName", exportableWaveConditions.CalculationName); Assert.AreEqual("hblName", exportableWaveConditions.LocationName); Assert.AreEqual(1.0, exportableWaveConditions.LocationXCoordinate); Assert.AreEqual(8.0, exportableWaveConditions.LocationYCoordinate); Assert.AreEqual(null, exportableWaveConditions.ForeshoreId); Assert.AreEqual(useBreakWater, exportableWaveConditions.UseBreakWater); Assert.AreEqual(useForeshore, exportableWaveConditions.UseForeshore); Assert.AreEqual(CoverType.StoneCoverColumns, exportableWaveConditions.CoverType); Assert.AreEqual(2, exportableWaveConditions.WaterLevel.NumberOfDecimalPlaces); Assert.AreEqual(2, exportableWaveConditions.WaveHeight.NumberOfDecimalPlaces); Assert.AreEqual(2, exportableWaveConditions.WavePeriod.NumberOfDecimalPlaces); Assert.AreEqual(2, exportableWaveConditions.WaveAngle.NumberOfDecimalPlaces); Assert.AreEqual(waveConditionsOutput.WaterLevel, exportableWaveConditions.WaterLevel); Assert.AreEqual(waveConditionsOutput.WaveHeight, exportableWaveConditions.WaveHeight); Assert.AreEqual(waveConditionsOutput.WavePeakPeriod, exportableWaveConditions.WavePeriod); Assert.AreEqual(waveConditionsOutput.WaveAngle, exportableWaveConditions.WaveAngle); Assert.AreEqual(waveConditionsOutput.WaveDirection, exportableWaveConditions.WaveDirection); } [Test] [Combinatorial] public void Constructor_ValidDataWithForeshore_ExpectedValues( [Values(true, false)] bool useBreakWater, [Values(true, false)] bool useForeshore) { // Setup WaveConditionsInput waveConditionsInput = CreateValidWaveConditionsInput(); waveConditionsInput.ForeshoreProfile = new TestForeshoreProfile("profile"); waveConditionsInput.UseBreakWater = useBreakWater; waveConditionsInput.UseForeshore = useForeshore; // Call var exportableWaveConditions = new ExportableWaveConditions("ewcName", waveConditionsInput, waveConditionsOutput, CoverType.StoneCoverColumns); // Assert Assert.AreEqual("ewcName", exportableWaveConditions.CalculationName); Assert.AreEqual("hblName", exportableWaveConditions.LocationName); Assert.AreEqual(1.0, exportableWaveConditions.LocationXCoordinate); Assert.AreEqual(8.0, exportableWaveConditions.LocationYCoordinate); Assert.AreEqual("profile", exportableWaveConditions.ForeshoreId); Assert.AreEqual(useBreakWater, exportableWaveConditions.UseBreakWater); Assert.AreEqual(useForeshore, exportableWaveConditions.UseForeshore); Assert.AreEqual(CoverType.StoneCoverColumns, exportableWaveConditions.CoverType); Assert.AreEqual(2, exportableWaveConditions.WaterLevel.NumberOfDecimalPlaces); Assert.AreEqual(2, exportableWaveConditions.WaveHeight.NumberOfDecimalPlaces); Assert.AreEqual(2, exportableWaveConditions.WavePeriod.NumberOfDecimalPlaces); Assert.AreEqual(2, exportableWaveConditions.WaveAngle.NumberOfDecimalPlaces); Assert.AreEqual(waveConditionsOutput.WaterLevel, exportableWaveConditions.WaterLevel); Assert.AreEqual(waveConditionsOutput.WaveHeight, exportableWaveConditions.WaveHeight); Assert.AreEqual(waveConditionsOutput.WavePeakPeriod, exportableWaveConditions.WavePeriod); Assert.AreEqual(waveConditionsOutput.WaveAngle, exportableWaveConditions.WaveAngle); Assert.AreEqual(waveConditionsOutput.WaveDirection, exportableWaveConditions.WaveDirection); } private static WaveConditionsInput CreateValidWaveConditionsInput() { return new WaveConditionsInput { HydraulicBoundaryLocation = new HydraulicBoundaryLocation(0, "hblName", 1.0, 8.0) }; } } }