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.
63 lines
1.9 KiB
63 lines
1.9 KiB
3 years ago
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using Volo.Abp;
|
||
|
using Volo.Abp.Authorization;
|
||
|
using Volo.Abp.Autofac;
|
||
3 years ago
|
using Volo.Abp.BackgroundJobs;
|
||
3 years ago
|
using Volo.Abp.Data;
|
||
3 years ago
|
using Volo.Abp.IdentityServer;
|
||
3 years ago
|
using Volo.Abp.Modularity;
|
||
|
using Volo.Abp.Threading;
|
||
|
|
||
|
namespace Win_in.Sfs.Scp.WebApi
|
||
|
{
|
||
|
[DependsOn(
|
||
|
typeof(AbpAutofacModule),
|
||
|
typeof(AbpTestBaseModule),
|
||
|
typeof(AbpAuthorizationModule),
|
||
|
typeof(WebApiDomainModule)
|
||
|
)]
|
||
|
public class WebApiTestBaseModule : AbpModule
|
||
|
{
|
||
3 years ago
|
public override void PreConfigureServices(ServiceConfigurationContext context)
|
||
|
{
|
||
|
PreConfigure<AbpIdentityServerBuilderOptions>(options =>
|
||
|
{
|
||
|
options.AddDeveloperSigningCredential = false;
|
||
|
});
|
||
|
|
||
|
PreConfigure<IIdentityServerBuilder>(identityServerBuilder =>
|
||
|
{
|
||
|
identityServerBuilder.AddDeveloperSigningCredential(false, System.Guid.NewGuid().ToString());
|
||
|
});
|
||
|
}
|
||
|
|
||
3 years ago
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
||
|
{
|
||
3 years ago
|
Configure<AbpBackgroundJobOptions>(options =>
|
||
|
{
|
||
|
options.IsJobExecutionEnabled = false;
|
||
|
});
|
||
|
|
||
3 years ago
|
context.Services.AddAlwaysAllowAuthorization();
|
||
|
}
|
||
|
|
||
|
public override void OnApplicationInitialization(ApplicationInitializationContext context)
|
||
|
{
|
||
|
SeedTestData(context);
|
||
|
}
|
||
|
|
||
|
private static void SeedTestData(ApplicationInitializationContext context)
|
||
|
{
|
||
|
AsyncHelper.RunSync(async () =>
|
||
|
{
|
||
|
using (var scope = context.ServiceProvider.CreateScope())
|
||
|
{
|
||
|
await scope.ServiceProvider
|
||
|
.GetRequiredService<IDataSeeder>()
|
||
|
.SeedAsync();
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}
|