40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|||
|
|
|||
|
using Moq;
|
|||
|
using Xunit;
|
|||
|
using Assert = Microsoft.TestCommon.AssertEx;
|
|||
|
|
|||
|
namespace System.Web.Mvc.Test
|
|||
|
{
|
|||
|
public class AllowHtmlAttributeTest
|
|||
|
{
|
|||
|
[Fact]
|
|||
|
public void OnMetadataCreated_ThrowsIfMetadataIsNull()
|
|||
|
{
|
|||
|
// Arrange
|
|||
|
AllowHtmlAttribute attr = new AllowHtmlAttribute();
|
|||
|
|
|||
|
// Act & assert
|
|||
|
Assert.ThrowsArgumentNull(
|
|||
|
delegate { attr.OnMetadataCreated(null); }, "metadata");
|
|||
|
}
|
|||
|
|
|||
|
[Fact]
|
|||
|
public void OnMetadataCreated()
|
|||
|
{
|
|||
|
// Arrange
|
|||
|
ModelMetadata modelMetadata = new ModelMetadata(new Mock<ModelMetadataProvider>().Object, null, null, typeof(object), "SomeProperty");
|
|||
|
AllowHtmlAttribute attr = new AllowHtmlAttribute();
|
|||
|
|
|||
|
// Act
|
|||
|
bool originalValue = modelMetadata.RequestValidationEnabled;
|
|||
|
attr.OnMetadataCreated(modelMetadata);
|
|||
|
bool newValue = modelMetadata.RequestValidationEnabled;
|
|||
|
|
|||
|
// Assert
|
|||
|
Assert.True(originalValue);
|
|||
|
Assert.False(newValue);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|