mirror of
https://github.com/shankar0123/certctl.git
synced 2026-06-07 17:41:29 +00:00
ec21c9bb29
M28: ACME Renewal Information (RFC 9702) — CA-directed renewal timing with cert ID computation, directory endpoint discovery, graceful degradation for non-ARI CAs. 19 tests. M29: Email notifier wiring + scheduled certificate digest — SMTP connector bridged to service layer via NotifierAdapter, DigestService with HTML email template, 7th scheduler loop (24h), digest preview/send API endpoints and GUI card. 21 tests. M30: Production-ready Helm chart — server Deployment, PostgreSQL StatefulSet, agent DaemonSet, ConfigMaps, Secrets, Ingress, security contexts, health probes, example values for dev/prod/ACME scenarios. Also: OpenAPI spec updates, MCP tool additions, CI helm-lint job, documentation updates across 5 doc files and README. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
101 lines
2.3 KiB
Go
101 lines
2.3 KiB
Go
package domain
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestRenewalInfo_ShouldRenewNow_BeforeWindow(t *testing.T) {
|
|
now := time.Now()
|
|
windowStart := now.Add(1 * time.Hour)
|
|
windowEnd := now.Add(2 * time.Hour)
|
|
|
|
ri := &RenewalInfo{
|
|
SuggestedWindowStart: windowStart,
|
|
SuggestedWindowEnd: windowEnd,
|
|
}
|
|
|
|
if ri.ShouldRenewNow() {
|
|
t.Error("ShouldRenewNow should be false before window start")
|
|
}
|
|
}
|
|
|
|
func TestRenewalInfo_ShouldRenewNow_AtWindowStart(t *testing.T) {
|
|
now := time.Now()
|
|
windowStart := now
|
|
windowEnd := now.Add(1 * time.Hour)
|
|
|
|
ri := &RenewalInfo{
|
|
SuggestedWindowStart: windowStart,
|
|
SuggestedWindowEnd: windowEnd,
|
|
}
|
|
|
|
if !ri.ShouldRenewNow() {
|
|
t.Error("ShouldRenewNow should be true at window start")
|
|
}
|
|
}
|
|
|
|
func TestRenewalInfo_ShouldRenewNow_DuringWindow(t *testing.T) {
|
|
now := time.Now()
|
|
windowStart := now.Add(-30 * time.Minute)
|
|
windowEnd := now.Add(30 * time.Minute)
|
|
|
|
ri := &RenewalInfo{
|
|
SuggestedWindowStart: windowStart,
|
|
SuggestedWindowEnd: windowEnd,
|
|
}
|
|
|
|
if !ri.ShouldRenewNow() {
|
|
t.Error("ShouldRenewNow should be true during window")
|
|
}
|
|
}
|
|
|
|
func TestRenewalInfo_ShouldRenewNow_AfterWindowEnd(t *testing.T) {
|
|
now := time.Now()
|
|
windowStart := now.Add(-2 * time.Hour)
|
|
windowEnd := now.Add(-1 * time.Hour)
|
|
|
|
ri := &RenewalInfo{
|
|
SuggestedWindowStart: windowStart,
|
|
SuggestedWindowEnd: windowEnd,
|
|
}
|
|
|
|
if !ri.ShouldRenewNow() {
|
|
t.Error("ShouldRenewNow should be true after window end")
|
|
}
|
|
}
|
|
|
|
func TestRenewalInfo_OptimalRenewalTime_Midpoint(t *testing.T) {
|
|
windowStart := time.Unix(1000, 0)
|
|
windowEnd := time.Unix(3000, 0)
|
|
|
|
ri := &RenewalInfo{
|
|
SuggestedWindowStart: windowStart,
|
|
SuggestedWindowEnd: windowEnd,
|
|
}
|
|
|
|
optimal := ri.OptimalRenewalTime()
|
|
expected := time.Unix(2000, 0) // (1000 + 3000) / 2
|
|
|
|
if !optimal.Equal(expected) {
|
|
t.Errorf("OptimalRenewalTime: expected %v, got %v", expected, optimal)
|
|
}
|
|
}
|
|
|
|
func TestRenewalInfo_OptimalRenewalTime_AsymmetricWindow(t *testing.T) {
|
|
windowStart := time.Unix(1000, 0)
|
|
windowEnd := time.Unix(1300, 0) // 300 second window
|
|
|
|
ri := &RenewalInfo{
|
|
SuggestedWindowStart: windowStart,
|
|
SuggestedWindowEnd: windowEnd,
|
|
}
|
|
|
|
optimal := ri.OptimalRenewalTime()
|
|
expected := time.Unix(1150, 0) // start + 150 seconds
|
|
|
|
if !optimal.Equal(expected) {
|
|
t.Errorf("OptimalRenewalTime: expected %v, got %v", expected, optimal)
|
|
}
|
|
}
|