-
Notifications
You must be signed in to change notification settings - Fork 257
Expand file tree
/
Copy pathNpgsqlAnnotationCodeGeneratorTest.cs
More file actions
402 lines (325 loc) · 17.5 KB
/
NpgsqlAnnotationCodeGeneratorTest.cs
File metadata and controls
402 lines (325 loc) · 17.5 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
using Npgsql.EntityFrameworkCore.PostgreSQL.Internal;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Internal;
using Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal;
namespace Npgsql.EntityFrameworkCore.PostgreSQL.Design.Internal;
public class NpgsqlAnnotationCodeGeneratorTest
{
#region Identity / sequence / HiLo
[Fact]
public void GenerateFluentApi_value_generation()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
modelBuilder.Entity(
"Post",
x =>
{
x.Property<int>("IdentityByDefault").UseIdentityByDefaultColumn();
x.Property<int>("IdentityAlways").UseIdentityAlwaysColumn();
x.Property<int>("Serial").UseSerialColumn();
x.Property<int>("None").Metadata.SetValueGenerationStrategy(NpgsqlValueGenerationStrategy.None);
});
// Note: both serial and identity-by-default columns are considered by-convention - we don't want
// to assume that the PostgreSQL version of the scaffolded database necessarily determines the
// version of the database that the scaffolded model will target. This makes life difficult for
// models with mixed strategies but that's an edge case.
var entity = (IEntityType)modelBuilder.Model.FindEntityType("Post");
var property = entity.GetProperties().Single(p => p.Name == "IdentityByDefault");
var annotations = property.GetAnnotations().ToDictionary(a => a.Name, a => a);
generator.RemoveAnnotationsHandledByConventions(property, annotations);
Assert.Empty(annotations);
var result = generator.GenerateFluentApiCalls(property, property.GetAnnotations().ToDictionary(a => a.Name, a => a))
.Single();
Assert.Equal(nameof(NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn), result.Method);
Assert.Empty(result.Arguments);
property = entity.GetProperties().Single(p => p.Name == "IdentityAlways");
annotations = property.GetAnnotations().ToDictionary(a => a.Name, a => a);
generator.RemoveAnnotationsHandledByConventions(property, annotations);
Assert.Contains(annotations, kv => kv.Key == NpgsqlAnnotationNames.ValueGenerationStrategy);
result = generator.GenerateFluentApiCalls(property, annotations).Single();
Assert.Equal(nameof(NpgsqlPropertyBuilderExtensions.UseIdentityAlwaysColumn), result.Method);
Assert.Empty(result.Arguments);
property = entity.GetProperties().Single(p => p.Name == "Serial");
annotations = property.GetAnnotations().ToDictionary(a => a.Name, a => a);
generator.RemoveAnnotationsHandledByConventions(property, annotations);
Assert.Empty(annotations);
result = generator.GenerateFluentApiCalls(property, property.GetAnnotations().ToDictionary(a => a.Name, a => a))
.Single();
Assert.Equal(nameof(NpgsqlPropertyBuilderExtensions.UseSerialColumn), result.Method);
Assert.Empty(result.Arguments);
property = entity.GetProperties().Single(p => p.Name == "None");
annotations = property.GetAnnotations().ToDictionary(a => a.Name, a => a);
generator.RemoveAnnotationsHandledByConventions(property, annotations);
Assert.Contains(annotations, kv => kv.Key == NpgsqlAnnotationNames.ValueGenerationStrategy);
result = generator.GenerateFluentApiCalls(property, property.GetAnnotations().ToDictionary(a => a.Name, a => a))
.Single();
Assert.Equal(nameof(PropertyBuilder.HasAnnotation), result.Method);
Assert.Collection(result.Arguments,
a => Assert.Equal(NpgsqlAnnotationNames.ValueGenerationStrategy, a),
a => Assert.Equal(NpgsqlValueGenerationStrategy.None, a));
}
[Fact]
public void GenerateFluentApi_identity_sequence_options()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
modelBuilder.Entity(
"Post",
x =>
{
x.Property<int>("Id")
.UseIdentityByDefaultColumn()
.HasIdentityOptions(
startValue: 5,
incrementBy: 2,
minValue: 3,
maxValue: 2000,
cyclic: true,
numbersToCache: 10);
});
var property = (IProperty)modelBuilder.Model.FindEntityType("Post").GetProperties()
.Single(p => p.Name == "Id");
var annotations = property.GetAnnotations().ToDictionary(a => a.Name, a => a);
generator.RemoveAnnotationsHandledByConventions(property, annotations);
Assert.Contains(annotations, kv => kv.Key == NpgsqlAnnotationNames.IdentityOptions);
var result = generator.GenerateFluentApiCalls(property, annotations).Single();
Assert.Equal(nameof(NpgsqlPropertyBuilderExtensions.HasIdentityOptions), result.Method);
Assert.Equal(5L, result.Arguments[0]);
Assert.Equal(2L, result.Arguments[1]);
Assert.Equal(3L, result.Arguments[2]);
Assert.Equal(2000L, result.Arguments[3]);
Assert.Equal(true, result.Arguments[4]);
Assert.Equal(10L, result.Arguments[5]);
}
[ConditionalFact]
public void GenerateFluentApi_IModel_works_with_IdentityByDefault()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
modelBuilder.UseIdentityByDefaultColumns();
var annotations = modelBuilder.Model.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls(((IModel)modelBuilder.Model), annotations).Single();
Assert.Equal("UseIdentityByDefaultColumns", result.Method);
Assert.Equal("NpgsqlModelBuilderExtensions", result.DeclaringType);
Assert.Empty(result.Arguments);
}
[ConditionalFact]
public void GenerateFluentApi_IProperty_works_with_IdentityByDefault()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
modelBuilder.Entity("Post", x => x.Property<int>("Id").UseIdentityByDefaultColumn());
var property = (IProperty)modelBuilder.Model.FindEntityType("Post").FindProperty("Id");
var annotations = property.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls(property, annotations).Single();
Assert.Equal("UseIdentityByDefaultColumn", result.Method);
Assert.Equal("NpgsqlPropertyBuilderExtensions", result.DeclaringType);
Assert.Empty(result.Arguments);
}
[ConditionalFact]
public void GenerateFluentApi_IModel_works_with_IdentityAlways()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
modelBuilder.UseIdentityAlwaysColumns();
var annotations = modelBuilder.Model.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls(((IModel)modelBuilder.Model), annotations).Single();
Assert.Equal("UseIdentityAlwaysColumns", result.Method);
Assert.Equal("NpgsqlModelBuilderExtensions", result.DeclaringType);
Assert.Empty(result.Arguments);
}
[ConditionalFact]
public void GenerateFluentApi_IProperty_works_with_IdentityAlways()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
modelBuilder.Entity("Post", x => x.Property<int>("Id").UseIdentityAlwaysColumn());
var property = (IProperty)modelBuilder.Model.FindEntityType("Post").FindProperty("Id");
var annotations = property.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls(property, annotations).Single();
Assert.Equal("UseIdentityAlwaysColumn", result.Method);
Assert.Equal("NpgsqlPropertyBuilderExtensions", result.DeclaringType);
Assert.Empty(result.Arguments);
}
[ConditionalFact]
public void GenerateFluentApi_IModel_works_with_HiLo()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
modelBuilder.UseHiLo("HiLoIndexName", "HiLoIndexSchema");
var annotations = modelBuilder.Model.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls((IModel)modelBuilder.Model, annotations).Single();
Assert.Equal("UseHiLo", result.Method);
Assert.Equal("NpgsqlModelBuilderExtensions", result.DeclaringType);
Assert.Collection(
result.Arguments,
name => Assert.Equal("HiLoIndexName", name),
schema => Assert.Equal("HiLoIndexSchema", schema));
}
[ConditionalFact]
public void GenerateFluentApi_IProperty_works_with_HiLo()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
modelBuilder.Entity("Post", x => x.Property<int>("Id").UseHiLo("HiLoIndexName", "HiLoIndexSchema"));
var property = (IProperty)modelBuilder.Model.FindEntityType("Post").FindProperty("Id");
var annotations = property.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls(property, annotations).Single();
Assert.Equal("UseHiLo", result.Method);
Assert.Equal("NpgsqlPropertyBuilderExtensions", result.DeclaringType);
Assert.Collection(
result.Arguments,
name => Assert.Equal("HiLoIndexName", name),
schema => Assert.Equal("HiLoIndexSchema", schema));
}
#endregion Identity / sequence / HiLo
#region PostgreSQL extensions
[ConditionalFact]
public void Extension()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
modelBuilder.HasPostgresExtension("postgis");
var model = (IModel)modelBuilder.Model;
var annotations = model.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls(model, annotations)
.Single(c => c.Method == nameof(NpgsqlModelBuilderExtensions.HasPostgresExtension));
Assert.Collection(result.Arguments, name => Assert.Equal("postgis", name));
}
[ConditionalFact]
public void Extension_with_schema()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
modelBuilder.HasPostgresExtension("some_schema", "postgis");
var model = (IModel)modelBuilder.Model;
var annotations = model.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls(model, annotations)
.Single(c => c.Method == nameof(NpgsqlModelBuilderExtensions.HasPostgresExtension));
Assert.Collection(result.Arguments,
schema => Assert.Equal("some_schema", schema),
name => Assert.Equal("postgis", name));
}
[ConditionalFact]
public void Extension_with_null_schema()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
modelBuilder.HasPostgresExtension(null, "postgis");
var model = (IModel)modelBuilder.Model;
var annotations = model.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls(model, annotations)
.Single(c => c.Method == nameof(NpgsqlModelBuilderExtensions.HasPostgresExtension));
Assert.Collection(result.Arguments, name => Assert.Equal("postgis", name));
}
#endregion PostgreSQL extensions
#region Enum
[ConditionalFact]
public void Enum()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
var enumLabels = new[] { "someValue1", "someValue2" };
modelBuilder.HasPostgresEnum("some_enum", enumLabels);
var model = (IModel)modelBuilder.Model;
var annotations = model.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls(model, annotations)
.Single(c => c.Method == nameof(NpgsqlModelBuilderExtensions.HasPostgresEnum));
Assert.Collection(result.Arguments,
name => Assert.Equal("some_enum", name),
labels => Assert.Equal(enumLabels, labels));
}
[ConditionalFact]
public void Enum_with_schema()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
var enumLabels = new[] { "someValue1", "someValue2" };
modelBuilder.HasPostgresEnum("some_schema", "some_enum", enumLabels);
var model = (IModel)modelBuilder.Model;
var annotations = model.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls(model, annotations)
.Single(c => c.Method == nameof(NpgsqlModelBuilderExtensions.HasPostgresEnum));
Assert.Collection(result.Arguments,
schema => Assert.Equal("some_schema", schema),
name => Assert.Equal("some_enum", name),
labels => Assert.Equal(enumLabels, labels));
}
[ConditionalFact]
public void Enum_with_null_schema()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
var enumLabels = new[] { "someValue1", "someValue2" };
modelBuilder.HasPostgresEnum(schema: null, "some_enum", enumLabels);
var model = (IModel)modelBuilder.Model;
var annotations = model.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls(model, annotations)
.Single(c => c.Method == nameof(NpgsqlModelBuilderExtensions.HasPostgresEnum));
Assert.Collection(result.Arguments,
name => Assert.Equal("some_enum", name),
labels => Assert.Equal(enumLabels, labels));
}
#endregion Enum
#region Range
[ConditionalFact]
public void Range()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
modelBuilder.HasPostgresRange("some_range", "some_subtype");
var model = (IModel)modelBuilder.Model;
var annotations = model.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls(model, annotations)
.Single(c => c.Method == nameof(NpgsqlModelBuilderExtensions.HasPostgresRange));
Assert.Collection(result.Arguments,
name => Assert.Equal("some_range", name),
subtype => Assert.Equal("some_subtype", subtype));
}
[ConditionalFact]
public void Range_with_schema()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
modelBuilder.HasPostgresRange("some_schema", "some_range", "some_subtype");
var model = (IModel)modelBuilder.Model;
var annotations = model.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls(model, annotations)
.Single(c => c.Method == nameof(NpgsqlModelBuilderExtensions.HasPostgresRange));
Assert.Collection(result.Arguments,
schema => Assert.Equal("some_schema", schema),
name => Assert.Equal("some_range", name),
subtype => Assert.Equal("some_subtype", subtype),
canonicalFunction => Assert.Null(canonicalFunction),
subtypeOpClass => Assert.Null(subtypeOpClass),
collation => Assert.Null(collation),
subtypeDiff => Assert.Null(subtypeDiff));
}
[ConditionalFact]
public void Range_with_null_schema()
{
var generator = CreateGenerator();
var modelBuilder = new ModelBuilder(NpgsqlConventionSetBuilder.Build());
modelBuilder.HasPostgresRange(schema: null, "some_range", "some_subtype");
var model = (IModel)modelBuilder.Model;
var annotations = model.GetAnnotations().ToDictionary(a => a.Name, a => a);
var result = generator.GenerateFluentApiCalls(model, annotations)
.Single(c => c.Method == nameof(NpgsqlModelBuilderExtensions.HasPostgresRange));
Assert.Collection(result.Arguments,
name => Assert.Equal("some_range", name),
subtype => Assert.Equal("some_subtype", subtype));
}
#endregion Range
private NpgsqlAnnotationCodeGenerator CreateGenerator()
=> new(new AnnotationCodeGeneratorDependencies(
new NpgsqlTypeMappingSource(
new TypeMappingSourceDependencies(
new ValueConverterSelector(new ValueConverterSelectorDependencies()),
Array.Empty<ITypeMappingSourcePlugin>()
),
new RelationalTypeMappingSourceDependencies(Array.Empty<IRelationalTypeMappingSourcePlugin>()),
new NpgsqlSqlGenerationHelper(new RelationalSqlGenerationHelperDependencies()),
new NpgsqlSingletonOptions())));
}