-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathGenericTests.cs
More file actions
192 lines (154 loc) · 5.04 KB
/
GenericTests.cs
File metadata and controls
192 lines (154 loc) · 5.04 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
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
using System.Threading.Tasks;
using VerifyXunit;
using Xunit;
namespace EntityFrameworkCore.Projectables.Generator.Tests;
public class GenericTests : ProjectionExpressionGeneratorTestsBase
{
public GenericTests(ITestOutputHelper testOutputHelper) : base(testOutputHelper) { }
[Fact]
public Task GenericMethods_AreRewritten()
{
var compilation = CreateCompilation(@"
using System;
using System.Linq;
using System.Collections.Generic;
using EntityFrameworkCore.Projectables;
namespace Foo {
public static class EntityExtensions
{
public record Entity
{
public int Id { get; set; }
public string? FullName { get; set; }
}
[Projectable]
public static string EnforceString<T>(T value) where T : unmanaged
=> value.ToString();
}
}
");
var result = RunGenerator(compilation);
Assert.Empty(result.Diagnostics);
Assert.Single(result.GeneratedTrees);
return Verifier.Verify(result.GeneratedTrees[0].ToString());
}
[Fact]
public Task GenericClassesWithContraints_AreRewritten()
{
var compilation = CreateCompilation(@"
using System;
using System.Linq;
using System.Collections.Generic;
using EntityFrameworkCore.Projectables;
namespace Foo {
public class TypedObject<TEnum> where TEnum : struct, System.Enum
{
public TEnum SomeProp { get; set; }
}
public abstract class Entity<T, TEnum>where T : TypedObject<TEnum> where TEnum : struct, System.Enum
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public T SomeSubobject { get; set; }
[Projectable]
public string FullName => $""{FirstName} {LastName} {SomeSubobject.SomeProp}"";
}
}
");
var result = RunGenerator(compilation);
Assert.Empty(result.Diagnostics);
Assert.Single(result.GeneratedTrees);
return Verifier.Verify(result.GeneratedTrees[0].ToString());
}
[Fact]
public Task GenericClassesWithTypeContraints_AreRewritten()
{
var compilation = CreateCompilation(@"
using System;
using System.Linq;
using System.Collections.Generic;
using EntityFrameworkCore.Projectables;
namespace Foo {
public abstract class Entity<T> where T : notnull
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public T SomeSubobject { get; set; }
[Projectable]
public string FullName => $""{FirstName} {LastName} {SomeSubobject}"";
}
}
");
var result = RunGenerator(compilation);
Assert.Empty(result.Diagnostics);
return Verifier.Verify(result.GeneratedTrees[0].ToString());
}
[Fact]
public Task GenericTypes()
{
var compilation = CreateCompilation(@"
using EntityFrameworkCore.Projectables;
class EntiyBase<TId> {
[Projectable]
public static TId GetId() => default;
}
");
var result = RunGenerator(compilation);
Assert.Empty(result.Diagnostics);
Assert.Single(result.GeneratedTrees);
return Verifier.Verify(result.GeneratedTrees[0].ToString());
}
[Fact]
public Task GenericTypesWithConstraints()
{
var compilation = CreateCompilation(@"
using System;
using EntityFrameworkCore.Projectables;
class EntityBase<TId> where TId : ICloneable, new() {
[Projectable]
public static TId GetId() => default;
}
");
var result = RunGenerator(compilation);
Assert.Empty(result.Diagnostics);
Assert.Single(result.GeneratedTrees);
return Verifier.Verify(result.GeneratedTrees[0].ToString());
}
/// <summary>
/// Regression test for the runtime resolver bug where methods in a generic class
/// with generic type-parameter parameters were not resolved.
/// The source generator part was always correct;
/// the failing side was the runtime resolver (fixed in ProjectionExpressionResolver).
/// </summary>
[Fact]
public Task GenericClassMethodsWithClassTypeParameterAsMethodParameter()
{
var compilation = CreateCompilation(@"
using System;
using System.Linq;
using System.Collections.Generic;
using EntityFrameworkCore.Projectables;
namespace Foo {
public class Address {
public string DisplayName { get; set; }
}
public class ContactAddress<TType> where TType : struct, System.Enum {
public TType Type { get; set; }
public Address Address { get; set; }
}
public class Contact<TType> where TType : struct, System.Enum {
public IList<ContactAddress<TType>> Addresses { get; set; }
[Projectable]
public string GetDisplayNameByType(TType type) =>
Addresses.Where(a => a.Type.Equals(type)).Select(a => a.Address.DisplayName).FirstOrDefault();
}
}
");
var result = RunGenerator(compilation);
Assert.Empty(result.Diagnostics);
Assert.Single(result.GeneratedTrees);
return Verifier.Verify(result.GeneratedTrees[0].ToString());
}
}