|
|
|
|
@ -1,55 +1,20 @@
|
|
|
|
|
using System;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using Volo.Abp.Autofac;
|
|
|
|
|
using Volo.Abp.EntityFrameworkCore;
|
|
|
|
|
using Volo.Abp.Identity.EntityFrameworkCore;
|
|
|
|
|
using Volo.Abp.Modularity;
|
|
|
|
|
using Volo.Abp.Uow;
|
|
|
|
|
|
|
|
|
|
namespace Volo.Abp.Identity
|
|
|
|
|
{
|
|
|
|
|
[DependsOn(
|
|
|
|
|
typeof(AbpIdentityApplicationModule),
|
|
|
|
|
typeof(AbpIdentityEntityFrameworkCoreModule),
|
|
|
|
|
typeof(AbpAutofacModule))]
|
|
|
|
|
typeof(AbpAutofacModule),
|
|
|
|
|
typeof(AbpIdentityDomainTestModule))]
|
|
|
|
|
public class AbpIdentityApplicationTestModule : AbpModule
|
|
|
|
|
{
|
|
|
|
|
public override void ConfigureServices(IServiceCollection services)
|
|
|
|
|
{
|
|
|
|
|
services.AddAssemblyOf<AbpIdentityApplicationTestModule>();
|
|
|
|
|
|
|
|
|
|
services.AddEntityFrameworkInMemoryDatabase();
|
|
|
|
|
|
|
|
|
|
var databaseName = Guid.NewGuid().ToString();
|
|
|
|
|
|
|
|
|
|
services.Configure<AbpDbContextOptions>(options =>
|
|
|
|
|
{
|
|
|
|
|
options.Configure(context =>
|
|
|
|
|
{
|
|
|
|
|
context.DbContextOptions.UseInMemoryDatabase(databaseName);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
services.Configure<UnitOfWorkDefaultOptions>(options =>
|
|
|
|
|
{
|
|
|
|
|
options.TransactionBehavior = UnitOfWorkTransactionBehavior.Disabled; //EF in-memory database does not support transactions
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnApplicationInitialization(ApplicationInitializationContext context)
|
|
|
|
|
{
|
|
|
|
|
SeedTestData(context);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void SeedTestData(ApplicationInitializationContext context)
|
|
|
|
|
{
|
|
|
|
|
using (var scope = context.ServiceProvider.CreateScope())
|
|
|
|
|
{
|
|
|
|
|
scope.ServiceProvider
|
|
|
|
|
.GetRequiredService<AbpIdentityTestDataBuilder>()
|
|
|
|
|
.Build();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|