当前位置:首页 > 数据库 > SQlite

将Abp的UnitTest中的InMemory改为SQLite in memory

添加nuget包

Microsoft.EntityFrameworkCore.Sqlite

添加ServiceCollectionRegistrarSqlite

 public static class ServiceCollectionRegistrarSqlite
    {
        public static void Register(IIocManager iocManager)
        {
            var services = new ServiceCollection();

            IdentityRegistrar.Register(services);

            services.AddEntityFrameworkSqlite();

            var serviceProvider = WindsorRegistrationHelper.CreateServiceProvider(iocManager.IocContainer, services);

            var builder = new DbContextOptionsBuilder<DeviceManageSystemDbContext>();


            var inMemorySqlite = new SqliteConnection("Data Source=:memory:");
            builder.UseSqlite(inMemorySqlite);

            iocManager.IocContainer.Register(
                Component
                    .For<DbContextOptions<DeviceManageSystemDbContext>>()
                    .Instance(builder.Options)
                    .LifestyleSingleton()
            );

            inMemorySqlite.Open();
            new DeviceManageSystemDbContext(builder.Options).Database.EnsureCreated();
        }
    }

添加DeviceManageSystemTestModuleSqlite

复制DeviceManageSystemTestModule,修改

 [DependsOn(
        typeof(DeviceManageSystemApplicationModule),
        typeof(DeviceManageSystemEntityFrameworkModule),
        typeof(AbpTestBaseModule)
        )]
    public class DeviceManageSystemTestModuleSqlite : AbpModule
    {
     public override void Initialize()
        {
            ServiceCollectionRegistrarSqlite.Register(IocManager);
        }
    }

修改DeviceManageSystemTestBase

public abstract class DeviceManageSystemTestBase : AbpIntegratedTestBase<DeviceManageSystemTestModuleSqlite>
{

}

将Abp的UnitTest中的InMemory改为SQLite in memory

标签:options   unittest   contain   ros   initial   contex   device   created   systemd   

本文系统来源:https://www.cnblogs.com/hahaxi/p/11135280.html


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!