- Fix migration 024 self-insert and bad column reference (F-B1-1, F-B1-2) Uses existing enabled/auto_run columns instead of non-existent deprecated - Abort server on migration failure instead of warning (F-B1-11) main.go now calls log.Fatalf, prints [INFO] only on success - Fix migration 018 scanner_config filename suffix (F-B1-3) Renumbered to 027 with .up.sql suffix - Remove GRANT to non-existent role in scanner_config (F-B1-4) - Resolve duplicate migration numbers 009 and 012 (F-B1-13) Renamed to 009b and 012b for unique lexical sorting - Add IF NOT EXISTS to all non-idempotent migrations (F-B1-15) Fixed: 011, 012, 017, 023, 023a - Replace N+1 dashboard stats loop with GetAllUpdateStats (F-B1-6) Single aggregate query replaces per-agent loop - Add composite index on agent_commands(status, sent_at) (F-B1-5) New migration 028 with partial index for timeout service - Add background refresh token cleanup goroutine (F-B1-10) 24-hour ticker calls CleanupExpiredTokens - ETHOS log format in migration runner (no emojis) All 55 tests pass (41 server + 14 agent). No regressions. See docs/B1_Fix_Implementation.md and DEV-025 through DEV-028. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
62 lines
1.8 KiB
Go
62 lines
1.8 KiB
Go
package database_test
|
|
|
|
// refresh_token_cleanup_test.go — Tests for background token cleanup.
|
|
//
|
|
// F-B1-10 FIXED: Background goroutine added to main.go that calls
|
|
// CleanupExpiredTokens every 24 hours.
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestNoBackgroundRefreshTokenCleanup(t *testing.T) {
|
|
// POST-FIX: background cleanup now exists in main.go
|
|
mainPath := filepath.Join("..", "..", "cmd", "server", "main.go")
|
|
content, err := os.ReadFile(mainPath)
|
|
if err != nil {
|
|
t.Fatalf("failed to read main.go: %v", err)
|
|
}
|
|
|
|
src := strings.ToLower(string(content))
|
|
|
|
if !strings.Contains(src, "cleanupexpiredtokens") {
|
|
t.Error("[ERROR] [server] [database] F-B1-10 NOT FIXED: no CleanupExpiredTokens call in main.go")
|
|
return
|
|
}
|
|
|
|
// Check it's in a goroutine context
|
|
idx := strings.Index(src, "cleanupexpiredtokens")
|
|
start := idx - 300
|
|
if start < 0 {
|
|
start = 0
|
|
}
|
|
context := src[start:idx]
|
|
if !strings.Contains(context, "go func") && !strings.Contains(context, "ticker") {
|
|
t.Error("[ERROR] [server] [database] CleanupExpiredTokens exists but not in background context")
|
|
return
|
|
}
|
|
|
|
t.Log("[INFO] [server] [database] F-B1-10 FIXED: background refresh token cleanup exists")
|
|
}
|
|
|
|
func TestBackgroundRefreshTokenCleanupExists(t *testing.T) {
|
|
mainPath := filepath.Join("..", "..", "cmd", "server", "main.go")
|
|
content, err := os.ReadFile(mainPath)
|
|
if err != nil {
|
|
t.Fatalf("failed to read main.go: %v", err)
|
|
}
|
|
|
|
src := strings.ToLower(string(content))
|
|
|
|
if !strings.Contains(src, "refresh_token_cleanup") {
|
|
t.Errorf("[ERROR] [server] [database] no background refresh token cleanup found.\n" +
|
|
"F-B1-10: must periodically call CleanupExpiredTokens.")
|
|
return
|
|
}
|
|
|
|
t.Log("[INFO] [server] [database] F-B1-10 FIXED: background cleanup goroutine found")
|
|
}
|