// 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.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.Data.Probabilistics; using Ringtoets.Common.Forms.PropertyClasses; namespace Ringtoets.Common.Forms.Test.PropertyClasses { [TestFixture] public class VariationCoefficientDistributionPropertiesBaseTest { [Test] public void Constructor_WithArguments_ExpectedValues() { // Setup var readOnlyFlags = VariationCoefficientDistributionPropertiesReadOnly.All; // Call var properties = new SimpleVariationCoefficientDistributionProperties(readOnlyFlags, null); // Assert Assert.IsInstanceOf>(properties); Assert.IsNull(properties.Data); } [Test] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.Mean)] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.CoefficientOfVariation)] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.None)] public void Constructor_NoObservableSetWhileChangesPossible_ThrowArgumentException( VariationCoefficientDistributionPropertiesReadOnly flags) { // Call TestDelegate call = () => new SimpleVariationCoefficientDistributionProperties(flags, null); // Assert TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, "Observable must be specified unless no property can be set."); } [Test] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.None, false, false)] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.Mean, true, false)] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.CoefficientOfVariation, false, true)] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.All, true, true)] public void DynamicReadOnlyValidationMethod_VariousReadOnlyCases_ExpectedValues( VariationCoefficientDistributionPropertiesReadOnly flags, bool expectMeanReadOnly, bool expectVariationCoefficientReadOnly) { // Setup var mocks = new MockRepository(); var observable = mocks.Stub(); mocks.ReplayAll(); var properties = new SimpleVariationCoefficientDistributionProperties(flags, observable); // Call bool isMeanReadonly = properties.DynamicReadOnlyValidationMethod("Mean"); bool isVariationCoefficientReadOnly = properties.DynamicReadOnlyValidationMethod("CoefficientOfVariation"); // Assert Assert.AreEqual(expectMeanReadOnly, isMeanReadonly); Assert.AreEqual(expectVariationCoefficientReadOnly, isVariationCoefficientReadOnly); mocks.VerifyAll(); } [Test] public void DynamicReadOnlyValidationMethod_AllOtherCases_ReturnFalse() { // Setup var properties = new SimpleVariationCoefficientDistributionProperties(VariationCoefficientDistributionPropertiesReadOnly.All, null); // Call bool isReadonly = properties.DynamicReadOnlyValidationMethod(null); // Assert Assert.IsFalse(isReadonly); } [Test] public void Data_SetNewDistribution_PropertiesReturnCorrectValues() { // Setup var mocks = new MockRepository(); var distribution = mocks.Stub(); distribution.Mean = new RoundedDouble(1, 2.3); distribution.CoefficientOfVariation = new RoundedDouble(4, 5.6789); mocks.ReplayAll(); var properties = new SimpleVariationCoefficientDistributionProperties(VariationCoefficientDistributionPropertiesReadOnly.All, null); // Call properties.Data = distribution; // Assert Assert.AreEqual(distribution.Mean, properties.Mean); Assert.AreEqual(distribution.CoefficientOfVariation, properties.CoefficientOfVariation); mocks.VerifyAll(); } [Test] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.Mean)] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.All)] public void Mean_SetValueWhileReadOnly_ThrowsInvalidOperationException( VariationCoefficientDistributionPropertiesReadOnly flags) { // Setup var mocks = new MockRepository(); var distribution = mocks.Stub(); var observable = mocks.Stub(); mocks.ReplayAll(); var properties = new SimpleVariationCoefficientDistributionProperties(flags, observable) { Data = distribution }; // Call TestDelegate call = () => properties.Mean = new RoundedDouble(1, 2.3); // Assert string message = Assert.Throws(call).Message; Assert.AreEqual("Mean is set to be read-only.", message); mocks.VerifyAll(); } [Test] public void Mean_SetValue_ValueChangedAndObservableNotifies() { // Setup var mocks = new MockRepository(); var distribution = mocks.Stub(); var observable = mocks.StrictMock(); observable.Expect(o => o.NotifyObservers()); mocks.ReplayAll(); var properties = new SimpleVariationCoefficientDistributionProperties( VariationCoefficientDistributionPropertiesReadOnly.None, observable) { Data = distribution }; var newMeanValue = new RoundedDouble(1, 2.3); // Call properties.Mean = newMeanValue; // Assert Assert.AreEqual(newMeanValue, distribution.Mean); mocks.VerifyAll(); } [Test] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.CoefficientOfVariation)] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.All)] public void CoefficientOfVariation_SetValueWhileReadOnly_ThrowsInvalidOperationException( VariationCoefficientDistributionPropertiesReadOnly flags) { // Setup var mocks = new MockRepository(); var distribution = mocks.Stub(); var observable = mocks.Stub(); mocks.ReplayAll(); var properties = new SimpleVariationCoefficientDistributionProperties(flags, observable) { Data = distribution }; // Call TestDelegate call = () => properties.CoefficientOfVariation = new RoundedDouble(1, 2.3); // Assert string message = Assert.Throws(call).Message; Assert.AreEqual("CoefficientOfVariation is set to be read-only.", message); mocks.VerifyAll(); } [Test] public void CoefficientOfVariation_SetValue_ValueChangedAndObservableNotifies() { // Setup var mocks = new MockRepository(); var distribution = mocks.Stub(); var observable = mocks.StrictMock(); observable.Expect(o => o.NotifyObservers()); mocks.ReplayAll(); var properties = new SimpleVariationCoefficientDistributionProperties( VariationCoefficientDistributionPropertiesReadOnly.None, observable) { Data = distribution }; var newVariationValue = new RoundedDouble(1, 2.3); // Call properties.CoefficientOfVariation = newVariationValue; // Assert Assert.AreEqual(newVariationValue, distribution.CoefficientOfVariation); mocks.VerifyAll(); } [Test] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.All, true, true)] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.Mean, true, false)] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.None, false, false)] [TestCase(VariationCoefficientDistributionPropertiesReadOnly.CoefficientOfVariation, false, true)] public void PropertyAttributes_VariousReadOnlyScenarios_ReturnExpectedValues( VariationCoefficientDistributionPropertiesReadOnly flags, bool expectMeanReadOnly, bool expectVariationCoefficientReadOnly) { // Setup var mocks = new MockRepository(); var observable = mocks.Stub(); var distribution = mocks.Stub(); mocks.ReplayAll(); // Call var properties = new SimpleVariationCoefficientDistributionProperties(flags, observable) { Data = distribution }; // Assert PropertyDescriptorCollection dynamicProperties = PropertiesTestHelper.GetAllVisiblePropertyDescriptors(properties); Assert.AreEqual(3, dynamicProperties.Count); PropertyDescriptor distributionTypeProperty = dynamicProperties[0]; PropertiesTestHelper.AssertRequiredPropertyDescriptorProperties(distributionTypeProperty, "Misc", "Type verdeling", "Het soort kansverdeling waarin deze parameter gedefinieerd wordt.", true); PropertyDescriptor meanProperty = dynamicProperties[1]; PropertiesTestHelper.AssertRequiredPropertyDescriptorProperties(meanProperty, "Misc", "Verwachtingswaarde", "", expectMeanReadOnly); PropertyDescriptor standardDeviationProperty = dynamicProperties[2]; PropertiesTestHelper.AssertRequiredPropertyDescriptorProperties(standardDeviationProperty, "Misc", "Variatiecoëfficiënt", "", expectVariationCoefficientReadOnly); mocks.VerifyAll(); } [Test] public void ToString_DataIsNull_ReturnEmptyString() { // Setup var properties = new SimpleVariationCoefficientDistributionProperties(VariationCoefficientDistributionPropertiesReadOnly.All, null); // Precondition Assert.IsNull(properties.Data); // Call string text = properties.ToString(); // Assert Assert.AreEqual(string.Empty, text); } [Test] [SetCulture("en-US")] public void ToString_DataSet_ReturnValuesDescriptionText() { // Setup var mocks = new MockRepository(); var distribution = mocks.Stub(); distribution.Mean = new RoundedDouble(2, 1.23); distribution.CoefficientOfVariation = new RoundedDouble(2, 4.56); mocks.ReplayAll(); var properties = new SimpleVariationCoefficientDistributionProperties(VariationCoefficientDistributionPropertiesReadOnly.All, null) { Data = distribution }; // Precondition Assert.IsNotNull(properties.Data); // Call string text = properties.ToString(); // Assert Assert.AreEqual("1.23 (Variatiecoëfficiënt = 4.56)", text); mocks.VerifyAll(); } private class SimpleVariationCoefficientDistributionProperties : VariationCoefficientDistributionPropertiesBase { public SimpleVariationCoefficientDistributionProperties(VariationCoefficientDistributionPropertiesReadOnly propertiesReadOnly, IObservable observable) : base(propertiesReadOnly, observable) {} public override string DistributionType { get { return "A"; } } } } }