// 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 Lesser 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser 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 BruTile;
using Core.Components.BruTile.Configurations;
using Core.Components.BruTile.IO;
using Core.Components.DotSpatial.Layer.BruTile;
using Core.Components.Gis.Data;
using DotSpatial.Symbology;
using NUnit.Framework;
using Rhino.Mocks;
namespace Core.Components.DotSpatial.Forms.Test
{
[TestFixture]
public class WellKnownBackgroundLayerStatusTest
{
[Test]
public void Constructor_ExpectedValues()
{
// Call
using (var layerStatus = new WellKnownBackgroundLayerStatus())
{
// Assert
Assert.IsInstanceOf(layerStatus);
Assert.IsInstanceOf(layerStatus);
Assert.IsNull(layerStatus.BackgroundLayer);
Assert.IsFalse(layerStatus.PreviousBackgroundLayerCreationFailed);
}
}
[Test]
public void HasSameConfiguration_MapDataNull_ThrowArgumentNullException()
{
// Setup
using (var layerStatus = new WellKnownBackgroundLayerStatus())
{
// Call
TestDelegate call = () => layerStatus.HasSameConfiguration(null);
// Assert
string paramName = Assert.Throws(call).ParamName;
Assert.AreEqual("mapData", paramName);
}
}
[Test]
public void HasSameConfiguration_MapDataNotWellKnownMapData_ReturnFalse()
{
// Setup
using (var layerStatus = new WellKnownBackgroundLayerStatus())
{
var mapData = new SimpleImageBasedMapData();
// Call
bool isSame = layerStatus.HasSameConfiguration(mapData);
// Assert
Assert.IsFalse(isSame);
}
}
[Test]
public void HasSameConfiguration_ForInitializedLayer_ReturnTrue()
{
// Setup
var mocks = new MockRepository();
var tileFetcher = mocks.Stub();
using (var layerStatus = new WellKnownBackgroundLayerStatus())
{
IConfiguration configuration = CreateStubConfiguration(mocks, tileFetcher);
mocks.ReplayAll();
using (var layer = new BruTileLayer(configuration))
{
var source = new Random(789).NextEnum();
var mapData1 = new WellKnownTileSourceMapData(source);
var mapData2 = new WellKnownTileSourceMapData(source);
layerStatus.SuccessfullyInitializedLayer(layer, mapData1);
// Call
bool isSame = layerStatus.HasSameConfiguration(mapData2);
// Assert
Assert.IsTrue(isSame, "Should recognize same configuration even if instance is not the same.");
}
}
mocks.VerifyAll();
}
[Test]
public void SuccessfullyInitializedLayer_LayerNull_ThrowArgumentNullException()
{
// Setup
using (var layerStatus = new WellKnownBackgroundLayerStatus())
{
var dataSource = new WellKnownTileSourceMapData(new Random(789).NextEnum());
// Call
TestDelegate call = () => layerStatus.SuccessfullyInitializedLayer(null, dataSource);
// Assert
string paramName = Assert.Throws(call).ParamName;
Assert.AreEqual("backgroundLayer", paramName);
}
}
[Test]
public void SuccessfullyInitializedLayer_MapDataNull_ThrowArgumentNullException()
{
// Setup
var mocks = new MockRepository();
var tileFetcher = mocks.Stub();
IConfiguration configuration = CreateStubConfiguration(mocks, tileFetcher);
mocks.ReplayAll();
using (var layer = new BruTileLayer(configuration))
using (var layerStatus = new WellKnownBackgroundLayerStatus())
{
// Call
TestDelegate call = () => layerStatus.SuccessfullyInitializedLayer(layer, null);
// Assert
string paramName = Assert.Throws(call).ParamName;
Assert.AreEqual("dataSource", paramName);
}
}
[Test]
public void SuccessfullyInitializedLayer_MapDataNotWellKnownMapData_SetCreationFailedTrue()
{
// Setup
var mocks = new MockRepository();
var tileFetcher = mocks.Stub();
IConfiguration configuration = CreateStubConfiguration(mocks, tileFetcher);
mocks.ReplayAll();
using (var layer = new BruTileLayer(configuration))
using (var layerStatus = new WellKnownBackgroundLayerStatus())
{
var mapData = new SimpleImageBasedMapData();
// Call
layerStatus.SuccessfullyInitializedLayer(layer, mapData);
// Assert
Assert.IsTrue(layerStatus.PreviousBackgroundLayerCreationFailed);
}
}
[Test]
public void SuccessfullyInitializedLayer_InitializationPreviouslyFailed_PreviousBackgroundLayerCreationFailedFalse()
{
// Setup
var mocks = new MockRepository();
var tileFetcher = mocks.Stub();
IConfiguration configuration = CreateStubConfiguration(mocks, tileFetcher);
mocks.ReplayAll();
using (var layer = new BruTileLayer(configuration))
using (var layerStatus = new WellKnownBackgroundLayerStatus())
{
layerStatus.LayerInitializationFailed();
var mapData = new WellKnownTileSourceMapData(new Random(789).NextEnum());
// Call
layerStatus.SuccessfullyInitializedLayer(layer, mapData);
// Assert
Assert.IsFalse(layerStatus.PreviousBackgroundLayerCreationFailed);
}
}
[Test]
public void LayerInitializationFailed_PreviousBackgroundLayerCreationFailedTrue()
{
// Setup
using (var layerStatus = new WellKnownBackgroundLayerStatus())
{
// Call
layerStatus.LayerInitializationFailed();
// Assert
Assert.IsTrue(layerStatus.PreviousBackgroundLayerCreationFailed);
}
}
[Test]
public void LayerInitializationFailed_HasLayer_ConfigurationCleared()
{
// Setup
var mocks = new MockRepository();
var tileFetcher = mocks.Stub();
IConfiguration configuration = CreateStubConfiguration(mocks, tileFetcher);
mocks.ReplayAll();
using (var layer = new BruTileLayer(configuration))
using (var layerStatus = new WellKnownBackgroundLayerStatus())
{
var mapData = new WellKnownTileSourceMapData(new Random(789).NextEnum());
layerStatus.SuccessfullyInitializedLayer(layer, mapData);
// Call
layerStatus.LayerInitializationFailed();
// Assert
Assert.IsTrue(layerStatus.PreviousBackgroundLayerCreationFailed);
Assert.IsFalse(layerStatus.HasSameConfiguration(mapData));
}
}
[Test]
public void ClearConfiguration_HasLayer_ConfigurationCleared()
{
// Setup
var mocks = new MockRepository();
var tileFetcher = mocks.Stub();
IConfiguration configuration = CreateStubConfiguration(mocks, tileFetcher);
mocks.ReplayAll();
using (var layer = new BruTileLayer(configuration))
using (var layerStatus = new WellKnownBackgroundLayerStatus())
{
var mapData = new WellKnownTileSourceMapData(new Random(789).NextEnum());
layerStatus.SuccessfullyInitializedLayer(layer, mapData);
// Call
layerStatus.ClearConfiguration();
// Assert
Assert.IsFalse(layerStatus.PreviousBackgroundLayerCreationFailed);
Assert.IsFalse(layerStatus.HasSameConfiguration(mapData));
}
}
[Test]
public void ClearConfiguration_WithFailedLayerInitializationAndExpectingRecreation_ConfigurationClearedButKeepFailedFlagSet()
{
// Setup
using (var layerStatus = new WellKnownBackgroundLayerStatus())
{
var mapData = new WellKnownTileSourceMapData(new Random(465).NextEnum());
layerStatus.LayerInitializationFailed();
// Call
layerStatus.ClearConfiguration(true);
// Assert
Assert.IsTrue(layerStatus.PreviousBackgroundLayerCreationFailed);
Assert.IsFalse(layerStatus.HasSameConfiguration(mapData));
}
}
private static IConfiguration CreateStubConfiguration(MockRepository mocks, ITileFetcher tileFetcher)
{
var schema = mocks.Stub();
schema.Stub(s => s.Srs).Return("EPSG:28992");
schema.Stub(s => s.Extent).Return(new Extent());
var tileSource = mocks.Stub();
tileSource.Stub(ts => ts.Schema).Return(schema);
var configuration = mocks.Stub();
configuration.Stub(c => c.Initialized).Return(true);
configuration.Stub(c => c.TileSource).Return(tileSource);
configuration.Stub(c => c.TileFetcher).Return(tileFetcher);
configuration.Stub(c => c.Dispose());
return configuration;
}
private class SimpleImageBasedMapData : ImageBasedMapData
{
public SimpleImageBasedMapData() : base("SimpleImageBasedMapData") {}
}
}
}