// 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.Collections.Generic; using System.Drawing; using System.Linq; using System.Windows.Forms; using Core.Common.Base; using Core.Common.Controls.TreeView; using Core.Common.Gui; using Core.Common.Gui.Commands; using Core.Common.Gui.ContextMenu; using Core.Common.TestUtil; using NUnit.Framework; using Rhino.Mocks; using Ringtoets.Common.Data; using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.Common.Data.Calculation; using Ringtoets.Common.Data.DikeProfiles; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; using Ringtoets.Common.Forms.PresentationObjects; using Ringtoets.Common.Forms.TreeNodeInfos; using RingtoetsFormsResources = Ringtoets.Common.Forms.Properties.Resources; namespace Ringtoets.Common.Forms.Test.TreeNodeInfos { [TestFixture] public class RingtoetsContextMenuBuilderTest { [Test] public void AddCreateCalculationGroupItem_WhenBuild_ItemAddedToContextMenu() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var calculationGroup = new CalculationGroup(); var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculationGroup, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddCreateCalculationGroupItem(calculationGroup).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "&Map toevoegen", "Voeg een nieuwe berekeningsmap toe aan deze berekeningsmap.", RingtoetsFormsResources.AddFolderIcon); } mocks.VerifyAll(); } [Test] public void AddCreateCalculationItem_WhenBuild_ItemAddedToContextMenu() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var failureMechanism = mocks.StrictMock(); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var calculationGroup = new CalculationGroup(); var calculationGroupContext = new TestCalculationGroupContext(calculationGroup, failureMechanism); var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculationGroup, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddCreateCalculationItem(calculationGroupContext, context => {}).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Berekening &toevoegen", "Voeg een nieuwe berekening toe aan deze berekeningsmap.", RingtoetsFormsResources.FailureMechanismIcon); } mocks.VerifyAll(); } [Test] public void AddClearAllCalculationOutputInGroupItem_WhenBuildWithCalculationOutput_ItemAddedToContextMenuEnabled() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var calculationWithOutput = mocks.StrictMock(); calculationWithOutput.Expect(c => c.HasOutput).Return(true); mocks.ReplayAll(); var calculationGroup = new CalculationGroup { Children = { calculationWithOutput } }; using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculationGroup, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddClearAllCalculationOutputInGroupItem(calculationGroup).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "&Wis alle uitvoer...", "Wis de uitvoer van alle berekeningen binnen deze berekeningsmap.", RingtoetsFormsResources.ClearIcon); } mocks.VerifyAll(); } [Test] public void AddClearAllCalculationOutputInGroupItem_WhenBuildWithoutCalculationOutput_ItemAddedToContextMenuDisabled() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); mocks.ReplayAll(); var calculationGroup = new CalculationGroup(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculationGroup, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddClearAllCalculationOutputInGroupItem(calculationGroup).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "&Wis alle uitvoer...", "Er zijn geen berekeningen met uitvoer om te wissen.", RingtoetsFormsResources.ClearIcon, false); } mocks.VerifyAll(); } [Test] public void AddClearAllCalculationOutputInFailureMechanismItem_WhenBuildWithCalculationOutput_ItemAddedToContextMenuEnabled() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var calculationWithOutput = mocks.StrictMock(); calculationWithOutput.Expect(c => c.HasOutput).Return(true); var failureMechanism = mocks.StrictMock(); failureMechanism.Expect(fm => fm.Calculations).Return(new[] { calculationWithOutput }); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, failureMechanism, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddClearAllCalculationOutputInFailureMechanismItem(failureMechanism).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "&Wis alle uitvoer...", "Wis de uitvoer van alle berekeningen binnen dit toetsspoor.", RingtoetsFormsResources.ClearIcon); } mocks.VerifyAll(); } [Test] public void AddClearAllCalculationOutputInFailureMechanismItem_WhenBuildWithoutCalculationOutput_ItemAddedToContextMenuDisabled() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var failureMechanism = mocks.Stub(); failureMechanism.Stub(fm => fm.Calculations).Return(new List()); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, failureMechanism, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddClearAllCalculationOutputInFailureMechanismItem(failureMechanism).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "&Wis alle uitvoer...", "Er zijn geen berekeningen met uitvoer om te wissen.", RingtoetsFormsResources.ClearIcon, false); } mocks.VerifyAll(); } [Test] [TestCase(true)] [TestCase(false)] public void AddToggleRelevancyOfFailureMechanismItem_WhenBuild_ItemAddedToContextMenuEnabled(bool isRelevant) { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var failureMechanism = mocks.StrictMock(); failureMechanism.Expect(fm => fm.IsRelevant).Return(isRelevant); var failureMechanismContext = mocks.StrictMock>(); failureMechanismContext.Expect(fmc => fmc.WrappedData).Return(failureMechanism); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, failureMechanism, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddToggleRelevancyOfFailureMechanismItem(failureMechanismContext, null).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); Bitmap checkboxIcon = isRelevant ? RingtoetsFormsResources.Checkbox_ticked : RingtoetsFormsResources.Checkbox_empty; TestHelper.AssertContextMenuStripContainsItem(result, 0, "I&s relevant", "Geeft aan of dit toetsspoor relevant is of niet.", checkboxIcon); } mocks.VerifyAll(); } [Test] public void AddClearCalculationOutputItem_WhenBuildWithCalculationWithOutput_ItemAddedToContextMenuEnabled() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var calculationWithOutput = mocks.StrictMock(); calculationWithOutput.Expect(c => c.HasOutput).Return(true); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculationWithOutput, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddClearCalculationOutputItem(calculationWithOutput).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "&Wis uitvoer...", "Wis de uitvoer van deze berekening.", RingtoetsFormsResources.ClearIcon); } mocks.VerifyAll(); } [Test] public void AddClearCalculationOutputItem_WhenBuildWithCalculationWithoutOutput_ItemAddedToContextMenuDisabled() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var calculationWithoutOutput = mocks.StrictMock(); calculationWithoutOutput.Expect(c => c.HasOutput).Return(false); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculationWithoutOutput, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddClearCalculationOutputItem(calculationWithoutOutput).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "&Wis uitvoer...", "Deze berekening heeft geen uitvoer om te wissen.", RingtoetsFormsResources.ClearIcon, false); } mocks.VerifyAll(); } [Test] public void AddRenameItem_ContextMenuBuilder_CorrectlyDecorated() { // Setup var mocks = new MockRepository(); var contextMenuBuilder = mocks.StrictMock(); contextMenuBuilder.Expect(cmb => cmb.AddRenameItem()); mocks.ReplayAll(); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ringtoetsContextMenuBuilder.AddRenameItem(); // Assert mocks.VerifyAll(); } [Test] public void AddDeleteItem_ContextMenuBuilder_CorrectlyDecorated() { // Setup var mocks = new MockRepository(); var contextMenuBuilder = mocks.StrictMock(); contextMenuBuilder.Expect(cmb => cmb.AddDeleteItem()); mocks.ReplayAll(); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ringtoetsContextMenuBuilder.AddDeleteItem(); // Assert mocks.VerifyAll(); } [Test] public void AddExpandAllItem_ContextMenuBuilder_CorrectlyDecorated() { // Setup var mocks = new MockRepository(); var contextMenuBuilder = mocks.StrictMock(); contextMenuBuilder.Expect(cmb => cmb.AddExpandAllItem()); mocks.ReplayAll(); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ringtoetsContextMenuBuilder.AddExpandAllItem(); // Assert mocks.VerifyAll(); } [Test] public void AddCollapseAllItem_ContextMenuBuilder_CorrectlyDecorated() { // Setup var mocks = new MockRepository(); var menuBuilderMock = mocks.StrictMock(); menuBuilderMock.Expect(cmb => cmb.AddCollapseAllItem()); mocks.ReplayAll(); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(menuBuilderMock); // Call ringtoetsContextMenuBuilder.AddCollapseAllItem(); // Assert mocks.VerifyAll(); } [Test] public void AddOpenItem_ContextMenuBuilder_CorrectlyDecorated() { // Setup var mocks = new MockRepository(); var contextMenuBuilder = mocks.StrictMock(); contextMenuBuilder.Expect(cmb => cmb.AddOpenItem()); mocks.ReplayAll(); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ringtoetsContextMenuBuilder.AddOpenItem(); // Assert mocks.VerifyAll(); } [Test] public void AddExportItem_ContextMenuBuilder_CorrectlyDecorated() { // Setup var mocks = new MockRepository(); var contextMenuBuilder = mocks.StrictMock(); contextMenuBuilder.Expect(cmb => cmb.AddExportItem()); mocks.ReplayAll(); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ringtoetsContextMenuBuilder.AddExportItem(); // Assert mocks.VerifyAll(); } [Test] public void AddImportItem_ContextMenuBuilder_CorrectlyDecorated() { // Setup var mocks = new MockRepository(); var contextMenuBuilder = mocks.StrictMock(); contextMenuBuilder.Expect(cmb => cmb.AddImportItem()); mocks.ReplayAll(); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ringtoetsContextMenuBuilder.AddImportItem(); // Assert mocks.VerifyAll(); } [Test] public void AddPropertiesItem_ContextMenuBuilder_CorrectlyDecorated() { // Setup var mocks = new MockRepository(); var contextMenuBuilder = mocks.StrictMock(); contextMenuBuilder.Expect(cmb => cmb.AddPropertiesItem()); mocks.ReplayAll(); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ringtoetsContextMenuBuilder.AddPropertiesItem(); // Assert mocks.VerifyAll(); } [Test] public void AddSeparator_ContextMenuBuilder_CorrectlyDecorated() { // Setup var mocks = new MockRepository(); var contextMenuBuilder = mocks.StrictMock(); contextMenuBuilder.Expect(cmb => cmb.AddSeparator()); mocks.ReplayAll(); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ringtoetsContextMenuBuilder.AddSeparator(); // Assert mocks.VerifyAll(); } [Test] public void AddCustomItem_ContextMenuBuilder_CorrectlyDecorated() { // Setup var mocks = new MockRepository(); var contextMenuItem = mocks.StrictMock(); var contextMenuBuilder = mocks.StrictMock(); contextMenuBuilder.Expect(cmb => cmb.AddCustomItem(contextMenuItem)); mocks.ReplayAll(); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ringtoetsContextMenuBuilder.AddCustomItem(contextMenuItem); // Assert mocks.VerifyAll(); } [Test] public void Build_ContextMenuBuilder_CorrectlyDecorated() { // Setup var mocks = new MockRepository(); var contextMenuBuilder = mocks.StrictMock(); contextMenuBuilder.Expect(cmb => cmb.Build()); mocks.ReplayAll(); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ringtoetsContextMenuBuilder.Build(); // Assert mocks.VerifyAll(); } #region AddUpdateForeshoreProfileOfCalculationItem [Test] [Combinatorial] public void AddUpdateForeshoreProfileOfCalculationItem_ForeshoreProfileStates_ItemAddedToContextMenuAsExpected( [Values(true, false)] bool hasForeshoreProfile, [Values(true, false)] bool isSynchronized) { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var calculation = mocks.StrictMock>(); var input = mocks.StrictMock(); if (hasForeshoreProfile) { input.Expect(ci => ci.ForeshoreProfile).Return(new TestForeshoreProfile()); input.Expect(ci => ci.IsForeshoreProfileInputSynchronized).Return(isSynchronized); } else { input.Expect(ci => ci.ForeshoreProfile).Return(null); } calculation.Expect(c => c.InputParameters).Return(input).Repeat.Any(); var inquiryHelper = mocks.StrictMock(); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculation, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddUpdateForeshoreProfileOfCalculationItem( calculation, inquiryHelper, c => {}).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); string tooltip; if (hasForeshoreProfile) { tooltip = isSynchronized ? "Er zijn geen wijzigingen om bij te werken." : "Berekening bijwerken met het voorlandprofiel."; } else { tooltip = "Er moet een voorlandprofiel geselecteerd zijn."; } TestHelper.AssertContextMenuStripContainsItem(result, 0, "&Bijwerken voorlandprofiel...", tooltip, RingtoetsFormsResources.UpdateItemIcon, hasForeshoreProfile && !isSynchronized); } mocks.VerifyAll(); } #endregion #region AddUpdateForeshoreProfileOfCalculationsItem [Test] [Combinatorial] public void AddUpdateForeshoreProfileOfCalculationsItem_ForeshoreProfileStates_ItemAddedToContextMenuAsExpected( [Values(true, false)] bool hasForeshoreProfile, [Values(true, false)] bool isSynchronized) { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var calculation = mocks.StrictMock>(); var input = mocks.StrictMock(); if (hasForeshoreProfile) { input.Expect(ci => ci.ForeshoreProfile).Return(new TestForeshoreProfile()); input.Expect(ci => ci.IsForeshoreProfileInputSynchronized).Return(isSynchronized); } else { input.Expect(ci => ci.ForeshoreProfile).Return(null); } calculation.Stub(c => c.InputParameters).Return(input); var inquiryHelper = mocks.StrictMock(); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculation, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddUpdateForeshoreProfileOfCalculationsItem( new[] { calculation }, inquiryHelper, c => {}).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); string tooltip = hasForeshoreProfile && !isSynchronized ? "Alle berekeningen met een voorlandprofiel bijwerken." : "Er zijn geen berekeningen om bij te werken."; TestHelper.AssertContextMenuStripContainsItem(result, 0, "&Bijwerken voorlandprofielen...", tooltip, RingtoetsFormsResources.UpdateItemIcon, hasForeshoreProfile && !isSynchronized); } mocks.VerifyAll(); } #endregion #region AddPerformCalculationItem [Test] public void AddPerformCalculationItem_AdditionalValidationNull_ItemAddedToContextMenuEnabled() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var failureMechanism = mocks.StrictMock(); mocks.ReplayAll(); var calculation = new TestCalculation(); var calculationContext = new TestCalculationContext(calculation, failureMechanism); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculation, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddPerformCalculationItem(calculation, calculationContext, null, context => null).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Be&rekenen", "Voer deze berekening uit.", RingtoetsFormsResources.CalculateIcon); } mocks.VerifyAll(); } [Test] public void AddPerformCalculationItem_AdditionalValidationContainsMessage_ItemAddedToContextMenuDisabledWithMessageInTooltip() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var failureMechanism = mocks.StrictMock(); mocks.ReplayAll(); var calculation = new TestCalculation(); var calculationContext = new TestCalculationContext(calculation, failureMechanism); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculation, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); const string errorMessage = "No valid data"; // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddPerformCalculationItem(calculation, calculationContext, null, context => errorMessage).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Be&rekenen", errorMessage, RingtoetsFormsResources.CalculateIcon, false); } mocks.VerifyAll(); } #endregion #region AddValidateCalculationItem [Test] public void AddValidateCalculationItem_AdditionalValidationNull_ItemAddedToContextMenuEnabled() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var failureMechanism = mocks.StrictMock(); mocks.ReplayAll(); var calculation = new TestCalculation(); var calculationContext = new TestCalculationContext(calculation, failureMechanism); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculation, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddValidateCalculationItem(calculationContext, null, c => null).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "&Valideren", "Valideer de invoer voor deze berekening.", RingtoetsFormsResources.ValidateIcon); } mocks.VerifyAll(); } [Test] public void AddValidateCalculationItem_AdditionalValidationContainsMessage_ItemAddedToContextMenuDisabledWithMessageInTooltip() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var failureMechanism = mocks.StrictMock(); mocks.ReplayAll(); var calculation = new TestCalculation(); var calculationContext = new TestCalculationContext(calculation, failureMechanism); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculation, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); const string errorMessage = "No valid data"; // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddValidateCalculationItem(calculationContext, null, c => errorMessage).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "&Valideren", errorMessage, RingtoetsFormsResources.ValidateIcon, false); } mocks.VerifyAll(); } #endregion #region AddPerformAllCalculationsInGroupItem [Test] public void AddPerformAllCalculationsInGroupItem_GeneralValidationTrueAdditionalValidationNull_ItemAddedToContextMenuEnabled() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); mocks.ReplayAll(); var calculation = new TestCalculation(); var calculationGroup = new CalculationGroup { Children = { calculation } }; var failureMechanism = new TestFailureMechanism(new[] { calculation }); var calculationGroupContext = new TestCalculationGroupContext(calculationGroup, failureMechanism); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculationGroup, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddPerformAllCalculationsInGroupItem(calculationGroup, calculationGroupContext, null, context => null).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles be&rekenen", "Voer alle berekeningen binnen deze berekeningsmap uit.", RingtoetsFormsResources.CalculateAllIcon); } mocks.VerifyAll(); } [Test] public void AddPerformAllCalculationsInGroupItem_GeneralValidationFalseAdditionalValidationNull_ItemAddedToContextMenuDisabledWithGeneralValidationMessageTooltip() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); mocks.ReplayAll(); var failureMechanism = new TestFailureMechanism(Enumerable.Empty()); var calculationGroup = new CalculationGroup(); var calculationGroupContext = new TestCalculationGroupContext(calculationGroup, failureMechanism); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculationGroup, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddPerformAllCalculationsInGroupItem(calculationGroup, calculationGroupContext, null, context => null).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles be&rekenen", "Er zijn geen berekeningen om uit te voeren.", RingtoetsFormsResources.CalculateAllIcon, false); } mocks.VerifyAll(); } [Test] public void AddPerformAllCalculationsInGroupItem_GeneralValidationTrueAdditionalValidationContainsMessage_ItemAddedToContextMenuDisabledWithMessageTooltip() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); mocks.ReplayAll(); var calculation = new TestCalculation(); var calculationGroup = new CalculationGroup { Children = { calculation } }; var failureMechanism = new TestFailureMechanism(new[] { calculation }); var calculationGroupContext = new TestCalculationGroupContext(calculationGroup, failureMechanism); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculationGroup, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); const string errorMessage = "Additional validation failed."; // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddPerformAllCalculationsInGroupItem(calculationGroup, calculationGroupContext, null, context => errorMessage).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles be&rekenen", errorMessage, RingtoetsFormsResources.CalculateAllIcon, false); } mocks.VerifyAll(); } [Test] public void AddPerformAllCalculationsInGroupItem_GeneralValidationFalseAdditionalValidationContainsMessage_ItemAddedToContextMenuDisabledWithGeneralValidationMessageTooltip() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); mocks.ReplayAll(); var failureMechanism = new TestFailureMechanism(Enumerable.Empty()); var calculationGroup = new CalculationGroup(); var calculationGroupContext = new TestCalculationGroupContext(calculationGroup, failureMechanism); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculationGroup, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); const string errorMessage = "Additional validation failed."; // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddPerformAllCalculationsInGroupItem(calculationGroup, calculationGroupContext, null, context => errorMessage).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles be&rekenen", "Er zijn geen berekeningen om uit te voeren.", RingtoetsFormsResources.CalculateAllIcon, false); } mocks.VerifyAll(); } #endregion #region AddValidateAllCalculationsInGroupItem [Test] public void AddValidateAllCalculationsInGroupItem_GeneralValidationTrueAdditionalValidationNull_ItemAddedToContextMenuEnabled() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); mocks.ReplayAll(); var calculation = new TestCalculation(); var calculationGroup = new CalculationGroup { Children = { calculation } }; var failureMechanism = new TestFailureMechanism(new[] { calculation }); var calculationGroupContext = new TestCalculationGroupContext(calculationGroup, failureMechanism); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculationGroup, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddValidateAllCalculationsInGroupItem(calculationGroupContext, null, context => null).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles &valideren", "Valideer alle berekeningen binnen deze berekeningsmap.", RingtoetsFormsResources.ValidateAllIcon); } mocks.VerifyAll(); } [Test] public void AddValidateAllCalculationsInGroupItem_GeneralValidationFalseAdditionalValidationNull_ItemAddedToContextMenuDisabledWithGeneralValidationMessageTooltip() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); mocks.ReplayAll(); var failureMechanism = new TestFailureMechanism(Enumerable.Empty()); var calculationGroup = new CalculationGroup(); var calculationGroupContext = new TestCalculationGroupContext(calculationGroup, failureMechanism); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculationGroup, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddValidateAllCalculationsInGroupItem(calculationGroupContext, null, context => null).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles &valideren", "Er zijn geen berekeningen om te valideren.", RingtoetsFormsResources.ValidateAllIcon, false); } mocks.VerifyAll(); } [Test] public void AddValidateAllCalculationsInGroupItem_GeneralValidationTrueAdditionalValidationContainsMessage_ItemAddedToContextMenuDisabledWithMessageTooltip() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); mocks.ReplayAll(); var calculation = new TestCalculation(); var calculationGroup = new CalculationGroup { Children = { calculation } }; var failureMechanism = new TestFailureMechanism(new[] { calculation }); var calculationGroupContext = new TestCalculationGroupContext(calculationGroup, failureMechanism); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculationGroup, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); const string errorMessage = "Additional validation failed."; // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddValidateAllCalculationsInGroupItem(calculationGroupContext, null, context => errorMessage).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles &valideren", errorMessage, RingtoetsFormsResources.ValidateAllIcon, false); } mocks.VerifyAll(); } [Test] public void AddValidateAllCalculationsInGroupItem_GeneralValidationFalseAdditionalValidationContainsMessage_ItemAddedToContextMenuDisabledWithGeneralValidationMessageTooltip() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); mocks.ReplayAll(); var failureMechanism = new TestFailureMechanism(Enumerable.Empty()); var calculationGroup = new CalculationGroup(); var calculationGroupContext = new TestCalculationGroupContext(calculationGroup, failureMechanism); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, calculationGroup, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); const string errorMessage = "Additional validation failed."; // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddValidateAllCalculationsInGroupItem(calculationGroupContext, null, context => errorMessage).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles &valideren", "Er zijn geen berekeningen om te valideren.", RingtoetsFormsResources.ValidateAllIcon, false); } mocks.VerifyAll(); } #endregion #region AddPerformAllCalculationsInFailureMechanismItem [Test] public void AddPerformAllCalculationsInFailureMechanismItem_GeneralValidationTrueAdditionalValidationNull_ItemAddedToContextMenuEnabled() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var assessmentSection = mocks.StrictMock(); var failureMechanism = new TestFailureMechanism(new[] { new TestCalculation() }); var failureMechanismContext = new TestFailureMechanismContext(failureMechanism, assessmentSection); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, failureMechanismContext, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddPerformAllCalculationsInFailureMechanismItem(failureMechanismContext, null, context => null).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles be&rekenen", "Voer alle berekeningen binnen dit toetsspoor uit.", RingtoetsFormsResources.CalculateAllIcon); } mocks.VerifyAll(); } [Test] public void AddPerformAllCalculationsInFailureMechanismItem_GeneralValidationFalseAdditionalValidationNull_ItemAddedToContextMenuDisabledWithGeneralValidationMessageTooltip() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var assessmentSection = mocks.StrictMock(); var failureMechanism = new TestFailureMechanism(Enumerable.Empty()); var failureMechanismContext = new TestFailureMechanismContext(failureMechanism, assessmentSection); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, failureMechanismContext, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddPerformAllCalculationsInFailureMechanismItem(failureMechanismContext, null, context => null).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles be&rekenen", "Er zijn geen berekeningen om uit te voeren.", RingtoetsFormsResources.CalculateAllIcon, false); } mocks.VerifyAll(); } [Test] public void AddPerformAllCalculationsInFailureMechanismItem_GeneralValidationTrueAdditionalValidationContainsMessage_ItemAddedToContextMenuDisabledWithMessageTooltip() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var assessmentSection = mocks.StrictMock(); var failureMechanism = new TestFailureMechanism(new[] { new TestCalculation() }); var failureMechanismContext = new TestFailureMechanismContext(failureMechanism, assessmentSection); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, failureMechanismContext, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); const string errorMessage = "Additional validation failed."; // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddPerformAllCalculationsInFailureMechanismItem(failureMechanismContext, null, context => errorMessage).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles be&rekenen", errorMessage, RingtoetsFormsResources.CalculateAllIcon, false); } mocks.VerifyAll(); } [Test] public void AddPerformAllCalculationsInFailureMechanismItem_GeneralValidationFalseAdditionalValidationContainsMessage_ItemAddedToContextMenuDisabledWithGeneralValidationMessageTooltip() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var assessmentSection = mocks.StrictMock(); var failureMechanism = new TestFailureMechanism(Enumerable.Empty()); var failureMechanismContext = new TestFailureMechanismContext(failureMechanism, assessmentSection); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, failureMechanismContext, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); const string errorMessage = "Additional validation failed."; // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddPerformAllCalculationsInFailureMechanismItem(failureMechanismContext, null, context => errorMessage).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles be&rekenen", "Er zijn geen berekeningen om uit te voeren.", RingtoetsFormsResources.CalculateAllIcon, false); } mocks.VerifyAll(); } #endregion #region AddValidateAllCalculationsInFailureMechanismItem [Test] public void AddValidateAllCalculationsInFailureMechanismItem_GeneralValidationTrueAdditionalValidationNull_ItemAddedToContextMenuEnabled() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var assessmentSection = mocks.StrictMock(); var failureMechanism = new TestFailureMechanism(new[] { new TestCalculation() }); var failureMechanismContext = new TestFailureMechanismContext(failureMechanism, assessmentSection); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, failureMechanismContext, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddValidateAllCalculationsInFailureMechanismItem(failureMechanismContext, null, fm => null).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles &valideren", "Valideer alle berekeningen binnen dit toetsspoor.", RingtoetsFormsResources.ValidateAllIcon); } mocks.VerifyAll(); } [Test] public void AddValidateAllCalculationsInFailureMechanismItem_GeneralValidationFalseAdditionalValidationNull_ItemAddedToContextMenuDisabledWithGeneralValidationMessageTooltip() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var assessmentSection = mocks.StrictMock(); var failureMechanism = new TestFailureMechanism(Enumerable.Empty()); var failureMechanismContext = new TestFailureMechanismContext(failureMechanism, assessmentSection); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, failureMechanismContext, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddValidateAllCalculationsInFailureMechanismItem(failureMechanismContext, null, fm => null).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles &valideren", "Er zijn geen berekeningen om te valideren.", RingtoetsFormsResources.ValidateAllIcon, false); } mocks.VerifyAll(); } [Test] public void AddValidateAllCalculationsInFailureMechanismItem_GeneralValidationTrueAdditionalValidationContainsMessage_ItemAddedToContextMenuDisabledWithMessageTooltip() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var assessmentSection = mocks.StrictMock(); var failureMechanism = new TestFailureMechanism(new[] { new TestCalculation() }); var failureMechanismContext = new TestFailureMechanismContext(failureMechanism, assessmentSection); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, failureMechanismContext, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); const string errorMessage = "Additional validation failed."; // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddValidateAllCalculationsInFailureMechanismItem( failureMechanismContext, null, fm => errorMessage).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles &valideren", errorMessage, RingtoetsFormsResources.ValidateAllIcon, false); } mocks.VerifyAll(); } [Test] public void AddValidateAllCalculationsInFailureMechanismItem_GeneralValidationFalseAdditionalValidationContainsMessage_ItemAddedToContextMenuDisabledWithGeneralValidationMessageTooltip() { // Setup var mocks = new MockRepository(); var applicationFeatureCommands = mocks.StrictMock(); var importCommandHandler = mocks.StrictMock(); var exportCommandHandler = mocks.StrictMock(); var updateCommandHandler = mocks.StrictMock(); var viewCommands = mocks.StrictMock(); var assessmentSection = mocks.StrictMock(); var failureMechanism = new TestFailureMechanism(Enumerable.Empty()); var failureMechanismContext = new TestFailureMechanismContext(failureMechanism, assessmentSection); mocks.ReplayAll(); using (var treeViewControl = new TreeViewControl()) { var contextMenuBuilder = new ContextMenuBuilder(applicationFeatureCommands, importCommandHandler, exportCommandHandler, updateCommandHandler, viewCommands, failureMechanismContext, treeViewControl); var ringtoetsContextMenuBuilder = new RingtoetsContextMenuBuilder(contextMenuBuilder); const string errorMessage = "Additional validation failed."; // Call ContextMenuStrip result = ringtoetsContextMenuBuilder.AddValidateAllCalculationsInFailureMechanismItem( failureMechanismContext, null, fm => errorMessage).Build(); // Assert Assert.IsInstanceOf(result); Assert.AreEqual(1, result.Items.Count); TestHelper.AssertContextMenuStripContainsItem(result, 0, "Alles &valideren", "Er zijn geen berekeningen om te valideren.", RingtoetsFormsResources.ValidateAllIcon, false); } mocks.VerifyAll(); } #endregion #region Nested types private class TestFailureMechanismContext : FailureMechanismContext { public TestFailureMechanismContext(IFailureMechanism wrappedFailureMechanism, IAssessmentSection parent) : base(wrappedFailureMechanism, parent) {} } private class TestCalculationGroupContext : Observable, ICalculationContext { public TestCalculationGroupContext(CalculationGroup wrappedData, IFailureMechanism failureMechanism) { WrappedData = wrappedData; FailureMechanism = failureMechanism; } public CalculationGroup WrappedData { get; } public IFailureMechanism FailureMechanism { get; } } private class TestCalculationContext : Observable, ICalculationContext { public TestCalculationContext(TestCalculation wrappedData, IFailureMechanism failureMechanism) { WrappedData = wrappedData; FailureMechanism = failureMechanism; } public TestCalculation WrappedData { get; } public IFailureMechanism FailureMechanism { get; } } private class TestCalculation : Observable, ICalculation { public TestCalculation() { Name = "Nieuwe berekening"; } public string Name { get; set; } public Comment Comments { get; private set; } public bool HasOutput { get { return false; } } public void ClearOutput() {} } public interface ICalculationInputWithForeshoreProfile : ICalculationInput, IHasForeshoreProfile {} #endregion } }