Publish ITWorx Pulse source
Public source validation / validate (push) Failing after 3m8s

This commit is contained in:
ITWorx Pulse release export
2026-09-03 02:09:19 +02:00
commit bd774932d5
614 changed files with 77116 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
package forecastapi
import (
"context"
"encoding/json"
"errors"
"net/http"
"time"
"github.com/itworx/pulse/internal/auth"
"github.com/itworx/pulse/internal/forecast"
"github.com/itworx/pulse/internal/problem"
)
type Handler struct {
Provider forecast.Provider
}
func (h Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodGet || r.URL.Path != "/api/v1/forecasts" {
http.NotFound(w, r)
return
}
if _, ok := auth.PrincipalFromContext(r.Context()); !ok {
problem.Write(w, r, http.StatusUnauthorized, "UNAUTHORIZED", "Authentication required", "Authentication is required to read forecasts.", nil)
return
}
if err := r.Context().Err(); err != nil {
return
}
snapshot, err := h.snapshot(r)
if err != nil {
if errors.Is(err, context.Canceled) || errors.Is(err, context.DeadlineExceeded) {
return
}
problem.Write(w, r, http.StatusServiceUnavailable, "FORECASTS_UNAVAILABLE", "Forecastgegevens niet beschikbaar", "De capaciteitsvoorspellingen konden niet worden gelezen.", nil)
return
}
w.Header().Set("Content-Type", "application/json")
w.Header().Set("Cache-Control", "private, max-age=15")
_ = json.NewEncoder(w).Encode(snapshot)
}
func (h Handler) snapshot(r *http.Request) (forecast.Snapshot, error) {
if h.Provider == nil {
return forecast.UnknownSnapshot(time.Now().UTC(), "source_unavailable"), nil
}
return h.Provider.Snapshot(r.Context())
}
+61
View File
@@ -0,0 +1,61 @@
package forecastapi
import (
"context"
"encoding/json"
"net/http"
"net/http/httptest"
"testing"
"time"
"github.com/itworx/pulse/internal/auth"
"github.com/itworx/pulse/internal/forecast"
)
type providerFunc func(context.Context) (forecast.Snapshot, error)
func (f providerFunc) Snapshot(ctx context.Context) (forecast.Snapshot, error) { return f(ctx) }
func authenticatedRequest(method, path string) *http.Request {
r := httptest.NewRequest(method, path, nil)
return r.WithContext(auth.WithPrincipal(r.Context(), auth.Principal{Subject: "test", Role: auth.RoleViewer}))
}
func TestHandlerRequiresAuthenticationAndGET(t *testing.T) {
h := Handler{}
unauthenticated := httptest.NewRecorder()
h.ServeHTTP(unauthenticated, httptest.NewRequest(http.MethodGet, "/api/v1/forecasts", nil))
if unauthenticated.Code != http.StatusUnauthorized {
t.Fatalf("status=%d", unauthenticated.Code)
}
method := httptest.NewRecorder()
h.ServeHTTP(method, authenticatedRequest(http.MethodPost, "/api/v1/forecasts"))
if method.Code != http.StatusNotFound {
t.Fatalf("status=%d", method.Code)
}
}
func TestHandlerReturnsBoundedSnapshotAndMapsProviderErrors(t *testing.T) {
now := time.Date(2026, 8, 1, 12, 0, 0, 0, time.UTC)
snapshot := forecast.Snapshot{ContractVersion: forecast.ContractVersion, GeneratedAt: now, QualifiedCount: 0, Items: []forecast.Forecast{{EntityID: "share", Method: forecast.MethodInsufficient, Confidence: forecast.ConfidenceNone, Reason: "insufficient_points"}}}
h := Handler{Provider: providerFunc(func(context.Context) (forecast.Snapshot, error) { return snapshot, nil })}
recorder := httptest.NewRecorder()
h.ServeHTTP(recorder, authenticatedRequest(http.MethodGet, "/api/v1/forecasts"))
if recorder.Code != http.StatusOK || recorder.Header().Get("Cache-Control") != "private, max-age=15" {
t.Fatalf("status=%d headers=%v", recorder.Code, recorder.Header())
}
var got forecast.Snapshot
if err := json.NewDecoder(recorder.Body).Decode(&got); err != nil {
t.Fatal(err)
}
if got.QualifiedCount != 0 || len(got.Items) != 1 || got.Items[0].Reason != "insufficient_points" {
t.Fatalf("snapshot=%+v", got)
}
failing := Handler{Provider: providerFunc(func(context.Context) (forecast.Snapshot, error) { return forecast.Snapshot{}, context.DeadlineExceeded })}
deadline := httptest.NewRecorder()
failing.ServeHTTP(deadline, authenticatedRequest(http.MethodGet, "/api/v1/forecasts"))
if deadline.Code != http.StatusOK {
t.Fatalf("deadline status=%d", deadline.Code)
}
}