Files
wehub-resource-sync f99010fae1
CI / lint (push) Failing after 1s
CI / frontend (push) Failing after 1s
CI / scripts (push) Failing after 1s
CI / Go Test (ubuntu-latest) (push) Failing after 0s
CI / frontend-node-25 (push) Failing after 1s
CI / docs (push) Failing after 0s
CI / coverage (push) Failing after 0s
CI / e2e (push) Failing after 0s
Docker / build-and-push (push) Failing after 1s
CI / integration (push) Failing after 4m43s
CI / Go Test (windows-latest) (push) Has been cancelled
CI / Desktop Unit Tests (Windows) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Linux (arm64)) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Linux) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Windows) (push) Has been cancelled
Desktop Artifacts (macOS) / Desktop Build (macOS (aarch64)) (push) Has been cancelled
Desktop Artifacts (macOS) / Desktop Build (macOS (x86_64)) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:30:36 +08:00

108 lines
4.1 KiB
Go

package server
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.kenn.io/agentsview/internal/db"
)
// TestActivityRangeSummaryUsesRequestTimezone confirms the insight activity
// summary resolves its window in the request timezone, so a non-UTC viewer's
// summary covers the same local-day window as the activity dashboard the dates
// were derived from. A session whose only instant is 2026-06-16T02:00:00Z is
// the local day 2026-06-15 in America/New_York (UTC-4 in June) but the UTC day
// 2026-06-16, so the June-15 summary must include it under New York and
// exclude it under UTC. Before the fix the window was always UTC, so the New
// York request would have wrongly excluded the session.
func TestActivityRangeSummaryUsesRequestTimezone(t *testing.T) {
srv := testServer(t, 0)
ctx := context.Background()
ts := "2026-06-16T02:00:00Z"
require.NoError(t, srv.db.UpsertSession(db.Session{
ID: "x", Project: "proj", Machine: "test", Agent: "claude",
StartedAt: &ts, EndedAt: &ts, MessageCount: 1,
RelationshipType: "root", DataVersion: 1,
}))
require.NoError(t, srv.db.ReplaceSessionMessages("x", []db.Message{{
SessionID: "x", Ordinal: 0, Role: "assistant", Content: "x",
Timestamp: ts, Model: "m1",
}}))
ny, err := srv.activityRangeSummary(ctx, generateInsightRequest{
Type: "daily_activity", DateFrom: "2026-06-15", DateTo: "2026-06-15",
Timezone: "America/New_York",
})
require.NoError(t, err)
require.NotNil(t, ny)
assert.Equal(t, 1, ny.Sessions,
"New York June-15 window covers the 02:00Z instant (22:00 local)")
utc, err := srv.activityRangeSummary(ctx, generateInsightRequest{
Type: "daily_activity", DateFrom: "2026-06-15", DateTo: "2026-06-15",
Timezone: "UTC",
})
require.NoError(t, err)
require.NotNil(t, utc)
assert.Equal(t, 0, utc.Sessions,
"UTC June-15 window ends at June 16 00:00Z, before the instant")
}
// TestActivityRangeSummaryAppliesAutomatedScope confirms the insight activity
// summary honors the request's automated scope rather than always excluding
// automated sessions, so an automated_scope=all request attaches a summary that
// covers the same sessions BuildPrompt's list does. Before the fix the summary
// hard-coded ExcludeAutomated, so "all" and "automated" requests undercounted.
func TestActivityRangeSummaryAppliesAutomatedScope(t *testing.T) {
srv := testServer(t, 0)
ctx := context.Background()
ts := "2026-06-15T12:00:00Z"
// Interactive session: multi-turn, ordinary prompt.
require.NoError(t, srv.db.UpsertSession(db.Session{
ID: "human", Project: "proj", Machine: "test", Agent: "claude",
StartedAt: &ts, EndedAt: &ts, MessageCount: 4, UserMessageCount: 2,
RelationshipType: "root", DataVersion: 1,
}))
require.NoError(t, srv.db.ReplaceSessionMessages("human", []db.Message{{
SessionID: "human", Ordinal: 0, Role: "assistant", Content: "x",
Timestamp: ts, Model: "m1",
}}))
// Automated session: a single-turn review prompt sets is_automated.
reviewPrompt := "You are a code reviewer. Review the code."
require.NoError(t, srv.db.UpsertSession(db.Session{
ID: "auto", Project: "proj", Machine: "test", Agent: "claude",
StartedAt: &ts, EndedAt: &ts, MessageCount: 3, UserMessageCount: 1,
FirstMessage: &reviewPrompt, RelationshipType: "root", DataVersion: 1,
}))
require.NoError(t, srv.db.ReplaceSessionMessages("auto", []db.Message{{
SessionID: "auto", Ordinal: 0, Role: "assistant", Content: "x",
Timestamp: ts, Model: "m1",
}}))
base := generateInsightRequest{
Type: "daily_activity", DateFrom: "2026-06-15", DateTo: "2026-06-15",
Timezone: "UTC",
}
human := base
human.AutomatedScope = "human"
humanSummary, err := srv.activityRangeSummary(ctx, human)
require.NoError(t, err)
require.NotNil(t, humanSummary)
assert.Equal(t, 1, humanSummary.Sessions,
"human scope counts only the interactive session")
all := base
all.AutomatedScope = "all"
allSummary, err := srv.activityRangeSummary(ctx, all)
require.NoError(t, err)
require.NotNil(t, allSummary)
assert.Equal(t, 2, allSummary.Sessions,
"all scope counts interactive and automated sessions")
}