public void Convert_ResultNull_ThrowsArgumentNullException() { // Call TestDelegate call = () => MacroStabilityInwardsSlipPlaneUpliftVanConverter.Convert(null); // Assert var exception = Assert.Throws <ArgumentNullException>(call); Assert.AreEqual("result", exception.ParamName); }
public void Convert_WithResult_ReturnConvertedSlipPlaneUpliftVan() { // Setup UpliftVanGrid leftGrid = UpliftVanGridTestFactory.Create(); UpliftVanGrid rightGrid = UpliftVanGridTestFactory.Create(); double[] tangentLines = { 3, 2, 1.5 }; var result = new UpliftVanCalculationGridResult(leftGrid, rightGrid, tangentLines); // Call MacroStabilityInwardsSlipPlaneUpliftVan output = MacroStabilityInwardsSlipPlaneUpliftVanConverter.Convert(result); // Assert CollectionAssert.AreEqual(tangentLines, output.TangentLines.Select(tl => tl.Value), new DoubleWithToleranceComparer(1e-2)); AssertGrid(leftGrid, output.LeftGrid); AssertGrid(rightGrid, output.RightGrid); }
/// <summary> /// Performs a macro stability inwards calculation based on the supplied <see cref="MacroStabilityInwardsCalculation"/> /// and sets <see cref="MacroStabilityInwardsCalculation.Output"/> based on the result if the calculation was successful. /// Error and status information is logged during the execution of the operation. /// </summary> /// <param name="calculation">The <see cref="MacroStabilityInwardsCalculation"/> to base the input for the calculation upon.</param> /// <param name="generalInput">General calculation parameters that are the same across all calculations.</param> /// <param name="normativeAssessmentLevel">The normative assessment level to use in case the manual assessment level is not applicable.</param> /// <exception cref="ArgumentNullException">Thrown when any parameter is <c>null</c>.</exception> /// <exception cref="UpliftVanCalculatorException">Thrown when an error (both expected or unexpected) occurred during the calculation.</exception> /// <remarks>Consider calling <see cref="Validate"/> first to see if calculation is possible.</remarks> public static void Calculate(MacroStabilityInwardsCalculation calculation, GeneralMacroStabilityInwardsInput generalInput, RoundedDouble normativeAssessmentLevel) { if (calculation == null) { throw new ArgumentNullException(nameof(calculation)); } if (generalInput == null) { throw new ArgumentNullException(nameof(generalInput)); } UpliftVanCalculatorResult macroStabilityInwardsResult; CalculationServiceHelper.LogCalculationBegin(); try { IUpliftVanCalculator calculator = GetCalculator(calculation, generalInput, normativeAssessmentLevel); macroStabilityInwardsResult = calculator.Calculate(); } catch (UpliftVanCalculatorException e) { var stringBuilder = new StringBuilder(); stringBuilder.AppendLine(Resources.MacroStabilityInwardsCalculationService_Calculate_Kernel_provides_messages); foreach (MacroStabilityInwardsKernelMessage kernelMessage in e.KernelMessages) { stringBuilder.AppendLine(string.Format(Resources.MacroStabilityInwardsCalculationService_Calculate_LogMessageType_0_LogMessage_1, kernelMessage.Type, kernelMessage.Message)); } CalculationServiceHelper.LogExceptionAsError($"{RiskeerCommonServiceResources.CalculationService_Calculate_unexpected_error} {stringBuilder}", e); CalculationServiceHelper.LogCalculationEnd(); throw; } if (macroStabilityInwardsResult.CalculationMessages.Any(cm => cm.Type == MacroStabilityInwardsKernelMessageType.Error)) { CalculationServiceHelper.LogMessagesAsError(new[] { CreateAggregatedLogMessage(Resources.MacroStabilityInwardsCalculationService_Calculate_Errors_in_MacroStabilityInwards_calculation, macroStabilityInwardsResult) }); CalculationServiceHelper.LogCalculationEnd(); throw new UpliftVanCalculatorException(); } if (macroStabilityInwardsResult.CalculationMessages.Any()) { CalculationServiceHelper.LogMessagesAsWarning(new[] { CreateAggregatedLogMessage(Resources.MacroStabilityInwardsCalculationService_Calculate_Warnings_in_MacroStabilityInwards_calculation, macroStabilityInwardsResult) }); } calculation.Output = new MacroStabilityInwardsOutput( MacroStabilityInwardsSlidingCurveConverter.Convert(macroStabilityInwardsResult.SlidingCurveResult), MacroStabilityInwardsSlipPlaneUpliftVanConverter.Convert(macroStabilityInwardsResult.CalculationGridResult), new MacroStabilityInwardsOutput.ConstructionProperties { FactorOfStability = macroStabilityInwardsResult.FactorOfStability, ForbiddenZonesXEntryMin = macroStabilityInwardsResult.ForbiddenZonesXEntryMin, ForbiddenZonesXEntryMax = macroStabilityInwardsResult.ForbiddenZonesXEntryMax }); CalculationServiceHelper.LogCalculationEnd(); }