Sub2API v1.0 - AI API 网关(二开初始版本,基于上游 Wei-Shaw/sub2api)
Release / update-version (push) Has been cancelled
Release / build-frontend (push) Has been cancelled
Release / release (push) Has been cancelled
Release / sync-version-file (push) Has been cancelled
CI / shell (push) Canceled after 0s
CI / test (push) Canceled after 0s
CI / frontend (push) Canceled after 0s
CI / golangci-lint (push) Canceled after 0s
Security Scan / backend-security (push) Canceled after 0s
Security Scan / frontend-security (push) Canceled after 0s

This commit is contained in:
李建琦
2026-08-21 18:30:13 +08:00
commit 6d655c9903
3584 changed files with 1270640 additions and 0 deletions
@@ -0,0 +1,49 @@
package repository
import (
"context"
"errors"
"testing"
"time"
"github.com/alicebob/miniredis/v2"
"github.com/redis/go-redis/v9"
"github.com/stretchr/testify/require"
)
func TestAPIKeyCacheSubscriber_BlocksUntilContextCancellation(t *testing.T) {
server := miniredis.RunT(t)
client := redis.NewClient(&redis.Options{Addr: server.Addr()})
defer func() { _ = client.Close() }()
cache := NewAPIKeyCache(client)
ctx, cancel := context.WithCancel(context.Background())
received := make(chan string, 1)
returned := make(chan error, 1)
go func() {
returned <- cache.SubscribeAuthCacheInvalidation(ctx, func(value string) { received <- value })
}()
var value string
require.Eventually(t, func() bool {
require.NoError(t, client.Publish(context.Background(), authCacheInvalidateChannel, "hash").Err())
select {
case value = <-received:
return true
default:
return false
}
}, time.Second, 10*time.Millisecond)
require.Equal(t, "hash", value)
select {
case err := <-returned:
t.Fatalf("subscriber returned while connection was active: %v", err)
default:
}
cancel()
select {
case err := <-returned:
require.True(t, errors.Is(err, context.Canceled))
case <-time.After(time.Second):
t.Fatal("subscriber did not stop after context cancellation")
}
}