1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Linq;
using Xunit;
using Assert = Microsoft.TestCommon.AssertEx;
namespace System.Web.Razor.Test
{
public class RazorDirectiveAttributeTest
{
[Fact]
public void ConstructorThrowsIfNameIsNullOrEmpty()
{
// Act and Assert
Assert.ThrowsArgumentNullOrEmptyString(() => new RazorDirectiveAttribute(name: null, value: "blah"), "name");
Assert.ThrowsArgumentNullOrEmptyString(() => new RazorDirectiveAttribute(name: "", value: "blah"), "name");
}
[Fact]
public void EnsureRazorDirectiveProperties()
{
// Arrange
var attribute = (AttributeUsageAttribute)typeof(RazorDirectiveAttribute).GetCustomAttributes(typeof(AttributeUsageAttribute), inherit: false)
.SingleOrDefault();
// Assert
Assert.True(attribute.AllowMultiple);
Assert.True(attribute.ValidOn == AttributeTargets.Class);
Assert.True(attribute.Inherited);
}
[Fact]
public void EqualsAndGetHashCodeIgnoresCase()
{
// Arrange
var attribute1 = new RazorDirectiveAttribute("foo", "bar");
var attribute2 = new RazorDirectiveAttribute("fOo", "BAr");
// Act
var hashCode1 = attribute1.GetHashCode();
var hashCode2 = attribute2.GetHashCode();
// Assert
Assert.Equal(attribute1, attribute2);
Assert.Equal(hashCode1, hashCode2);
}
[Fact]
public void EqualsAndGetHashCodeDoNotThrowIfValueIsNullOrEmpty()
{
// Arrange
var attribute1 = new RazorDirectiveAttribute("foo", null);
var attribute2 = new RazorDirectiveAttribute("foo", "BAr");
// Act
bool result = attribute1.Equals(attribute2);
var hashCode = attribute1.GetHashCode();
// Assert
Assert.False(result);
// If we've got this far, GetHashCode did not throw
}
[Fact]
public void EqualsAndGetHashCodeReturnDifferentValuesForNullAndEmpty()
{
// Arrange
var attribute1 = new RazorDirectiveAttribute("foo", null);
var attribute2 = new RazorDirectiveAttribute("foo", "");
// Act
bool result = attribute1.Equals(attribute2);
var hashCode1 = attribute1.GetHashCode();
var hashCode2 = attribute2.GetHashCode();
// Assert
Assert.False(result);
Assert.NotEqual(hashCode1, hashCode2);
}
}
}
|