2021-05-13 10:48:53 +08:00
|
|
|
|
using System;
|
2021-02-20 22:06:02 +08:00
|
|
|
|
using System.IO;
|
2021-04-21 18:02:01 +08:00
|
|
|
|
using System.Linq;
|
2021-02-20 22:06:02 +08:00
|
|
|
|
using System.Reflection;
|
2020-10-22 14:59:36 +08:00
|
|
|
|
using Autofac;
|
|
|
|
|
using Autofac.Extensions.DependencyInjection;
|
2021-01-14 23:35:54 +08:00
|
|
|
|
using Infrastructure;
|
2021-04-21 18:02:01 +08:00
|
|
|
|
using Infrastructure.Utilities;
|
2021-01-14 23:35:54 +08:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
2020-10-22 14:59:36 +08:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2021-01-14 23:35:54 +08:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
2020-10-22 14:59:36 +08:00
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2021-02-20 22:06:02 +08:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
2021-01-14 23:35:54 +08:00
|
|
|
|
using Microsoft.Extensions.Options;
|
|
|
|
|
using Moq;
|
2020-10-22 14:59:36 +08:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using OpenAuth.Repository.Interface;
|
2023-08-26 23:52:30 +08:00
|
|
|
|
using SqlSugar;
|
2020-10-22 14:59:36 +08:00
|
|
|
|
|
|
|
|
|
namespace OpenAuth.Repository.Test
|
|
|
|
|
{
|
2020-12-17 23:04:04 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Repository测试基类
|
|
|
|
|
/// 测试用于测试DbContext、UnitWork、Repository,如果需要测试业务逻辑,请使用OpenAuth.App里面的单元测试
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
public class TestBase
|
|
|
|
|
{
|
|
|
|
|
protected AutofacServiceProvider _autofacServiceProvider;
|
|
|
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
|
public void Init()
|
|
|
|
|
{
|
|
|
|
|
var serviceCollection = GetService();
|
|
|
|
|
serviceCollection.AddMemoryCache();
|
|
|
|
|
serviceCollection.AddOptions();
|
2021-01-09 19:59:01 +08:00
|
|
|
|
serviceCollection.AddLogging();
|
2020-12-29 23:52:06 +08:00
|
|
|
|
serviceCollection.AddScoped(typeof(IRepository<,>), typeof(BaseRepository<,>));
|
|
|
|
|
serviceCollection.AddScoped(typeof(IUnitWork<>), typeof(UnitWork<>));
|
2020-10-22 14:59:36 +08:00
|
|
|
|
|
2021-01-14 23:35:54 +08:00
|
|
|
|
//模拟配置文件
|
2021-02-20 22:06:02 +08:00
|
|
|
|
//读取OpenAuth.WebApi的配置文件用于单元测试
|
|
|
|
|
var path = AppContext.BaseDirectory;
|
2021-05-13 10:48:53 +08:00
|
|
|
|
int pos = path.LastIndexOf("OpenAuth.");
|
2021-02-20 22:06:02 +08:00
|
|
|
|
var basepath = Path.Combine(path.Substring(0,pos) ,"OpenAuth.WebApi");
|
|
|
|
|
IConfiguration config = new ConfigurationBuilder()
|
|
|
|
|
.SetBasePath(basepath)
|
|
|
|
|
.AddJsonFile("appsettings.json", optional: false, reloadOnChange: true)
|
|
|
|
|
.AddJsonFile("appsettings.Development.json", optional: true)
|
|
|
|
|
.AddEnvironmentVariables()
|
|
|
|
|
.Build();
|
2021-04-21 18:02:01 +08:00
|
|
|
|
|
2021-02-20 22:06:02 +08:00
|
|
|
|
//添加log4net
|
|
|
|
|
serviceCollection.AddLogging(builder =>
|
|
|
|
|
{
|
|
|
|
|
builder.ClearProviders(); //去掉默认的日志
|
|
|
|
|
builder.AddConfiguration(config.GetSection("Logging")); //读取配置文件中的Logging配置
|
|
|
|
|
});
|
|
|
|
|
//注入OpenAuth.WebApi配置文件
|
|
|
|
|
serviceCollection.AddScoped(x => config);
|
|
|
|
|
|
2021-01-14 23:35:54 +08:00
|
|
|
|
|
|
|
|
|
var httpContextAccessorMock = new Mock<IHttpContextAccessor>();
|
|
|
|
|
httpContextAccessorMock.Setup(x => x.HttpContext.Request.Query[Define.TOKEN_NAME]).Returns("tokentest");
|
|
|
|
|
httpContextAccessorMock.Setup(x => x.HttpContext.Request.Query[Define.TENANT_ID]).Returns("OpenAuthDBContext");
|
|
|
|
|
|
|
|
|
|
serviceCollection.AddScoped(x => httpContextAccessorMock.Object);
|
|
|
|
|
|
2021-02-20 22:06:02 +08:00
|
|
|
|
serviceCollection.AddDbContext<OpenAuthDBContext>();
|
2023-08-26 23:52:30 +08:00
|
|
|
|
|
|
|
|
|
var dbtypes = config.GetSection("AppSetting:DbTypes").GetChildren()
|
|
|
|
|
.ToDictionary(x => x.Key, x => x.Value);
|
|
|
|
|
|
|
|
|
|
var connectionString = config.GetSection("ConnectionStrings")["OpenAuthDBContext"];
|
|
|
|
|
Console.WriteLine($"单元测试数据库信息:{dbtypes[httpContextAccessorMock.Object.GetTenantId()]}/{connectionString}");
|
|
|
|
|
|
2023-09-17 17:14:16 +08:00
|
|
|
|
var sqlsugarTypes = UtilMethods.EnumToDictionary<SqlSugar.DbType>();
|
|
|
|
|
var dbType = sqlsugarTypes.FirstOrDefault(it =>
|
|
|
|
|
dbtypes.ToDictionary(u => u.Key, v => v.Value.ToLower()).ContainsValue(it.Key));
|
|
|
|
|
|
2023-08-26 23:52:30 +08:00
|
|
|
|
serviceCollection.AddScoped<ISqlSugarClient>(s =>
|
|
|
|
|
{
|
2023-09-17 17:14:16 +08:00
|
|
|
|
var sqlSugar = new SqlSugarClient(new ConnectionConfig()
|
2023-08-26 23:52:30 +08:00
|
|
|
|
{
|
2023-09-17 17:14:16 +08:00
|
|
|
|
DbType = dbType.Value,
|
|
|
|
|
ConnectionString = connectionString,
|
2025-02-23 08:28:24 +08:00
|
|
|
|
IsAutoCloseConnection = true
|
2023-09-17 17:14:16 +08:00
|
|
|
|
});
|
2025-02-23 21:11:42 +08:00
|
|
|
|
|
|
|
|
|
if(dbType.Value != SqlSugar.DbType.PostgreSQL){
|
|
|
|
|
return sqlSugar;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 配置bool类型转换为smallint
|
|
|
|
|
sqlSugar.Aop.OnExecutingChangeSql = (sql, parameters) =>
|
|
|
|
|
{
|
|
|
|
|
foreach (var param in parameters)
|
|
|
|
|
{
|
|
|
|
|
if (param.Value is bool boolValue)
|
|
|
|
|
{
|
|
|
|
|
param.DbType = System.Data.DbType.Int16;
|
|
|
|
|
// 将 bool 转换为 smallint
|
|
|
|
|
param.Value = boolValue ? (short)1 : (short)0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// 返回修改后的 SQL 和参数
|
|
|
|
|
return new System.Collections.Generic.KeyValuePair<string, SugarParameter[]>(sql, parameters);
|
|
|
|
|
};
|
2023-08-26 23:52:30 +08:00
|
|
|
|
return sqlSugar;
|
|
|
|
|
});
|
2020-10-22 14:59:36 +08:00
|
|
|
|
|
|
|
|
|
var builder = new ContainerBuilder();
|
|
|
|
|
|
|
|
|
|
//注册repository层
|
|
|
|
|
builder.RegisterAssemblyTypes(Assembly.GetExecutingAssembly());
|
|
|
|
|
|
|
|
|
|
builder.Populate(serviceCollection);
|
|
|
|
|
|
|
|
|
|
var _container = builder.Build();
|
|
|
|
|
_autofacServiceProvider = new AutofacServiceProvider(_container);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 测试框架默认只注入了缓存Cache,配置Option;
|
|
|
|
|
/// 如果在测试的过程中需要模拟登录用户,cookie等信息,需要重写该方法,可以参考TestFlow的写法
|
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual ServiceCollection GetService()
|
|
|
|
|
{
|
|
|
|
|
return new ServiceCollection();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|