feat: dashboard theme overhaul — light content area with branded teal sidebar

Complete frontend visual redesign using certctl logo color palette:
- Deep teal sidebar (#0c2e25) with prominent centered logo (64px in white pill)
- Light content area (#f0f4f8) with white cards and visible borders
- Brand colors from logo: teal (#2ea88f), blue (#3b7dd8), orange (#e8873a), green (#4ebe6e)
- Inter + JetBrains Mono typography, colored stat card top borders
- All 17 pages + 7 components updated (25 files, ~700 lines changed)
- 15 new dashboard screenshots replacing old dark theme screenshots
- Prometheus metrics e2e test added, integration test mock fixes
- Docs updated: architecture.md theme description, testing-guide.md DNS-PERSIST-01 coverage

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
shankar0123
2026-03-26 23:27:42 -04:00
parent 8380cb7946
commit 50c520e1ff
48 changed files with 699 additions and 519 deletions
+55
View File
@@ -937,6 +937,61 @@ func generateE2ECSRBase64DER(t *testing.T, cn string, sans []string) string {
return base64.StdEncoding.EncodeToString(csrDER)
}
// TestPrometheusMetrics exercises the Prometheus metrics endpoint (M22).
func TestPrometheusMetrics(t *testing.T) {
server, _, _, _ := setupTestServer(t)
t.Run("GetPrometheusMetrics_Success", func(t *testing.T) {
resp, err := http.Get(server.URL + "/api/v1/metrics/prometheus")
if err != nil {
t.Fatalf("request failed: %v", err)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
bodyBytes, _ := io.ReadAll(resp.Body)
t.Fatalf("expected 200, got %d: %s", resp.StatusCode, string(bodyBytes))
}
// Verify Content-Type contains text/plain
contentType := resp.Header.Get("Content-Type")
if !strings.Contains(contentType, "text/plain") {
t.Errorf("expected Content-Type containing 'text/plain', got %s", contentType)
}
// Read and verify Prometheus format
body, _ := io.ReadAll(resp.Body)
bodyStr := string(body)
// Should contain HELP and TYPE lines for metrics
if !strings.Contains(bodyStr, "# HELP") {
t.Error("expected HELP line in Prometheus response")
}
if !strings.Contains(bodyStr, "# TYPE") {
t.Error("expected TYPE line in Prometheus response")
}
// Should contain metric lines (gauge, counter, uptime)
if !strings.Contains(bodyStr, "certctl_") {
t.Error("expected certctl_ prefixed metrics in response")
}
t.Logf("Prometheus metrics endpoint working, body size: %d bytes", len(bodyStr))
})
t.Run("GetPrometheusMetrics_MethodNotAllowed", func(t *testing.T) {
resp, err := http.Post(server.URL+"/api/v1/metrics/prometheus", "application/json", nil)
if err != nil {
t.Fatalf("request failed: %v", err)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusMethodNotAllowed {
t.Errorf("expected 405, got %d", resp.StatusCode)
}
})
}
// TestESTEndpoints exercises the EST (RFC 7030) enrollment endpoints end-to-end (M23).
func TestESTEndpoints(t *testing.T) {
server, _, _, _ := setupTestServer(t)