Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

55 lines
1.7 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 ChildActionOnlyAttributeTest
{
[Fact]
public void GuardClause()
{
// Arrange
ChildActionOnlyAttribute attr = new ChildActionOnlyAttribute();
// Act & Assert
Assert.ThrowsArgumentNull(
() => attr.OnAuthorization(null /* filterContext */),
"filterContext"
);
}
[Fact]
public void DoesNothingForChildRequest()
{
// Arrange
ChildActionOnlyAttribute attr = new ChildActionOnlyAttribute();
Mock<AuthorizationContext> context = new Mock<AuthorizationContext>();
context.Setup(c => c.IsChildAction).Returns(true);
// Act
attr.OnAuthorization(context.Object);
// Assert
Assert.Null(context.Object.Result);
}
[Fact]
public void ThrowsIfNotChildRequest()
{
// Arrange
ChildActionOnlyAttribute attr = new ChildActionOnlyAttribute();
Mock<AuthorizationContext> context = new Mock<AuthorizationContext>();
context.Setup(c => c.IsChildAction).Returns(false);
context.Setup(c => c.ActionDescriptor.ActionName).Returns("some name");
// Act & assert
Assert.Throws<InvalidOperationException>(
delegate { attr.OnAuthorization(context.Object); },
@"The action 'some name' is accessible only by a child request.");
}
}
}