// 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.Collections.Generic; using System.IO; using System.Linq; using Core.Common.Base.Geometry; using Core.Common.IO.Exceptions; using Core.Common.TestUtil; using NUnit.Framework; using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.Common.IO.Exceptions; namespace Ringtoets.Common.IO.Test { [TestFixture] public class ReferenceLineMetaImporterTest { private readonly string testDataPath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, "ReferenceLineMetaImporter"); [Test] [TestCase("")] [TestCase(" ")] [TestCase(null)] public void Constructor_NoFilePath_ThrowsArgumentException(string invalidFilePath) { // Call TestDelegate call = () => new ReferenceLineMetaImporter(invalidFilePath); // Assert var expectedMessage = string.Format("Fout bij het lezen van bestand '{0}': Bestandspad mag niet leeg of ongedefinieerd zijn.", invalidFilePath); TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, expectedMessage); } [Test] public void Constructor_FilePathHasInvalidPathCharacter_ThrowsArgumentException() { // Setup char[] invalidFileNameChars = Path.GetInvalidFileNameChars(); string validFilePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, "SomeFolder"); string invalidFilePath = validFilePath.Replace("F", invalidFileNameChars[1].ToString()); // Call TestDelegate call = () => new ReferenceLineMetaImporter(invalidFilePath); // Assert var expectedMessage = string.Format("Fout bij het lezen van bestand '{0}': Bestandspad mag niet de volgende tekens bevatten: {1}", invalidFilePath, String.Join(", ", invalidFileNameChars)); TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, expectedMessage); } [Test] public void Constructor_FilePathTooLong_ThrowsCriticalFileReadException() { // Setup string pathTooLong = Path.Combine(testDataPath, new string('A', 260)); // Call TestDelegate call = () => new ReferenceLineMetaImporter(pathTooLong); // Assert var expectedExceptionMessage = string.Format("De map met specificaties voor trajecten '{0}' is niet gevonden.", pathTooLong); CriticalFileReadException exception = Assert.Throws(call); Assert.AreEqual(expectedExceptionMessage, exception.Message); } [Test] public void Constructor_FilePathDoesNotExist_ThrowsCriticalFileReadException() { // Setup string pathToNonExistingFolder = Path.Combine(testDataPath, "I do not exist"); // Precondition Assert.IsFalse(Directory.Exists(pathToNonExistingFolder)); // Call TestDelegate call = () => new ReferenceLineMetaImporter(pathToNonExistingFolder); // Assert var expectedExceptionMessage = string.Format("De map met specificaties voor trajecten '{0}' is niet gevonden.", pathToNonExistingFolder); CriticalFileReadException exception = Assert.Throws(call); Assert.AreEqual(expectedExceptionMessage, exception.Message); } [Test] public void Constructor_EmptyFolder_ThrowsCriticalFileReadException() { // Setup string pathToEmptyFolder = Path.Combine(testDataPath, "EmptyFolder"); // Call TestDelegate call = () => new ReferenceLineMetaImporter(pathToEmptyFolder); // Assert var expectedExceptionMessage = string.Format(@"Geen shapebestand om trajecten te specificeren gevonden in de map '{0}'.", pathToEmptyFolder); CriticalFileReadException exception = Assert.Throws(call); Assert.AreEqual(expectedExceptionMessage, exception.Message); } [Test] public void Constructor_FolderWithTwoShapeFiles_LogsWarningAndTakesFirstShapeFile() { // Setup string pathToFolder = Path.Combine(testDataPath, "TwoShapeFiles"); // Call Action call = () => new ReferenceLineMetaImporter(pathToFolder); // Assert var expectedMessage = string.Format(@"Meerdere shapebestanden gevonden in '{0}'. Het bestand 'NBPW_A.shp' is gebruikt.", pathToFolder); TestHelper.AssertLogMessageIsGenerated(call, expectedMessage); } [Test] public void GetReferenceLineMetas_InvalidShapeFile_ThrowsCriticalFileReadException() { // Setup string pathToInvalid = Path.Combine(testDataPath, "InvalidShapeFile"); ReferenceLineMetaImporter importer = new ReferenceLineMetaImporter(pathToInvalid); // Call TestDelegate call = () => importer.GetReferenceLineMetas(); // Assert var expectedExceptionMessage = string.Format("Het shapebestand '{0}' om trajecten te specificeren moet de attributen 'TRAJECT_ID', 'NORM_SW', en 'NORM_OG' bevatten: {1} niet gevonden.", Path.Combine(pathToInvalid, "InvalidShapeFile.shp"), "'TRAJECT_ID', 'NORM_SW', 'NORM_OG'"); CriticalFileReadException exception = Assert.Throws(call); Assert.AreEqual(expectedExceptionMessage, exception.Message); } [Test] public void GetReferenceLineMetas_FileWithNonUniqueTrajectIds_ThrowsCriticalFileValidationException() { // Setup string pathToFolder = Path.Combine(testDataPath, "NonUniqueTrajectIds"); ReferenceLineMetaImporter importer = new ReferenceLineMetaImporter(pathToFolder); // Call TestDelegate call = () => importer.GetReferenceLineMetas(); // Assert var shapeFile = Path.Combine(pathToFolder, "NonUniqueTrajectIds.shp"); var expectedMessage = string.Format("Fout bij het lezen van bestand '{0}': Meerdere trajecten met dezelfde identificatiecode (attribuut 'TRAJECT_ID') gevonden.", shapeFile); CriticalFileValidationException exception = Assert.Throws(call); Assert.AreEqual(expectedMessage, exception.Message); } [Test] public void GetReferenceLineMetas_FileWithEmptyTrajectIds_ThrowsCriticalFileValidationException() { // Setup string pathToFolder = Path.Combine(testDataPath, "EmptyTrackId"); ReferenceLineMetaImporter importer = new ReferenceLineMetaImporter(pathToFolder); // Call TestDelegate call = () => importer.GetReferenceLineMetas(); // Assert var shapeFile = Path.Combine(pathToFolder, "EmptyTrackId.shp"); var expectedMessage = string.Format("Fout bij het lezen van bestand '{0}': Trajecten gevonden zonder een geldige identificatiecode (attribuut 'TRAJECT_ID').", shapeFile); CriticalFileValidationException exception = Assert.Throws(call); Assert.AreEqual(expectedMessage, exception.Message); } [Test] public void GetReferenceLineMetas_ValidDirectoryWithOneShapeFile_ReturnsReadReadGetReferenceLineMetas() { // Setup string pathValidFolder = Path.Combine(testDataPath, "ValidShapeFile"); var importer = new ReferenceLineMetaImporter(pathValidFolder); // Call var referenceLineMetas = importer.GetReferenceLineMetas().ToArray(); // Assert Assert.AreEqual(3, referenceLineMetas.Length); var expectedReferenceLineMeta1 = new ReferenceLineMeta { AssessmentSectionId = "1-2", LowerLimitValue = 1000, SignalingValue = 3000 }; expectedReferenceLineMeta1.ReferenceLine.SetGeometry(new[] { new Point2D(160679.9250, 475072.583), new Point2D(160892.0751, 474315.4917) }); AssertReferenceLineMetas(expectedReferenceLineMeta1, referenceLineMetas[0]); var expectedReferenceLineMeta2 = new ReferenceLineMeta { AssessmentSectionId = "2-1", LowerLimitValue = 100, SignalingValue = 300 }; expectedReferenceLineMeta2.ReferenceLine.SetGeometry(new[] { new Point2D(155556.9191, 464341.1281), new Point2D(155521.4761, 464360.7401) }); AssertReferenceLineMetas(expectedReferenceLineMeta2, referenceLineMetas[1]); var expectedReferenceLineMeta3 = new ReferenceLineMeta { AssessmentSectionId = "3-3", LowerLimitValue = 100, SignalingValue = 300 }; expectedReferenceLineMeta3.ReferenceLine.SetGeometry(new[] { new Point2D(147367.321899, 476902.9157103), new Point2D(147410.0515, 476938.9447) }); AssertReferenceLineMetas(expectedReferenceLineMeta3, referenceLineMetas[2]); } [Test] public void GetReferenceLineMetas_EmptyShapeFile_ReturnsEmptyList() { // Setup string pathValidFolder = Path.Combine(testDataPath, "EmptyShapeFile"); var importer = new ReferenceLineMetaImporter(pathValidFolder); // Call IEnumerable referenceLineMetas = importer.GetReferenceLineMetas(); // Assert Assert.AreEqual(0, referenceLineMetas.Count()); } private static void AssertReferenceLineMetas(ReferenceLineMeta expectedReferenceLineMeta, ReferenceLineMeta actualReferenceLineMeta) { Assert.AreEqual(expectedReferenceLineMeta.AssessmentSectionId, actualReferenceLineMeta.AssessmentSectionId); Assert.AreEqual(expectedReferenceLineMeta.SignalingValue, actualReferenceLineMeta.SignalingValue); Assert.AreEqual(expectedReferenceLineMeta.LowerLimitValue, actualReferenceLineMeta.LowerLimitValue); Point2D[] expectedPoints = expectedReferenceLineMeta.ReferenceLine.Points.ToArray(); Point2D[] actualPoints = actualReferenceLineMeta.ReferenceLine.Points.ToArray(); CollectionAssert.AreEqual(expectedPoints, actualPoints, new Point2DComparerWithTolerance(1e-6), String.Format("Unexpected geometry found in ReferenceLineMeta with id '{0}'", actualReferenceLineMeta.AssessmentSectionId)); } } }