-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathPackerTests.cs
123 lines (110 loc) · 3.87 KB
/
PackerTests.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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using GameDevWare.Dynamic.Expressions.CSharp;
using Newtonsoft.Json;
using Xunit;
using Xunit.Abstractions;
namespace GameDevWare.Dynamic.Expressions.Tests
{
public class PackerTests
{
private class MyTestClass : IEnumerable
{
public MyTestClass(int param1)
{
}
public int PublicField;
public int PublicProperty { get; set; }
public MyTestClass SubClassField;
public int Add(int addParam1, string addParam2)
{
return 0;
}
public int Add(int addParam1)
{
return 0;
}
/// <inheritdoc />
public IEnumerator GetEnumerator()
{
throw new NotImplementedException();
}
}
public PackerTests(ITestOutputHelper output)
{
this.output = output;
}
private readonly ITestOutputHelper output;
public static IEnumerable<object[]> PackUnpackExpressionData()
{
var expressions = new Expression[] {
(Expression<Func<bool>>)(() => !true),
(Expression<Func<int>>)(() => +1),
(Expression<Func<int>>)(() => -1),
(Expression<Func<int>>)(() => ~1),
(Expression<Func<int>>)(() => 1 << 2),
(Expression<Func<int>>)(() => 1 >> 2),
(Expression<Func<int>>)(() => 1 - 2),
(Expression<Func<int>>)(() => 1 + 2),
(Expression<Func<int>>)(() => 1 * 2),
(Expression<Func<int>>)(() => 1 / 2),
(Expression<Func<int>>)(() => 1 % 2),
(Expression<Func<bool>>)(() => 1 != 2),
(Expression<Func<bool>>)(() => 1 == 2),
(Expression<Func<bool>>)(() => 1 > 2),
(Expression<Func<bool>>)(() => 1 >= 2),
(Expression<Func<bool>>)(() => 1 <= 2),
(Expression<Func<bool>>)(() => 1 < 2),
(Expression<Func<bool>>)(() => 1 < 2 || 1 > 2),
(Expression<Func<bool>>)(() => 1 < 2 | 1 > 2),
(Expression<Func<bool>>)(() => 1 < 2 & 1 > 2),
(Expression<Func<bool>>)(() => 1 < 2 && 1 > 2),
(Expression<Func<bool>>)(() => 1 < 2 ^ 1 > 2),
(Expression<Func<int>>)(() => default(int?) ?? 1),
(Expression<Func<int>>)(() => 1 < 2 ? 1 : 2),
Expression.Lambda<Func<int>>(Expression.ArrayLength(Expression.Constant(null, typeof(int[])))),
(Expression<Func<int>>)(() => default(int[])[0]),
//(Expression<Func<int>>)(() => default(int[,])[0,0]),
(Expression<Func<int>>)(() => string.Empty.IndexOf('0')),
(Expression<Func<int>>)(() => (int)Math.E),
(Expression<Func<int>>)(() => default(Func<int>)()),
(Expression<Func<List<int>>>)(() => new List<int> { 10, 100 }),
(Expression<Func<MyTestClass>>)(() => new MyTestClass(10) {
PublicField = 1,
PublicProperty = 2,
SubClassField = {
PublicField = 1,
SubClassField = {
{ 10, string.Empty },
{ 10 },
}
}
}),
(Expression<Func<int[]>>)(() => new [] { 10 }),
(Expression<Func<int[]>>)(() => new int[10]),
(Expression<Func<int, int>>)(p => p),
(Expression<Func<Expression>>)(() => default(object) as Expression),
(Expression<Func<bool>>)(() => string.Empty is string),
};
return (from expr in expressions
select new object[] { CSharpExpression.Format(expr), expr });
}
[Theory]
[MemberData(nameof(PackUnpackExpressionData))]
public void PackUnpackExpression(string expr, LambdaExpression lambdaExpression)
{
this.output.WriteLine("Original: " + lambdaExpression.ToString());
var packedExpression = ExpressionPacker.Pack(lambdaExpression);
this.output.WriteLine("Packed: " + JsonConvert.SerializeObject(packedExpression, Formatting.Indented));
var syntaxTree = new SyntaxTreeNode(packedExpression);
var binder = new Binder(lambdaExpression.Parameters, lambdaExpression.Body.Type);
var unpackedExpression = binder.Bind(syntaxTree);
this.output.WriteLine("Unpacked: " + unpackedExpression.ToString());
Assert.NotNull(unpackedExpression);
Assert.Equal(lambdaExpression.Body.NodeType, unpackedExpression.Body.NodeType);
}
}
}