-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
DbContextOperationsTest.cs
460 lines (395 loc) · 17.9 KB
/
DbContextOperationsTest.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
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.Data.SqlClient;
using Microsoft.EntityFrameworkCore.Internal;
namespace Microsoft.EntityFrameworkCore.Design.Internal;
public class DbContextOperationsTest
{
[ConditionalFact]
public void CreateContext_gets_service()
=> CreateOperations(typeof(TestProgram), includeContext: false).CreateContext(typeof(TestContext).FullName.ToLower());
[ConditionalFact]
public void CreateContext_gets_service_without_name()
=> CreateOperations(typeof(TestProgram), includeContext: false).CreateContext(null);
[ConditionalFact]
public void CreateContext_gets_service_without_AddDbContext()
=> CreateOperations(typeof(TestProgramWithoutAddDbContext)).CreateContext(typeof(TestContext).FullName);
[ConditionalFact]
public void CreateContext_gets_service_when_context_factory_used()
=> CreateOperations(typeof(TestProgramWithContextFactory), includeContext: false).CreateContext(typeof(TestContextFromFactory).FullName);
[ConditionalFact]
public void CreateContext_gets_service_when_context_factory_used_without_name()
=> CreateOperations(typeof(TestProgramWithContextFactory), includeContext: false).CreateContext(null);
[ConditionalFact]
public void CreateContext_throws_if_context_type_not_found()
=> Assert.Equal(
DesignStrings.NoContextWithName(typeof(TestContextFromFactory).FullName),
Assert.Throws<OperationException>(
() => CreateOperations(typeof(TestProgramRelationalBad)).CreateContext(typeof(TestContextFromFactory).FullName)).Message);
[ConditionalFact]
public void CreateContext_throws_if_ambiguous_context_type_by_case()
{
var assembly = MockAssembly.Create(typeof(TestContext), typeof(Testcontext));
var reporter = new TestOperationReporter();
var operations = new TestDbContextOperations(
reporter,
assembly,
assembly,
project: "",
projectDir: "",
rootNamespace: null,
language: "C#",
nullable: false,
/* args: */ [],
new TestAppServiceProviderFactory(assembly, reporter));
Assert.Equal(
DesignStrings.MultipleContextsWithName(typeof(TestContext).FullName.ToLower()),
Assert.Throws<OperationException>(() => operations.CreateContext(typeof(TestContext).FullName.ToLower())).Message);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Critical);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Error);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Warning);
}
[ConditionalFact]
public void CreateContext_throws_if_ambiguous_context_type_by_namespace()
{
var assembly = MockAssembly.Create(typeof(TestContext), typeof(DatabaseOperationsTest.TestContext));
var reporter = new TestOperationReporter();
var operations = new TestDbContextOperations(
reporter,
assembly,
assembly,
project: "",
projectDir: "",
rootNamespace: null,
language: "C#",
nullable: false,
/* args: */ [],
new TestAppServiceProviderFactory(assembly, reporter));
Assert.Equal(
DesignStrings.MultipleContextsWithQualifiedName(nameof(TestContext)),
Assert.Throws<OperationException>(() => operations.CreateContext(nameof(TestContext))).Message);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Critical);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Error);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Warning);
}
[ConditionalFact]
public void CreateContext_throws_if_ambiguous_context_type()
{
var assembly = MockAssembly.Create(typeof(TestContext), typeof(Testcontext));
var reporter = new TestOperationReporter();
var operations = new TestDbContextOperations(
reporter,
assembly,
assembly,
project: "",
projectDir: "",
rootNamespace: null,
language: "C#",
nullable: false,
/* args: */ [],
new TestAppServiceProviderFactory(assembly, reporter));
Assert.Equal(
DesignStrings.MultipleContexts,
Assert.Throws<OperationException>(() => operations.CreateContext(null)).Message);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Critical);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Error);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Warning);
}
[ConditionalFact]
public void CreateContext_throws_if_no_context_type()
{
var assembly = MockAssembly.Create();
var reporter = new TestOperationReporter();
var operations = new TestDbContextOperations(
reporter,
assembly,
assembly,
project: "",
projectDir: "",
rootNamespace: null,
language: "C#",
nullable: false,
/* args: */ [],
new TestAppServiceProviderFactory(assembly, reporter));
Assert.Equal(
DesignStrings.NoContext(nameof(MockAssembly)),
Assert.Throws<OperationException>(() => operations.CreateContext(null)).Message);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Critical);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Error);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Warning);
}
[ConditionalFact]
public void Can_pass_null_args()
{
// Even though newer versions of the tools will pass an empty array
// older versions of the tools can pass null args.
var assembly = MockAssembly.Create(typeof(TestContext));
var reporter = new TestOperationReporter();
var operations = new TestDbContextOperations(
reporter,
assembly,
assembly,
project: "",
projectDir: "",
rootNamespace: null,
language: "C#",
nullable: false,
args: null,
new TestAppServiceProviderFactory(assembly, reporter));
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Critical);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Error);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Warning);
}
[ConditionalFact]
public void CreateContext_uses_exact_factory_method()
{
var assembly = MockAssembly.Create(typeof(BaseContext), typeof(DerivedContext), typeof(HierarchyContextFactory));
var reporter = new TestOperationReporter();
var operations = new TestDbContextOperations(
reporter,
assembly,
assembly,
project: "",
projectDir: "",
rootNamespace: null,
language: "C#",
nullable: false,
args: [],
new TestAppServiceProviderFactory(assembly, reporter, throwOnCreate: true));
var baseContext = Assert.IsType<BaseContext>(operations.CreateContext(nameof(BaseContext)));
Assert.Equal(nameof(BaseContext), baseContext.FactoryUsed);
var derivedContext = Assert.IsType<DerivedContext>(operations.CreateContext(nameof(DerivedContext)));
Assert.Equal(nameof(DerivedContext), derivedContext.FactoryUsed);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Critical);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Error);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Warning);
}
[ConditionalFact]
public void CreateAllContexts_creates_all_contexts()
{
var assembly = MockAssembly.Create(typeof(BaseContext), typeof(DerivedContext), typeof(HierarchyContextFactory));
var reporter = new TestOperationReporter();
var operations = new TestDbContextOperations(
reporter,
assembly,
assembly,
project: "",
projectDir: "",
rootNamespace: null,
language: "C#",
nullable: false,
args: [],
new TestAppServiceProviderFactory(assembly, reporter, throwOnCreate: true));
var contexts = operations.CreateAllContexts().ToList();
Assert.Collection(
contexts,
c => Assert.Equal(nameof(BaseContext), Assert.IsType<BaseContext>(c).FactoryUsed),
c => Assert.Equal(nameof(DerivedContext), Assert.IsType<DerivedContext>(c).FactoryUsed));
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Critical);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Error);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Warning);
}
[ConditionalFact]
public void Optimize_throws_when_no_contexts()
{
var assembly = MockAssembly.Create();
var reporter = new TestOperationReporter();
var operations = new TestDbContextOperations(
reporter,
assembly,
assembly,
project: "",
projectDir: "",
rootNamespace: null,
language: "C#",
nullable: false,
args: [],
new TestAppServiceProviderFactory(assembly, reporter, throwOnCreate: true));
Assert.Equal(
DesignStrings.NoContextsToOptimize,
Assert.Throws<OperationException>(() =>
operations.Optimize(
null, null, contextTypeName: "*", null, scaffoldModel: true, precompileQueries: false, nativeAot: false)).Message);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Critical);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Error);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Warning);
}
[ConditionalFact]
public void Optimize_shows_warning_when_nothing_was_generated()
{
var assembly = MockAssembly.Create(typeof(DerivedContext));
var reporter = new TestOperationReporter();
var operations = new TestDbContextOperations(
reporter,
assembly,
assembly,
project: "",
projectDir: "",
rootNamespace: null,
language: "C#",
nullable: false,
args: [],
new TestAppServiceProviderFactory(assembly, reporter, throwOnCreate: true));
operations.Optimize(null, null, contextTypeName: "*", null, scaffoldModel: true, precompileQueries: false, nativeAot: false);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Critical);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Error);
Assert.Equal(
DesignStrings.OptimizeNoFilesGenerated,
Assert.Single(reporter.Messages, m => m.Level == LogLevel.Warning).Message);
}
[ConditionalFact]
public void GetContextInfo_returns_correct_info()
{
var info = CreateOperations(typeof(TestProgramRelational)).GetContextInfo(nameof(TestContext));
Assert.Equal("Test", info.DatabaseName);
Assert.Equal(@"(localdb)\mssqllocaldb", info.DataSource);
Assert.Equal("EngineType=SqlServer", info.Options);
Assert.Equal("Microsoft.EntityFrameworkCore.SqlServer", info.ProviderName);
}
[ConditionalFact]
public void GetContextInfo_does_not_throw_if_DbConnection_cannot_be_created()
{
Exception expected = null;
try
{
new SqlConnection("Cake=None");
}
catch (Exception e)
{
expected = e;
}
var info = CreateOperations(typeof(TestProgramRelationalBad)).GetContextInfo(nameof(TestContext));
Assert.Equal(DesignStrings.BadConnection(expected.Message), info.DatabaseName);
Assert.Equal(DesignStrings.BadConnection(expected.Message), info.DataSource);
Assert.Equal("EngineType=SqlServer", info.Options);
Assert.Equal("Microsoft.EntityFrameworkCore.SqlServer", info.ProviderName);
}
[ConditionalFact]
public void GetContextInfo_does_not_throw_if_provider_not_relational()
{
var info = CreateOperations(typeof(TestProgram)).GetContextInfo(nameof(TestContext));
Assert.Equal(DesignStrings.NoRelationalConnection, info.DatabaseName);
Assert.Equal(DesignStrings.NoRelationalConnection, info.DataSource);
Assert.Equal("StoreName=In-memory test database", info.Options);
Assert.Equal("Microsoft.EntityFrameworkCore.InMemory", info.ProviderName);
}
[ConditionalFact]
public void Useful_exception_if_finding_context_types_throws()
=> Assert.Equal(
DesignStrings.CannotFindDbContextTypes("Bang!"),
Assert.Throws<OperationException>(
() => CreateOperations(typeof(ThrowingTestProgram)).CreateContext(typeof(TestContext).FullName)).Message);
private static class ThrowingTestProgram
{
private static TestWebHost BuildWebHost(string[] args)
=> CreateWebHost(_ => throw new Exception("Bang!"));
}
private static class TestProgram
{
private static TestWebHost BuildWebHost(string[] args)
=> CreateWebHost(b => b.UseInMemoryDatabase("In-memory test database"));
}
private static class TestProgramWithoutAddDbContext
{
private static TestWebHost BuildWebHost(string[] args)
=> new(
new ServiceCollection()
.AddSingleton(
new TestContext(
new DbContextOptionsBuilder<TestContext>()
.UseInMemoryDatabase("In-memory test database")
.EnableServiceProviderCaching(false)
.Options))
.BuildServiceProvider(validateScopes: true));
}
private static class TestProgramWithContextFactory
{
private static TestWebHost BuildWebHost(string[] args)
=> new(
new ServiceCollection()
.AddDbContextFactory<TestContextFromFactory>(b => b.UseInMemoryDatabase("In-memory test database"))
.BuildServiceProvider(validateScopes: true));
}
private static class TestProgramRelational
{
private static TestWebHost BuildWebHost(string[] args)
=> CreateWebHost(b => b.UseSqlServer(@"Server=(localdb)\mssqllocaldb;Database=Test;ConnectRetryCount=0"));
}
private static class TestProgramRelationalBad
{
private static TestWebHost BuildWebHost(string[] args)
=> CreateWebHost(b => b.UseSqlServer(@"Cake=None"));
}
private static TestDbContextOperations CreateOperations(Type testProgramType, bool includeContext = true)
{
List<Type> types = [testProgramType];
if (includeContext)
{
types.Add(typeof(TestContext));
}
var assembly = MockAssembly.Create([.. types]);
var reporter = new TestOperationReporter();
var operations = new TestDbContextOperations(
reporter,
assembly,
assembly,
project: "",
projectDir: "",
rootNamespace: null,
language: "C#",
nullable: false,
/* args: */ [],
new TestAppServiceProviderFactory(assembly, reporter));
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Critical);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Error);
Assert.DoesNotContain(reporter.Messages, m => m.Level == LogLevel.Warning);
return operations;
}
private static TestWebHost CreateWebHost(Func<DbContextOptionsBuilder, DbContextOptionsBuilder> configureProvider)
=> new(
new ServiceCollection()
.AddDbContext<TestContext>(
b => configureProvider(b.EnableServiceProviderCaching(false)))
.BuildServiceProvider(validateScopes: true));
private class TestContext : DbContext
{
public TestContext()
=> throw new Exception("This isn't the constructor you're looking for.");
public TestContext(DbContextOptions<TestContext> options)
: base(options)
{
}
}
private class TestContextFromFactory : DbContext
{
private TestContextFromFactory()
=> throw new Exception("This isn't the constructor you're looking for.");
public TestContextFromFactory(DbContextOptions<TestContextFromFactory> options)
: base(options)
{
}
}
private class Testcontext : DbContext
{
public Testcontext()
=> throw new Exception("This isn't the constructor you're looking for.");
public Testcontext(DbContextOptions<TestContext> options)
: base(options)
{
}
}
private class BaseContext(string factoryUsed) : DbContext
{
protected override void OnConfiguring(DbContextOptionsBuilder options)
=> options.UseInMemoryDatabase(GetType().Name);
public string FactoryUsed { get; } = factoryUsed;
}
private class DerivedContext(string factoryUsed) : BaseContext(factoryUsed);
private class HierarchyContextFactory : IDesignTimeDbContextFactory<BaseContext>, IDesignTimeDbContextFactory<DerivedContext>
{
BaseContext IDesignTimeDbContextFactory<BaseContext>.CreateDbContext(string[] args)
=> new(nameof(BaseContext));
DerivedContext IDesignTimeDbContextFactory<DerivedContext>.CreateDbContext(string[] args)
=> new(nameof(DerivedContext));
}
}