mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-07 02:00:51 +08:00
55 lines
2.0 KiB
C#
55 lines
2.0 KiB
C#
|
|
using Microsoft.Extensions.Configuration;
|
|||
|
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
|
using Microsoft.Extensions.Hosting;
|
|||
|
|
using Microsoft.Extensions.Logging;
|
|||
|
|
using Volo.Abp;
|
|||
|
|
using Yi.Framework.Rbac.Domain.Repositories;
|
|||
|
|
using Yi.Framework.Rbac.SqlSugarCore.Repositories;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.Rbac.Test
|
|||
|
|
{
|
|||
|
|
public class YiTestBase : AbpTestBaseWithServiceProvider
|
|||
|
|
{
|
|||
|
|
public ILogger Logger { get; private set; }
|
|||
|
|
protected IServiceScope TestServiceScope { get; }
|
|||
|
|
public YiTestBase()
|
|||
|
|
{
|
|||
|
|
//在启动之前,清除sqlite全库,由于非常危险,建议使用sqlite
|
|||
|
|
//Microsoft.Data.Sqlite.SqliteConnection.ClearAllPools();
|
|||
|
|
//var dbPath = "yi-rbac-test.db";
|
|||
|
|
//if (File.Exists(dbPath))
|
|||
|
|
//{
|
|||
|
|
// File.Delete(dbPath);
|
|||
|
|
//}
|
|||
|
|
IHost host = Host.CreateDefaultBuilder()
|
|||
|
|
.UseAutofac()
|
|||
|
|
.ConfigureServices((host, service) =>
|
|||
|
|
{
|
|||
|
|
ConfigureServices(host, service);
|
|||
|
|
service.AddLogging(builder => builder.ClearProviders().AddConsole().AddDebug());
|
|||
|
|
/*application= */
|
|||
|
|
service.AddApplicationAsync<YiFrameworkRbacTestModule>().Wait();
|
|||
|
|
})
|
|||
|
|
.ConfigureAppConfiguration(ConfigureAppConfiguration)
|
|||
|
|
.Build();
|
|||
|
|
|
|||
|
|
ServiceProvider = host.Services;
|
|||
|
|
TestServiceScope = ServiceProvider.CreateScope();
|
|||
|
|
Logger = (ILogger)ServiceProvider.GetRequiredService(typeof(ILogger<>).MakeGenericType(GetType()));
|
|||
|
|
|
|||
|
|
host.InitializeAsync().Wait();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
public virtual void ConfigureServices(HostBuilderContext host, IServiceCollection service)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
protected virtual void ConfigureAppConfiguration(IConfigurationBuilder configurationBuilder)
|
|||
|
|
{
|
|||
|
|
configurationBuilder.AddJsonFile("appsettings.json");
|
|||
|
|
//configurationBuilder.AddJsonFile("appsettings.Development.json");
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|