forked from devlooped/moq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatcherFactory.cs
200 lines (177 loc) · 6.59 KB
/
MatcherFactory.cs
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) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD, and Contributors.
// All rights reserved. Licensed under the BSD 3-Clause License; see License.txt.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq.Expressions;
using System.Reflection;
using Moq.Matchers;
using Moq.Properties;
using TypeNameFormatter;
namespace Moq
{
internal static class MatcherFactory
{
public static Pair<IMatcher[], Expression[]> CreateMatchers(IReadOnlyList<Expression> arguments, ParameterInfo[] parameters)
{
Debug.Assert(arguments != null);
Debug.Assert(parameters != null);
Debug.Assert(arguments.Count == parameters.Length);
var n = parameters.Length;
var evaluatedArguments = new Expression[n];
var argumentMatchers = new IMatcher[n];
for (int i = 0; i < n; ++i)
{
(argumentMatchers[i], evaluatedArguments[i]) = MatcherFactory.CreateMatcher(arguments[i], parameters[i]);
}
return new Pair<IMatcher[], Expression[]>(argumentMatchers, evaluatedArguments);
}
public static Pair<IMatcher, Expression> CreateMatcher(Expression argument, ParameterInfo parameter)
{
if (parameter.ParameterType.IsByRef)
{
if ((parameter.Attributes & (ParameterAttributes.In | ParameterAttributes.Out)) == ParameterAttributes.Out)
{
// `out` parameter
return new Pair<IMatcher, Expression>(AnyMatcher.Instance, argument);
}
else
{
// `ref` parameter
// Test for special case: `It.Ref<TValue>.IsAny`
if (argument is MemberExpression memberExpression)
{
var member = memberExpression.Member;
if (member.Name == nameof(It.Ref<object>.IsAny))
{
var memberDeclaringType = member.DeclaringType;
if (memberDeclaringType.IsGenericType)
{
var memberDeclaringTypeDefinition = memberDeclaringType.GetGenericTypeDefinition();
if (memberDeclaringTypeDefinition == typeof(It.Ref<>))
{
return new Pair<IMatcher, Expression>(AnyMatcher.Instance, argument);
}
}
}
}
if (argument.PartialEval() is ConstantExpression constant)
{
return new Pair<IMatcher, Expression>(new RefMatcher(constant.Value), constant);
}
throw new NotSupportedException(Resources.RefExpressionMustBeConstantValue);
}
}
else if (parameter.IsDefined(typeof(ParamArrayAttribute), true) && argument.NodeType == ExpressionType.NewArrayInit)
{
var newArrayExpression = (NewArrayExpression)argument;
Debug.Assert(newArrayExpression.Type.IsArray);
var elementType = newArrayExpression.Type.GetElementType();
var n = newArrayExpression.Expressions.Count;
var matchers = new IMatcher[n];
var initializers = new Expression[n];
for (int i = 0; i < n; ++i)
{
(matchers[i], initializers[i]) = MatcherFactory.CreateMatcher(newArrayExpression.Expressions[i]);
initializers[i] = initializers[i].ConvertIfNeeded(elementType);
}
return new Pair<IMatcher, Expression>(new ParamArrayMatcher(matchers), Expression.NewArrayInit(elementType, initializers));
}
else if (argument.NodeType == ExpressionType.Convert)
{
var convertExpression = (UnaryExpression)argument;
if (convertExpression.Method?.Name == "op_Implicit")
{
if (convertExpression.Operand.IsMatch(out var match))
{
Type matchedValuesType;
if (match.GetType().IsGenericType)
{
// If match type is `Match<int>`, matchedValuesType set to `int`
// Fix for https://github.com/moq/moq4/issues/1199
matchedValuesType = match.GetType().GenericTypeArguments[0];
}
else
{
matchedValuesType = convertExpression.Operand.Type;
}
if (!matchedValuesType.IsAssignableFrom(parameter.ParameterType))
{
throw new ArgumentException(
string.Format(
Resources.ArgumentMatcherWillNeverMatch,
convertExpression.Operand.ToStringFixed(),
convertExpression.Operand.Type.GetFormattedName(),
parameter.ParameterType.GetFormattedName()));
}
}
}
}
return MatcherFactory.CreateMatcher(argument);
}
public static Pair<IMatcher, Expression> CreateMatcher(Expression expression)
{
// Type inference on the call might
// do automatic conversion to the desired
// method argument type, and a Convert expression type
// might be the topmost instead.
// i.e.: It.IsInRange(0, 100, Range.Inclusive)
// the values are ints, but if the method to call
// expects, say, a double, a Convert node will be on
// the expression.
//
// Another case is VB.NET explicitly upcasting generic type parameters to the type they're constrained to,
// in places where the constrained-to type is expected. Say you have a parameter with static type `TBase`,
// and you're passing `It.IsAny<T>()` where `T : TBase`. VB.NET will then transform this call to
// `(TBase)(object)It.IsAny<T>()`.
var originalExpression = expression;
while (expression.NodeType == ExpressionType.Convert)
{
expression = ((UnaryExpression)expression).Operand;
}
// SetupSet passes a custom expression.
if (expression is MatchExpression matchExpression)
{
return new Pair<IMatcher, Expression>(matchExpression.Match, matchExpression);
}
if (expression is MethodCallExpression call)
{
if (expression.IsMatch(out var match))
{
return new Pair<IMatcher, Expression>(match, expression);
}
#pragma warning disable 618
if (call.Method.IsDefined(typeof(MatcherAttribute), true))
{
return new Pair<IMatcher, Expression>(new MatcherAttributeMatcher(call), call);
}
#pragma warning restore 618
var method = call.Method;
if (!method.IsGetAccessor())
{
return new Pair<IMatcher, Expression>(new LazyEvalMatcher(originalExpression), originalExpression);
}
}
else if (expression is MemberExpression || expression is IndexExpression)
{
if (expression.IsMatch(out var match))
{
return new Pair<IMatcher, Expression>(match, expression);
}
}
// Try reducing locals to get a constant.
var reduced = originalExpression.PartialEval();
if (reduced.NodeType == ExpressionType.Constant)
{
return new Pair<IMatcher, Expression>(new ConstantMatcher(((ConstantExpression)reduced).Value), reduced);
}
if (reduced.NodeType == ExpressionType.Quote)
{
return new Pair<IMatcher, Expression>(new ExpressionMatcher(((UnaryExpression)expression).Operand), reduced);
}
throw new NotSupportedException(
string.Format(CultureInfo.CurrentCulture, Resources.UnsupportedExpression, originalExpression));
}
}
}