Files
vyndr/tests/unit/compliancePages.test.js
T
builtbykev a8e383e7e7 Item 8 fix: articles live in web/content (the runtime content root), orphan deleted
The blog showed "Posts coming soon" live: the app reads process.cwd()/content
= web/content at runtime (that's where the old orphan lived and rendered), but
the 5 articles were committed to REPO-ROOT content/articles — which the
deployed app never reads. Moved them to web/content/articles (verified
getAllPosts finds all 5 from cwd=web) and deleted the orphan file
web/content/blog/line-movement-guide.mdx (the route already 301s). Test paths
updated to web/content/articles.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-18 01:52:37 -04:00

194 lines
7.4 KiB
JavaScript

// Session 2 (A1 board) — compliance + approval pack. The legal/trust surfaces
// are asserted against their source text (plain-JS Jest config, no TS
// transform — same pattern as vyndrAppShell.test.js).
const fs = require('fs');
const path = require('path');
const ROOT = path.join(__dirname, '..', '..');
const WEB = path.join(ROOT, 'web', 'src');
const read = (rel) => fs.readFileSync(path.join(WEB, rel), 'utf8');
const readRoot = (rel) => fs.readFileSync(path.join(ROOT, rel), 'utf8');
const exists = (rel) => fs.existsSync(path.join(WEB, rel));
describe('S2 — /methodology page', () => {
it('exists as a server component with metadata', () => {
expect(exists('app/methodology/page.tsx')).toBe(true);
const src = read('app/methodology/page.tsx');
expect(src).not.toContain("'use client'");
expect(src).toContain('export const metadata');
});
const src = read('app/methodology/page.tsx');
it('covers the pipeline → engine → letter grades', () => {
expect(src).toContain('The pipeline');
expect(src).toContain('feature vector');
expect(src).toMatch(/11-step letter grade/);
expect(src).toContain('A+');
});
it('covers refusals when the model has no projection', () => {
expect(src).toContain('When the model refuses');
expect(src).toContain('refuses to grade');
expect(src).toContain('Absent beats wrong');
});
it('covers the VYNDR Originals archetype system', () => {
expect(src).toContain('VYNDR Originals');
expect(src).toContain('41');
['TORCH', 'BOMBER', 'GHOST', 'CONDUCTOR'].forEach((a) => expect(src).toContain(a));
});
it('covers ledger settlement: lock at grade time, box-score settle, CLV, n≥20', () => {
expect(src).toContain('How the Ledger settles');
expect(src).toContain('locked with the exact line, the odds, and a timestamp');
expect(src).toContain('real box score');
expect(src).toContain('closing line');
expect(src).toContain('n≥20');
expect(src).toContain('RECORD BUILDING');
});
it('covers why misses are public', () => {
expect(src).toContain('Why the misses are public');
expect(src).toContain('same format');
});
it('states the not-a-sportsbook position and links the ledger', () => {
expect(src).toContain('not a sportsbook');
expect(src).toContain('/ledger');
});
it('is registered as an open (ungated) route and linked from the footer', () => {
const routes = require('../../web/src/lib/routes');
expect(routes.OPEN_ROUTES).toContain('/methodology');
expect(routes.isGatedRoute('/methodology')).toBe(false);
expect(read('components/Footer.tsx')).toContain("href: '/methodology'");
});
});
describe('S2 — /terms and /privacy drafts', () => {
it('terms page exists with the non-negotiable disclosures', () => {
const src = read('app/terms/page.tsx');
expect(src).toContain('not a sportsbook');
expect(src).toContain('21 years of age');
expect(src).toContain('Stripe');
expect(src).toContain('1-800-GAMBLER');
});
it('privacy page exists with the real sub-processor list', () => {
const src = read('app/privacy/page.tsx');
expect(src).toContain('never sell');
['Stripe', 'Supabase', 'PostHog', 'Resend', 'Sentry'].forEach((p) => expect(src).toContain(p));
});
it('entity details are placeholder tokens, not invented facts', () => {
const terms = read('app/terms/page.tsx');
const privacy = read('app/privacy/page.tsx');
['[ENTITY NAME]', '[STATE OF FORMATION]', '[ARBITRATION VENUE]', '[CONTACT EMAIL]'].forEach((t) =>
expect(terms).toContain(t),
);
['[ENTITY NAME]', '[CONTACT EMAIL]'].forEach((t) => expect(privacy).toContain(t));
// The previous draft asserted an unverified LLC + emails — keep them out
// until Kev fills the placeholders.
[terms, privacy].forEach((src) => {
expect(src).not.toContain('VYNDR Intelligence LLC');
expect(src).not.toContain('legal@vyndr.app');
expect(src).not.toContain('privacy@vyndr.app');
});
});
});
describe('S2 — /responsible-gambling (sincere rebuild)', () => {
const src = read('app/responsible-gambling/page.tsx');
it('carries 1-800-GAMBLER as the primary helpline and the 21+ mark', () => {
expect(src).toContain('1-800-GAMBLER');
expect(src).toContain('tel:18004262537');
expect(src).toContain('21+');
});
it('lists state resources for the major legal states', () => {
['Michigan', 'New Jersey', 'New York', 'Pennsylvania', 'Ohio', 'Illinois'].forEach((s) =>
expect(src).toContain(s),
);
});
it('links the existing self-exclusion / settings surfaces', () => {
expect(src).toContain('/settings');
expect(src).toContain('Self-exclusion');
});
it('links national support resources', () => {
['ncpgambling.org', 'gamblersanonymous.org', 'gamtalk.org'].forEach((r) => expect(src).toContain(r));
});
it('has no marketing adjacency (no pricing/upgrade/scan funnels)', () => {
['/pricing', '/upgrade', '/scan', '__goPaywall'].forEach((bad) => expect(src).not.toContain(bad));
});
});
describe('S2 — compliance footer (global)', () => {
it('the root layout mounts the single global Footer', () => {
expect(read('app/layout.tsx')).toContain('<Footer />');
});
it('the footer carries 21+, the RG link, and not-a-sportsbook', () => {
const src = read('components/Footer.tsx');
expect(src).toContain('21+');
expect(src).toContain("href: '/responsible-gambling'");
expect(src).toContain('not a sportsbook');
expect(src).toContain('1-800-GAMBLER');
});
it('no nested layout replaces the root layout (footer cannot be bypassed)', () => {
// The only nested layout (player/[name]) must render children straight
// through — it exists for metadata only.
const nested = read('app/player/[name]/layout.tsx');
expect(nested).toContain('return children');
expect(nested).not.toContain('<html');
});
});
describe('S2 — seed articles + Ghost runbook', () => {
const ARTICLES = [
'web/content/articles/how-vyndr-grades-a-prop.md',
'web/content/articles/the-vyndr-originals.md',
'web/content/articles/why-our-misses-are-public.md',
'web/content/articles/what-clv-is.md',
'web/content/articles/how-streaks-lie.md',
];
// Truth-Everywhere Part 2 (item 8) — these 5 are now PUBLISHED to /blog with
// real dates (was draft/unwired). Lock the published shape: title + a real
// date + published status (drafts would be filtered out of the public index).
it.each(ARTICLES)('%s is published with a real date', (rel) => {
const src = readRoot(rel);
expect(src.startsWith('---')).toBe(true);
expect(src).toContain('title:');
expect(src).toContain('status: published');
expect(src).toMatch(/date:\s*'?\d{4}-\d{2}-\d{2}'?/);
});
it.each(ARTICLES)('%s obeys VOICE v1.1 — zero exclamation points', (rel) => {
expect(readRoot(rel)).not.toContain('!');
});
it('the new user-facing pages obey VOICE v1.1 — zero exclamation points', () => {
[
'app/methodology/page.tsx',
'app/responsible-gambling/page.tsx',
'app/about/page.tsx',
'app/terms/page.tsx',
'app/privacy/page.tsx',
].forEach((rel) => expect(read(rel)).not.toContain('!'));
});
it('the Ghost runbook exists and stays manual (no auto-posting)', () => {
const src = readRoot('docs/GHOST-PUBLISHING.md');
expect(src).toContain('blog.vyndr.app');
expect(src).toContain('draft');
expect(src).toContain('nothing auto-posts');
});
});