refactor(test): 重构测试套件结构并优化测试配置

feat(test-suite): 新增测试套件模块,包含API测试客户端和测试配置
fix(api): 修复数据库实体和仓库的删除操作返回值
style(api): 统一数据库表名和字段命名
perf(api): 添加缓存注解提升配置查询性能
test(api): 添加H2测试数据库配置支持
chore: 清理旧的测试文件和脚本
This commit is contained in:
张翔
2026-04-01 20:57:24 +08:00
parent 24422c2c19
commit 1e3dc11d59
180 changed files with 15421 additions and 3797 deletions
+14 -1
View File
@@ -29,6 +29,7 @@
<lombok.version>1.18.30</lombok.version>
<resilience4j.version>2.2.0</resilience4j.version>
<rxjava.version>3.1.9</rxjava.version>
<h2.version>2.3.232</h2.version>
</properties>
<modules>
@@ -96,6 +97,18 @@
<artifactId>r2dbc-postgresql</artifactId>
<version>1.0.0.RELEASE</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.r2dbc</groupId>
<artifactId>r2dbc-h2</artifactId>
<version>1.0.1.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
@@ -212,4 +225,4 @@
</plugin>
</plugins>
</build>
</project>
</project>