mirror of
https://github.com/lukaszraczylo/traefikoidc.git
synced 2026-06-05 22:44:17 +00:00
546ceb949c
* fix(security): encrypt session cookies + fail closed on invalid config
Batch 1 of security audit remediation (ranks 1, 2, 6).
- session.go: derive independent HMAC + AES-256 keys via stdlib HKDF-SHA256
and build the gorilla cookie store with both, so session cookies are now
encrypted, not merely signed. The single-key store previously left OIDC
access/refresh/ID tokens recoverable from raw cookie bytes. Cookie format
changes, so existing sessions are invalidated on deploy (one-time re-login).
- main.go: call config.Validate() at construction and error out on failure,
instead of silently substituting a public hardcoded encryption key for
empty/short keys (which allowed session forgery). The yaegi analyzer
passes via .traefik.yml testData.
- settings.go: isValidSecureURL permits plaintext HTTP for loopback hosts
only (RFC 8252); remote providers must still use HTTPS.
- tests: complete configs that did not satisfy Validate(); add regression
tests in security_audit_fixes_test.go.
Configs below documented minimums (rateLimit < 10, key < 32 chars) are now
rejected at startup (fail closed).
* fix(security): validate discovered OIDC endpoints + pin introspection host
Batch 2 of security audit remediation (ranks 3, 4).
- url_helpers.go: add validateDiscoveredEndpoint, an SSRF screen for endpoints
taken from the provider discovery document (jwks_uri, token, authorization,
revocation, end_session, introspection, registration). Blocks link-local
(cloud metadata 169.254.169.254), multicast, unspecified and private
addresses (unless allowPrivateIPAddresses); blocks loopback unless the
configured providerURL is itself loopback (dev/test). Cross-domain JWKS
hosts (e.g. Google) stay allowed. Add sameHost helper.
- main.go: updateMetadataEndpoints screens every discovered endpoint and
blanks any that fail (fail closed downstream). The introspection endpoint
carries the client secret via HTTP Basic, so it is additionally pinned to
the providerURL host to stop a poisoned discovery document exfiltrating the
secret to an attacker-controlled host.
- tests: regression tests for the SSRF guard and the host pin.
* fix(security): close open redirects + anchor excluded-URL matching
Batch 3 of security audit remediation (ranks 5, 14, 15).
- auth_flow.go: run the stored incoming path through normalizeLogoutPath
before using it as the post-login redirect, so //evil.com and /\evil.com
payloads become host-relative (open-redirect, rank 5).
- url_helpers.go: excluded-URL matching is anchored at a natural boundary
(exact, sub-path "/", or file extension "."), so excluding "/public" no
longer also bypasses auth on "/publicsecret"; "/favicon" still matches
"/favicon.ico" (rank 14).
- internal/utils: X-Forwarded-Host is sanitized (first value only; reject
CRLF/whitespace/multi-value) before building redirect URLs (rank 15).
- helpers.go: the logout redirect used when there is no provider end-session
endpoint is host-relative, never an absolute URL derived from the
client-controllable request host (logout open-redirect, rank 15).
- tests: update two logout cases that asserted the old absolute redirect;
add regression tests.
* fix(security): reject unverified Azure tokens; fix transport TLS reuse
Batch 4 of security audit remediation (ranks 7, 11).
- token_validation_rs.go: an Azure nonce-bearing access token that cannot be
cryptographically verified no longer returns "authenticated" when there is
no ID token to corroborate it; it refreshes (if possible) or forces
re-authentication instead of failing open (rank 7).
- http_client_pool.go: the at-limit transport-reuse path now takes the write
lock before mutating refCount (fixes a data race) and only reuses a
transport whose TLS settings (CA pool + InsecureSkipVerify) match the
caller's, never one with a different trust store; if none matches it returns
nil so the caller falls back to a verifying default transport (rank 11).
- tests: add a transport-pool TLS-isolation regression test.
* fix(security): stop logging templated header values (token leak)
Batch 5 of security audit remediation (rank 16).
middleware.go: templated downstream headers commonly carry the access token
(e.g. "Authorization: Bearer {{.AccessToken}}"). The debug log line printed
the full header value, leaking credentials into logs. Log the header name and
byte length instead.
* fix(security): cache-key collision, cache-config divergence, fleet cleanup
Batch 6 of security audit remediation (ranks 9, 10, 12).
- token_manager.go: detectTokenType keys its cache on a SHA-256 hash of the
full token instead of the first 32 chars (which are only the base64url JWT
header). Distinct tokens sharing alg+kid no longer collide and get
mis-classified (rank 10).
- cache_manager.go: the process-global cache manager is initialized once and
shared across plugin instances; it now logs a loud warning when a later
instance requests a different explicit Redis backend that is silently
ignored, surfacing the cross-instance state-isolation hazard (rank 9).
- singleton_resources.go / main.go / utilities.go: track a process-global live
instance count; the shared singleton-token-cleanup task is stopped only when
the LAST instance shuts down, so one instance's Close() (e.g. a config reload)
no longer kills cleanup for surviving instances (rank 12).
- tests: update TestDetectTokenTypeCaching for the new key; add regression tests.
* fix(security): bound introspection cache + cookie lifetime to config
Batch 7 of security audit remediation (ranks 8, 13).
- token_introspection.go: when requireTokenIntrospection is enabled, cap the
positive introspection-result cache at 30s (instead of 5m) so a token
revoked at the provider stops passing within ~30s, matching the operator's
near-real-time revocation expectation (rank 8).
- session.go: bind the cookie store's MaxAge to the configured sessionMaxAge,
so the cookie codec's cryptographic timestamp validity is no longer fixed at
gorilla's 30-day default; a stolen cookie is valid only for the configured
session lifetime (rank 13).
- tests: add a cookie-lifetime regression test.
* fix(security): low-severity hardening (cache, DoS caps, PKCE, throttle)
Batch 8 of security audit remediation — low severity
(ranks 24, 25, 27, 29, 31, 36, 37, 41, 45, 46, 49).
- universal_cache.go: updateLocalCache updates an existing key in place instead
of orphaning its LRU element and double-counting currentSize/currentMemory
(rank 36 — the only production-reachable bug in this batch).
- jwk.go / metadata_cache.go / token_introspection.go: bound response bodies
with io.LimitReader (1 MiB) to prevent memory exhaustion from a hostile or
buggy provider (ranks 24, 25).
- jwk.go: skip JWKs not usable for signature verification (use != sig, or
key_ops without "verify") when building the key set (rank 49).
- auth_flow.go: fail closed at the callback when PKCE is enabled but the code
verifier is missing, instead of silently dropping it (rank 27).
- utilities.go / main.go: match allowedUserDomains case-insensitively (rank 31).
- bearer_auth.go: a single success no longer wipes an active per-IP penalty;
the counter resets only when no penalty is in effect (rank 29).
- main.go: handle (not discard) the NewSessionManager error (rank 37).
- error_recovery.go: take a write lock in isServiceDegraded (it deletes from a
map); compare retryable-error substrings case-insensitively (ranks 45, 46).
- singleton_resources.go: bind the generic-cache cleanup goroutine to the
resource-manager shutdown channel so it cannot outlive its owner (rank 41).
- tests: update the bearer throttle test to the corrected penalty semantics.
* fix(security): header sanitization, issuer pinning, fail-closed paths
Batch 9 of security audit remediation (ranks 18, 19, 20, 21, 22, 30, 33, 34).
- middleware.go / bearer_auth.go: sanitize claim-derived values on the cookie
auth path before injecting them into downstream headers. Drop group/role and
identifier values containing control chars, bidi-override runes, or the
, ; = delimiters (a comma would inject phantom entries into X-User-Groups);
reject control/bidi/over-length in rendered templated header output (but
permit , ; = in free-form values such as a bearer token). The bearer path
already sanitized; the cookie path did not (ranks 33, 34).
- main.go / metadata_cache.go: pin the discovered issuer to the configured
provider host (sameHost) and refuse/never-cache a mismatch, so a poisoned
discovery document cannot redefine the JWT trust anchor (ranks 21, 22).
- token_introspection.go: when a distinct API audience is configured, fail
closed on a missing or mismatched introspection audience; aud parsed as
string-or-array per RFC 7662 (rank 19).
- logout.go: front-channel logout requires a matching issuer; an empty iss is
rejected (blocks unauthenticated forced-logout via a known sid) (rank 30).
- token_validation_rs.go: an opaque access token with no ID token and no
successful introspection fails closed (re-auth) instead of authenticating
(ranks 18, 20).
- tests: realistic same-host provider mocks; regression tests for the header
sanitization distinction and the fail-closed paths.
* chore(security): remove unwired dead code with latent footguns
Batch 10 of security audit remediation — delete confirmed-dead, unwired
subsystems (ranks 26, 35, 50). None had a production caller (grep-verified);
removal eliminates the latent footguns and ~2.1k lines of dead code.
- token_validator.go (deleted): an unused *TokenValidator whose validateJWT set
Valid=true with NO signature verification — a severe footgun if ever wired
(rank 50). The wired RS-aware validators are unaffected.
- security_monitoring.go (deleted): an unused *SecurityMonitor / ExtractClientIP
that trusted spoofable X-Forwarded-For / X-Real-IP. The live bearer throttle
uses clientIPForBearer (RemoteAddr-only), unchanged (rank 35).
- dynamic_client_registration.go: removed the RFC 7592 management methods
(Update/Read/DeleteClientRegistration) that dereferenced an attacker-
influenced RegistrationClientURI with the registration token attached and no
HTTPS/SSRF gate, and had no callers. The wired RFC 7591 RegisterClient and
credential-store helpers are kept (rank 26).
- tests: removed the tests covering the deleted code.
* chore: add Makefile with yaegi load validation
No Makefile existed. The new `yaegi-validate` target interprets the plugin
under the yaegi interpreter the same way Traefik loads it, catching yaegi-only
incompatibilities (unsupported stdlib symbols, reflection edge cases) that the
native `go build` / `go test` toolchain does not. Importing the plugin forces
yaegi to interpret every file plus its vendored deps; CreateConfig + New
exercise the instantiation path.
- cmd/yaegicheck/main.go: the load driver, marked //go:build ignore so it is
excluded from `go build ./...` (avoids VCS-stamping a main binary, which
fails in git-worktree layouts) yet is run explicitly by yaegi.
- Makefile: build / fmt / vet / lint / test / vendor / yaegi-validate / check
targets; `make check` runs vet + tests + yaegi-validate.
Verified: `make yaegi-validate` passes on this branch — the HKDF cookie
encryption, net-based endpoint validation, and claim sanitizers all interpret
and instantiate cleanly under yaegi.
* ci: bump workflow Go toolchain to 1.25; pin yaegi-validate to v0.16.1
Traefik v3.7.1 (the deployed version) is built with `go 1.25.0`, so the PR and
release workflows now use Go 1.25.x to match the toolchain Traefik uses.
Important distinction: the CI Go version is the build TOOLCHAIN. The plugin's
actual interpreter-compatibility ceiling is the yaegi version Traefik bundles
(v0.16.1, which declares go 1.21 and ships a ~Go 1.22 stdlib symbol surface),
NOT the CI Go version. That ceiling is enforced by `make yaegi-validate` plus
the go.mod language directive — e.g. it is why HKDF is hand-rolled with
hmac+sha256 rather than Go 1.24's crypto/hkdf, which yaegi v0.16.1 lacks.
Also pin Makefile YAEGI_VERSION to v0.16.1 (what Traefik v3.7.1 vendors) so
yaegi-validate exercises the real deployed interpreter instead of @latest,
which could pass on a newer yaegi that supports symbols the deployed one does
not.
* docs: align README/CONFIGURATION with branch behavior changes
- excludedURLs: documented as segment/extension-boundary matching (was
"prefix-matched") — "/public" no longer also matches "/publicsecret" (rank 14).
- Front-channel logout now requires a matching `iss`; requests without one are
rejected with 400 (rank 30).
- Add an "Upgrading from an earlier release" note: session cookies are now
AES-256 encrypted with lifetime tracking sessionMaxAge (one-time re-login on
upgrade), and invalid configuration (rateLimit < 10, key < 32 bytes, missing
callbackURL, non-HTTPS remote providerURL) now fails closed at startup.
* fix: remove staticcheck-flagged unused functions; wire staticcheck into make check
CI Static Analysis (standalone staticcheck) failed with U1000 "unused":
- dynamic_client_registration.go: deleteCredentialsFromStore — its only caller
was the RFC 7592 DeleteClientRegistration removed in the dead-code batch.
- token_test.go: createTestJWTSimple — its only callers were the TokenValidator
tests removed in the same batch.
Both confirmed to have zero remaining callers and removed. build / vet /
go test ./... / staticcheck ./... all green.
The pre-commit hook runs golangci-lint, but CI runs standalone staticcheck
(which flags U1000). Add a `staticcheck` Makefile target and include it in
`make check` so this class of finding is caught locally before push.
* fix(test): stabilize flaky TestWorkerPool_TaskPanic
tasksFailed is incremented in the worker's deferred recover(), which runs after the panicking task's own defer wg.Done(). wg.Wait() could therefore return before the failure was recorded, so reading the counter immediately raced and flaked on slow CI runners. Poll until the failure lands (2s budget) instead. Verified 200x plain + 50x under -race/GOMAXPROCS=1.
1118 lines
28 KiB
Go
1118 lines
28 KiB
Go
//go:build !yaegi
|
|
|
|
package traefikoidc
|
|
|
|
import (
|
|
"container/list"
|
|
"net/http"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/gorilla/sessions"
|
|
)
|
|
|
|
// =============================================================================
|
|
// CACHE COMPAT TESTS - OnAccess, OnRemove
|
|
// =============================================================================
|
|
|
|
func TestLRUStrategy_OnAccess_CoverageBoost(t *testing.T) {
|
|
strategy := &LRUStrategy{
|
|
order: list.New(),
|
|
elements: make(map[string]*list.Element),
|
|
maxSize: 100,
|
|
}
|
|
|
|
// OnAccess should not panic
|
|
strategy.OnAccess("key1", "value1")
|
|
strategy.OnAccess("key2", struct{ Name string }{"test"})
|
|
strategy.OnAccess("", nil)
|
|
}
|
|
|
|
func TestLRUStrategy_OnRemove_CoverageBoost(t *testing.T) {
|
|
strategy := &LRUStrategy{
|
|
order: list.New(),
|
|
elements: make(map[string]*list.Element),
|
|
maxSize: 100,
|
|
}
|
|
|
|
// OnRemove should not panic
|
|
strategy.OnRemove("key1")
|
|
strategy.OnRemove("nonexistent")
|
|
strategy.OnRemove("")
|
|
}
|
|
|
|
// =============================================================================
|
|
// JWT REPLAY CACHE TESTS
|
|
// =============================================================================
|
|
|
|
func TestGetReplayCacheStats_CoverageBoost(t *testing.T) {
|
|
// Test the function - it should return valid stats
|
|
size, maxSize := getReplayCacheStats()
|
|
|
|
if maxSize != 10000 {
|
|
t.Errorf("Expected maxSize to be 10000, got %d", maxSize)
|
|
}
|
|
|
|
// Size should be >= 0
|
|
if size < 0 {
|
|
t.Errorf("Expected size to be >= 0, got %d", size)
|
|
}
|
|
}
|
|
|
|
// =============================================================================
|
|
// PROFILING MANAGER TESTS
|
|
// =============================================================================
|
|
|
|
func TestProfilingManager_GetCurrentStats_Simple_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("info")
|
|
pm := NewProfilingManager(logger)
|
|
|
|
// Test GetCurrentStats which doesn't need full initialization
|
|
stats := pm.GetCurrentStats()
|
|
if stats == nil {
|
|
t.Fatal("Expected non-nil stats")
|
|
}
|
|
|
|
// Verify some fields are populated
|
|
if stats.Sys == 0 {
|
|
t.Log("Sys memory is 0")
|
|
}
|
|
}
|
|
|
|
func TestProfilingManager_RegisterUnregisterProfiler_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("info")
|
|
pm := NewProfilingManager(logger)
|
|
|
|
// Create a mock profiler using an existing type
|
|
mockProfiler := NewCacheMemoryProfiler(nil, logger)
|
|
|
|
// Register profiler
|
|
pm.RegisterProfiler("test-profiler", mockProfiler)
|
|
|
|
// Get registered profilers
|
|
profilers := pm.GetRegisteredProfilers()
|
|
found := false
|
|
for _, name := range profilers {
|
|
if name == "test-profiler" {
|
|
found = true
|
|
break
|
|
}
|
|
}
|
|
if !found {
|
|
t.Error("Expected to find registered profiler")
|
|
}
|
|
|
|
// Unregister profiler
|
|
pm.UnregisterProfiler("test-profiler")
|
|
|
|
// Verify it's gone
|
|
profilers = pm.GetRegisteredProfilers()
|
|
for _, name := range profilers {
|
|
if name == "test-profiler" {
|
|
t.Error("Expected profiler to be unregistered")
|
|
}
|
|
}
|
|
}
|
|
|
|
// =============================================================================
|
|
// MEMORY TEST ORCHESTRATOR TESTS
|
|
// =============================================================================
|
|
|
|
func TestMemoryTestOrchestrator_UnregisterComponent_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("info")
|
|
config := LeakDetectionConfig{
|
|
EnableLeakDetection: true,
|
|
LeakThresholdMB: 100,
|
|
GoroutineLeakThreshold: 50,
|
|
}
|
|
|
|
mto := NewMemoryTestOrchestrator(config, logger)
|
|
|
|
mockProfiler := NewCacheMemoryProfiler(nil, logger)
|
|
|
|
// Register component
|
|
mto.RegisterComponent("test-component", mockProfiler)
|
|
|
|
// Unregister component
|
|
mto.UnregisterComponent("test-component")
|
|
|
|
// Unregister again should be safe
|
|
mto.UnregisterComponent("nonexistent")
|
|
}
|
|
|
|
func TestMemoryTestOrchestrator_LeakDetection_Simple_CoverageBoost(t *testing.T) {
|
|
if testing.Short() {
|
|
t.Skip("Skipping leak detection test in short mode")
|
|
}
|
|
|
|
logger := NewLogger("info")
|
|
config := LeakDetectionConfig{
|
|
EnableLeakDetection: true,
|
|
LeakThresholdMB: 100,
|
|
GoroutineLeakThreshold: 50,
|
|
}
|
|
|
|
mto := NewMemoryTestOrchestrator(config, logger)
|
|
|
|
// Just test the GetAllLeakAnalyses which is safe
|
|
analyses := mto.GetAllLeakAnalyses()
|
|
if analyses == nil {
|
|
t.Error("Expected non-nil map")
|
|
}
|
|
}
|
|
|
|
func TestMemoryTestOrchestrator_LeakDetectionDisabled_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("info")
|
|
config := LeakDetectionConfig{
|
|
EnableLeakDetection: false, // Disabled
|
|
}
|
|
|
|
mto := NewMemoryTestOrchestrator(config, logger)
|
|
|
|
// Should fail because detection is disabled
|
|
err := mto.StartLeakDetection()
|
|
if err == nil {
|
|
t.Error("Expected error when leak detection is disabled")
|
|
}
|
|
}
|
|
|
|
// =============================================================================
|
|
// CACHE MEMORY PROFILER TESTS
|
|
// =============================================================================
|
|
|
|
func TestCacheMemoryProfiler_Methods_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("info")
|
|
|
|
cmp := NewCacheMemoryProfiler(nil, logger)
|
|
if cmp == nil {
|
|
t.Fatal("Expected non-nil CacheMemoryProfiler")
|
|
}
|
|
|
|
config := ProfilingConfig{
|
|
LeakThresholdMB: 100,
|
|
}
|
|
|
|
// StartProfiling
|
|
err := cmp.StartProfiling(config)
|
|
if err != nil {
|
|
t.Errorf("CacheMemoryProfiler.StartProfiling failed: %v", err)
|
|
}
|
|
|
|
// GetCurrentStats
|
|
stats := cmp.GetCurrentStats()
|
|
if stats == nil {
|
|
t.Error("Expected non-nil stats")
|
|
}
|
|
|
|
// StopProfiling
|
|
snapshot, err := cmp.StopProfiling()
|
|
if err != nil {
|
|
t.Errorf("CacheMemoryProfiler.StopProfiling failed: %v", err)
|
|
}
|
|
if snapshot == nil {
|
|
t.Error("Expected snapshot from StopProfiling")
|
|
}
|
|
|
|
// AnalyzeLeaks
|
|
baseline, _ := cmp.TakeSnapshot()
|
|
current, _ := cmp.TakeSnapshot()
|
|
analysis := cmp.AnalyzeLeaks(baseline, current)
|
|
if analysis == nil {
|
|
t.Error("Expected leak analysis")
|
|
}
|
|
}
|
|
|
|
// =============================================================================
|
|
// HTTP CLIENT PROFILER TESTS
|
|
// =============================================================================
|
|
|
|
func TestHTTPClientProfiler_Methods_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("info")
|
|
client := &http.Client{}
|
|
|
|
hcp := NewHTTPClientProfiler(client, logger)
|
|
if hcp == nil {
|
|
t.Fatal("Expected non-nil HTTPClientProfiler")
|
|
}
|
|
|
|
config := ProfilingConfig{
|
|
LeakThresholdMB: 100,
|
|
}
|
|
|
|
// StartProfiling
|
|
err := hcp.StartProfiling(config)
|
|
if err != nil {
|
|
t.Errorf("HTTPClientProfiler.StartProfiling failed: %v", err)
|
|
}
|
|
|
|
// GetCurrentStats
|
|
stats := hcp.GetCurrentStats()
|
|
if stats == nil {
|
|
t.Error("Expected non-nil stats")
|
|
}
|
|
|
|
// TakeSnapshot
|
|
snapshot, err := hcp.TakeSnapshot()
|
|
if err != nil {
|
|
t.Errorf("TakeSnapshot failed: %v", err)
|
|
}
|
|
if snapshot == nil {
|
|
t.Error("Expected snapshot")
|
|
}
|
|
|
|
// StopProfiling
|
|
snapshot, err = hcp.StopProfiling()
|
|
if err != nil {
|
|
t.Errorf("StopProfiling failed: %v", err)
|
|
}
|
|
if snapshot == nil {
|
|
t.Error("Expected snapshot from StopProfiling")
|
|
}
|
|
|
|
// AnalyzeLeaks
|
|
baseline, _ := hcp.TakeSnapshot()
|
|
current, _ := hcp.TakeSnapshot()
|
|
analysis := hcp.AnalyzeLeaks(baseline, current)
|
|
if analysis == nil {
|
|
t.Error("Expected leak analysis")
|
|
}
|
|
}
|
|
|
|
// =============================================================================
|
|
// SESSION MANAGER TESTS
|
|
// =============================================================================
|
|
|
|
func TestSessionManager_GetSessionStats_CoverageBoost(t *testing.T) {
|
|
sm, err := NewSessionManager("test-encryption-key-32-characters", false, "", "", 0, NewLogger("debug"))
|
|
if err != nil {
|
|
t.Fatalf("Failed to create session manager: %v", err)
|
|
}
|
|
|
|
stats := sm.GetSessionStats()
|
|
if stats == nil {
|
|
t.Error("Expected non-nil stats")
|
|
}
|
|
|
|
// Should have expected keys
|
|
if _, ok := stats["active_sessions"]; !ok {
|
|
t.Error("Expected active_sessions in stats")
|
|
}
|
|
if _, ok := stats["pool_hits"]; !ok {
|
|
t.Error("Expected pool_hits in stats")
|
|
}
|
|
if _, ok := stats["pool_misses"]; !ok {
|
|
t.Error("Expected pool_misses in stats")
|
|
}
|
|
}
|
|
|
|
func TestSessionManager_ValidateSessionHealth_CoverageBoost(t *testing.T) {
|
|
sm, err := NewSessionManager("test-encryption-key-32-characters", false, "", "", 0, NewLogger("debug"))
|
|
if err != nil {
|
|
t.Fatalf("Failed to create session manager: %v", err)
|
|
}
|
|
|
|
// Test with nil session
|
|
err = sm.ValidateSessionHealth(nil)
|
|
if err == nil {
|
|
t.Error("Expected error for nil session")
|
|
}
|
|
|
|
// Test with mock session that has proper initialization
|
|
sessionData := CreateMockSessionData()
|
|
// Initialize mainSession to avoid nil pointer
|
|
sessionData.mainSession = sessions.NewSession(nil, "main")
|
|
sessionData.mainSession.Values["authenticated"] = false
|
|
|
|
err = sm.ValidateSessionHealth(sessionData)
|
|
if err == nil {
|
|
t.Error("Expected error for unauthenticated session")
|
|
}
|
|
}
|
|
|
|
func TestSessionManager_ValidateTokenFormat_CoverageBoost(t *testing.T) {
|
|
sm, err := NewSessionManager("test-encryption-key-32-characters", false, "", "", 0, NewLogger("debug"))
|
|
if err != nil {
|
|
t.Fatalf("Failed to create session manager: %v", err)
|
|
}
|
|
|
|
// Empty token - should be valid
|
|
err = sm.validateTokenFormat("", "test_token")
|
|
if err != nil {
|
|
t.Errorf("Empty token should be valid: %v", err)
|
|
}
|
|
|
|
// Valid JWT format
|
|
validJWT := "eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxMjM0NTY3ODkwIn0.signature"
|
|
err = sm.validateTokenFormat(validJWT, "access_token")
|
|
if err != nil {
|
|
t.Errorf("Valid JWT should pass: %v", err)
|
|
}
|
|
|
|
// JWT with empty part
|
|
invalidJWT := "header..signature"
|
|
err = sm.validateTokenFormat(invalidJWT, "access_token")
|
|
if err == nil {
|
|
t.Error("Expected error for JWT with empty part")
|
|
}
|
|
}
|
|
|
|
func TestSessionManager_DetectSessionTampering_CoverageBoost(t *testing.T) {
|
|
sm, err := NewSessionManager("test-encryption-key-32-characters", false, "", "", 0, NewLogger("debug"))
|
|
if err != nil {
|
|
t.Fatalf("Failed to create session manager: %v", err)
|
|
}
|
|
|
|
// Test with nil main session
|
|
sessionData := CreateMockSessionData()
|
|
sessionData.mainSession = nil
|
|
|
|
err = sm.detectSessionTampering(sessionData)
|
|
if err == nil {
|
|
t.Error("Expected error for nil main session")
|
|
}
|
|
|
|
// Test with path traversal attempt
|
|
sessionData.mainSession = sessions.NewSession(nil, "test")
|
|
sessionData.mainSession.Values["evil"] = "../../../etc/passwd"
|
|
|
|
err = sm.detectSessionTampering(sessionData)
|
|
if err == nil {
|
|
t.Error("Expected error for path traversal attempt")
|
|
}
|
|
|
|
// Test with XSS attempt
|
|
sessionData.mainSession.Values["evil"] = "<script>alert('xss')</script>"
|
|
err = sm.detectSessionTampering(sessionData)
|
|
if err == nil {
|
|
t.Error("Expected error for XSS attempt")
|
|
}
|
|
|
|
// Test with overly long value
|
|
longValue := make([]byte, 15000)
|
|
for i := range longValue {
|
|
longValue[i] = 'a'
|
|
}
|
|
sessionData.mainSession.Values["long"] = string(longValue)
|
|
err = sm.detectSessionTampering(sessionData)
|
|
if err == nil {
|
|
t.Error("Expected error for overly long value")
|
|
}
|
|
}
|
|
|
|
func TestSessionData_GetRefreshTokenIssuedAt_CoverageBoost(t *testing.T) {
|
|
sessionData := CreateMockSessionData()
|
|
|
|
// Initialize refresh session
|
|
sessionData.refreshSession = sessions.NewSession(nil, "refresh")
|
|
|
|
// Should return zero time when not set
|
|
issuedAt := sessionData.GetRefreshTokenIssuedAt()
|
|
if !issuedAt.IsZero() {
|
|
t.Error("Expected zero time when issued_at not set")
|
|
}
|
|
|
|
// Set issued_at in refresh session
|
|
now := time.Now().Unix()
|
|
sessionData.refreshSession.Values["issued_at"] = now
|
|
|
|
issuedAt = sessionData.GetRefreshTokenIssuedAt()
|
|
if issuedAt.Unix() != now {
|
|
t.Errorf("Expected issued_at %d, got %d", now, issuedAt.Unix())
|
|
}
|
|
}
|
|
|
|
func TestSessionManager_PeriodicChunkCleanup_CoverageBoost(t *testing.T) {
|
|
sm, err := NewSessionManager("test-encryption-key-32-characters", false, "", "", 0, NewLogger("debug"))
|
|
if err != nil {
|
|
t.Fatalf("Failed to create session manager: %v", err)
|
|
}
|
|
|
|
// Should not panic when called
|
|
sm.PeriodicChunkCleanup()
|
|
}
|
|
|
|
func TestSessionManager_performCleanupCycle_CoverageBoost(t *testing.T) {
|
|
sm, err := NewSessionManager("test-encryption-key-32-characters", false, "", "", 0, NewLogger("debug"))
|
|
if err != nil {
|
|
t.Fatalf("Failed to create session manager: %v", err)
|
|
}
|
|
|
|
// Should not panic when called
|
|
sm.performCleanupCycle()
|
|
}
|
|
|
|
func TestSessionManager_cleanupSessionPool_CoverageBoost(t *testing.T) {
|
|
sm, err := NewSessionManager("test-encryption-key-32-characters", false, "", "", 0, NewLogger("debug"))
|
|
if err != nil {
|
|
t.Fatalf("Failed to create session manager: %v", err)
|
|
}
|
|
|
|
// Should not panic when called
|
|
sm.cleanupSessionPool()
|
|
}
|
|
|
|
// =============================================================================
|
|
// SESSION POOL PROFILER TESTS
|
|
// =============================================================================
|
|
|
|
func TestSessionPoolProfiler_Methods_CoverageBoost(t *testing.T) {
|
|
sm, err := NewSessionManager("test-encryption-key-32-characters", false, "", "", 0, NewLogger("debug"))
|
|
if err != nil {
|
|
t.Fatalf("Failed to create session manager: %v", err)
|
|
}
|
|
logger := NewLogger("info")
|
|
|
|
spp := NewSessionPoolProfiler(sm, logger)
|
|
if spp == nil {
|
|
t.Fatal("Expected non-nil SessionPoolProfiler")
|
|
}
|
|
|
|
config := ProfilingConfig{
|
|
LeakThresholdMB: 100,
|
|
}
|
|
|
|
// StartProfiling
|
|
err = spp.StartProfiling(config)
|
|
if err != nil {
|
|
t.Errorf("SessionPoolProfiler.StartProfiling failed: %v", err)
|
|
}
|
|
|
|
// GetCurrentStats
|
|
stats := spp.GetCurrentStats()
|
|
if stats == nil {
|
|
t.Error("Expected non-nil stats")
|
|
}
|
|
|
|
// TakeSnapshot
|
|
snapshot, err := spp.TakeSnapshot()
|
|
if err != nil {
|
|
t.Errorf("TakeSnapshot failed: %v", err)
|
|
}
|
|
if snapshot == nil {
|
|
t.Error("Expected snapshot")
|
|
}
|
|
|
|
// StopProfiling
|
|
snapshot, err = spp.StopProfiling()
|
|
if err != nil {
|
|
t.Errorf("StopProfiling failed: %v", err)
|
|
}
|
|
if snapshot == nil {
|
|
t.Error("Expected snapshot from StopProfiling")
|
|
}
|
|
|
|
// AnalyzeLeaks
|
|
baseline, _ := spp.TakeSnapshot()
|
|
current, _ := spp.TakeSnapshot()
|
|
analysis := spp.AnalyzeLeaks(baseline, current)
|
|
if analysis == nil {
|
|
t.Error("Expected leak analysis")
|
|
}
|
|
}
|
|
|
|
// =============================================================================
|
|
// ADDITIONAL COVERAGE TESTS
|
|
// =============================================================================
|
|
|
|
func TestProfilingManager_AnalyzeLeaks_WithData_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("info")
|
|
pm := NewProfilingManager(logger)
|
|
|
|
pm.config.LeakThresholdMB = 0 // Set low threshold to trigger detection
|
|
|
|
// Take real snapshots to test
|
|
baseline, err := pm.TakeSnapshot()
|
|
if err != nil {
|
|
t.Fatalf("Failed to take baseline snapshot: %v", err)
|
|
}
|
|
|
|
// Allocate some memory to simulate change
|
|
data := make([]byte, 1024*1024) // 1MB
|
|
_ = data
|
|
|
|
current, err := pm.TakeSnapshot()
|
|
if err != nil {
|
|
t.Fatalf("Failed to take current snapshot: %v", err)
|
|
}
|
|
|
|
analysis := pm.AnalyzeLeaks(baseline, current)
|
|
if analysis == nil {
|
|
t.Fatal("Expected analysis")
|
|
}
|
|
}
|
|
|
|
func TestProfilingManager_AnalyzeLeaks_NilSnapshots_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("info")
|
|
pm := NewProfilingManager(logger)
|
|
|
|
analysis := pm.AnalyzeLeaks(nil, nil)
|
|
if analysis == nil {
|
|
t.Fatal("Expected analysis even with nil snapshots")
|
|
}
|
|
|
|
if analysis.HasLeak {
|
|
t.Error("Should not report leak with nil snapshots")
|
|
}
|
|
}
|
|
|
|
// =============================================================================
|
|
// ADDITIONAL COVERAGE BOOST - TokenCache, JWKCache, GenericCache
|
|
// =============================================================================
|
|
|
|
func TestTokenCache_CleanupClose_CoverageBoost(t *testing.T) {
|
|
tc := NewTokenCache()
|
|
|
|
// These are no-ops but need coverage
|
|
tc.Cleanup()
|
|
tc.Close()
|
|
}
|
|
|
|
func TestJWKCache_CleanupClose_CoverageBoost(t *testing.T) {
|
|
jc := NewJWKCache()
|
|
|
|
// These are no-ops but need coverage
|
|
jc.Cleanup()
|
|
jc.Close()
|
|
}
|
|
|
|
func TestGenericCache_Operations_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("debug")
|
|
gc := NewGenericCache(time.Minute, logger)
|
|
|
|
// Test Set
|
|
gc.Set("key1", "value1")
|
|
gc.Set("key2", 42)
|
|
|
|
// Test Get
|
|
val, exists := gc.Get("key1")
|
|
if !exists {
|
|
t.Error("Expected key1 to exist")
|
|
}
|
|
if val != "value1" {
|
|
t.Errorf("Expected value1, got %v", val)
|
|
}
|
|
|
|
// Test Delete
|
|
gc.Delete("key1")
|
|
_, exists = gc.Get("key1")
|
|
if exists {
|
|
t.Error("Expected key1 to be deleted")
|
|
}
|
|
|
|
// Test Stop
|
|
gc.Stop()
|
|
}
|
|
|
|
func TestLRUStrategy_AllMethods_CoverageBoost(t *testing.T) {
|
|
strategy := NewLRUStrategy(100)
|
|
|
|
// Test Name
|
|
if strategy.Name() != "LRU" {
|
|
t.Errorf("Expected LRU, got %s", strategy.Name())
|
|
}
|
|
|
|
// Test ShouldEvict
|
|
evict := strategy.ShouldEvict("item", time.Now())
|
|
if evict {
|
|
t.Error("ShouldEvict should return false")
|
|
}
|
|
|
|
// Test OnAccess
|
|
strategy.OnAccess("testkey", "testvalue")
|
|
|
|
// Test OnRemove
|
|
strategy.OnRemove("testkey")
|
|
|
|
// Test EstimateSize
|
|
size := strategy.EstimateSize("value")
|
|
if size != 64 {
|
|
t.Errorf("Expected 64, got %d", size)
|
|
}
|
|
|
|
// Test GetEvictionCandidate
|
|
key, found := strategy.GetEvictionCandidate()
|
|
if found {
|
|
t.Errorf("Expected not found, got key: %s", key)
|
|
}
|
|
}
|
|
|
|
func TestCacheInterfaceWrapper_SetMaxMemory_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("debug")
|
|
manager := GetUniversalCacheManager(logger)
|
|
tokenCache := manager.GetTokenCache()
|
|
|
|
// The cache should exist
|
|
if tokenCache == nil {
|
|
t.Fatal("Expected non-nil token cache")
|
|
}
|
|
}
|
|
|
|
// =============================================================================
|
|
// SESSION CHUNK MANAGER TESTS
|
|
// =============================================================================
|
|
|
|
func TestResetGlobalSessionCounters_CoverageBoost(t *testing.T) {
|
|
// Call the function - it should not panic
|
|
ResetGlobalSessionCounters()
|
|
|
|
// Call it again to ensure it's idempotent
|
|
ResetGlobalSessionCounters()
|
|
}
|
|
|
|
// =============================================================================
|
|
// CACHE MANAGER SetMaxMemory TEST
|
|
// =============================================================================
|
|
|
|
func TestCacheManager_SetMaxMemory_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("debug")
|
|
manager := GetUniversalCacheManager(logger)
|
|
|
|
if manager == nil {
|
|
t.Fatal("Expected non-nil cache manager")
|
|
}
|
|
|
|
// Test SetMaxMemory through CacheInterfaceWrapper using NewCacheAdapter
|
|
tokenCache := manager.GetTokenCache()
|
|
wrapper := NewCacheAdapter(tokenCache)
|
|
if wrapper != nil {
|
|
// Set max memory - this should not panic
|
|
wrapper.SetMaxMemory(1024 * 1024 * 100) // 100MB
|
|
}
|
|
}
|
|
|
|
// =============================================================================
|
|
// SETTINGS VALIDATION TESTS
|
|
// =============================================================================
|
|
|
|
func TestValidateTemplateSecure_CoverageBoost(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
template string
|
|
shouldError bool
|
|
}{
|
|
{
|
|
name: "valid access token template",
|
|
template: "{{.AccessToken}}",
|
|
shouldError: false,
|
|
},
|
|
{
|
|
name: "valid id token template",
|
|
template: "{{.IdToken}}",
|
|
shouldError: false,
|
|
},
|
|
{
|
|
name: "valid refresh token template",
|
|
template: "{{.RefreshToken}}",
|
|
shouldError: false,
|
|
},
|
|
{
|
|
name: "valid claims template",
|
|
template: "{{.Claims.email}}",
|
|
shouldError: false,
|
|
},
|
|
{
|
|
name: "dangerous call pattern",
|
|
template: "{{call .Func}}",
|
|
shouldError: true,
|
|
},
|
|
{
|
|
name: "dangerous range pattern",
|
|
template: "{{range .Items}}{{.}}{{end}}",
|
|
shouldError: true,
|
|
},
|
|
{
|
|
name: "dangerous define pattern",
|
|
template: "{{define \"test\"}}{{.}}{{end}}",
|
|
shouldError: true,
|
|
},
|
|
{
|
|
name: "dangerous template inclusion",
|
|
template: "{{template \"other\"}}",
|
|
shouldError: true,
|
|
},
|
|
{
|
|
name: "dangerous printf pattern",
|
|
template: "{{printf \"%s\" .}}",
|
|
shouldError: true,
|
|
},
|
|
{
|
|
name: "safe get function",
|
|
template: "{{get .Claims \"email\"}}",
|
|
shouldError: false,
|
|
},
|
|
{
|
|
name: "safe default function",
|
|
template: "{{default \"unknown\" .Claims.email}}",
|
|
shouldError: false,
|
|
},
|
|
{
|
|
name: "no allowed pattern",
|
|
template: "{{.Unknown}}",
|
|
shouldError: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
err := validateTemplateSecure(tt.template)
|
|
if tt.shouldError && err == nil {
|
|
t.Errorf("Expected error for template: %s", tt.template)
|
|
}
|
|
if !tt.shouldError && err != nil {
|
|
t.Errorf("Unexpected error for template %s: %v", tt.template, err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestIsOriginAllowed_CoverageBoost(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
origin string
|
|
allowedOrigins []string
|
|
expected bool
|
|
}{
|
|
{
|
|
name: "exact match",
|
|
origin: "https://example.com",
|
|
allowedOrigins: []string{"https://example.com"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "wildcard allows all",
|
|
origin: "https://any.domain.com",
|
|
allowedOrigins: []string{"*"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "subdomain wildcard https match",
|
|
origin: "https://sub.example.com",
|
|
allowedOrigins: []string{"https://*.example.com"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "subdomain wildcard http match",
|
|
origin: "http://sub.example.com",
|
|
allowedOrigins: []string{"http://*.example.com"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "root domain with https wildcard",
|
|
origin: "https://example.com",
|
|
allowedOrigins: []string{"https://*.example.com"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "root domain with http wildcard",
|
|
origin: "http://example.com",
|
|
allowedOrigins: []string{"http://*.example.com"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "no match",
|
|
origin: "https://other.com",
|
|
allowedOrigins: []string{"https://example.com"},
|
|
expected: false,
|
|
},
|
|
{
|
|
name: "empty allowed origins",
|
|
origin: "https://example.com",
|
|
allowedOrigins: []string{},
|
|
expected: false,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
result := isOriginAllowed(tt.origin, tt.allowedOrigins)
|
|
if result != tt.expected {
|
|
t.Errorf("Expected %v, got %v for origin %s with allowed %v",
|
|
tt.expected, result, tt.origin, tt.allowedOrigins)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
// =============================================================================
|
|
// TOKEN CACHE LIFECYCLE TESTS
|
|
// =============================================================================
|
|
|
|
func TestTokenCache_CleanupAndClose_CoverageBoost(t *testing.T) {
|
|
tc := NewTokenCache()
|
|
if tc == nil {
|
|
t.Fatal("Expected non-nil TokenCache")
|
|
}
|
|
|
|
// Add some data
|
|
tc.Set("test-token-1", map[string]interface{}{"sub": "user1"}, time.Minute)
|
|
tc.Set("test-token-2", map[string]interface{}{"sub": "user2"}, time.Minute)
|
|
|
|
// Call Cleanup - this should not panic
|
|
tc.Cleanup()
|
|
|
|
// Call Close - this should not panic
|
|
tc.Close()
|
|
}
|
|
|
|
// =============================================================================
|
|
// JWK CACHE LIFECYCLE TESTS
|
|
// =============================================================================
|
|
|
|
func TestJWKCache_CleanupAndClose_CoverageBoost(t *testing.T) {
|
|
jc := NewJWKCache()
|
|
if jc == nil {
|
|
t.Fatal("Expected non-nil JWKCache")
|
|
}
|
|
|
|
// Call Cleanup - this should not panic
|
|
jc.Cleanup()
|
|
|
|
// Call Close - this should not panic
|
|
jc.Close()
|
|
}
|
|
|
|
// =============================================================================
|
|
// PROFILING LEAK DETECTION TESTS
|
|
// =============================================================================
|
|
|
|
func TestMemoryTestOrchestrator_StopLeakDetection_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("debug")
|
|
|
|
config := LeakDetectionConfig{
|
|
EnableLeakDetection: true,
|
|
LeakThresholdMB: 100,
|
|
GoroutineLeakThreshold: 50,
|
|
}
|
|
|
|
mto := NewMemoryTestOrchestrator(config, logger)
|
|
|
|
// Test StopLeakDetection when not started - should return error
|
|
err := mto.StopLeakDetection()
|
|
if err == nil {
|
|
t.Log("StopLeakDetection returned nil error (expected since detection was not started)")
|
|
}
|
|
}
|
|
|
|
// =============================================================================
|
|
// CHUNK MANAGER TESTS
|
|
// =============================================================================
|
|
|
|
func TestChunkManager_GetSessionCount_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("debug")
|
|
cm := NewChunkManager(logger)
|
|
if cm == nil {
|
|
t.Fatal("Expected non-nil ChunkManager")
|
|
}
|
|
defer cm.Shutdown()
|
|
|
|
// Test GetSessionCount
|
|
count := cm.GetSessionCount()
|
|
if count != 0 {
|
|
t.Errorf("Expected 0 sessions, got %d", count)
|
|
}
|
|
}
|
|
|
|
func TestChunkManager_GetMemoryStats_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("debug")
|
|
cm := NewChunkManager(logger)
|
|
if cm == nil {
|
|
t.Fatal("Expected non-nil ChunkManager")
|
|
}
|
|
defer cm.Shutdown()
|
|
|
|
// Test GetMemoryStats
|
|
stats := cm.GetMemoryStats()
|
|
if stats == nil {
|
|
t.Fatal("Expected non-nil stats")
|
|
}
|
|
|
|
// Verify expected keys exist
|
|
if _, ok := stats["active_sessions"]; !ok {
|
|
t.Error("Expected active_sessions key in stats")
|
|
}
|
|
if _, ok := stats["max_sessions"]; !ok {
|
|
t.Error("Expected max_sessions key in stats")
|
|
}
|
|
if _, ok := stats["bytes_allocated"]; !ok {
|
|
t.Error("Expected bytes_allocated key in stats")
|
|
}
|
|
}
|
|
|
|
func TestChunkManager_CanCreateSession_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("debug")
|
|
cm := NewChunkManager(logger)
|
|
if cm == nil {
|
|
t.Fatal("Expected non-nil ChunkManager")
|
|
}
|
|
defer cm.Shutdown()
|
|
|
|
// Test CanCreateSession - should be true initially
|
|
canCreate, err := cm.CanCreateSession()
|
|
if err != nil {
|
|
t.Errorf("Unexpected error: %v", err)
|
|
}
|
|
if !canCreate {
|
|
t.Error("Expected CanCreateSession to return true when empty")
|
|
}
|
|
}
|
|
|
|
func TestChunkManager_EmergencyCleanup_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("debug")
|
|
cm := NewChunkManager(logger)
|
|
if cm == nil {
|
|
t.Fatal("Expected non-nil ChunkManager")
|
|
}
|
|
defer cm.Shutdown()
|
|
|
|
// Test EmergencyCleanup - should not panic on empty session map
|
|
cm.EmergencyCleanup()
|
|
|
|
// Verify no sessions exist
|
|
if cm.GetSessionCount() != 0 {
|
|
t.Error("Expected 0 sessions after cleanup")
|
|
}
|
|
}
|
|
|
|
func TestChunkManager_CleanupExpiredSessions_CoverageBoost(t *testing.T) {
|
|
logger := NewLogger("debug")
|
|
cm := NewChunkManager(logger)
|
|
if cm == nil {
|
|
t.Fatal("Expected non-nil ChunkManager")
|
|
}
|
|
defer cm.Shutdown()
|
|
|
|
// Test CleanupExpiredSessions - should not panic on empty session map
|
|
cm.CleanupExpiredSessions()
|
|
|
|
// Verify no sessions exist
|
|
if cm.GetSessionCount() != 0 {
|
|
t.Error("Expected 0 sessions after cleanup")
|
|
}
|
|
}
|
|
|
|
// =============================================================================
|
|
// REDIS CONFIG VALIDATE TESTS
|
|
// =============================================================================
|
|
|
|
func TestRedisConfig_Validate_CoverageBoost(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
config RedisConfig
|
|
shouldError bool
|
|
}{
|
|
{
|
|
name: "disabled redis is valid",
|
|
config: RedisConfig{Enabled: false},
|
|
shouldError: false,
|
|
},
|
|
{
|
|
name: "enabled redis without address",
|
|
config: RedisConfig{Enabled: true, Address: ""},
|
|
shouldError: true,
|
|
},
|
|
{
|
|
name: "valid enabled redis",
|
|
config: RedisConfig{
|
|
Enabled: true,
|
|
Address: "localhost:6379",
|
|
},
|
|
shouldError: false,
|
|
},
|
|
{
|
|
name: "invalid cache mode",
|
|
config: RedisConfig{
|
|
Enabled: true,
|
|
Address: "localhost:6379",
|
|
CacheMode: "invalid",
|
|
},
|
|
shouldError: true,
|
|
},
|
|
{
|
|
name: "valid redis cache mode",
|
|
config: RedisConfig{
|
|
Enabled: true,
|
|
Address: "localhost:6379",
|
|
CacheMode: "redis",
|
|
},
|
|
shouldError: false,
|
|
},
|
|
{
|
|
name: "valid hybrid cache mode",
|
|
config: RedisConfig{
|
|
Enabled: true,
|
|
Address: "localhost:6379",
|
|
CacheMode: "hybrid",
|
|
},
|
|
shouldError: false,
|
|
},
|
|
{
|
|
name: "negative pool size",
|
|
config: RedisConfig{
|
|
Enabled: true,
|
|
Address: "localhost:6379",
|
|
PoolSize: -1,
|
|
},
|
|
shouldError: true,
|
|
},
|
|
{
|
|
name: "negative connect timeout",
|
|
config: RedisConfig{
|
|
Enabled: true,
|
|
Address: "localhost:6379",
|
|
ConnectTimeout: -1,
|
|
},
|
|
shouldError: true,
|
|
},
|
|
{
|
|
name: "negative read timeout",
|
|
config: RedisConfig{
|
|
Enabled: true,
|
|
Address: "localhost:6379",
|
|
ReadTimeout: -1,
|
|
},
|
|
shouldError: true,
|
|
},
|
|
{
|
|
name: "negative write timeout",
|
|
config: RedisConfig{
|
|
Enabled: true,
|
|
Address: "localhost:6379",
|
|
WriteTimeout: -1,
|
|
},
|
|
shouldError: true,
|
|
},
|
|
{
|
|
name: "negative hybrid L1 size",
|
|
config: RedisConfig{
|
|
Enabled: true,
|
|
Address: "localhost:6379",
|
|
CacheMode: "hybrid",
|
|
HybridL1Size: -1,
|
|
},
|
|
shouldError: true,
|
|
},
|
|
{
|
|
name: "negative hybrid L1 memory",
|
|
config: RedisConfig{
|
|
Enabled: true,
|
|
Address: "localhost:6379",
|
|
CacheMode: "hybrid",
|
|
HybridL1MemoryMB: -1,
|
|
},
|
|
shouldError: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
err := tt.config.Validate()
|
|
if tt.shouldError && err == nil {
|
|
t.Errorf("Expected error for config: %+v", tt.config)
|
|
}
|
|
if !tt.shouldError && err != nil {
|
|
t.Errorf("Unexpected error for config %+v: %v", tt.config, err)
|
|
}
|
|
})
|
|
}
|
|
}
|