Files
vyndr/tests/unit/tickerLive.test.js
T
builtbykev f8b120c0aa Session 45: Snapshot pipeline + GameCard swap + live ticker (2100 tests)
The on-demand "Read" grade model is RETIRED. A scheduled pipeline pre-grades the
slate, locks grades to the line, tracks movement; the dashboard shows them already
there. Orchestrates existing services — nothing rebuilt.

- snapshotService.runSnapshot(sport): getOdds → gradeAndCacheSlate → classify
  archetype per player → lock gradedAt → line deltas vs previous snapshot → write
  snapshot:{sport}:latest/previous + grades:{sport} → ticker events. Fully
  injectable, zero-network unit tests. runAllSnapshots = cron entrypoint.
- Internal trigger POST /api/internal/snapshot/:sport + /all (requireInternalAuth).
  In-process cron (SNAPSHOT_CRON=1, UTC 14,19,22,1,3) in server.js, no new dep.
- Public reads: GET /api/snapshot/:sport (cache-only) + GET /api/ticker (merges
  TICKER_MANUAL pins) + Next proxies.
- GameCard swap: live Slate renders vyndr/GameCard (legacy kept for types only),
  overlays locked grades onto game props → player name once + archetype badge +
  "Graded Xh ago at -115 · Current 2.5 · ▲ TOWARD +1.0". Ungraded → "Awaiting next
  scan", NO Read button. On-demand onGrade flow deleted.
- Ticker polls /api/ticker every 30s, graceful fallback to hardcoded items.
- NBA/WNBA: espnStatsAdapter free fallback (defensive parse → found:false on shape
  mismatch) wired into resolvePlayerStats after the offline Python service.

Env: PROPLINE_API_KEY_1/2/3, VYNDR_INTERNAL_KEY, SNAPSHOT_CRON=1, TICKER_MANUAL.
Backend 2061 -> 2100 tests (+39), 173 suites. Web build clean (exit 0).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-18 21:34:29 -04:00

34 lines
1.2 KiB
JavaScript

// Session 45 — Phase 4: the ticker polls /api/ticker (snapshot exhaust).
const fs = require('fs');
const path = require('path');
const WEB = path.join(__dirname, '..', '..', 'web', 'src');
const read = (rel) => fs.readFileSync(path.join(WEB, rel), 'utf8');
describe('Ticker live wiring', () => {
const src = read('components/vyndr/Ticker.tsx');
it('fetches from /api/ticker (not purely hardcoded)', () => {
expect(src).toContain("fetch('/api/ticker'");
expect(src).toContain('setInterval(load');
});
it('polls every 30s by default', () => {
expect(src).toContain('pollMs = 30_000');
});
it('falls back to the passed items + keeps current on failure (never blanks)', () => {
expect(src).toContain('feed && feed.length > 0 ? feed : items');
expect(src).toContain('keep the current items on failure');
});
it('colors event tags (A+/MOVE/SCAN/ALERT)', () => {
expect(src).toContain("MOVE: 'var(--amber)'");
expect(src).toContain("ALERT: 'var(--text-0)'");
});
});
describe('Ticker Next proxy', () => {
it('exists and forwards to the backend', () => {
const proxy = read('app/api/ticker/route.ts');
expect(proxy).toContain('/api/ticker');
expect(proxy).toContain('BACKEND_URL');
});
});