forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathActionMethodDispatcherTest.cs
More file actions
129 lines (107 loc) · 4.29 KB
/
Copy pathActionMethodDispatcherTest.cs
File metadata and controls
129 lines (107 loc) · 4.29 KB
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
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Reflection;
using Microsoft.TestCommon;
namespace System.Web.Mvc.Test
{
public class ActionMethodDispatcherTest
{
[Fact]
public void ExecuteWithNormalActionMethod()
{
// Arrange
DispatcherController controller = new DispatcherController();
object[] parameters = new object[] { 5, "some string", new DateTime(2001, 1, 1) };
MethodInfo methodInfo = typeof(DispatcherController).GetMethod("NormalAction");
ActionMethodDispatcher dispatcher = new ActionMethodDispatcher(methodInfo);
// Act
object returnValue = dispatcher.Execute(controller, parameters);
// Assert
var stringResult = Assert.IsType<string>(returnValue);
Assert.Equal("Hello from NormalAction!", stringResult);
Assert.Equal(5, controller._i);
Assert.Equal("some string", controller._s);
Assert.Equal(new DateTime(2001, 1, 1), controller._dt);
}
[Fact]
public void ExecuteWithParameterlessActionMethod()
{
// Arrange
DispatcherController controller = new DispatcherController();
object[] parameters = new object[0];
MethodInfo methodInfo = typeof(DispatcherController).GetMethod("ParameterlessAction");
ActionMethodDispatcher dispatcher = new ActionMethodDispatcher(methodInfo);
// Act
object returnValue = dispatcher.Execute(controller, parameters);
// Assert
var intResult = Assert.IsType<int>(returnValue);
Assert.Equal(53, intResult);
}
[Fact]
public void ExecuteWithStaticActionMethod()
{
// Arrange
DispatcherController controller = new DispatcherController();
object[] parameters = new object[0];
MethodInfo methodInfo = typeof(DispatcherController).GetMethod("StaticAction");
ActionMethodDispatcher dispatcher = new ActionMethodDispatcher(methodInfo);
// Act
object returnValue = dispatcher.Execute(controller, parameters);
// Assert
var intResult = Assert.IsType<int>(returnValue);
Assert.Equal(89, intResult);
}
[Fact]
public void ExecuteWithVoidActionMethod()
{
// Arrange
DispatcherController controller = new DispatcherController();
object[] parameters = new object[] { 5, "some string", new DateTime(2001, 1, 1) };
MethodInfo methodInfo = typeof(DispatcherController).GetMethod("VoidAction");
ActionMethodDispatcher dispatcher = new ActionMethodDispatcher(methodInfo);
// Act
object returnValue = dispatcher.Execute(controller, parameters);
// Assert
Assert.Null(returnValue);
Assert.Equal(5, controller._i);
Assert.Equal("some string", controller._s);
Assert.Equal(new DateTime(2001, 1, 1), controller._dt);
}
[Fact]
public void MethodInfoProperty()
{
// Arrange
MethodInfo original = typeof(object).GetMethod("ToString");
ActionMethodDispatcher dispatcher = new ActionMethodDispatcher(original);
// Act
MethodInfo returned = dispatcher.MethodInfo;
// Assert
Assert.Same(original, returned);
}
private class DispatcherController : Controller
{
public int _i;
public string _s;
public DateTime _dt;
public object NormalAction(int i, string s, DateTime dt)
{
VoidAction(i, s, dt);
return "Hello from NormalAction!";
}
public int ParameterlessAction()
{
return 53;
}
public void VoidAction(int i, string s, DateTime dt)
{
_i = i;
_s = s;
_dt = dt;
}
public static int StaticAction()
{
return 89;
}
}
}
}