feat: 实现设备管理和设备导入功能,修复测试问题
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 5m30s

主要变更:
- 实现设备管理模块(创建、查询、列表、更新状态、删除)
- 实现设备批量导入功能(CSV 解析、ICCID 绑定、异步任务处理)
- 添加设备-SIM 卡绑定约束(部分唯一索引防止并发问题)
- 修复 fee_rate 数据库字段类型(numeric -> bigint)
- 修复测试数据隔离问题(基于增量断言)
- 修复集成测试中间件顺序问题
- 清理无用测试文件(PersonalCustomer、Email 相关)
- 归档 enterprise-card-authorization 变更
This commit is contained in:
2026-01-26 18:05:12 +08:00
parent fdcff33058
commit ce0783f96e
68 changed files with 6400 additions and 1482 deletions

View File

@@ -2,7 +2,9 @@ package unit
import (
"context"
"fmt"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
@@ -321,13 +323,15 @@ func TestEnterpriseService_List(t *testing.T) {
t.Run("查询企业列表-按名称筛选", func(t *testing.T) {
ctx := createEnterpriseTestContext(1)
ts := time.Now().UnixNano()
searchKey := fmt.Sprintf("列表测试企业_%d", ts)
for i := 0; i < 3; i++ {
createReq := &dto.CreateEnterpriseReq{
EnterpriseName: "列表测试企业",
EnterpriseCode: "ENT_LIST_" + string(rune('A'+i)),
EnterpriseName: fmt.Sprintf("%s_%d", searchKey, i),
EnterpriseCode: fmt.Sprintf("ENT_LIST_%d_%d", ts, i),
ContactName: "联系人",
ContactPhone: "1380000007" + string(rune('0'+i)),
LoginPhone: "1390000007" + string(rune('0'+i)),
ContactPhone: fmt.Sprintf("138%08d", ts%100000000+int64(i)),
LoginPhone: fmt.Sprintf("139%08d", ts%100000000+int64(i)),
Password: "Test123456",
}
_, err := service.Create(ctx, createReq)
@@ -337,7 +341,7 @@ func TestEnterpriseService_List(t *testing.T) {
req := &dto.EnterpriseListReq{
Page: 1,
PageSize: 20,
EnterpriseName: "列表测试",
EnterpriseName: searchKey,
}
result, err := service.List(ctx, req)