Files
loldle/web/test/game-engine.test.js
tiennm99 078d80c962 refactor: port lib layer to src/lib
classic-mode.js moves byte-for-byte. champion-data.js swaps the Next.js
env-var fetch prefix for asset() from $app/paths, which resolves to
/champions.json in dev and /loldle/champions.json in the deployed build.
getChampionImageUrl keeps returning an absolute Data Dragon URL, unwrapped.

Drops three exports with no callers: getAllChampions, getChampionByName,
getGuessedNames.

The characterization suite passes unchanged against the new location -- only
import specifiers moved, no assertions touched.
2026-07-25 11:01:40 +07:00

358 lines
11 KiB
JavaScript

import { describe, expect, it } from "vitest";
import {
clearExpiredCache,
clearUnlimitedState,
createGame,
getOrCreateUnlimitedSeed,
loadUnlimitedStats,
saveUnlimitedStats,
submitGuess,
} from "$lib/game-engine";
import { AATROX, AHRI } from "./fixtures/champions";
/** Minimal stand-in for compareChampions — the engine only stores what this returns. */
const compareFn = (guess, target) => [
{ key: "name", result: guess.name === target.name ? "correct" : "wrong" },
];
/** Synthesize a distinct non-target champion. */
function other(name) {
return { ...AHRI, id: name, name };
}
function daily(overrides = {}) {
return createGame({
target: AATROX,
compareFn,
maxGuesses: 6,
mode: "daily",
seed: "2026-07-25",
...overrides,
});
}
function unlimited(overrides = {}) {
return createGame({
target: AATROX,
compareFn,
maxGuesses: 0,
mode: "unlimited",
seed: "unlimited_123",
...overrides,
});
}
describe("createGame", () => {
it("starts empty and open", () => {
const game = daily();
expect(game.guesses).toEqual([]);
expect(game.results).toEqual([]);
expect(game.isOver).toBe(false);
expect(game.isWon).toBe(false);
});
it("carries config through onto the game object", () => {
expect(daily()).toMatchObject({
target: AATROX,
maxGuesses: 6,
mode: "daily",
seed: "2026-07-25",
});
});
it("defaults to 6 guesses in daily mode when maxGuesses is omitted", () => {
const game = createGame({ target: AATROX, compareFn });
expect(game.maxGuesses).toBe(6);
expect(game.mode).toBe("daily");
});
});
describe("submitGuess", () => {
it("appends the guess and its comparison result", () => {
const game = submitGuess(daily(), AHRI);
expect(game.guesses).toEqual([AHRI]);
expect(game.results).toHaveLength(1);
});
it("does not mutate the game it was given", () => {
const before = daily();
submitGuess(before, AHRI);
expect(before.guesses).toHaveLength(0);
expect(before.results).toHaveLength(0);
});
it("returns fresh array identities so reassignment is observable", () => {
const before = daily();
const after = submitGuess(before, AHRI);
expect(after).not.toBe(before);
expect(after.guesses).not.toBe(before.guesses);
expect(after.results).not.toBe(before.results);
});
it("rejects a duplicate guess with null", () => {
const game = submitGuess(daily(), AHRI);
expect(submitGuess(game, AHRI)).toBeNull();
});
it("rejects any guess once the game is over", () => {
const game = submitGuess(daily(), AATROX);
expect(game.isOver).toBe(true);
expect(submitGuess(game, AHRI)).toBeNull();
});
it("wins on the correct champion", () => {
expect(submitGuess(daily(), AATROX)).toMatchObject({
isWon: true,
isOver: true,
});
});
it("still counts a win made with the final allowed guess", () => {
let game = daily();
for (const name of ["a", "b", "c", "d", "e"]) {
game = submitGuess(game, other(name));
}
expect(game.isOver).toBe(false);
game = submitGuess(game, AATROX);
expect(game).toMatchObject({ isWon: true, isOver: true });
expect(game.guesses).toHaveLength(6);
});
it("ends the game as a loss at maxGuesses wrong guesses", () => {
let game = daily();
for (const name of ["a", "b", "c", "d", "e", "f"]) {
game = submitGuess(game, other(name));
}
expect(game).toMatchObject({ isOver: true, isWon: false });
expect(game.guesses).toHaveLength(6);
});
it("never ends on guess count when maxGuesses is 0", () => {
let game = unlimited();
for (let i = 0; i < 10; i++) {
game = submitGuess(game, other(`c${i}`));
}
expect(game.isOver).toBe(false);
expect(game.guesses).toHaveLength(10);
});
});
describe("persistence — storage key contract", () => {
it("writes daily state to exactly loldle_daily_<seed>", () => {
submitGuess(daily(), AHRI);
expect(localStorage.getItem("loldle_daily_2026-07-25")).not.toBeNull();
});
it("writes unlimited state to exactly loldle_unlimited_current", () => {
submitGuess(unlimited(), AHRI);
expect(localStorage.getItem("loldle_unlimited_current")).not.toBeNull();
});
it("ignores the seed when keying unlimited state", () => {
submitGuess(unlimited({ seed: "unlimited_999" }), AHRI);
expect(localStorage.getItem("loldle_unlimited_current")).not.toBeNull();
expect(localStorage.getItem("loldle_unlimited_unlimited_999")).toBeNull();
});
it("stores the target name, guesses, results and flags", () => {
submitGuess(daily(), AHRI);
const saved = JSON.parse(localStorage.getItem("loldle_daily_2026-07-25"));
expect(saved).toMatchObject({
targetName: "Aatrox",
guesses: [AHRI],
isOver: false,
isWon: false,
});
expect(saved.results).toHaveLength(1);
});
});
describe("persistence — restore on createGame", () => {
it("restores an in-progress game for the same target", () => {
submitGuess(daily(), AHRI);
const restored = daily();
expect(restored.guesses).toEqual([AHRI]);
expect(restored.results).toHaveLength(1);
});
it("restores the over and won flags", () => {
submitGuess(daily(), AATROX);
expect(daily()).toMatchObject({ isOver: true, isWon: true });
});
it("discards saved state when the target changed — the date-rollover case", () => {
submitGuess(daily(), AHRI);
const fresh = createGame({
target: { ...AHRI, name: "Ahri" },
compareFn,
maxGuesses: 6,
mode: "daily",
seed: "2026-07-25",
});
expect(fresh.guesses).toEqual([]);
expect(fresh.isOver).toBe(false);
});
it("starts fresh when storage holds malformed JSON", () => {
localStorage.setItem("loldle_daily_2026-07-25", "{not json");
expect(daily().guesses).toEqual([]);
});
});
describe("clearExpiredCache", () => {
it("removes yesterday's daily entry but keeps today's", () => {
localStorage.setItem("loldle_daily_2026-07-24", "{}");
localStorage.setItem("loldle_daily_2026-07-25", "{}");
clearExpiredCache("2026-07-25");
expect(localStorage.getItem("loldle_daily_2026-07-24")).toBeNull();
expect(localStorage.getItem("loldle_daily_2026-07-25")).not.toBeNull();
});
it("leaves unlimited keys untouched", () => {
localStorage.setItem("loldle_unlimited_current", "{}");
localStorage.setItem("loldle_unlimited_stats", "{}");
localStorage.setItem("loldle_unlimited_seed", "s");
clearExpiredCache("2026-07-25");
expect(localStorage.getItem("loldle_unlimited_current")).not.toBeNull();
expect(localStorage.getItem("loldle_unlimited_stats")).not.toBeNull();
expect(localStorage.getItem("loldle_unlimited_seed")).not.toBeNull();
});
it("removes every stale daily entry, not just the first", () => {
localStorage.setItem("loldle_daily_2026-07-20", "{}");
localStorage.setItem("loldle_daily_2026-07-21", "{}");
localStorage.setItem("loldle_daily_2026-07-22", "{}");
clearExpiredCache("2026-07-25");
expect(localStorage.length).toBe(0);
});
it("ignores unrelated keys", () => {
localStorage.setItem("unrelated", "keep");
clearExpiredCache("2026-07-25");
expect(localStorage.getItem("unrelated")).toBe("keep");
});
});
describe("unlimited seed", () => {
it("creates and persists a seed on first call", () => {
const seed = getOrCreateUnlimitedSeed();
expect(seed).toMatch(/^unlimited_/);
expect(localStorage.getItem("loldle_unlimited_seed")).toBe(seed);
});
it("returns the same seed on subsequent calls", () => {
expect(getOrCreateUnlimitedSeed()).toBe(getOrCreateUnlimitedSeed());
});
it("clearUnlimitedState drops both the seed and the current game", () => {
submitGuess(unlimited(), AHRI);
getOrCreateUnlimitedSeed();
clearUnlimitedState();
expect(localStorage.getItem("loldle_unlimited_current")).toBeNull();
expect(localStorage.getItem("loldle_unlimited_seed")).toBeNull();
});
it("clearUnlimitedState preserves accumulated stats", () => {
localStorage.setItem("loldle_unlimited_stats", '{"gamesPlayed":3}');
clearUnlimitedState();
expect(loadUnlimitedStats().gamesPlayed).toBe(3);
});
});
describe("saveUnlimitedStats", () => {
/**
* Play an unlimited game to completion; `won` picks the ending.
* Clears saved state first, mirroring handleNewGame — otherwise createGame
* restores the previous finished game and submitGuess refuses to run.
*/
function finish(won, wrongGuesses = 0) {
clearUnlimitedState();
let game = unlimited();
for (let i = 0; i < wrongGuesses; i++) {
game = submitGuess(game, other(`c${i}`));
}
if (won) game = submitGuess(game, AATROX);
else game = { ...game, isOver: true };
return game;
}
it("counts a played game", () => {
saveUnlimitedStats(finish(false));
expect(loadUnlimitedStats().gamesPlayed).toBe(1);
});
it("counts a win and records its guess count", () => {
saveUnlimitedStats(finish(true, 2));
expect(loadUnlimitedStats()).toMatchObject({
gamesPlayed: 1,
gamesWon: 1,
guessDistribution: { 3: 1 },
});
});
it("does not count a win when the game was lost", () => {
saveUnlimitedStats(finish(false));
expect(loadUnlimitedStats()).toMatchObject({
gamesPlayed: 1,
gamesWon: 0,
guessDistribution: {},
});
});
it("accumulates across games", () => {
saveUnlimitedStats(finish(true, 1));
saveUnlimitedStats(finish(true, 1));
saveUnlimitedStats(finish(false));
expect(loadUnlimitedStats()).toMatchObject({
gamesPlayed: 3,
gamesWon: 2,
guessDistribution: { 2: 2 },
});
});
it("stamps lastPlayed", () => {
saveUnlimitedStats(finish(true, 0));
expect(typeof loadUnlimitedStats().lastPlayed).toBe("number");
});
it("is a no-op for daily mode", () => {
const game = submitGuess(daily(), AATROX);
saveUnlimitedStats(game);
expect(localStorage.getItem("loldle_unlimited_stats")).toBeNull();
});
it("is a no-op for an unfinished game", () => {
saveUnlimitedStats(submitGuess(unlimited(), AHRI));
expect(localStorage.getItem("loldle_unlimited_stats")).toBeNull();
});
});
describe("loadUnlimitedStats", () => {
it("returns zeroed stats when nothing is stored", () => {
expect(loadUnlimitedStats()).toEqual({
gamesPlayed: 0,
gamesWon: 0,
guessDistribution: {},
lastPlayed: null,
});
});
it("returns zeroed stats when storage holds malformed JSON", () => {
localStorage.setItem("loldle_unlimited_stats", "not json at all");
expect(loadUnlimitedStats()).toMatchObject({
gamesPlayed: 0,
gamesWon: 0,
});
});
});