// 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.ComponentModel; using Core.Common.Base; using Core.Common.Base.Data; using Core.Common.Gui.PropertyBag; using Core.Common.TestUtil; using NUnit.Framework; using Rhino.Mocks; using Ringtoets.Common.Forms.ChangeHandlers; using Ringtoets.Common.Forms.PropertyClasses; using Ringtoets.Common.Forms.TestUtil; using Ringtoets.MacroStabilityInwards.Data; using Ringtoets.MacroStabilityInwards.Forms.PropertyClasses; namespace Ringtoets.MacroStabilityInwards.Forms.Test.PropertyClasses { [TestFixture] public class MacroStabilityInwardsWaterStressesPropertiesTest { private const int expectedWaterLevelRiverAveragePropertyIndex = 0; private const int expectedwaterLevelPolderPropertyIndex = 1; private const int expectedDrainagePropertyIndex = 2; private const int expectedMinimumLevelPhreaticLineAtDikeTopRiverPropertyIndex = 3; private const int expectedMinimumLevelPhreaticLineAtDikeTopPolderPropertyIndex = 4; private const int expecteOffsetPropertyIndex = 5; [Test] public void Constructor_ExpectedValues() { // Setup var mocks = new MockRepository(); var changeHandler = mocks.Stub(); mocks.ReplayAll(); var input = new MacroStabilityInwardsInput(new GeneralMacroStabilityInwardsInput()); // Call var properties = new MacroStabilityInwardsWaterStressesProperties(input, changeHandler); // Assert Assert.IsInstanceOf>(properties); Assert.AreSame(input, properties.Data); mocks.VerifyAll(); } [Test] public void Constructor_DataNull_ThrowsArgumentNullException() { // Setup var mocks = new MockRepository(); var changeHandler = mocks.Stub(); mocks.ReplayAll(); // Call TestDelegate call = () => new MacroStabilityInwardsWaterStressesProperties(null, changeHandler); // Assert var exception = Assert.Throws(call); Assert.AreEqual("data", exception.ParamName); mocks.VerifyAll(); } [Test] public void Constructor_HandlerNull_ThrowsArgumentNullException() { // Call TestDelegate call = () => new MacroStabilityInwardsWaterStressesProperties(new MacroStabilityInwardsInput(new GeneralMacroStabilityInwardsInput()), null); // Assert var exception = Assert.Throws(call); Assert.AreEqual("handler", exception.ParamName); } [Test] public void Constructor_ValidData_PropertiesHaveExpectedAttributesValues() { // Setup var mocks = new MockRepository(); var changeHandler = mocks.Stub(); mocks.ReplayAll(); var input = new MacroStabilityInwardsInput(new GeneralMacroStabilityInwardsInput()); // Call var properties = new MacroStabilityInwardsWaterStressesProperties(input, changeHandler); // Assert PropertyDescriptorCollection dynamicProperties = PropertiesTestHelper.GetAllVisiblePropertyDescriptors(properties); Assert.AreEqual(6, dynamicProperties.Count); const string waterStressesCategory = "Waterspanningen"; PropertyDescriptor waterLevelRiverAverageProperty = dynamicProperties[expectedWaterLevelRiverAveragePropertyIndex]; PropertiesTestHelper.AssertRequiredPropertyDescriptorProperties( waterLevelRiverAverageProperty, waterStressesCategory, "Gemiddeld hoog water (GHW) [m+NAP]", "Gemiddeld hoog water."); PropertyDescriptor waterLevelPolderProperty = dynamicProperties[expectedwaterLevelPolderPropertyIndex]; PropertiesTestHelper.AssertRequiredPropertyDescriptorProperties( waterLevelPolderProperty, waterStressesCategory, "Polderpeil [m+NAP]", "Het niveau van het oppervlaktewater binnen een beheersgebied."); PropertyDescriptor drainageProperty = dynamicProperties[expectedDrainagePropertyIndex]; Assert.AreEqual(typeof(ExpandableObjectConverter), drainageProperty.Converter.GetType()); PropertiesTestHelper.AssertRequiredPropertyDescriptorProperties( drainageProperty, waterStressesCategory, "Drainage", "Drainage constructie eigenschappen.", true); PropertyDescriptor minimumLevelPhreaticLineAtDikeTopRiverProperty = dynamicProperties[expectedMinimumLevelPhreaticLineAtDikeTopRiverPropertyIndex]; PropertiesTestHelper.AssertRequiredPropertyDescriptorProperties( minimumLevelPhreaticLineAtDikeTopRiverProperty, waterStressesCategory, "PL 1 initiele hoogte onder buitenkruin [m+NAP]", "Minimale hoogte van de freatische lijn onder kruin buitentalud."); PropertyDescriptor minimumLevelPhreaticLineAtDikeTopPolderProperty = dynamicProperties[expectedMinimumLevelPhreaticLineAtDikeTopPolderPropertyIndex]; PropertiesTestHelper.AssertRequiredPropertyDescriptorProperties( minimumLevelPhreaticLineAtDikeTopPolderProperty, waterStressesCategory, "PL 1 initiele hoogte onder binnenkruin [m+NAP]", "Minimale hoogte van de freatische lijn onder kruin binnentalud."); PropertyDescriptor offsetProperty = dynamicProperties[expecteOffsetPropertyIndex]; Assert.AreEqual(typeof(ExpandableObjectConverter), offsetProperty.Converter.GetType()); PropertiesTestHelper.AssertRequiredPropertyDescriptorProperties( offsetProperty, waterStressesCategory, "Offsets PL1", "Offsets PL1 eigenschappen.", true); mocks.VerifyAll(); } [Test] public void GetProperties_WithData_ReturnExpectedValues() { // Setup var mocks = new MockRepository(); var changeHandler = mocks.Stub(); mocks.ReplayAll(); var input = new MacroStabilityInwardsInput(new GeneralMacroStabilityInwardsInput()); // Call var properties = new MacroStabilityInwardsWaterStressesProperties(input, changeHandler); // Assert Assert.AreEqual(input.WaterLevelRiverAverage, properties.WaterLevelRiverAverage); Assert.AreEqual(input.WaterLevelPolder, properties.WaterLevelPolder); Assert.AreSame(input, properties.Drainage.Data); Assert.AreEqual(input.MinimumLevelPhreaticLineAtDikeTopRiver, properties.MinimumLevelPhreaticLineAtDikeTopRiver); Assert.AreEqual(input.MinimumLevelPhreaticLineAtDikeTopPolder, properties.MinimumLevelPhreaticLineAtDikeTopPolder); Assert.AreSame(input, properties.Offsets.Data); mocks.VerifyAll(); } [Test] public void GivenPropertiesWithData_WhenChangingProperties_ThenPropertiesSetOnInput() { // Given var calculationItem = new MacroStabilityInwardsCalculationScenario(new GeneralMacroStabilityInwardsInput()); MacroStabilityInwardsInput input = calculationItem.InputParameters; var handler = new ObservablePropertyChangeHandler(calculationItem, input); var properties = new MacroStabilityInwardsWaterStressesProperties(input, handler); var random = new Random(); double waterLevelRiverAverage = random.Next(); double waterLevelPolder = random.Next(); double minimumLevelPhreaticLineAtDikeTopRiver = random.Next(); double minimumLevelPhreaticLineAtDikeTopPolder = random.Next(); // When properties.WaterLevelRiverAverage = (RoundedDouble) waterLevelRiverAverage; properties.WaterLevelPolder = (RoundedDouble) waterLevelPolder; properties.MinimumLevelPhreaticLineAtDikeTopRiver = (RoundedDouble) minimumLevelPhreaticLineAtDikeTopRiver; properties.MinimumLevelPhreaticLineAtDikeTopPolder = (RoundedDouble) minimumLevelPhreaticLineAtDikeTopPolder; // Then Assert.AreEqual(waterLevelRiverAverage, input.WaterLevelRiverAverage.Value); Assert.AreEqual(waterLevelPolder, input.WaterLevelPolder.Value); Assert.AreEqual(minimumLevelPhreaticLineAtDikeTopRiver, input.MinimumLevelPhreaticLineAtDikeTopRiver.Value); Assert.AreEqual(minimumLevelPhreaticLineAtDikeTopPolder, input.MinimumLevelPhreaticLineAtDikeTopPolder.Value); } [Test] public void WaterLevelRiverAverage_SetValidValue_SetsValueAndUpdatesObservers() { // Setup var calculation = new MacroStabilityInwardsCalculationScenario(new GeneralMacroStabilityInwardsInput()); // Call & Assert SetPropertyAndVerifyNotifcationsForCalculation(properties => properties.WaterLevelRiverAverage = (RoundedDouble) 1, calculation); } [Test] public void WaterLevelPolder_SetValidValue_SetsValueAndUpdatesObservers() { // Setup var calculation = new MacroStabilityInwardsCalculationScenario(new GeneralMacroStabilityInwardsInput()); // Call & Assert SetPropertyAndVerifyNotifcationsForCalculation(properties => properties.WaterLevelPolder = (RoundedDouble) 1, calculation); } [Test] public void MinimumLevelPhreaticLineAtDikeTopRiver_SetValidValue_SetsValueAndUpdatesObservers() { // Setup var calculation = new MacroStabilityInwardsCalculationScenario(new GeneralMacroStabilityInwardsInput()); // Call & Assert SetPropertyAndVerifyNotifcationsForCalculation(properties => properties.MinimumLevelPhreaticLineAtDikeTopRiver = (RoundedDouble) 1, calculation); } [Test] public void MinimumLevelPhreaticLineAtDikeTopPolder_SetValidValue_SetsValueAndUpdatesObservers() { // Setup var calculation = new MacroStabilityInwardsCalculationScenario(new GeneralMacroStabilityInwardsInput()); // Call & Assert SetPropertyAndVerifyNotifcationsForCalculation(properties => properties.MinimumLevelPhreaticLineAtDikeTopPolder = (RoundedDouble) 1, calculation); } [Test] public void ToString_Always_ReturnEmptyString() { // Setup var mocks = new MockRepository(); var changeHandler = mocks.Stub(); mocks.ReplayAll(); var input = new MacroStabilityInwardsInput(new GeneralMacroStabilityInwardsInput()); var properties = new MacroStabilityInwardsWaterStressesProperties(input, changeHandler); // Call string toString = properties.ToString(); // Assert Assert.AreEqual(string.Empty, toString); } private static void SetPropertyAndVerifyNotifcationsForCalculation(Action setProperty, MacroStabilityInwardsCalculation calculation) { // Setup var mocks = new MockRepository(); var observable = mocks.StrictMock(); observable.Expect(o => o.NotifyObservers()); mocks.ReplayAll(); MacroStabilityInwardsInput input = calculation.InputParameters; var handler = new SetPropertyValueAfterConfirmationParameterTester(new[] { observable }); var properties = new MacroStabilityInwardsWaterStressesProperties(input, handler); // Call setProperty(properties); // Assert Assert.IsTrue(handler.Called); mocks.VerifyAll(); } } }