Files
multica/server/internal/handler/parse_since_param_test.go
YYClaw 614dfae884 MUL-2488 feat(timezone): Scheduling / Viewing two-layer timezone architecture (#2968)
* docs(timezone): add scheduling/viewing timezone architecture RFC

* feat(db): replace daily rollups with task_usage_hourly, add user.timezone

Migrations 100-104: add "user".timezone (Viewing tz), build the UTC
hourly task_usage_hourly rollup with its pipeline, drop the legacy
task_usage_daily / task_usage_dashboard_daily pipelines, and drop the
agent_runtime.timezone column. Report queries now slice day boundaries
at read time by the caller-supplied @tz instead of materialising in a
fixed tz. Regenerate sqlc.

* feat(server): add task_usage_hourly backfill command

Replace the two legacy backfill commands (daily / dashboard_daily) with
a single backfill_task_usage_hourly that loads historical task_usage
into the new UTC hourly rollup, sliced per workspace.

* refactor(server): resolve viewing timezone in report handlers

Report handlers resolve the Viewing tz per request (?tz query param,
then user.timezone, then UTC) and pass it to the hourly-rollup queries.
Drop the UseDailyRollup feature flags and the old raw-scan/daily-rollup
dual paths, remove the /api/usage endpoints, and stop the daemon from
reporting and the runtime handler from accepting host timezone.

* refactor(core): switch report queries to viewing timezone

API client and dashboard/runtime queries send ?tz with each report
request, the user schema/types carry the new timezone field, and the
runtime timezone field/mutation is removed.

* feat(views): add viewing timezone preference and UI

Add the useViewingTimezone hook and a Timezone setting in Preferences;
report charts and the dashboard week boundary follow the viewer tz.
Remove the runtime detail timezone editor and its locale strings.

* fix(test): update fixtures and stabilize tests for timezone refactor

The timezone architecture refactor changed several types without
updating dependent test code:

- RuntimeDevice no longer has a timezone field — drop it from the
  create-agent-dialog runtime fixture.
- User now requires a timezone field — add it to the apps/web mockUser
  fixture.
- The PreferencesTab timezone tests asserted on the async save handler
  (PATCH then store update) with a bare expect, racing the mutation's
  settle callback, and timed out querying the Select's ~600-option IANA
  list on a loaded CI runner. Wrap the assertions in waitFor and extend
  the timeout for those three tests.

* docs(timezone): document self-host migration order and trigger invariant

Add a SELF-HOST UPGRADE ORDER runbook to the backfill command's package
comment: applying migrations 100-104 in a single migrate-up drops the
legacy daily rollups before the hourly backfill runs, leaving dashboards
empty until cron catches up.

Add an INVARIANT comment on trg_atq_dirty_hourly noting that agent_id
must be added to the trigger's OF list if it ever becomes mutable,
otherwise dirty buckets for the old agent_id are silently missed.

* style(runtimes): drop trailing blank line in runtime-detail
2026-05-21 15:33:47 +08:00

169 lines
5.5 KiB
Go

package handler
import (
"net/http/httptest"
"testing"
"time"
)
// TestSinceFromDays pins the DST-boundary behaviour of the pure core that
// parseSinceParamInTZ delegates to. time.Now() is injected as `now`, so the
// maths can be exercised at exact transition dates without waiting for a
// real DST change. The invariant: the returned instant is genuine local
// midnight (00:00:00) of the calendar day `days` days before `now`'s local
// day — even when the subtracted span crosses a spring-forward (a 23h day)
// or fall-back (a 25h day).
func TestSinceFromDays(t *testing.T) {
mustLoad := func(name string) *time.Location {
loc, err := time.LoadLocation(name)
if err != nil {
t.Fatalf("load %s: %v", name, err)
}
return loc
}
ny := mustLoad("America/New_York")
la := mustLoad("America/Los_Angeles")
cases := []struct {
name string
loc *time.Location
now time.Time
days int
wantYMD [3]int // year, month, day of expected local midnight
}{
{
// NY spring-forward is 2025-03-09 (clocks jump 02:00→03:00).
// From 03-12, days=3 lands on 03-09 local midnight, and the
// 3-day span swallows the 23-hour DST day.
name: "NY spring-forward span",
loc: ny,
now: time.Date(2025, 3, 12, 15, 30, 0, 0, ny),
days: 3,
wantYMD: [3]int{2025, 3, 9},
},
{
// Land exactly ON the spring-forward day.
name: "NY spring-forward day itself",
loc: ny,
now: time.Date(2025, 3, 9, 10, 0, 0, 0, ny),
days: 0,
wantYMD: [3]int{2025, 3, 9},
},
{
// NY fall-back is 2025-11-02 (clocks fall 02:00→01:00, 25h day).
name: "NY fall-back span",
loc: ny,
now: time.Date(2025, 11, 5, 8, 0, 0, 0, ny),
days: 4,
wantYMD: [3]int{2025, 11, 1},
},
{
name: "NY fall-back day itself",
loc: ny,
now: time.Date(2025, 11, 2, 23, 59, 0, 0, ny),
days: 0,
wantYMD: [3]int{2025, 11, 2},
},
{
// LA spring-forward also 2025-03-09.
name: "LA spring-forward span",
loc: la,
now: time.Date(2025, 3, 10, 6, 15, 0, 0, la),
days: 2,
wantYMD: [3]int{2025, 3, 8},
},
{
// LA fall-back also 2025-11-02.
name: "LA fall-back span",
loc: la,
now: time.Date(2025, 11, 3, 0, 30, 0, 0, la),
days: 5,
wantYMD: [3]int{2025, 10, 29},
},
}
for _, tc := range cases {
tc := tc
t.Run(tc.name, func(t *testing.T) {
got := sinceFromDays(tc.now, tc.days, tc.loc)
// Result must be genuine local midnight in tc.loc.
y, m, d := got.In(tc.loc).Date()
hh, mm, ss := got.In(tc.loc).Clock()
if hh != 0 || mm != 0 || ss != 0 {
t.Errorf("not local midnight: got %s in %s", got.In(tc.loc).Format(time.RFC3339), tc.loc)
}
if y != tc.wantYMD[0] || int(m) != tc.wantYMD[1] || d != tc.wantYMD[2] {
t.Errorf("calendar day: got %04d-%02d-%02d, want %04d-%02d-%02d",
y, m, d, tc.wantYMD[0], tc.wantYMD[1], tc.wantYMD[2])
}
// Cross-check: it equals time.Date midnight of the target day.
want := time.Date(tc.wantYMD[0], time.Month(tc.wantYMD[1]), tc.wantYMD[2], 0, 0, 0, 0, tc.loc)
if !got.Equal(want) {
t.Errorf("instant mismatch: got %s, want %s",
got.Format(time.RFC3339), want.Format(time.RFC3339))
}
})
}
}
// TestParseSinceParamInTZ guards the HTTP-layer parsing in
// parseSinceParamInTZ — the `strconv.Atoi` + `parsed > 0 && parsed <= 365`
// validation and the no-param default. TestSinceFromDays covers the pure
// date maths; this covers how the `days` query param is read and clamped.
// The expected cutoff is recomputed via sinceFromDays, so each case asserts
// the param resolved to the day count the handler should have used.
func TestParseSinceParamInTZ(t *testing.T) {
utc := time.UTC
// expectDays builds the cutoff parseSinceParamInTZ must return for a
// given effective day count, anchored to "now" at call time. The window
// is computed against time.Now() inside parseSinceParamInTZ, so a tiny
// skew across a day boundary is possible; cases run well clear of it.
expectDays := func(days int) time.Time {
return sinceFromDays(time.Now(), days, utc)
}
cases := []struct {
name string
query string // raw query string, no leading '?'
defaultDays int
wantDays int // effective day count the cutoff must reflect
}{
// Invalid / out-of-range inputs all fall back to defaultDays.
{"days=0 rejected (not > 0)", "days=0", 30, 30},
{"days=abc rejected (not an int)", "days=abc", 30, 30},
{"days=400 rejected (over 365 cap)", "days=400", 30, 30},
{"days=-5 rejected (negative)", "days=-5", 30, 30},
{"no days param uses default", "", 30, 30},
{"empty days param uses default", "days=", 30, 30},
// Valid inputs are honoured, including the 365 boundary.
{"valid days=7 honoured", "days=7", 30, 7},
{"days=365 honoured (at cap)", "days=365", 30, 365},
{"days=1 honoured (lower bound)", "days=1", 90, 1},
}
for _, tc := range cases {
tc := tc
t.Run(tc.name, func(t *testing.T) {
url := "/api/dashboard/usage/daily"
if tc.query != "" {
url += "?" + tc.query
}
req := httptest.NewRequest("GET", url, nil)
got := parseSinceParamInTZ(req, tc.defaultDays, "UTC")
if !got.Valid {
t.Fatalf("expected a valid timestamptz, got Valid=false")
}
want := expectDays(tc.wantDays)
// Allow a 2s slop for the now() skew between the two calls.
if diff := got.Time.Sub(want); diff < -2*time.Second || diff > 2*time.Second {
t.Errorf("cutoff mismatch: got %s, want ~%s (effective days=%d)",
got.Time.Format(time.RFC3339), want.Format(time.RFC3339), tc.wantDays)
}
})
}
}