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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Linq;
using System.Reflection;
using Moq;
using Xunit;
using Assert = Microsoft.TestCommon.AssertEx;
namespace System.Web.Mvc.Test
{
public class ReflectedControllerDescriptorTest
{
[Fact]
public void ConstructorSetsControllerTypeProperty()
{
// Arrange
Type controllerType = typeof(string);
// Act
ReflectedControllerDescriptor cd = new ReflectedControllerDescriptor(controllerType);
// Assert
Assert.Same(controllerType, cd.ControllerType);
}
[Fact]
public void ConstructorThrowsIfControllerTypeIsNull()
{
// Act & assert
Assert.ThrowsArgumentNull(
delegate { new ReflectedControllerDescriptor(null); }, "controllerType");
}
[Fact]
public void FindActionReturnsActionDescriptorIfFound()
{
// Arrange
Type controllerType = typeof(MyController);
MethodInfo targetMethod = controllerType.GetMethod("AliasedMethod");
ReflectedControllerDescriptor cd = new ReflectedControllerDescriptor(controllerType);
// Act
ActionDescriptor ad = cd.FindAction(new Mock<ControllerContext>().Object, "NewName");
// Assert
Assert.Equal("NewName", ad.ActionName);
Assert.IsType<ReflectedActionDescriptor>(ad);
Assert.Same(targetMethod, ((ReflectedActionDescriptor)ad).MethodInfo);
Assert.Same(cd, ad.ControllerDescriptor);
}
[Fact]
public void FindActionReturnsNullIfNoActionFound()
{
// Arrange
Type controllerType = typeof(MyController);
ReflectedControllerDescriptor cd = new ReflectedControllerDescriptor(controllerType);
// Act
ActionDescriptor ad = cd.FindAction(new Mock<ControllerContext>().Object, "NonExistent");
// Assert
Assert.Null(ad);
}
[Fact]
public void FindActionThrowsIfActionNameIsEmpty()
{
// Arrange
Type controllerType = typeof(MyController);
ReflectedControllerDescriptor cd = new ReflectedControllerDescriptor(controllerType);
// Act & assert
Assert.ThrowsArgumentNullOrEmpty(
delegate { cd.FindAction(new Mock<ControllerContext>().Object, ""); }, "actionName");
}
[Fact]
public void FindActionThrowsIfActionNameIsNull()
{
// Arrange
Type controllerType = typeof(MyController);
ReflectedControllerDescriptor cd = new ReflectedControllerDescriptor(controllerType);
// Act & assert
Assert.ThrowsArgumentNullOrEmpty(
delegate { cd.FindAction(new Mock<ControllerContext>().Object, null); }, "actionName");
}
[Fact]
public void FindActionThrowsIfControllerContextIsNull()
{
// Arrange
Type controllerType = typeof(MyController);
ReflectedControllerDescriptor cd = new ReflectedControllerDescriptor(controllerType);
// Act & assert
Assert.ThrowsArgumentNull(
delegate { cd.FindAction(null, "someName"); }, "controllerContext");
}
[Fact]
public void GetCanonicalActionsWrapsMethodInfos()
{
// Arrange
Type controllerType = typeof(MyController);
MethodInfo mInfo0 = controllerType.GetMethod("AliasedMethod");
MethodInfo mInfo1 = controllerType.GetMethod("NonAliasedMethod");
ReflectedControllerDescriptor cd = new ReflectedControllerDescriptor(controllerType);
// Act
ActionDescriptor[] aDescsFirstCall = cd.GetCanonicalActions();
ActionDescriptor[] aDescsSecondCall = cd.GetCanonicalActions();
// Assert
Assert.NotSame(aDescsFirstCall, aDescsSecondCall);
Assert.True(aDescsFirstCall.SequenceEqual(aDescsSecondCall));
Assert.Equal(2, aDescsFirstCall.Length);
ReflectedActionDescriptor aDesc0 = aDescsFirstCall[0] as ReflectedActionDescriptor;
ReflectedActionDescriptor aDesc1 = aDescsFirstCall[1] as ReflectedActionDescriptor;
Assert.NotNull(aDesc0);
Assert.Equal("AliasedMethod", aDesc0.ActionName);
Assert.Same(mInfo0, aDesc0.MethodInfo);
Assert.Same(cd, aDesc0.ControllerDescriptor);
Assert.NotNull(aDesc1);
Assert.Equal("NonAliasedMethod", aDesc1.ActionName);
Assert.Same(mInfo1, aDesc1.MethodInfo);
Assert.Same(cd, aDesc1.ControllerDescriptor);
}
[Fact]
public void GetCustomAttributesCallsTypeGetCustomAttributes()
{
// Arrange
object[] expected = new object[0];
Mock<Type> mockType = new Mock<Type>();
mockType.Setup(t => t.GetCustomAttributes(true)).Returns(expected);
ReflectedControllerDescriptor cd = new ReflectedControllerDescriptor(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);
ReflectedControllerDescriptor cd = new ReflectedControllerDescriptor(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);
ReflectedControllerDescriptor cd = new ReflectedControllerDescriptor(mockType.Object);
// Act
bool isDefined = cd.IsDefined(typeof(ObsoleteAttribute), true);
// Assert
Assert.True(isDefined);
}
private class MyController : Controller
{
[ActionName("NewName")]
public void AliasedMethod()
{
}
public void NonAliasedMethod()
{
}
public void GenericMethod<T>()
{
}
private void PrivateMethod()
{
}
}
}
}
|