Files
vyndr/tests/unit/teamService.test.js
T
builtbykev f0674ca07d Session 51: Complete Team Hub (2234 tests)
Research-depth team view: /team/[abbr] with roster, archetypes, stats, props.

- Team API: mlbStatsAdapter.getTeams/resolveTeam/getTeamRoster (statsapi, abbr→id
  + active roster, cached). teamService.getTeamHub assembles roster → per-player
  season stats (bounded concurrency) + archetype (snapshot grade or classify) +
  tonight's graded props from grades:{sport}; whole hub cached 15min. MLB real;
  NBA/WNBA graceful snapshot roster. GET /api/team/:abbr (404 unknown) + proxy.
- Team Hub page: server page.tsx (generateMetadata) + TeamHub client — header,
  sort (archetype/graded/A-Z), archetype filter chips, roster rows (archetype +
  player link + position + stats + graded props + parlay "+"), "No active props"
  greyed state, loading/error.
- Game cards: team abbreviations are now TeamLinks → /team/:abbr?sport= (green
  hover, stops propagation). Team Hub has "← Back to Slate".

Backend 2215 -> 2234 tests (+19), 190 suites. Web build clean (exit 0).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-19 11:55:10 -04:00

82 lines
3.7 KiB
JavaScript

// Session 51 — Team Hub service. Adapter + cache injected (no network).
const svc = require('../../src/services/teamService');
function memCache(initial) {
const store = { ...(initial || {}) };
return { store, cacheGet: async (k) => (k in store ? store[k] : null), cacheSet: async (k, v) => { store[k] = v; } };
}
const judgeSeason = { homeRuns: 34, atBats: 330, gamesPlayed: 92, avg: '.288', ops: '1.012', rbi: 87 };
const acePitcherSeason = { era: '2.4', strikeOuts: 130, inningsPitched: '110.0', whip: '0.92', gamesStarted: 17, strikeoutsPer9Inn: '10.6' };
const mlbAdapter = {
async resolveTeam(abbr) { return abbr === 'NYY' ? { id: 147, abbr: 'NYY', name: 'New York Yankees' } : null; },
async getTeamRoster() {
return [
{ id: 592450, name: 'Aaron Judge', position: 'RF' },
{ id: 1, name: 'Gerrit Cole', position: 'P' },
{ id: 2, name: 'Bench Guy', position: '2B' },
];
},
async getSeasonAverages(id, _s, group) {
if (id === 592450) return judgeSeason;
if (id === 1 && group === 'pitching') return acePitcherSeason;
return null; // bench guy: no stats
},
};
const gradesEnv = {
grades: [
{ player: 'Aaron Judge', stat_type: 'total_bases', line: 1.5, direction: 'over', grade: 'A', archetype: 'BOMBER', gradedAt: { line: 1.5, timestamp: '2026-06-19T18:00:00Z' } },
{ player: 'Aaron Judge', stat_type: 'home_runs', line: 0.5, direction: 'over', grade: 'C', archetype: 'BOMBER' },
],
};
describe('getTeamHub (MLB, injected)', () => {
it('returns team name + roster with archetype, stats, props', async () => {
const cache = memCache({ 'grades:mlb': gradesEnv });
const hub = await svc.getTeamHub('mlb', 'nyy', { mlbAdapter, cacheGet: cache.cacheGet, cacheSet: cache.cacheSet });
expect(hub.team.name).toBe('New York Yankees');
expect(hub.team.abbr).toBe('NYY');
expect(hub.roster).toHaveLength(3);
const judge = hub.roster.find((p) => p.player === 'Aaron Judge');
expect(judge.archetype.primary).toBe('BOMBER'); // from snapshot
expect(judge.stats.length).toBeGreaterThan(0);
expect(judge.propCount).toBe(2);
const cole = hub.roster.find((p) => p.player === 'Gerrit Cole');
expect(cole.archetype.primary).toBe('ALPHA'); // classified from pitching stats
});
it('shows a player with no stats + no props gracefully', async () => {
const cache = memCache({ 'grades:mlb': gradesEnv });
const hub = await svc.getTeamHub('mlb', 'NYY', { mlbAdapter, cacheGet: cache.cacheGet, cacheSet: cache.cacheSet });
const bench = hub.roster.find((p) => p.player === 'Bench Guy');
expect(bench.propCount).toBe(0);
expect(bench.archetype).toBeNull();
});
it('returns null for an unknown team (→ 404)', async () => {
const cache = memCache();
expect(await svc.getTeamHub('mlb', 'ZZZ', { mlbAdapter, cacheGet: cache.cacheGet, cacheSet: cache.cacheSet })).toBeNull();
});
it('caches the assembled hub (writes teamhub:{sport}:{abbr})', async () => {
const cache = memCache({ 'grades:mlb': gradesEnv });
await svc.getTeamHub('mlb', 'NYY', { mlbAdapter, cacheGet: cache.cacheGet, cacheSet: cache.cacheSet });
expect(cache.store['teamhub:mlb:NYY']).toBeTruthy();
});
});
describe('getTeamHub (NBA fallback)', () => {
it('builds a snapshot roster when no MLB feed', async () => {
const cache = memCache({ 'grades:nba': { grades: [{ player: 'Victor Wembanyama', stat_type: 'points', line: 26.5, direction: 'over', grade: 'A', archetype: 'FORTRESS' }] } });
const hub = await svc.getTeamHub('nba', 'SA', { cacheGet: cache.cacheGet, cacheSet: cache.cacheSet });
expect(hub.rosterSource).toBe('snapshot');
expect(hub.roster[0].player).toBe('Victor Wembanyama');
expect(hub.roster[0].archetype.primary).toBe('FORTRESS');
});
});