Files
box-box/frontend/src/test/replay.test.ts
AmanTahiliani c2617d39bb feat: add replay track map scrubber
Spike: replay location fan-out is bounded with a semaphore at 4 concurrent GetLocation calls, covered by TestAssembleReplayFramesBoundsLocationFanOut.

Adds /api/v1/replay/frames with 5s interval floor, 3000-frame cap, nearest-sample snapping, and empty-driver omission. Wires RaceStoryCanvas to lazy-load replay frames plus cached track outlines when the map panel opens, sharing the existing scrubber/playback state across chart and map.

Tests: HOME=/private/tmp/box-box-home GOCACHE=/private/tmp/box-box-go-cache GOMODCACHE=/Users/aman/go/pkg/mod go test ./internal/web; go build ./... (same env, passed with read-only module stat-cache warning); npm run test; npx tsc --noEmit. Full go test ./... is blocked in this sandbox by existing network/listener-dependent internal/api and internal/news tests.
2026-07-11 18:17:15 -04:00

34 lines
1.4 KiB
TypeScript

import { describe, expect, it } from 'vitest'
import type { ReplayFrame, TrackBounds } from '../types'
import { interpolateReplayCars, lookupReplayFramePair, replayCarToSvg } from '../lib/replay'
const frames: ReplayFrame[] = [
{ t: 0, cars: { '1': { x: 0, y: 0 } } },
{ t: 5000, cars: { '1': { x: 10, y: 20 }, '4': { x: 40, y: 80 } } },
{ t: 10000, cars: { '1': { x: 20, y: 40 } } },
]
describe('replay helpers', () => {
it('looks up boundary frame pairs', () => {
expect(lookupReplayFramePair(frames, -1)).toEqual({ previous: frames[0], next: frames[0] })
expect(lookupReplayFramePair(frames, 10000)).toEqual({ previous: frames[2], next: frames[2] })
expect(lookupReplayFramePair([], 1000)).toEqual({ previous: null, next: null })
})
it('interpolates cars between frames and keeps one-sided samples visible', () => {
const cars = interpolateReplayCars(frames, 2500)
expect(cars['1']).toEqual({ x: 5, y: 10 })
expect(cars['4']).toEqual({ x: 40, y: 80 })
})
it('clamps interpolation outside the replay range', () => {
expect(interpolateReplayCars(frames, -500)['1']).toEqual({ x: 0, y: 0 })
expect(interpolateReplayCars(frames, 12000)['1']).toEqual({ x: 20, y: 40 })
})
it('maps replay GPS through the shared track-map coordinate transform', () => {
const bounds: TrackBounds = { minX: 0, maxX: 100, minY: 0, maxY: 200 }
expect(replayCarToSvg({ x: 50, y: 50 }, bounds)).toEqual({ x: 50, y: 75 })
})
})