1. 修复 MemberAuthServiceTest 单元测试

2. 修复 DataPermissionDatabaseInterceptorTest 单元测试
This commit is contained in:
YunaiV
2022-11-11 08:55:28 +08:00
parent cb4224af12
commit a539bc211d
2 changed files with 8 additions and 3 deletions

View File

@ -87,7 +87,7 @@ public class DataPermissionDatabaseInterceptorTest extends BaseMockitoUnitTest {
interceptor.beforeQuery(null, mappedStatement, null, null, null, boundSql);
// 断言
verify(mpBs, times(1)).sql(
eq("SELECT * FROM t_user WHERE id = 1 AND dept_id = 100"));
eq("SELECT * FROM t_user WHERE id = 1 AND t_user.dept_id = 100"));
// 断言缓存
assertTrue(interceptor.getMappedStatementCache().getNoRewritableMappedStatements().isEmpty());
}