// 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.Linq; using Core.Common.Base; using Core.Common.Base.Data; using Core.Common.Base.Service; using Core.Common.TestUtil; using log4net.Core; using NUnit.Framework; using Rhino.Mocks; using Ringtoets.Common.Service.TestUtil; using Ringtoets.Piping.Data; using Ringtoets.Piping.Data.TestUtil; namespace Ringtoets.Piping.Service.Test { [TestFixture] public class PipingCalculationActivityTest { [Test] public void ParameteredConstructor_ExpectedValues() { // Setup var calculation = new PipingCalculation(new GeneralPipingInput()); // Call var activity = new PipingCalculationActivity(calculation, RoundedDouble.NaN, new PipingProbabilityAssessmentInput(), int.MinValue, double.NaN); // Assert Assert.IsInstanceOf(activity); Assert.AreEqual($"Uitvoeren van berekening '{calculation.Name}'", activity.Description); Assert.IsNull(activity.ProgressText); Assert.AreEqual(ActivityState.None, activity.State); } [Test] public void ParameteredConstructor_CalculationNull_ThrowsArgumentNullException() { // Call TestDelegate call = () => new PipingCalculationActivity(null, RoundedDouble.NaN, new PipingProbabilityAssessmentInput(), int.MinValue, double.NaN); // Assert var exception = Assert.Throws(call); Assert.AreEqual("calculation", exception.ParamName); } [Test] public void ParameteredConstructor_PipingProbabilityAssessmentInputNull_ThrowsArgumentNullException() { // Setup var calculation = new PipingCalculation(new GeneralPipingInput()); // Call TestDelegate call = () => new PipingCalculationActivity(calculation, RoundedDouble.NaN, null, int.MinValue, double.NaN); // Assert var exception = Assert.Throws(call); Assert.AreEqual("pipingProbabilityAssessmentInput", exception.ParamName); } [Test] public void Run_InvalidPipingCalculationWithOutput_LogValidationStartAndEndWithErrors() { // Setup var originalOutput = new TestPipingOutput(); PipingCalculationScenario invalidPipingCalculation = PipingCalculationScenarioFactory.CreatePipingCalculationScenarioWithInvalidInput(); invalidPipingCalculation.Output = originalOutput; var activity = new PipingCalculationActivity(invalidPipingCalculation, GetCalculatedTestAssessmentLevel(), new PipingProbabilityAssessmentInput(), int.MinValue, double.NaN); // Call Action call = () => activity.Run(); // Assert TestHelper.AssertLogMessagesWithLevelAndLoggedExceptions(call, messages => { Tuple[] tupleArray = messages.ToArray(); string[] msgs = tupleArray.Select(tuple => tuple.Item1).ToArray(); Assert.AreEqual(8, msgs.Length); Assert.AreEqual($"Uitvoeren van berekening '{invalidPipingCalculation.Name}' is gestart.", msgs[0]); CalculationServiceTestHelper.AssertValidationStartMessage(msgs[1]); Assert.AreEqual(Level.Error, tupleArray[2].Item2); Assert.AreEqual(Level.Error, tupleArray[3].Item2); Assert.AreEqual(Level.Error, tupleArray[4].Item2); Assert.AreEqual(Level.Error, tupleArray[5].Item2); Assert.AreEqual(Level.Error, tupleArray[6].Item2); CalculationServiceTestHelper.AssertValidationEndMessage(msgs[7]); }); Assert.AreEqual(ActivityState.Failed, activity.State); Assert.AreSame(originalOutput, invalidPipingCalculation.Output); } [Test] public void Run_ValidPipingCalculation_PerformPipingValidationAndCalculationAndLogStartAndEnd() { // Setup PipingCalculationScenario validPipingCalculation = PipingCalculationScenarioFactory.CreatePipingCalculationScenarioWithValidInput(); validPipingCalculation.Output = null; double norm = new Random(21).NextDouble(); var activity = new PipingCalculationActivity(validPipingCalculation, GetCalculatedTestAssessmentLevel(), new PipingProbabilityAssessmentInput(), norm, double.NaN); activity.Run(); // Call Action call = () => activity.Run(); // Assert TestHelper.AssertLogMessages(call, messages => { string[] msgs = messages.ToArray(); Assert.AreEqual(5, msgs.Length); Assert.AreEqual($"Uitvoeren van berekening '{validPipingCalculation.Name}' is gestart.", msgs[0]); CalculationServiceTestHelper.AssertValidationStartMessage(msgs[1]); CalculationServiceTestHelper.AssertValidationEndMessage(msgs[2]); CalculationServiceTestHelper.AssertCalculationStartMessage(msgs[3]); CalculationServiceTestHelper.AssertCalculationEndMessage(msgs[4]); }); Assert.AreEqual(ActivityState.Executed, activity.State); Assert.IsNotNull(validPipingCalculation.Output); } [Test] public void Finish_ValidPipingCalculationAndRan_NotifyObserversOfPipingCalculation() { // Setup var mocks = new MockRepository(); var observer = mocks.StrictMock(); observer.Expect(o => o.UpdateObserver()); mocks.ReplayAll(); PipingCalculationScenario validPipingCalculation = PipingCalculationScenarioFactory.CreatePipingCalculationScenarioWithValidInput(); validPipingCalculation.Output = null; validPipingCalculation.Attach(observer); var activity = new PipingCalculationActivity(validPipingCalculation, GetCalculatedTestAssessmentLevel(), new PipingProbabilityAssessmentInput(), int.MinValue, double.NaN); activity.Run(); // Call activity.Finish(); // Assert mocks.VerifyAll(); } private static RoundedDouble GetCalculatedTestAssessmentLevel() { return (RoundedDouble) 1.1; } } }