// 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 System.Linq;
using Core.Common.Utils.Attributes;
using Core.Common.Utils.Test.Properties;
using NUnit.Framework;
namespace Core.Common.Utils.Test.Attributes
{
[TestFixture]
public class ResourcesDisplayNameAttributeTest
{
[Test]
public void ParameteredConstructor_ResourcePropertyDoesNotExist_ThrowInvalidOperationException()
{
// Call
TestDelegate call = () => new ResourcesDisplayNameAttribute(typeof(Resources), "DoesNotExist");
// Assert
var message = Assert.Throws(call).Message;
StringAssert.Contains("does not have property", message);
}
[Test]
public void ParameteredConstructor_ResourcePropertyIsNotString_ThrowInvalidOperationException()
{
// Call
TestDelegate call = () => new ResourcesDisplayNameAttribute(typeof(Resources), "abacus");
// Assert
var message = Assert.Throws(call).Message;
StringAssert.EndsWith("is not string.", message);
}
[Test]
public void ParameteredConstructor_StringResource_ExpectedValues()
{
// Call
var attribute = new ResourcesDisplayNameAttribute(typeof(Resources), "SomeStringResource");
// Assert
Assert.AreEqual(Resources.SomeStringResource, attribute.DisplayName);
}
[Test]
public void Enum_StringResource_ExpectedValues()
{
// Call
var fieldInfo = typeof(SimpleEnum).GetFields().FirstOrDefault(fi => fi.FieldType == typeof(SimpleEnum));
Assert.IsNotNull(fieldInfo);
var resourcesDisplayNameAttribute = (ResourcesDisplayNameAttribute) Attribute.GetCustomAttribute(fieldInfo, typeof(ResourcesDisplayNameAttribute));
// Assert
Assert.IsNotNull(resourcesDisplayNameAttribute);
Assert.AreEqual(Resources.EnumStringResource, resourcesDisplayNameAttribute.DisplayName);
}
[Test]
public void Property_StringResource_ExpectedValues()
{
// Call
var fieldInfo = typeof(SimpleClass).GetProperty("Name");
Assert.IsNotNull(fieldInfo);
var resourcesDisplayNameAttribute = (ResourcesDisplayNameAttribute) Attribute.GetCustomAttribute(fieldInfo, typeof(ResourcesDisplayNameAttribute));
// Assert
Assert.IsNotNull(resourcesDisplayNameAttribute);
Assert.AreEqual(Resources.MethodStringResource, resourcesDisplayNameAttribute.DisplayName);
}
[Test]
public void Class_StringResource_ExpectedValues()
{
// Call
var resourcesDisplayNameAttribute = (ResourcesDisplayNameAttribute) Attribute.GetCustomAttribute(typeof(SimpleClass), typeof(ResourcesDisplayNameAttribute));
// Assert
Assert.IsNotNull(resourcesDisplayNameAttribute);
Assert.AreEqual(Resources.ClassStringResource, resourcesDisplayNameAttribute.DisplayName);
}
private enum SimpleEnum
{
[ResourcesDisplayName(typeof(Resources), "EnumStringResource")]
FirstValue
}
[ResourcesDisplayName(typeof(Resources), "ClassStringResource")]
private class SimpleClass
{
[ResourcesDisplayName(typeof(Resources), "MethodStringResource")]
public string Name
{
get
{
return string.Empty;
}
}
}
}
}