-
-
Notifications
You must be signed in to change notification settings - Fork 544
Expand file tree
/
Copy pathbootstrapping_with_service_collection_extensions.cs
More file actions
633 lines (498 loc) · 21.3 KB
/
bootstrapping_with_service_collection_extensions.cs
File metadata and controls
633 lines (498 loc) · 21.3 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
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
using System;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using JasperFx;
using JasperFx.CodeGeneration;
using JasperFx.Core;
using JasperFx.Core.Reflection;
using Lamar;
using CoreTests.Examples;
using Marten;
using Marten.Events;
using Marten.Internal.Sessions;
using Marten.Services;
using Marten.Sessions;
using Marten.Testing;
using Marten.Testing.Documents;
using Marten.Testing.Harness;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Options;
using Npgsql;
using Shouldly;
using Weasel.Core.Migrations;
using Weasel.Core.MultiTenancy;
using Xunit;
namespace CoreTests;
public class bootstrapping_with_service_collection_extensions
{
// Using Lamar for testing this because of its diagnostics
[Fact]
public void add_marten_with_just_connection_string()
{
using var container = Container.For(x =>
{
x.AddMarten(ConnectionSource.ConnectionString);
});
ShouldHaveAllTheExpectedRegistrations(container);
}
[Fact]
public async Task use_jasper_fx_defaults_for_type_load_and_auto_create()
{
using var host = await Host.CreateDefaultBuilder()
.ConfigureServices(services =>
{
services.AddMarten(ConnectionSource.ConnectionString);
services.AddJasperFx(opts =>
{
opts.Development.ResourceAutoCreate = AutoCreate.None;
opts.GeneratedCodeOutputPath = "/";
opts.Development.GeneratedCodeMode = TypeLoadMode.Static;
// Default is true
opts.Development.SourceCodeWritingEnabled = false;
});
})
.UseEnvironment("Development").StartAsync();
var store = (DocumentStore)host.DocumentStore();
store.Options.AutoCreateSchemaObjects.ShouldBe(AutoCreate.None);
store.Options.SourceCodeWritingEnabled.ShouldBeFalse();
store.Options.GeneratedCodeMode.ShouldBe(TypeLoadMode.Static);
}
[Fact]
public void add_marten_by_store_options()
{
using var container = Container.For(x =>
{
var options = new StoreOptions();
options.Connection(ConnectionSource.ConnectionString);
x.AddMarten(options);
});
ShouldHaveAllTheExpectedRegistrations(container);
}
[Fact]
public void add_marten_by_store_options_with_custom_logger()
{
using var container = Container.For(x =>
{
x.AddMarten(provider =>
{
var options = new StoreOptions();
options.Connection(ConnectionSource.ConnectionString);
options.Logger(new ConsoleMartenLogger());
return options;
});
});
var store = container.GetRequiredService<IDocumentStore>();
store.Options.Logger().ShouldBeOfType<ConsoleMartenLogger>();
}
[Fact]
public void add_marten_by_configure_lambda()
{
using var container = Container.For(x =>
{
x.AddMarten(opts => opts.Connection(ConnectionSource.ConnectionString));
});
ShouldHaveAllTheExpectedRegistrations(container);
}
[Fact]
public void picks_up_application_assembly_and_content_directory_from_IHostEnvironment()
{
var environment = new MartenHostEnvironment();
using var host = Host.CreateDefaultBuilder(Array.Empty<string>())
.ConfigureServices(services =>
{
services.AddMarten(ConnectionSource.ConnectionString);
services.AddSingleton<IHostEnvironment>(environment);
}).Build();
var store = host.Services.GetRequiredService<IDocumentStore>().As<DocumentStore>();
store.Options.ApplicationAssembly.ShouldBe(GetType().Assembly);
var projectPath = AppContext.BaseDirectory.ParentDirectory().ParentDirectory().ParentDirectory();
var expectedGeneratedCodeOutputPath = projectPath.ToFullPath().AppendPath("Internal", "Generated");
store.Options.GeneratedCodeOutputPath.ShouldBe(expectedGeneratedCodeOutputPath);
var rules = store.Options.CreateGenerationRules();
rules.ApplicationAssembly.ShouldBe(store.Options.ApplicationAssembly);
rules.GeneratedCodeOutputPath.ShouldBe(store.Options.GeneratedCodeOutputPath);
}
[Fact]
public void application_assembly_and_content_directory_from_StoreOptions()
{
using var host = Host.CreateDefaultBuilder(Array.Empty<string>())
.ConfigureServices(services =>
{
services.AddMarten(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.SetApplicationProject(GetType().Assembly);
});
}).Build();
var store = host.Services.GetRequiredService<IDocumentStore>().As<DocumentStore>();
store.Options.ApplicationAssembly.ShouldBe(GetType().Assembly);
var projectPath = AppContext.BaseDirectory.ParentDirectory().ParentDirectory().ParentDirectory();
var expectedGeneratedCodeOutputPath = projectPath.ToFullPath().AppendPath("Internal", "Generated");
store.Options.GeneratedCodeOutputPath.ShouldBe(expectedGeneratedCodeOutputPath);
}
[Fact]
public void no_error_if_IHostEnvironment_does_not_exist()
{
using var host = Host.CreateDefaultBuilder()
.ConfigureServices(services =>
{
services.AddMarten(ConnectionSource.ConnectionString);
}).Build();
var store = host.Services.GetRequiredService<IDocumentStore>().As<DocumentStore>();
store.Options.ApplicationAssembly.ShouldBe(GetType().Assembly);
store.Options.GeneratedCodeOutputPath.TrimEnd(Path.DirectorySeparatorChar).ShouldBe(AppContext.BaseDirectory
.AppendPath("Internal", "Generated").TrimEnd(Path.DirectorySeparatorChar));
var rules = store.Options.CreateGenerationRules();
rules.ApplicationAssembly.ShouldBe(store.Options.ApplicationAssembly);
}
[Fact]
public async Task apply_changes_on_startup()
{
await using var container = Container.For(services =>
{
services.AddLogging();
#region sample_using_applyalldatabasechangesonstartup
// The normal Marten configuration
services.AddMarten(opts =>
{
// This helps isolate a test, not something you need to do
// in normal usage
opts.ApplyChangesLockId += 18;
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "apply_changes";
opts.RegisterDocumentType<User>();
})
// Direct the application to apply all outstanding
// database changes on application startup
.ApplyAllDatabaseChangesOnStartup();
#endregion
});
var store = container.GetInstance<IDocumentStore>();
await store.Advanced.Clean.CompletelyRemoveAllAsync();
var instance = container.Model.For<IHostedService>().Instances.First();
instance.ImplementationType.ShouldBe(typeof(MartenActivator));
instance.Lifetime.ShouldBe(ServiceLifetime.Singleton);
// Just a smoke test here
await container.GetAllInstances<IHostedService>().First().StartAsync(default);
await store.Storage.Database.AssertDatabaseMatchesConfigurationAsync();
}
[Fact]
public async Task assert_configuration_on_startup()
{
await using var container = Container.For(services =>
{
services.AddLogging();
services.AddMarten(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.RegisterDocumentType<User>();
opts.DatabaseSchemaName = "startup";
})
.AssertDatabaseMatchesConfigurationOnStartup();
});
var store = container.GetInstance<IDocumentStore>();
await store.Advanced.Clean.CompletelyRemoveAllAsync();
var instance = container.Model.For<IHostedService>().Instances.First();
instance.ImplementationType.ShouldBe(typeof(MartenActivator));
instance.Lifetime.ShouldBe(ServiceLifetime.Singleton);
await Assert.ThrowsAsync<DatabaseValidationException>(() =>
container.GetAllInstances<IHostedService>().First().StartAsync(default));
}
[Fact]
public void use_custom_factory_by_type()
{
using var container = Container.For(x =>
{
x.AddMarten(ConnectionSource.ConnectionString)
.BuildSessionsWith<SpecialBuilder>();
});
ShouldHaveAllTheExpectedRegistrations(container);
var builder = container.GetInstance<ISessionFactory>()
.ShouldBeOfType<SpecialBuilder>();
builder.BuiltQuery.ShouldBeTrue();
builder.BuiltSession.ShouldBeTrue();
}
[Fact]
public void can_vary_the_scope_of_the_builder()
{
using var container = Container.For(x =>
{
x.AddMarten(ConnectionSource.ConnectionString)
.BuildSessionsWith<SpecialBuilder>(ServiceLifetime.Scoped);
});
ShouldHaveAllTheExpectedRegistrations(container, ServiceLifetime.Scoped);
container.Model.For<ISessionFactory>()
.Default.Lifetime.ShouldBe(ServiceLifetime.Scoped);
}
[Fact]
public void use_lightweight_sessions()
{
using var container = Container.For(x =>
{
x.AddMarten(ConnectionSource.ConnectionString)
.UseLightweightSessions();
});
ShouldHaveAllTheExpectedRegistrations(container);
container.Model.For<ISessionFactory>()
.Default.ImplementationType.ShouldBe(typeof(LightweightSessionFactory));
container.Model.For<ISessionFactory>()
.Default.Lifetime.ShouldBe(ServiceLifetime.Singleton);
using var session = container.GetInstance<IDocumentSession>();
session.ShouldBeOfType<LightweightSession>();
}
[Fact]
public void apply_configure_marten_options()
{
IServiceProvider? provider = null;
using var container = Container.For(services =>
{
services.AddMarten(ConnectionSource.ConnectionString)
.UseLightweightSessions();
services.ConfigureMarten(opts => opts.Advanced.HiloSequenceDefaults.MaxLo = 111);
services.ConfigureMarten((services, opts) =>
{
opts.Events.DatabaseSchemaName = "random";
provider = services;
});
});
var store = container.GetInstance<IDocumentStore>();
store.Options.Advanced.HiloSequenceDefaults.MaxLo.ShouldBe(111);
provider.ShouldNotBeNull();
provider.ShouldBeSameAs(container);
store.Options.Events.DatabaseSchemaName.ShouldBe("random");
}
[Fact]
public async Task use_npgsql_data_source()
{
var services = new ServiceCollection();
#region sample_using_usenpgsqldatasource
services.AddNpgsqlDataSource(ConnectionSource.ConnectionString);
services.AddMarten()
.UseLightweightSessions()
.UseNpgsqlDataSource();
#endregion
var serviceProvider = services.BuildServiceProvider();
await using var session = serviceProvider.GetService<IDocumentSession>();
Func<Task<bool>> Call(IDocumentSession s) => async () => await s.Query<Target>().AnyAsync();
await Call(session).ShouldNotThrowAsync();
}
[Fact]
public async Task use_npgsql_multi_host_data_source()
{
var services = new ServiceCollection();
#region sample_using_usenpgsqldatasourcemultihost
services.AddMultiHostNpgsqlDataSource(ConnectionSource.ConnectionString);
services.AddMarten(x =>
{
// Will prefer standby nodes for querying.
x.Advanced.MultiHostSettings.ReadSessionPreference = TargetSessionAttributes.PreferStandby;
})
.UseLightweightSessions()
.UseNpgsqlDataSource();
#endregion
var serviceProvider = services.BuildServiceProvider();
await using var session = serviceProvider.GetService<IDocumentSession>();
Func<Task<bool>> Call(IDocumentSession s) => async () => await s.Query<Target>().AnyAsync();
await Call(session).ShouldNotThrowAsync();
}
[Fact]
public async Task use_npgsql_data_source_with_keyed_registration()
{
var services = new ServiceCollection();
#region sample_using_usenpgsqldatasource_keyed
const string dataSourceKey = "marten_data_source";
services.AddNpgsqlDataSource(ConnectionSource.ConnectionString, serviceKey: dataSourceKey);
services.AddMarten()
.UseLightweightSessions()
.UseNpgsqlDataSource(dataSourceKey);
#endregion
var serviceProvider = services.BuildServiceProvider();
await using var session = serviceProvider.GetService<IDocumentSession>();
Func<Task<bool>> Call(IDocumentSession s) => async () => await s.Query<Target>().AnyAsync();
await Call(session).ShouldNotThrowAsync();
}
[Fact]
public void use_npgsql_data_source_with_keyed_registration_should_fail_if_key_is_not_passed()
{
var services = new ServiceCollection();
services.AddNpgsqlDataSource(ConnectionSource.ConnectionString, serviceKey: "marten_data_source");
services.AddMarten()
.UseLightweightSessions()
.UseNpgsqlDataSource();
var serviceProvider = services.BuildServiceProvider();
Action GetStore(IServiceProvider c) => () =>
{
using var store = c.GetService<IDocumentStore>();
};
var exc = GetStore(serviceProvider).ShouldThrow<InvalidOperationException>();
exc.Message.Contains("NpgsqlDataSource").ShouldBeTrue();
}
[Fact]
public void use_npgsql_data_source_with_registration_should_fail_if_key_is_passed()
{
var services = new ServiceCollection();
services.AddNpgsqlDataSource(ConnectionSource.ConnectionString);
services.AddMarten()
.UseLightweightSessions()
.UseNpgsqlDataSource("marten_data_source");
var serviceProvider = services.BuildServiceProvider();
Action GetStore(IServiceProvider c) => () =>
{
using var store = c.GetService<IDocumentStore>();
};
var exc = GetStore(serviceProvider).ShouldThrow<InvalidOperationException>();
exc.Message.Contains("NpgsqlDataSource").ShouldBeTrue();
}
[Fact]
public void use_npgsql_data_source_should_fail_if_data_source_is_not_registered()
{
var services = new ServiceCollection();
services.AddMarten()
.UseLightweightSessions()
.UseNpgsqlDataSource();
var serviceProvider = services.BuildServiceProvider();
Action GetStore(IServiceProvider c) => () =>
{
using var store = c.GetService<IDocumentStore>();
};
var exc = GetStore(serviceProvider).ShouldThrow<InvalidOperationException>();
exc.Message.Contains("NpgsqlDataSource").ShouldBeTrue();
}
[Fact]
public void AddMarten_with_no_params_should_fail_if_UseNpgsqlDataSource_was_not_called()
{
var services = new ServiceCollection();
services.AddNpgsqlDataSource(ConnectionSource.ConnectionString);
services.AddMarten()
.UseLightweightSessions();
var serviceProvider = services.BuildServiceProvider();
Action GetStore(IServiceProvider c) => () =>
{
using var store = c.GetService<IDocumentStore>();
};
var exc = GetStore(serviceProvider).ShouldThrow<InvalidOperationException>();
exc.Message.Contains("UseNpgsqlDataSource").ShouldBeTrue();
}
[Fact]
public void ancillary_store_use_lightweight_sessions()
{
var services = new ServiceCollection();
services.AddMarten(ConnectionSource.ConnectionString);
services.AddMartenStore<IInvoicingStore>(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "invoicing";
}).UseLightweightSessions();
var sp = services.BuildServiceProvider();
var factory = sp.GetRequiredKeyedService<ISessionFactory>(typeof(IInvoicingStore));
factory.ShouldBeOfType<LightweightSessionFactory>();
using var session = factory.OpenSession();
session.ShouldBeOfType<LightweightSession>();
}
[Fact]
public void ancillary_store_use_identity_sessions()
{
var services = new ServiceCollection();
services.AddMarten(ConnectionSource.ConnectionString);
services.AddMartenStore<IInvoicingStore>(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "invoicing";
}).UseIdentitySessions();
var sp = services.BuildServiceProvider();
var factory = sp.GetRequiredKeyedService<ISessionFactory>(typeof(IInvoicingStore));
factory.ShouldBeOfType<IdentitySessionFactory>();
using var session = factory.OpenSession();
session.ShouldBeOfType<IdentityMapDocumentSession>();
}
[Fact]
public void ancillary_store_use_dirty_tracked_sessions()
{
var services = new ServiceCollection();
services.AddMarten(ConnectionSource.ConnectionString);
services.AddMartenStore<IInvoicingStore>(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "invoicing";
}).UseDirtyTrackedSessions();
var sp = services.BuildServiceProvider();
var factory = sp.GetRequiredKeyedService<ISessionFactory>(typeof(IInvoicingStore));
factory.ShouldBeOfType<DirtyTrackedSessionFactory>();
using var session = factory.OpenSession();
session.ShouldBeOfType<DirtyCheckingDocumentSession>();
}
[Fact]
public void ancillary_store_build_sessions_with_custom_factory()
{
var services = new ServiceCollection();
services.AddMarten(ConnectionSource.ConnectionString);
services.AddMartenStore<IInvoicingStore>(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "invoicing";
}).BuildSessionsWith<SpecialBuilder>();
var sp = services.BuildServiceProvider();
var factory = sp.GetRequiredKeyedService<ISessionFactory>(typeof(IInvoicingStore));
var builder = factory.ShouldBeOfType<SpecialBuilder>();
builder.BuiltQuery.ShouldBeFalse();
builder.BuiltSession.ShouldBeFalse();
using var session = factory.OpenSession();
builder.BuiltSession.ShouldBeTrue();
using var query = factory.QuerySession();
builder.BuiltQuery.ShouldBeTrue();
}
[Fact]
public void ancillary_store_default_session_factory()
{
var services = new ServiceCollection();
services.AddMarten(ConnectionSource.ConnectionString);
services.AddMartenStore<IInvoicingStore>(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "invoicing";
});
var sp = services.BuildServiceProvider();
var factory = sp.GetRequiredKeyedService<ISessionFactory>(typeof(IInvoicingStore));
factory.ShouldBeOfType<DefaultSessionFactory>();
}
public class SpecialBuilder: ISessionFactory
{
private readonly IDocumentStore _store;
public SpecialBuilder(IDocumentStore store)
{
_store = store;
}
public IQuerySession QuerySession()
{
BuiltQuery = true;
return _store.QuerySession();
}
public bool BuiltQuery { get; set; }
public IDocumentSession OpenSession()
{
BuiltSession = true;
return _store.IdentitySession();
}
public bool BuiltSession { get; set; }
}
private static void ShouldHaveAllTheExpectedRegistrations(Container container,
ServiceLifetime factoryLifetime = ServiceLifetime.Singleton)
{
container.Model.For<IDocumentStore>().Default.Lifetime.ShouldBe(ServiceLifetime.Singleton);
container.Model.For<IDocumentSession>().Default.Lifetime.ShouldBe(ServiceLifetime.Scoped);
container.Model.For<IQuerySession>().Default.Lifetime.ShouldBe(ServiceLifetime.Scoped);
container.Model.For<ISessionFactory>().Default.Lifetime.ShouldBe(factoryLifetime);
var store = container.GetInstance<IDocumentStore>();
store.ShouldNotBeNull();
container.GetInstance<IDocumentSession>().ShouldNotBeNull();
container.GetInstance<IQuerySession>().ShouldNotBeNull();
container.GetInstance<IDatabaseSource>().ShouldBeSameAs(store.As<DocumentStore>().Tenancy);
container.GetAllInstances<ICodeFileCollection>().OfType<EventGraph>().Count().ShouldBe(1);
container.Model.For<IOptions<JasperFxOptions>>().Default.ShouldNotBeNull();
container.GetInstance<IMasterTableMultiTenancy>()
.ShouldBeSameAs(store);
}
}