feat(combat): add first-class undo and redo controls Add undo and redo controls to the combat UI so the DM can recover from recent actions without leaving the encounter view. Undo and redo operate on the current encounter's combat history. Empty stacks produce clear feedback instead of failing silently. Redo order follows normal stack behavior after multiple undos. This makes combat history actionable during play, not just visible in the log. feat(logs): make combat logs replayable Replace plain combat log messages with structured combat events that can be used by the UI, exported as JSON, replayed, and verified. Each new log entry records the action type, encounter identity, participant identity, a small action delta, undo intent, and a turn snapshot. Download and copy now export the event stream as JSON so a saved combat log is useful for offline analysis and debugging. Legacy logs remain viewable, but new logs use the structured event format. feat(logs): make undo and redo transactional Apply undo and redo as single storage operations so the encounter state and log state cannot drift apart. Server storage applies the encounter update and the log undone flag inside one SQLite transaction. Firebase storage uses a batch write for the same behavior. The storage contract now includes undo/redo semantics. This replaces fragile multi-write undo behavior where a failure could update the encounter without marking the log, or mark the log without updating the encounter. feat(combat): add unified replay and verification tool Add one combat CLI for replaying live combat and verifying combat logs. Replay drives the live backend through the same shared combat logic used by the app, writes a JSON event log to an explicit output path, and automatically verifies the result. Verification checks for DM-visible combat problems such as skipped turns, double actions, bad round changes, and unexpected turn order changes. The tool uses the same JSON event stream produced by log downloads, supports verbose turn output, and handles Ctrl-C by ending the encounter, writing the partial log, and verifying what was captured. fix(perf): keep long combat logging fast Remove the combat-time log query bottleneck that made long replays slow as log volume grew. Combat controls no longer subscribe to the log collection just to keep undo and redo state warm. Undo and redo now query the latest matching encounter log only when clicked. Server collection queries support exact filters, ordering, limits, and offsets, and SQLite indexes keep latest-log and per-encounter log lookups fast. Also fix duplicate WebSocket handler registration so realtime updates do not double-fire under write load. fix(turns): make toggle active a status change Make toggle active a roster/status edit instead of a turn advance. Deactivating the current participant no longer passes the turn or increments the round. The current turn stays where it is until the DM explicitly clicks Next Turn, and Next Turn skips inactive participants during normal rotation. This matches the initiative design: slot order is stable, toggle active does not move participants, and round changes only come from explicit turn advance. chore(ci): make warnings and hangs fail fast Tighten test and build checks so failures are visible instead of noisy or silent. Builds run with CI enabled so warnings fail production builds. The full test command runs app, shared, and server suites with hard timeouts so hangs fail quickly. Static eslint coverage fails on warnings as well as errors. Tests were updated around the new async combat logging flow, structured log events, transactional undo, replay verification, and toggle-active semantics.
182 lines
6.7 KiB
JavaScript
182 lines
6.7 KiB
JavaScript
// Regression test: full round must rotate through ALL active participants exactly once.
|
|
// Audit of 100-round replay found 124 skips + 78 dupes (round 1 already missing Fighter
|
|
// before any coverage action). nextTurn has core bug, not just coverage-path issue.
|
|
//
|
|
// Rewritten for async turn.js API: funcs are awaited, take ctx, write own logs.
|
|
|
|
const shared = require('@ttrpg/shared');
|
|
const { mockCtx } = require('./_helpers');
|
|
const { startEncounter, nextTurn, makeParticipant } = shared;
|
|
|
|
function p(id, initiative, extra = {}) {
|
|
return makeParticipant({
|
|
id, name: id, type: 'monster',
|
|
initiative, maxHp: 20, currentHp: 20,
|
|
...extra,
|
|
});
|
|
}
|
|
|
|
function enc(ps) {
|
|
return {
|
|
name: 'T', participants: ps,
|
|
isStarted: false, isPaused: false,
|
|
round: 0, currentTurnParticipantId: null, turnOrderIds: [],
|
|
};
|
|
}
|
|
|
|
describe('round rotation integrity', () => {
|
|
test('3 participants: one full round visits each exactly once', async () => {
|
|
const { ctx } = mockCtx();
|
|
const ps = [p('a', 20), p('b', 15), p('c', 10)];
|
|
let e = enc(ps);
|
|
e = await startEncounter(e, ctx);
|
|
|
|
const startOrder = e.turnOrderIds.slice();
|
|
const visited = [e.currentTurnParticipantId];
|
|
|
|
// advance (len-1) turns: visits remaining participants, round NOT yet wrapped.
|
|
for (let i = 0; i < startOrder.length - 1; i++) {
|
|
e = await nextTurn(e, ctx);
|
|
visited.push(e.currentTurnParticipantId);
|
|
}
|
|
|
|
expect(e.round).toBe(1); // still round 1
|
|
const uniq = new Set(visited);
|
|
expect(uniq.size).toBe(startOrder.length); // each exactly once
|
|
expect(visited.length).toBe(startOrder.length);
|
|
});
|
|
|
|
test('8 participants (replay shape): one full round visits each exactly once', async () => {
|
|
const { ctx } = mockCtx();
|
|
const ps = [
|
|
p('Goblin1', 12), p('Wolf', 13), p('Merchant', 8), p('OrcBoss', 11),
|
|
p('Goblin2', 12), p('Fighter', 14), p('Rogue', 15), p('Cleric', 10),
|
|
];
|
|
let e = enc(ps);
|
|
e = await startEncounter(e, ctx);
|
|
|
|
const startOrder = e.turnOrderIds.slice();
|
|
const visited = [e.currentTurnParticipantId];
|
|
for (let i = 0; i < startOrder.length - 1; i++) {
|
|
e = await nextTurn(e, ctx);
|
|
visited.push(e.currentTurnParticipantId);
|
|
}
|
|
|
|
expect(e.round).toBe(1);
|
|
const uniq = new Set(visited);
|
|
expect(uniq.size).toBe(startOrder.length);
|
|
expect(visited.length).toBe(startOrder.length);
|
|
});
|
|
|
|
test('multiple rounds: each round visits each participant exactly once', async () => {
|
|
const { ctx } = mockCtx();
|
|
const ps = [p('a', 20), p('b', 15), p('c', 10), p('d', 5)];
|
|
let e = enc(ps);
|
|
e = await startEncounter(e, ctx);
|
|
|
|
const startOrder = e.turnOrderIds.slice();
|
|
const expectedRound = e.round;
|
|
|
|
// capture exactly one full round (current + len-1 advances), no wrap yet.
|
|
const visited = [e.currentTurnParticipantId];
|
|
for (let i = 0; i < startOrder.length - 1; i++) {
|
|
e = await nextTurn(e, ctx);
|
|
visited.push(e.currentTurnParticipantId);
|
|
}
|
|
const uniq = new Set(visited);
|
|
expect(uniq.size).toBe(startOrder.length);
|
|
expect(e.round).toBe(expectedRound);
|
|
});
|
|
});
|
|
|
|
describe('round rotation with mid-round state changes', () => {
|
|
const { toggleParticipantActive, addParticipant, removeParticipant, reorderParticipants, applyHpChange } = shared;
|
|
|
|
test('toggle a participant inactive mid-round, others still each visited once', async () => {
|
|
const { ctx } = mockCtx();
|
|
const ps = [p('a', 20), p('b', 15), p('c', 10), p('d', 5)];
|
|
let e = enc(ps);
|
|
e = await startEncounter(e, ctx);
|
|
const startOrder = e.turnOrderIds.slice();
|
|
|
|
const visited = [e.currentTurnParticipantId];
|
|
e = await nextTurn(e, ctx); visited.push(e.currentTurnParticipantId);
|
|
// now mark 'a' inactive (already took its turn)
|
|
e = await toggleParticipantActive(e, 'a', ctx);
|
|
e = await nextTurn(e, ctx); visited.push(e.currentTurnParticipantId);
|
|
e = await nextTurn(e, ctx); visited.push(e.currentTurnParticipantId);
|
|
// round should wrap, but 'a' inactive so only b,c,d visited
|
|
const visitedActive = visited.filter(id => id !== 'a');
|
|
const uniq = new Set(visitedActive);
|
|
expect(uniq.size).toBe(startOrder.length - 1); // b,c,d each once
|
|
});
|
|
|
|
test('reactivate inactive participant mid-round, it gets a turn this round', async () => {
|
|
const { ctx } = mockCtx();
|
|
const ps = [p('a', 20), p('b', 15), p('c', 10), p('d', 5)];
|
|
let e = enc(ps);
|
|
// start with 'c' inactive
|
|
e.participants = e.participants.map(p => p.id === 'c' ? { ...p, isActive: false } : p);
|
|
e = await startEncounter(e, ctx);
|
|
// 1-list: c stays in slot (inactive), skipped by nextTurn
|
|
expect(e.turnOrderIds).toEqual(['a', 'b', 'c', 'd']);
|
|
expect(e.currentTurnParticipantId).toBe('a'); // c inactive, a first
|
|
|
|
// advance one turn, then reactivate c
|
|
e = await nextTurn(e, ctx); // b
|
|
e = await toggleParticipantActive(e, 'c', ctx);
|
|
|
|
// continue rotation - c should now be reachable
|
|
const visited = [e.currentTurnParticipantId];
|
|
for (let i = 0; i < e.turnOrderIds.length; i++) {
|
|
e = await nextTurn(e, ctx);
|
|
visited.push(e.currentTurnParticipantId);
|
|
}
|
|
expect(visited).toContain('c');
|
|
});
|
|
|
|
test('addParticipant mid-round: new participant gets turn this round or next', async () => {
|
|
const { ctx } = mockCtx();
|
|
const ps = [p('a', 20), p('b', 15), p('c', 10)];
|
|
let e = enc(ps);
|
|
e = await startEncounter(e, ctx);
|
|
const startOrder = e.turnOrderIds.slice();
|
|
|
|
e = await nextTurn(e, ctx); // advance one
|
|
// add new participant
|
|
const newP = p('x', 25);
|
|
e = await addParticipant(e, newP, ctx);
|
|
|
|
// finish round - original 3 should still each get exactly one turn
|
|
const visited = [startOrder[0], e.currentTurnParticipantId];
|
|
while (e.round === 1) {
|
|
e = await nextTurn(e, ctx);
|
|
visited.push(e.currentTurnParticipantId);
|
|
if (visited.length > 20) break; // safety
|
|
}
|
|
const originals = visited.filter(id => ['a','b','c'].includes(id));
|
|
const uniq = new Set(originals);
|
|
expect(uniq.size).toBe(3);
|
|
});
|
|
|
|
test('reorderParticipants mid-round keeps rotation valid', async () => {
|
|
const { ctx } = mockCtx();
|
|
const ps = [p('a', 20), p('b', 15), p('c', 15), p('d', 5)]; // b,c same init (15)
|
|
let e = enc(ps);
|
|
e = await startEncounter(e, ctx);
|
|
const startOrder = e.turnOrderIds.slice();
|
|
|
|
e = await nextTurn(e, ctx);
|
|
// reorder: swap b,c (same initiative)
|
|
e = await reorderParticipants(e, 'b', 'c', ctx);
|
|
|
|
const visited = [startOrder[0], e.currentTurnParticipantId];
|
|
for (let i = 0; i < startOrder.length; i++) {
|
|
e = await nextTurn(e, ctx);
|
|
visited.push(e.currentTurnParticipantId);
|
|
}
|
|
const uniq = new Set(visited);
|
|
expect(uniq.size).toBeGreaterThanOrEqual(startOrder.length);
|
|
});
|
|
});
|