Files
CRAPP/test/integration/s-ritardi-badge.test.ts
davideandClaude Sonnet 5 3b305b0f8e Completa la copertura test di tutti i badge e corregge due bug trovati in audit
Audit dedicato su tutti i 16 badge: s-tiebreak non applicava la soglia minima di
voti pagella di Pagellone sullo stesso campo mediaVoto (corretto), s-cacche
prometteva "partite di campionato" senza che il codice lo verificasse mai
(corretta la descrizione, comportamento invariato). Aggiunti test unit e
integration end-to-end mancanti su badge segreti e social, con dati scritti a
database anche per i cinque segreti che prima ne erano privi.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-09-08 15:36:33 +02:00

145 lines
5.0 KiB
TypeScript

/**
* Badge segreto Aspettate, arrivo! end-to-end contro il database locale:
* `bun test/integration/s-ritardi-badge.test.ts`.
*
* Stessa struttura di `s-infermeria-badge.test.ts` ma sullo stato "ritardo" invece di
* "infortunato": scrive eventi e risposte veri su `eventi_app`/`risposte_presenze`, rilegge
* via REST e passa il risultato attraverso `contaRitardi()` fino a `statoBadge()` sul badge
* segreto `s-ritardi` (soglia 5, unica).
*
* Gira solo sullo stack locale (`npx supabase start`) e cancella le proprie righe alla fine:
* usa id con il prefisso `test-s-ritardi-badge`, che nessun dato vero può avere.
*/
import assert from "node:assert/strict";
import { badgeSegreti, statoBadge } from "@/lib/badges";
import { contaRitardi } from "@/lib/infortuni";
import { daRiga, type RigaEvento, type Evento } from "@/lib/eventi";
import { giocatori, type Giocatore } from "@/lib/crapp-data";
import { statoLocale } from "../helpers/locale";
import { prova, riepilogo, salta } from "../helpers/prova";
const locale = statoLocale();
if (!locale) {
salta("badge Aspettate, arrivo! sul database", "stack locale non attivo (npx supabase start)");
riepilogo("s-ritardi-badge");
} else {
const { url: URL_BASE, servizio: SERVIZIO } = locale;
console.log(`badge Aspettate, arrivo! su ${URL_BASE}`);
const PREFISSO = "test-s-ritardi-badge";
const def = badgeSegreti.find((b) => b.id === "s-ritardi")!;
const OGGI = "2099-01-01";
const rest = (percorso: string, init?: RequestInit) =>
fetch(`${URL_BASE}/rest/v1/${percorso}`, {
...init,
headers: {
apikey: SERVIZIO,
Authorization: `Bearer ${SERVIZIO}`,
"content-type": "application/json",
...(init?.headers ?? {}),
},
});
const dataEvento = (i: number) => {
const d = new Date(Date.UTC(2020, 0, 1));
d.setUTCDate(d.getUTCDate() + i - 1);
return d.toISOString().slice(0, 10);
};
async function creaEvento(id: string, i: number) {
const res = await rest("eventi_app", {
method: "POST",
headers: { Prefer: "resolution=merge-duplicates,return=representation" },
body: JSON.stringify({
id,
tipo: "allenamento",
titolo: `Evento ${id}`,
data: dataEvento(i),
}),
});
if (!res.ok) throw new Error(`creazione evento ${id}: ${res.status} ${await res.text()}`);
}
async function rispondi(eventoId: string, giocatoreId: string, stato: string) {
const res = await rest("risposte_presenze?on_conflict=evento_id,giocatore_id", {
method: "POST",
headers: { Prefer: "resolution=merge-duplicates,return=representation" },
body: JSON.stringify({ evento_id: eventoId, giocatore_id: giocatoreId, stato }),
});
if (!res.ok) throw new Error(`upsert su risposte_presenze: ${res.status} ${await res.text()}`);
}
async function leggiEventi(): Promise<Evento[]> {
const res = await rest(
"eventi_app?id=like." +
PREFISSO +
"*&select=id,tipo,titolo,luogo,data,ora,note,convocati,campionato,casa,pagelle_chiuse,creato_il",
);
const righe = (await res.json()) as RigaEvento[];
return righe.map(daRiga);
}
async function leggiPresenze(): Promise<Record<string, Record<string, string>>> {
const res = await rest(
`risposte_presenze?evento_id=like.${PREFISSO}*&select=evento_id,giocatore_id,stato`,
);
const righe = (await res.json()) as Array<{
evento_id: string;
giocatore_id: string;
stato: string;
}>;
const mappa: Record<string, Record<string, string>> = {};
for (const r of righe) (mappa[r.evento_id] ??= {})[r.giocatore_id] = r.stato;
return mappa;
}
function giocatoreAzzerato(ritardi: number): Giocatore {
return {
...giocatori[0]!,
ritardi,
mvp: 0,
mediaVoto: 0,
votiPagella: 0,
palloni: 0,
presenze: 0,
};
}
try {
await prova("il segreto si sblocca al quinto ritardo vero, non prima", async () => {
for (let i = 1; i <= 5; i += 1) {
const id = `${PREFISSO}-e${i}`;
await creaEvento(id, i);
await rispondi(id, "sr1", "ritardo");
}
const eventiA4 = (await leggiEventi()).filter((e) => e.id !== `${PREFISSO}-e5`);
const presenzeA4 = await leggiPresenze();
const contoA4 = contaRitardi(presenzeA4, eventiA4, OGGI)["sr1"] ?? 0;
assert.equal(contoA4, 4, "solo i primi quattro eventi contati");
assert.equal(
statoBadge(def, giocatoreAzzerato(contoA4)).grado,
null,
"4 ritardi non bastano",
);
const eventi = await leggiEventi();
const presenze = await leggiPresenze();
const conto = contaRitardi(presenze, eventi, OGGI)["sr1"] ?? 0;
assert.equal(conto, 5);
assert.equal(
statoBadge(def, giocatoreAzzerato(conto)).grado,
"oro",
"5 ritardi: il segreto si sblocca (soglia unica)",
);
});
} finally {
await rest(`risposte_presenze?evento_id=like.${PREFISSO}*`, { method: "DELETE" });
await rest(`eventi_app?id=like.${PREFISSO}*`, { method: "DELETE" });
}
riepilogo("s-ritardi-badge");
}