forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHoistingExpressionVisitorTest.cs
More file actions
48 lines (42 loc) · 3.23 KB
/
Copy pathHoistingExpressionVisitorTest.cs
File metadata and controls
48 lines (42 loc) · 3.23 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
// 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.Collections.Generic;
using System.Linq.Expressions;
using Microsoft.TestCommon;
namespace System.Web.Mvc.ExpressionUtil.Test
{
public class HoistingExpressionVisitorTest
{
[Fact]
public void Hoist()
{
// Arrange
Expression<Func<string, int>> expr = s => (2 * s.Length) + 1;
// Act
Expression<Hoisted<string, int>> hoisted = HoistingExpressionVisitor<string, int>.Hoist(expr);
// Assert
// new expression should be (s, capturedConstants) => (int)(capturedConstants[0]) * s.Length + (int)(capturedConstants[1])
// with fingerprint [ LAMBDA:Hoisted<string, int>, OP_ADD:int, OP_MULTIPLY:int, OP_CAST:int, INDEX(List<object>.get_Item):object, PARAM(0):List<object>, CONST:int, MEMBER(String.Length):int, PARAM(1):string, OP_CAST:int, INDEX(List<object>.get_Item):object, PARAM(0):List<object>, CONST:int, PARAM(1):string, PARAM(0):List<object> ]
List<object> capturedConstants;
ExpressionFingerprintChain fingerprint = FingerprintingExpressionVisitor.GetFingerprintChain(hoisted, out capturedConstants);
Assert.Equal(new object[] { 0, 1 }, capturedConstants.ToArray()); // these are constants from the hoisted expression (array indexes), not the original expression
FingerprintingExpressionVisitorTest.AssertChainEquals(
fingerprint,
new LambdaExpressionFingerprint(ExpressionType.Lambda, typeof(Hoisted<string, int>)),
new BinaryExpressionFingerprint(ExpressionType.Add, typeof(int), null /* method */),
new BinaryExpressionFingerprint(ExpressionType.Multiply, typeof(int), null /* method */),
new UnaryExpressionFingerprint(ExpressionType.Convert, typeof(int), null /* method */),
new IndexExpressionFingerprint(ExpressionType.Index, typeof(object), typeof(List<object>).GetProperty("Item")),
new ParameterExpressionFingerprint(ExpressionType.Parameter, typeof(List<object>), 0 /* parameterIndex */),
new ConstantExpressionFingerprint(ExpressionType.Constant, typeof(int)),
new MemberExpressionFingerprint(ExpressionType.MemberAccess, typeof(int), typeof(string).GetProperty("Length")),
new ParameterExpressionFingerprint(ExpressionType.Parameter, typeof(string), 1 /* parameterIndex */),
new UnaryExpressionFingerprint(ExpressionType.Convert, typeof(int), null /* method */),
new IndexExpressionFingerprint(ExpressionType.Index, typeof(object), typeof(List<object>).GetProperty("Item")),
new ParameterExpressionFingerprint(ExpressionType.Parameter, typeof(List<object>), 0 /* parameterIndex */),
new ConstantExpressionFingerprint(ExpressionType.Constant, typeof(int)),
new ParameterExpressionFingerprint(ExpressionType.Parameter, typeof(string), 1 /* parameterIndex */),
new ParameterExpressionFingerprint(ExpressionType.Parameter, typeof(List<object>), 0 /* parameterIndex */));
}
}
}