6bac7fd2f0
启用设备数量限制的服务端部分。登录照常成功签发 token(非硬拒登),但若账户活跃 设备数超套餐上限,登录响应带 device_limit 信号,客户端据此弹「移除设备」页。 - devices/store.go:CountActiveDevices(last_seen 近 staleWindow)+ PruneStaleDevices (删超期僵尸行,免费版重装 churn 自愈) - devices/service.go:staleWindow=30d;DeviceLimitStatus + CheckDeviceLimit (best-effort prune → ResolvePlan → 活跃 count > cap 即 Over,附活跃设备列表) - auth:DeviceRegistrar 加 CheckDeviceLimit;recordLogin 回传 *DeviceLimit; LoginOutcome.DeviceLimit;Login 透传;handler tokenPairResponse.device_limit(omitempty) - main.go:authDeviceRegistrar 适配 devices.CheckDeviceLimit → auth.DeviceLimit - 测试:auth 登录透传超限信号(仍签发 token);devices within/over/prune-stale 连接侧 backstop(服务端硬拦)本轮从简未做,作为后续硬化(登录闸为客户端可信信号)。 DB 无 schema 变更。 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
130 lines
4.3 KiB
Go
130 lines
4.3 KiB
Go
package auth
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
)
|
|
|
|
// fakeRegistrar records RegisterDevice calls for assertion.
|
|
type fakeRegistrar struct {
|
|
calls []struct {
|
|
userID int64
|
|
meta DeviceMeta
|
|
}
|
|
deviceID int64
|
|
err error
|
|
limit *DeviceLimit // returned by CheckDeviceLimit (nil = within cap)
|
|
limitErr error
|
|
}
|
|
|
|
func (f *fakeRegistrar) RegisterDevice(_ context.Context, userID int64, meta DeviceMeta) (int64, error) {
|
|
f.calls = append(f.calls, struct {
|
|
userID int64
|
|
meta DeviceMeta
|
|
}{userID, meta})
|
|
return f.deviceID, f.err
|
|
}
|
|
|
|
func (f *fakeRegistrar) CheckDeviceLimit(_ context.Context, _ int64) (*DeviceLimit, error) {
|
|
return f.limit, f.limitErr
|
|
}
|
|
|
|
// Register/Login with a device should trigger RegisterDevice with the meta.
|
|
func TestService_RegisterDevice_OnRegisterAndLogin(t *testing.T) {
|
|
svc, _, _ := newService(t, ServiceConfig{})
|
|
reg := &fakeRegistrar{}
|
|
svc.SetDeviceRegistrar(reg)
|
|
ctx := context.Background()
|
|
const email = "dev@example.com"
|
|
const pw = "supersecret"
|
|
meta := DeviceMeta{DeviceID: "dev-uuid-1", Name: "MacBook Pro", Platform: "macos", ClientVersion: "v1.0.10"}
|
|
|
|
if _, err := svc.SendCode(ctx, email, "1.1.1.1"); err != nil {
|
|
t.Fatalf("SendCode: %v", err)
|
|
}
|
|
code := codeInRedis(t, svc, email)
|
|
if _, e := svc.Register(ctx, email, code, pw, "1.2.3.4", meta); e != nil {
|
|
t.Fatalf("Register: %v", e)
|
|
}
|
|
if len(reg.calls) != 1 || reg.calls[0].meta.DeviceID != "dev-uuid-1" || reg.calls[0].meta.Platform != "macos" {
|
|
t.Fatalf("register did not register device: %+v", reg.calls)
|
|
}
|
|
|
|
if _, _, e := svc.Login(ctx, email, pw, "", meta); e != nil {
|
|
t.Fatalf("Login: %v", e)
|
|
}
|
|
if len(reg.calls) != 2 || reg.calls[1].meta.Name != "MacBook Pro" {
|
|
t.Fatalf("login did not register device: %+v", reg.calls)
|
|
}
|
|
if reg.calls[0].userID == 0 || reg.calls[0].userID != reg.calls[1].userID {
|
|
t.Fatalf("userID mismatch: %+v", reg.calls)
|
|
}
|
|
}
|
|
|
|
// Login surfaces the registrar's over-limit signal (non-hard-reject: tokens still
|
|
// issued, DeviceLimit attached for the client to present "remove a device" UX).
|
|
func TestService_Login_SurfacesDeviceLimit(t *testing.T) {
|
|
svc, _, _ := newService(t, ServiceConfig{})
|
|
last := "2026-07-01T00:00:00Z"
|
|
reg := &fakeRegistrar{limit: &DeviceLimit{
|
|
MaxDevices: 1,
|
|
Devices: []DeviceBrief{{UUID: "old", Name: "Old Phone", Platform: "android", LastSeen: &last}},
|
|
}}
|
|
svc.SetDeviceRegistrar(reg)
|
|
ctx := context.Background()
|
|
const email = "lim@example.com"
|
|
const pw = "supersecret"
|
|
meta := DeviceMeta{DeviceID: "new-dev", Platform: "ios"}
|
|
if _, err := svc.SendCode(ctx, email, "1.1.1.1"); err != nil {
|
|
t.Fatalf("SendCode: %v", err)
|
|
}
|
|
code := codeInRedis(t, svc, email)
|
|
if _, e := svc.Register(ctx, email, code, pw, "", meta); e != nil {
|
|
t.Fatalf("Register: %v", e)
|
|
}
|
|
out, _, e := svc.Login(ctx, email, pw, "", meta)
|
|
if e != nil {
|
|
t.Fatalf("Login must succeed (non-hard-reject): %v", e)
|
|
}
|
|
if out.Tokens == nil {
|
|
t.Fatalf("login should still issue tokens")
|
|
}
|
|
if out.DeviceLimit == nil || out.DeviceLimit.MaxDevices != 1 || len(out.DeviceLimit.Devices) != 1 {
|
|
t.Fatalf("expected device_limit surfaced, got %+v", out.DeviceLimit)
|
|
}
|
|
}
|
|
|
|
// A registrar error (e.g. device cap) must NOT fail login/register.
|
|
func TestService_RegisterDevice_BestEffort(t *testing.T) {
|
|
svc, _, _ := newService(t, ServiceConfig{})
|
|
svc.SetDeviceRegistrar(&fakeRegistrar{err: context.DeadlineExceeded})
|
|
ctx := context.Background()
|
|
const email = "be@example.com"
|
|
if _, err := svc.SendCode(ctx, email, "1.1.1.1"); err != nil {
|
|
t.Fatalf("SendCode: %v", err)
|
|
}
|
|
code := codeInRedis(t, svc, email)
|
|
if _, e := svc.Register(ctx, email, code, "supersecret", "", DeviceMeta{DeviceID: "x", Platform: "windows"}); e != nil {
|
|
t.Fatalf("Register must succeed despite registrar error: %v", e)
|
|
}
|
|
}
|
|
|
|
// No device id / no registrar → no-op, login still works.
|
|
func TestService_RegisterDevice_NoMeta(t *testing.T) {
|
|
svc, _, _ := newService(t, ServiceConfig{})
|
|
reg := &fakeRegistrar{}
|
|
svc.SetDeviceRegistrar(reg)
|
|
ctx := context.Background()
|
|
const email = "nm@example.com"
|
|
if _, err := svc.SendCode(ctx, email, "1.1.1.1"); err != nil {
|
|
t.Fatalf("SendCode: %v", err)
|
|
}
|
|
code := codeInRedis(t, svc, email)
|
|
if _, e := svc.Register(ctx, email, code, "supersecret", "", DeviceMeta{}); e != nil {
|
|
t.Fatalf("Register: %v", e)
|
|
}
|
|
if len(reg.calls) != 0 {
|
|
t.Fatalf("empty device id should not register: %+v", reg.calls)
|
|
}
|
|
}
|