Files
3x-ui/internal/web/service/client_update_rename_test.go
T
H-TTTTT a0dec000b2 fix(clients): allow case-only email updates without duplicates (#6050)
Case-only email edits (test → Test) skipped the ClientRecord rename
because the gate used strings.EqualFold. SyncInbound then failed its
case-sensitive lookup and inserted a second row; the later fallback
rename hit UNIQUE constraint failed: clients.email.

Rename on any byte-level email difference so the same client is updated
in place.

Fixes #5951
2026-07-21 15:50:50 +02:00

119 lines
3.6 KiB
Go

package service
import (
"testing"
"github.com/mhsanaei/3x-ui/v3/internal/database"
"github.com/mhsanaei/3x-ui/v3/internal/database/model"
)
func countClientRecords(t *testing.T) int64 {
t.Helper()
var n int64
if err := database.GetDB().Model(&model.ClientRecord{}).Count(&n).Error; err != nil {
t.Fatalf("count client records: %v", err)
}
return n
}
func TestUpdateInboundClientRenameDoesNotDuplicateRecord(t *testing.T) {
setupBulkDB(t)
svc := &ClientService{}
inboundSvc := &InboundService{}
source := []model.Client{{Email: "old@x", ID: "aaaaaaaa-0000-0000-0000-000000000001", SubID: "sub-old", Enable: true}}
ib := mkInbound(t, 22001, model.VLESS, clientsSettings(t, source))
if err := svc.SyncInbound(nil, ib.Id, source); err != nil {
t.Fatalf("seed linkage: %v", err)
}
origId := lookupClientRecord(t, "old@x").Id
renamed := source
renamed[0].Email = "new@x"
if _, err := svc.UpdateInboundClient(inboundSvc, &model.Inbound{
Id: ib.Id,
Settings: clientsSettings(t, renamed),
}, "old@x"); err != nil {
t.Fatalf("UpdateInboundClient: %v", err)
}
if n := countClientRecords(t); n != 1 {
t.Fatalf("client records after rename = %d, want 1", n)
}
rec := lookupClientRecord(t, "new@x")
if rec.Id != origId {
t.Fatalf("record id after rename = %d, want %d", rec.Id, origId)
}
}
func TestUpdateInboundClientCaseOnlyRenameDoesNotDuplicateRecord(t *testing.T) {
setupBulkDB(t)
svc := &ClientService{}
inboundSvc := &InboundService{}
source := []model.Client{{Email: "test", ID: "aaaaaaaa-0000-0000-0000-000000000002", SubID: "sub-case", Enable: true}}
ib := mkInbound(t, 22002, model.VLESS, clientsSettings(t, source))
if err := svc.SyncInbound(nil, ib.Id, source); err != nil {
t.Fatalf("seed linkage: %v", err)
}
origId := lookupClientRecord(t, "test").Id
updated := source[0]
updated.Email = "Test"
if _, err := svc.Update(inboundSvc, origId, updated); err != nil {
t.Fatalf("Update case-only email: %v", err)
}
if n := countClientRecords(t); n != 1 {
t.Fatalf("client records after case-only rename = %d, want 1", n)
}
rec := lookupClientRecord(t, "Test")
if rec.Id != origId {
t.Fatalf("record id after case-only rename = %d, want %d", rec.Id, origId)
}
if rec.Email != "Test" {
t.Fatalf("email after case-only rename = %q, want %q", rec.Email, "Test")
}
}
func TestClientUpdateDuplicateSubIDDoesNotRenameEmail(t *testing.T) {
setupBulkDB(t)
svc := &ClientService{}
inboundSvc := &InboundService{}
source := []model.Client{
{Email: "keep@x", ID: "aaaaaaaa-0000-0000-0000-000000000003", SubID: "sub-keep", Enable: true},
{Email: "other@x", ID: "aaaaaaaa-0000-0000-0000-000000000004", SubID: "sub-other", Enable: true},
}
ib := mkInbound(t, 22003, model.VLESS, clientsSettings(t, source))
if err := svc.SyncInbound(nil, ib.Id, source); err != nil {
t.Fatalf("seed linkage: %v", err)
}
origId := lookupClientRecord(t, "keep@x").Id
origSettings := mustInboundSettings(t, inboundSvc, ib.Id)
updated := source[0]
updated.Email = "kept@x"
updated.SubID = "sub-other"
if _, err := svc.Update(inboundSvc, origId, updated); err == nil {
t.Fatalf("Update with colliding subId succeeded, want error")
}
rec := lookupClientRecord(t, "keep@x")
if rec.Id != origId {
t.Fatalf("record id changed after rejected update")
}
if got := mustInboundSettings(t, inboundSvc, ib.Id); got != origSettings {
t.Fatalf("inbound settings changed after rejected update")
}
}
func mustInboundSettings(t *testing.T, inboundSvc *InboundService, id int) string {
t.Helper()
ib, err := inboundSvc.GetInbound(id)
if err != nil {
t.Fatalf("GetInbound %d: %v", id, err)
}
return ib.Settings
}