// Copyright (C) Stichting Deltares 2024. All rights reserved. // // This file is part of the application DAM - UI. // // DAM - UI 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.IO; using System.Linq; using Deltares.Dam.Data.IO; using Deltares.Maps; using NUnit.Framework; namespace Deltares.Dam.Tests.IO { [TestFixture] public class ShapeFileExporterTest { [Test] public void Export_UsingValidDataAndPreConditionsAreMet_FilesAreWrittenAnCanBeRead() { const string name = "SafetyFactor"; const string path = "."; foreach (string file in Directory.GetFiles(path, name + ".*")) { File.Delete(file); } const string attrName = "SAFETYFACT"; var repository = new FeatureRepository(); repository.Add( Feature.Create( "POINT(1 1)", new Dictionary { { attrName, 1.7 } } )); // Actual test var exporter = new ShapeFileExporter(name, path, repository); exporter.Export(); var fileLocation = new ShapeFileLocation(path, name); // Reading data back to verify the export IFeatureRepository retrievedRepository = FeatureRepository.CreateFromShapeFile(fileLocation); Assert.That(retrievedRepository, Is.Not.Null); IFeature retrievedFeature = retrievedRepository.Features.ElementAt(0); Assert.That(retrievedFeature.Attributes[attrName], Is.EqualTo(1.7)); } #region Setup [SetUp] public void FixtureSetup() {} [TearDown] public void FixtureTearDown() {} [SetUp] public void TestSetup() {} [TearDown] public void TestTearDown() {} #endregion } }