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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Reflection;
using Moq;
using Xunit;
using Assert = Microsoft.TestCommon.AssertEx;
namespace System.Web.Mvc.Async.Test
{
public class ReflectedAsyncControllerDescriptorTest
{
[Fact]
public void ConstructorSetsControllerTypeProperty()
{
// Arrange
Type controllerType = typeof(string);
// Act
ReflectedAsyncControllerDescriptor cd = new ReflectedAsyncControllerDescriptor(controllerType);
// Assert
Assert.Same(controllerType, cd.ControllerType);
}
[Fact]
public void ConstructorThrowsIfControllerTypeIsNull()
{
// Act & assert
Assert.ThrowsArgumentNull(
delegate { new ReflectedAsyncControllerDescriptor(null); }, "controllerType");
}
[Fact]
public void FindActionReturnsActionDescriptorIfFound()
{
// Arrange
Type controllerType = typeof(MyController);
MethodInfo asyncMethodInfo = controllerType.GetMethod("FooAsync");
MethodInfo completedMethodInfo = controllerType.GetMethod("FooCompleted");
ReflectedAsyncControllerDescriptor cd = new ReflectedAsyncControllerDescriptor(controllerType);
// Act
ActionDescriptor ad = cd.FindAction(new Mock<ControllerContext>().Object, "NewName");
// Assert
Assert.Equal("NewName", ad.ActionName);
var castAd = Assert.IsType<ReflectedAsyncActionDescriptor>(ad);
Assert.Same(asyncMethodInfo, castAd.AsyncMethodInfo);
Assert.Same(completedMethodInfo, castAd.CompletedMethodInfo);
Assert.Same(cd, ad.ControllerDescriptor);
}
[Fact]
public void FindActionReturnsNullIfNoActionFound()
{
// Arrange
Type controllerType = typeof(MyController);
ReflectedAsyncControllerDescriptor cd = new ReflectedAsyncControllerDescriptor(controllerType);
// Act
ActionDescriptor ad = cd.FindAction(new Mock<ControllerContext>().Object, "NonExistent");
// Assert
Assert.Null(ad);
}
[Fact]
public void FindActionThrowsIfActionNameIsEmpty()
{
// Arrange
Type controllerType = typeof(MyController);
ReflectedAsyncControllerDescriptor cd = new ReflectedAsyncControllerDescriptor(controllerType);
// Act & assert
Assert.ThrowsArgumentNullOrEmpty(
delegate { cd.FindAction(new Mock<ControllerContext>().Object, ""); }, "actionName");
}
[Fact]
public void FindActionThrowsIfActionNameIsNull()
{
// Arrange
Type controllerType = typeof(MyController);
ReflectedAsyncControllerDescriptor cd = new ReflectedAsyncControllerDescriptor(controllerType);
// Act & assert
Assert.ThrowsArgumentNullOrEmpty(
delegate { cd.FindAction(new Mock<ControllerContext>().Object, null); }, "actionName");
}
[Fact]
public void FindActionThrowsIfControllerContextIsNull()
{
// Arrange
Type controllerType = typeof(MyController);
ReflectedAsyncControllerDescriptor cd = new ReflectedAsyncControllerDescriptor(controllerType);
// Act & assert
Assert.ThrowsArgumentNull(
delegate { cd.FindAction(null, "someName"); }, "controllerContext");
}
[Fact]
public void GetCanonicalActionsReturnsEmptyArray()
{
// this method does nothing by default
// Arrange
Type controllerType = typeof(MyController);
ReflectedAsyncControllerDescriptor cd = new ReflectedAsyncControllerDescriptor(controllerType);
// Act
ActionDescriptor[] canonicalActions = cd.GetCanonicalActions();
// Assert
Assert.Empty(canonicalActions);
}
[Fact]
public void GetCustomAttributesCallsTypeGetCustomAttributes()
{
// Arrange
object[] expected = new object[0];
Mock<Type> mockType = new Mock<Type>();
mockType.Setup(t => t.GetCustomAttributes(true)).Returns(expected);
ReflectedAsyncControllerDescriptor cd = new ReflectedAsyncControllerDescriptor(mockType.Object);
// Act
object[] returned = cd.GetCustomAttributes(true);
// Assert
Assert.Same(expected, returned);
}
[Fact]
public void GetCustomAttributesWithAttributeTypeCallsTypeGetCustomAttributes()
{
// Arrange
object[] expected = new object[0];
Mock<Type> mockType = new Mock<Type>();
mockType.Setup(t => t.GetCustomAttributes(typeof(ObsoleteAttribute), true)).Returns(expected);
ReflectedAsyncControllerDescriptor cd = new ReflectedAsyncControllerDescriptor(mockType.Object);
// Act
object[] returned = cd.GetCustomAttributes(typeof(ObsoleteAttribute), true);
// Assert
Assert.Same(expected, returned);
}
[Fact]
public void IsDefinedCallsTypeIsDefined()
{
// Arrange
Mock<Type> mockType = new Mock<Type>();
mockType.Setup(t => t.IsDefined(typeof(ObsoleteAttribute), true)).Returns(true);
ReflectedAsyncControllerDescriptor cd = new ReflectedAsyncControllerDescriptor(mockType.Object);
// Act
bool isDefined = cd.IsDefined(typeof(ObsoleteAttribute), true);
// Assert
Assert.True(isDefined);
}
private class MyController : AsyncController
{
[ActionName("NewName")]
public void FooAsync()
{
}
public void FooCompleted()
{
}
}
}
}
|