// 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.IO;
using System.Linq;
using Core.Common.TestUtil;
using log4net.Core;
using NUnit.Framework;
using Rhino.Mocks;
using Ringtoets.Common.Data.Exceptions;
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Service.MessageProviders;
using Ringtoets.Common.Service.TestUtil;
using Ringtoets.HydraRing.Calculation.Calculator;
using Ringtoets.HydraRing.Calculation.Calculator.Factory;
using Ringtoets.HydraRing.Calculation.Data.Input;
using Ringtoets.HydraRing.Calculation.Data.Input.Hydraulics;
using Ringtoets.HydraRing.Calculation.Exceptions;
using Ringtoets.HydraRing.Calculation.TestUtil.Calculator;
using Ringtoets.HydraRing.Calculation.TestUtil.IllustrationPoints;
namespace Ringtoets.Common.Service.Test
{
[TestFixture]
public class DesignWaterLevelCalculationServiceTest
{
private static readonly string testDataPath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Service, "HydraRingCalculation");
private static readonly string validFilePath = Path.Combine(testDataPath, "HRD dutch coast south.sqlite");
private static readonly string validPreprocessorDirectory = TestHelper.GetScratchPadPath();
[Test]
public void Validate_ValidPaths_ReturnsTrue()
{
// Setup
var valid = false;
// Call
Action call = () => valid = DesignWaterLevelCalculationService.Validate(validFilePath, validPreprocessorDirectory);
// Assert
TestHelper.AssertLogMessages(call, messages =>
{
string[] msgs = messages.ToArray();
Assert.AreEqual(2, msgs.Length);
CalculationServiceTestHelper.AssertValidationStartMessage(msgs[0]);
CalculationServiceTestHelper.AssertValidationEndMessage(msgs[1]);
});
Assert.IsTrue(valid);
}
[Test]
public void Validate_InvalidHydraulicBoundaryDatabasePath_LogsErrorAndReturnsFalse()
{
// Setup
string notValidFilePath = Path.Combine(testDataPath, "notexisting.sqlite");
var valid = true;
// Call
Action call = () => valid = DesignWaterLevelCalculationService.Validate(notValidFilePath, validPreprocessorDirectory);
// Assert
TestHelper.AssertLogMessages(call, messages =>
{
string[] msgs = messages.ToArray();
Assert.AreEqual(3, msgs.Length);
CalculationServiceTestHelper.AssertValidationStartMessage(msgs[0]);
StringAssert.StartsWith("Herstellen van de verbinding met de hydraulische randvoorwaardendatabase is mislukt. Fout bij het lezen van bestand", msgs[1]);
CalculationServiceTestHelper.AssertValidationEndMessage(msgs[2]);
});
Assert.IsFalse(valid);
}
[Test]
public void Validate_ValidHydraulicBoundaryDatabaseWithoutSettings_LogsErrorAndReturnsFalse()
{
// Setup
string notValidFilePath = Path.Combine(testDataPath, "HRD nosettings.sqlite");
var valid = false;
// Call
Action call = () => valid = DesignWaterLevelCalculationService.Validate(notValidFilePath, validPreprocessorDirectory);
// Assert
TestHelper.AssertLogMessages(call, messages =>
{
string[] msgs = messages.ToArray();
Assert.AreEqual(3, msgs.Length);
CalculationServiceTestHelper.AssertValidationStartMessage(msgs[0]);
StringAssert.StartsWith("Herstellen van de verbinding met de hydraulische randvoorwaardendatabase is mislukt. Fout bij het lezen van bestand", msgs[1]);
CalculationServiceTestHelper.AssertValidationEndMessage(msgs[2]);
});
Assert.IsFalse(valid);
}
[Test]
public void Validate_InvalidPreprocessorDirectory_LogsErrorAndReturnsFalse()
{
// Setup
const string invalidPreprocessorDirectory = "NonExistingPreprocessorDirectory";
var valid = true;
// Call
Action call = () => valid = DesignWaterLevelCalculationService.Validate(validFilePath, invalidPreprocessorDirectory);
// Assert
TestHelper.AssertLogMessages(call, messages =>
{
string[] msgs = messages.ToArray();
Assert.AreEqual(3, msgs.Length);
CalculationServiceTestHelper.AssertValidationStartMessage(msgs[0]);
Assert.AreEqual("De bestandsmap waar de preprocessor bestanden opslaat is ongeldig. De bestandsmap bestaat niet.", msgs[1]);
CalculationServiceTestHelper.AssertValidationEndMessage(msgs[2]);
});
Assert.IsFalse(valid);
}
[Test]
public void Calculate_CalculationWrapperNull_ThrowArgumentNullException()
{
// Setup
var mockRepository = new MockRepository();
var calculationMessageProvider = mockRepository.Stub();
mockRepository.ReplayAll();
// Call
TestDelegate test = () => new DesignWaterLevelCalculationService().Calculate(null, string.Empty, string.Empty, 1, calculationMessageProvider);
// Assert
var exception = Assert.Throws(test);
Assert.AreEqual("calculationWrapper", exception.ParamName);
}
[Test]
[TestCase(true)]
[TestCase(false)]
public void Calculate_ValidDesignWaterLevelCalculationAndConverges_StartsCalculationWithRightParametersAndLogs(bool readIllustrationPoints)
{
// Setup
var calculator = new TestDesignWaterLevelCalculator
{
IllustrationPointsResult = new TestGeneralResult(),
Converged = true
};
var mockRepository = new MockRepository();
var calculatorFactory = mockRepository.StrictMock();
calculatorFactory.Expect(cf => cf.CreateDesignWaterLevelCalculator(testDataPath, validPreprocessorDirectory)).Return(calculator);
var calculationMessageProvider = mockRepository.StrictMock();
mockRepository.ReplayAll();
var location = new HydraulicBoundaryLocation(100, "punt_flw_ 1", 0.0, 0.0);
var calculation = new HydraulicBoundaryLocationCalculation
{
InputParameters =
{
ShouldIllustrationPointsBeCalculated = readIllustrationPoints
}
};
using (new HydraRingCalculatorFactoryConfig(calculatorFactory))
{
// Call
Action call = () => new DesignWaterLevelCalculationService().Calculate(new HydraulicBoundaryCalculationWrapper(location, calculation),
validFilePath,
validPreprocessorDirectory,
1.0 / 30,
calculationMessageProvider);
// Assert
TestHelper.AssertLogMessages(call, messages =>
{
string[] msgs = messages.ToArray();
Assert.AreEqual(3, msgs.Length);
CalculationServiceTestHelper.AssertCalculationStartMessage(msgs[0]);
Assert.AreEqual($"Toetspeil berekening is uitgevoerd op de tijdelijke locatie '{calculator.OutputDirectory}'. " +
"Gedetailleerde invoer en uitvoer kan in de bestanden op deze locatie worden gevonden.", msgs[1]);
CalculationServiceTestHelper.AssertCalculationEndMessage(msgs[2]);
});
AssessmentLevelCalculationInput expectedInput = CreateInput(100, 1.0 / 30);
AssertInput(expectedInput, calculator.ReceivedInputs.Single());
Assert.IsFalse(calculator.IsCanceled);
Assert.AreEqual(readIllustrationPoints, calculation.Output.HasGeneralResult);
}
mockRepository.VerifyAll();
}
[Test]
[TestCase(true)]
[TestCase(false)]
public void Calculate_ValidDesignWaterLevelCalculationWithPreprocessorDirectory_StartsCalculationWithRightParameters(bool usePreprocessor)
{
// Setup
string preprocessorDirectory = usePreprocessor
? validPreprocessorDirectory
: string.Empty;
var calculator = new TestDesignWaterLevelCalculator
{
IllustrationPointsResult = new TestGeneralResult(),
Converged = true
};
var mockRepository = new MockRepository();
var calculatorFactory = mockRepository.StrictMock();
calculatorFactory.Expect(cf => cf.CreateDesignWaterLevelCalculator(testDataPath, preprocessorDirectory)).Return(calculator);
var calculationMessageProvider = mockRepository.StrictMock();
mockRepository.ReplayAll();
var location = new HydraulicBoundaryLocation(100, "punt_flw_ 1", 0.0, 0.0);
var calculation = new HydraulicBoundaryLocationCalculation();
using (new HydraRingCalculatorFactoryConfig(calculatorFactory))
{
// Call
new DesignWaterLevelCalculationService().Calculate(new HydraulicBoundaryCalculationWrapper(location, calculation),
validFilePath,
preprocessorDirectory,
1.0 / 30,
calculationMessageProvider);
// Assert
Assert.AreEqual(usePreprocessor, calculator.ReceivedInputs.Single().PreprocessorSetting.RunPreprocessor);
}
mockRepository.VerifyAll();
}
[Test]
[TestCase(true)]
[TestCase(false)]
public void Calculate_ValidDesignWaterLevelCalculationAndDoesNotConverge_SetsOutputAndLogs(bool readIllustrationPoints)
{
// Setup
const double norm = 1.0 / 30;
var calculator = new TestDesignWaterLevelCalculator
{
IllustrationPointsResult = new TestGeneralResult(),
Converged = false
};
var mockRepository = new MockRepository();
var calculatorFactory = mockRepository.StrictMock();
calculatorFactory.Expect(cf => cf.CreateDesignWaterLevelCalculator(testDataPath, validPreprocessorDirectory)).Return(calculator);
const string failedConvergenceMessage = "Did not converge";
var calculationMessageProvider = mockRepository.StrictMock();
calculationMessageProvider.Expect(c => c.GetCalculatedNotConvergedMessage("punt_flw_ 1")).Return(failedConvergenceMessage);
mockRepository.ReplayAll();
var location = new HydraulicBoundaryLocation(100, "punt_flw_ 1", 0.0, 0.0);
var calculation = new HydraulicBoundaryLocationCalculation
{
InputParameters =
{
ShouldIllustrationPointsBeCalculated = readIllustrationPoints
}
};
using (new HydraRingCalculatorFactoryConfig(calculatorFactory))
{
// Call
Action call = () => new DesignWaterLevelCalculationService().Calculate(new HydraulicBoundaryCalculationWrapper(location, calculation),
validFilePath,
validPreprocessorDirectory,
norm,
calculationMessageProvider);
// Assert
TestHelper.AssertLogMessages(call, messages =>
{
string[] msgs = messages.ToArray();
Assert.AreEqual(4, msgs.Length);
CalculationServiceTestHelper.AssertCalculationStartMessage(msgs[0]);
Assert.AreEqual(failedConvergenceMessage, msgs[1]);
Assert.AreEqual($"Toetspeil berekening is uitgevoerd op de tijdelijke locatie '{calculator.OutputDirectory}'. " +
"Gedetailleerde invoer en uitvoer kan in de bestanden op deze locatie worden gevonden.", msgs[2]);
CalculationServiceTestHelper.AssertCalculationEndMessage(msgs[3]);
});
AssessmentLevelCalculationInput expectedInput = CreateInput(100, norm);
AssertInput(expectedInput, calculator.ReceivedInputs.Single());
Assert.IsFalse(calculator.IsCanceled);
Assert.IsNotNull(calculation.Output);
Assert.AreEqual(readIllustrationPoints, calculation.Output.HasGeneralResult);
}
mockRepository.VerifyAll();
}
[Test]
public void Calculate_ValidDesignWaterLevelCalculationButIllustrationPointResultsOfIncorrectType_IllustrationPointNotSetAndLog()
{
// Setup
var calculator = new TestDesignWaterLevelCalculator
{
IllustrationPointsResult = TestGeneralResult.CreateGeneralResultWithFaultTreeIllustrationPoints(),
Converged = true
};
var mockRepository = new MockRepository();
var calculatorFactory = mockRepository.StrictMock();
calculatorFactory.Expect(cf => cf.CreateDesignWaterLevelCalculator(testDataPath, validPreprocessorDirectory)).Return(calculator);
var calculationMessageProvider = mockRepository.StrictMock();
mockRepository.ReplayAll();
var location = new HydraulicBoundaryLocation(100, "punt_flw_ 1", 0.0, 0.0);
var calculation = new HydraulicBoundaryLocationCalculation
{
InputParameters =
{
ShouldIllustrationPointsBeCalculated = true
}
};
using (new HydraRingCalculatorFactoryConfig(calculatorFactory))
{
// Call
Action call = () => new DesignWaterLevelCalculationService().Calculate(new HydraulicBoundaryCalculationWrapper(location, calculation),
validFilePath,
validPreprocessorDirectory,
1.0 / 30,
calculationMessageProvider);
// Assert
TestHelper.AssertLogMessagesWithLevelAndLoggedExceptions(call, messages =>
{
Tuple[] tupleArray = messages.ToArray();
string[] msgs = tupleArray.Select(tuple => tuple.Item1).ToArray();
Assert.AreEqual(4, msgs.Length);
CalculationServiceTestHelper.AssertCalculationStartMessage(msgs[0]);
Assert.AreEqual("Het uitlezen van illustratiepunten is mislukt.", msgs[1]);
Assert.AreEqual($"Toetspeil berekening is uitgevoerd op de tijdelijke locatie '{calculator.OutputDirectory}'. " +
"Gedetailleerde invoer en uitvoer kan in de bestanden op deze locatie worden gevonden.", msgs[2]);
CalculationServiceTestHelper.AssertCalculationEndMessage(msgs[3]);
Assert.IsInstanceOf(tupleArray[1].Item3);
});
Assert.IsNotNull(calculation.Output);
Assert.IsFalse(calculation.Output.HasGeneralResult);
}
mockRepository.VerifyAll();
}
[Test]
public void Calculate_CalculationRanErrorInSettingIllustrationPoints_IllustrationPointsNotSetAndLogsWarning()
{
// Setup
var calculator = new TestDesignWaterLevelCalculator
{
IllustrationPointsResult = GeneralResultTestFactory.CreateGeneralResultWithDuplicateStochasts(),
Converged = true
};
var mockRepository = new MockRepository();
var calculatorFactory = mockRepository.StrictMock();
calculatorFactory.Expect(cf => cf.CreateDesignWaterLevelCalculator(testDataPath, validPreprocessorDirectory)).Return(calculator);
var calculationMessageProvider = mockRepository.StrictMock();
mockRepository.ReplayAll();
var location = new HydraulicBoundaryLocation(100, "punt_flw_ 1", 0.0, 0.0);
var calculation = new HydraulicBoundaryLocationCalculation
{
InputParameters =
{
ShouldIllustrationPointsBeCalculated = true
}
};
using (new HydraRingCalculatorFactoryConfig(calculatorFactory))
{
// Call
Action call = () => new DesignWaterLevelCalculationService().Calculate(new HydraulicBoundaryCalculationWrapper(location, calculation),
validFilePath,
validPreprocessorDirectory,
1.0 / 30,
calculationMessageProvider);
// Assert
TestHelper.AssertLogMessagesWithLevelAndLoggedExceptions(call, messages =>
{
Tuple[] tupleArray = messages.ToArray();
string[] msgs = tupleArray.Select(tuple => tuple.Item1).ToArray();
Assert.AreEqual(4, msgs.Length);
CalculationServiceTestHelper.AssertCalculationStartMessage(msgs[0]);
Assert.AreEqual("Fout bij het uitlezen van de illustratiepunten voor berekening punt_flw_ 1: " +
"Een of meerdere stochasten hebben dezelfde naam. " +
"Het uitlezen van illustratiepunten wordt overgeslagen.", msgs[1]);
Assert.AreEqual($"Toetspeil berekening is uitgevoerd op de tijdelijke locatie '{calculator.OutputDirectory}'. " +
"Gedetailleerde invoer en uitvoer kan in de bestanden op deze locatie worden gevonden.", msgs[2]);
CalculationServiceTestHelper.AssertCalculationEndMessage(msgs[3]);
});
Assert.IsNotNull(calculation.Output);
Assert.IsFalse(calculation.Output.HasGeneralResult);
}
mockRepository.VerifyAll();
}
[Test]
public void Calculate_ValidDesignWaterLevelCalculationThrowsException_ThrowsHydraRingFileParserException()
{
// Setup
var expectedException = new HydraRingFileParserException();
var mockRepository = new MockRepository();
var calculator = mockRepository.Stub();
calculator.Expect(c => c.Calculate(Arg.Is.TypeOf))
.Throw(expectedException);
calculator.Stub(c => c.LastErrorFileContent).Return(string.Empty);
calculator.Stub(c => c.OutputDirectory).Return(string.Empty);
var calculatorFactory = mockRepository.StrictMock();
calculatorFactory.Expect(cf => cf.CreateDesignWaterLevelCalculator(testDataPath, validPreprocessorDirectory)).Return(calculator);
var calculationMessageProvider = mockRepository.Stub();
calculationMessageProvider.Stub(mp => mp.GetCalculatedNotConvergedMessage("punt_flw_ 1")).Return(string.Empty);
mockRepository.ReplayAll();
var location = new HydraulicBoundaryLocation(100, "punt_flw_ 1", 0.0, 0.0);
var calculation = new HydraulicBoundaryLocationCalculation();
using (new HydraRingCalculatorFactoryConfig(calculatorFactory))
{
// Call
TestDelegate call = () => new DesignWaterLevelCalculationService()
.Calculate(new HydraulicBoundaryCalculationWrapper(location, calculation),
validFilePath,
validPreprocessorDirectory,
1.0 / 30,
calculationMessageProvider);
// Assert
var thrownException = Assert.Throws(call);
Assert.AreSame(expectedException, thrownException);
}
mockRepository.VerifyAll();
}
[Test]
public void Calculate_ValidDesignWaterLevelCalculationAndOutputButIllustrationPointsAreNull_IllustrationPointsNotSetAndLogs()
{
// Setup
const string parserErrorMessage = "Some Error Message";
var mockRepository = new MockRepository();
var calculator = new TestDesignWaterLevelCalculator
{
IllustrationPointsParserErrorMessage = parserErrorMessage,
Converged = true
};
var calculatorFactory = mockRepository.StrictMock();
calculatorFactory.Expect(cf => cf.CreateDesignWaterLevelCalculator(testDataPath, validPreprocessorDirectory)).Return(calculator);
var calculationMessageProvider = mockRepository.Stub();
mockRepository.ReplayAll();
var location = new HydraulicBoundaryLocation(100, "punt_flw_ 1", 0.0, 0.0);
var calculation = new HydraulicBoundaryLocationCalculation
{
InputParameters =
{
ShouldIllustrationPointsBeCalculated = true
}
};
using (new HydraRingCalculatorFactoryConfig(calculatorFactory))
{
// Call
Action call = () => new DesignWaterLevelCalculationService()
.Calculate(new HydraulicBoundaryCalculationWrapper(location, calculation),
validFilePath,
validPreprocessorDirectory,
1.0 / 30,
calculationMessageProvider);
// Assert
TestHelper.AssertLogMessages(call, messages =>
{
string[] msgs = messages.ToArray();
Assert.AreEqual(4, msgs.Length);
CalculationServiceTestHelper.AssertCalculationStartMessage(msgs[0]);
Assert.AreEqual(parserErrorMessage, msgs[1]);
Assert.AreEqual($"Toetspeil berekening is uitgevoerd op de tijdelijke locatie '{calculator.OutputDirectory}'. " +
"Gedetailleerde invoer en uitvoer kan in de bestanden op deze locatie worden gevonden.", msgs[2]);
CalculationServiceTestHelper.AssertCalculationEndMessage(msgs[3]);
});
Assert.IsFalse(calculation.Output.HasGeneralResult);
}
mockRepository.VerifyAll();
}
[Test]
public void Calculate_ValidDesignWaterLevelCalculationCalculateIllustrationPointsFalseAndIllustrationPointsParserErrorMessageNotNull_DoesNotLog()
{
// Setup
var mockRepository = new MockRepository();
var calculator = new TestDesignWaterLevelCalculator
{
IllustrationPointsParserErrorMessage = "Some Error Message",
Converged = true
};
var calculatorFactory = mockRepository.StrictMock();
calculatorFactory.Expect(cf => cf.CreateDesignWaterLevelCalculator(testDataPath, validPreprocessorDirectory)).Return(calculator);
var calculationMessageProvider = mockRepository.Stub();
mockRepository.ReplayAll();
var location = new HydraulicBoundaryLocation(100, "punt_flw_ 1", 0.0, 0.0);
var calculation = new HydraulicBoundaryLocationCalculation();
using (new HydraRingCalculatorFactoryConfig(calculatorFactory))
{
// Call
Action call = () => new DesignWaterLevelCalculationService()
.Calculate(new HydraulicBoundaryCalculationWrapper(location, calculation),
validFilePath,
validPreprocessorDirectory,
1.0 / 30,
calculationMessageProvider);
// Assert
TestHelper.AssertLogMessages(call, messages =>
{
string[] msgs = messages.ToArray();
Assert.AreEqual(3, msgs.Length);
CalculationServiceTestHelper.AssertCalculationStartMessage(msgs[0]);
Assert.AreEqual($"Toetspeil berekening is uitgevoerd op de tijdelijke locatie '{calculator.OutputDirectory}'. " +
"Gedetailleerde invoer en uitvoer kan in de bestanden op deze locatie worden gevonden.", msgs[1]);
CalculationServiceTestHelper.AssertCalculationEndMessage(msgs[2]);
});
}
mockRepository.VerifyAll();
}
[Test]
public void Calculate_CancelCalculationWithValidInput_CancelsCalculator()
{
// Setup
var calculator = new TestDesignWaterLevelCalculator();
var mockRepository = new MockRepository();
var calculatorFactory = mockRepository.StrictMock();
calculatorFactory.Expect(cf => cf.CreateDesignWaterLevelCalculator(testDataPath, validPreprocessorDirectory)).Return(calculator);
var calculationMessageProvider = mockRepository.Stub();
mockRepository.ReplayAll();
var location = new HydraulicBoundaryLocation(100, "punt_flw_ 1", 0.0, 0.0);
var calculation = new HydraulicBoundaryLocationCalculation();
const double norm = 1.0 / 30;
using (new HydraRingCalculatorFactoryConfig(calculatorFactory))
{
var service = new DesignWaterLevelCalculationService();
calculator.CalculationFinishedHandler += (s, e) => service.Cancel();
// Call
service.Calculate(new HydraulicBoundaryCalculationWrapper(location, calculation),
validFilePath,
validPreprocessorDirectory,
norm,
calculationMessageProvider);
// Assert
Assert.IsTrue(calculator.IsCanceled);
}
mockRepository.VerifyAll();
}
[Test]
[TestCaseSource(typeof(HydraRingCalculatorTestCaseProvider), nameof(HydraRingCalculatorTestCaseProvider.GetCalculatorFailingConditions), new object[]
{
nameof(Run_InvalidCalculation_LogsErrorAndThrowException)
})]
public void Run_InvalidCalculation_LogsErrorAndThrowException(bool endInFailure, string lastErrorFileContent)
{
// Setup
const string locationName = "punt_flw_ 1";
const string calculationFailedMessage = "calculationFailedMessage";
const double norm = 1.0 / 30;
var calculator = new TestDesignWaterLevelCalculator
{
LastErrorFileContent = lastErrorFileContent,
EndInFailure = endInFailure
};
var mockRepository = new MockRepository();
var calculatorFactory = mockRepository.StrictMock();
calculatorFactory.Expect(cf => cf.CreateDesignWaterLevelCalculator(testDataPath, validPreprocessorDirectory)).Return(calculator);
var calculationMessageProvider = mockRepository.Stub();
if (endInFailure && string.IsNullOrEmpty(lastErrorFileContent))
{
calculationMessageProvider.Expect(mp => mp.GetCalculationFailedMessage(locationName)).Return(calculationFailedMessage);
}
else
{
calculationMessageProvider.Expect(mp => mp.GetCalculationFailedWithErrorReportMessage(locationName,
endInFailure && string.IsNullOrEmpty(lastErrorFileContent)
? calculator.HydraRingCalculationException.Message
: lastErrorFileContent
)).Return(calculationFailedMessage);
}
mockRepository.ReplayAll();
var location = new HydraulicBoundaryLocation(100, locationName, 0.0, 0.0);
var calculation = new HydraulicBoundaryLocationCalculation();
using (new HydraRingCalculatorFactoryConfig(calculatorFactory))
{
HydraRingCalculationException exception = null;
// Call
Action call = () =>
{
try
{
new DesignWaterLevelCalculationService().Calculate(new HydraulicBoundaryCalculationWrapper(location, calculation),
validFilePath,
validPreprocessorDirectory,
norm,
calculationMessageProvider);
}
catch (HydraRingCalculationException e)
{
exception = e;
}
};
// Assert
TestHelper.AssertLogMessages(call, messages =>
{
string[] msgs = messages.ToArray();
Assert.AreEqual(4, msgs.Length);
CalculationServiceTestHelper.AssertCalculationStartMessage(msgs[0]);
Assert.AreEqual(calculationFailedMessage, msgs[1]);
Assert.AreEqual($"Toetspeil berekening is uitgevoerd op de tijdelijke locatie '{calculator.OutputDirectory}'. " +
"Gedetailleerde invoer en uitvoer kan in de bestanden op deze locatie worden gevonden.", msgs[2]);
CalculationServiceTestHelper.AssertCalculationEndMessage(msgs[3]);
});
Assert.IsInstanceOf(exception);
}
mockRepository.VerifyAll();
}
private static void AssertInput(AssessmentLevelCalculationInput expectedInput, HydraRingCalculationInput hydraRingCalculationInput)
{
Assert.AreEqual(expectedInput.Section.SectionId, hydraRingCalculationInput.Section.SectionId);
Assert.AreEqual(expectedInput.HydraulicBoundaryLocationId, hydraRingCalculationInput.HydraulicBoundaryLocationId);
Assert.AreEqual(expectedInput.Beta, hydraRingCalculationInput.Beta);
}
private static AssessmentLevelCalculationInput CreateInput(long hydraulicBoundaryLocationId, double norm)
{
return new AssessmentLevelCalculationInput(1, hydraulicBoundaryLocationId, norm);
}
}
}