mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
35 lines
1.0 KiB
using Microsoft.Extensions.DependencyInjection;
|
|
using Mongo2Go;
|
|
using Volo.Abp.Data;
|
|
using Volo.Abp.Modularity;
|
|
using Volo.Abp.PermissionManagement.MongoDB;
|
|
|
|
namespace Volo.Abp.Identity.MongoDB
|
|
{
|
|
[DependsOn(
|
|
typeof(AbpIdentityTestBaseModule),
|
|
typeof(AbpPermissionManagementMongoDbModule),
|
|
typeof(AbpIdentityMongoDbModule)
|
|
)]
|
|
public class AbpIdentityMongoDbTestModule : AbpModule
|
|
{
|
|
private MongoDbRunner _mongoDbRunner;
|
|
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
_mongoDbRunner = MongoDbRunner.Start();
|
|
|
|
context.Services.Configure<DbConnectionOptions>(options =>
|
|
{
|
|
options.ConnectionStrings.Default = _mongoDbRunner.ConnectionString;
|
|
});
|
|
|
|
context.Services.AddAssemblyOf<AbpIdentityMongoDbTestModule>();
|
|
}
|
|
|
|
public override void OnApplicationShutdown(ApplicationShutdownContext context)
|
|
{
|
|
_mongoDbRunner.Dispose();
|
|
}
|
|
}
|
|
}
|
|
|