2026-07-06 10:31:46 -04:00
|
|
|
// Logging contract: every mutating combat op writes a log entry to ctx.logPath
|
|
|
|
|
// via ctx.storage.addDoc. No-op (no state change) performs NO writes and
|
|
|
|
|
// returns the same encounter reference. Display lifecycle ops write the display
|
|
|
|
|
// doc, no combat log.
|
2026-07-04 17:22:52 -04:00
|
|
|
//
|
2026-07-06 10:31:46 -04:00
|
|
|
// Contract = every combat mutation produces a log entry.
|
|
|
|
|
// New shape: mutating funcs are async, take ctx, write encounter (updateDoc) +
|
|
|
|
|
// log (addDoc) internally, return newEnc. Logs are read back via storage.logs().
|
2026-07-04 17:22:52 -04:00
|
|
|
//
|
2026-07-06 10:31:46 -04:00
|
|
|
// undo payloads now live on the written log entry's `undo_payload.updates`.
|
2026-07-04 17:22:52 -04:00
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
const shared = require('@ttrpg/shared');
|
2026-07-06 10:31:46 -04:00
|
|
|
const { mockCtx } = require('./_helpers');
|
2026-07-04 17:22:52 -04:00
|
|
|
const {
|
2026-07-06 10:31:46 -04:00
|
|
|
makeParticipant,
|
2026-07-04 17:22:52 -04:00
|
|
|
startEncounter, nextTurn, togglePause,
|
|
|
|
|
addParticipant, addParticipants, updateParticipant, removeParticipant,
|
|
|
|
|
toggleParticipantActive, applyHpChange, deathSave, toggleCondition,
|
|
|
|
|
reorderParticipants, endEncounter,
|
|
|
|
|
} = shared;
|
|
|
|
|
|
2026-07-06 16:39:11 -04:00
|
|
|
function p(id, init, extra = {}) {
|
2026-07-04 17:22:52 -04:00
|
|
|
return makeParticipant({ id, name: id, type: 'monster',
|
2026-07-06 16:39:11 -04:00
|
|
|
initiative: init, maxHp: 100, currentHp: 100, ...extra });
|
2026-07-04 17:22:52 -04:00
|
|
|
}
|
|
|
|
|
function enc(ps, extra = {}) {
|
|
|
|
|
return { name:'t', participants:ps, isStarted:false, isPaused:false,
|
|
|
|
|
round:0, currentTurnParticipantId:null, turnOrderIds:[], ...extra };
|
|
|
|
|
}
|
2026-07-06 10:31:46 -04:00
|
|
|
|
|
|
|
|
// Assert last written log entry is a well-formed mutation log.
|
|
|
|
|
function expectLastLogged(storage) {
|
|
|
|
|
const logs = storage.logs();
|
|
|
|
|
expect(logs.length).toBeGreaterThan(0);
|
|
|
|
|
const last = logs[logs.length - 1];
|
|
|
|
|
expect(typeof last.message).toBe('string');
|
|
|
|
|
expect(last.message.length).toBeGreaterThan(0);
|
|
|
|
|
return last;
|
2026-07-04 17:22:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
describe('Logging contract: mutating ops', () => {
|
2026-07-06 10:31:46 -04:00
|
|
|
let storage, ctx;
|
2026-07-04 17:22:52 -04:00
|
|
|
beforeEach(() => {
|
2026-07-06 10:31:46 -04:00
|
|
|
({ storage, ctx } = mockCtx());
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('startEncounter logs', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
await startEncounter(e, ctx);
|
|
|
|
|
expect(storage.logs()).toHaveLength(1);
|
|
|
|
|
expectLastLogged(storage);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('nextTurn logs', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
const started = await startEncounter(e, ctx); // 1 log
|
|
|
|
|
await nextTurn(started, ctx); // 2 logs
|
|
|
|
|
expect(storage.logs()).toHaveLength(2);
|
|
|
|
|
expectLastLogged(storage);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 18:30:51 -04:00
|
|
|
test('togglePause does NOT log (lifecycle excluded from undo)', async () => {
|
2026-07-06 10:31:46 -04:00
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
const started = await startEncounter(e, ctx);
|
|
|
|
|
await togglePause(started, ctx);
|
2026-07-06 18:30:51 -04:00
|
|
|
expect(storage.logs()).toHaveLength(1); // start only
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('addParticipant logs', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
await addParticipant(e, p('d', 5), ctx);
|
|
|
|
|
expect(storage.logs()).toHaveLength(1);
|
|
|
|
|
expectLastLogged(storage);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('removeParticipant logs', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
await removeParticipant(e, 'b', ctx);
|
|
|
|
|
expect(storage.logs()).toHaveLength(1);
|
|
|
|
|
expectLastLogged(storage);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('toggleParticipantActive logs', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
await toggleParticipantActive(e, 'b', ctx);
|
|
|
|
|
expect(storage.logs()).toHaveLength(1);
|
|
|
|
|
expectLastLogged(storage);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('applyHpChange (damage) logs', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
await applyHpChange(e, 'b', 'damage', 10, ctx);
|
|
|
|
|
expect(storage.logs()).toHaveLength(1);
|
|
|
|
|
expectLastLogged(storage);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('applyHpChange (heal) logs', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
await applyHpChange(e, 'b', 'heal', 5, ctx);
|
|
|
|
|
expect(storage.logs()).toHaveLength(1);
|
|
|
|
|
expectLastLogged(storage);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('deathSave logs', async () => {
|
2026-07-06 16:39:11 -04:00
|
|
|
const e = enc([p('a', 10), p('b', 7, { type: 'character' }), p('c', 3)]);
|
2026-07-06 10:31:46 -04:00
|
|
|
const started = await startEncounter(e, ctx); // 1 log
|
|
|
|
|
const dying = await applyHpChange(started, 'b', 'damage', 100, ctx); // 2 logs
|
2026-07-06 16:39:11 -04:00
|
|
|
const r = await deathSave(dying, 'b', 'fail', ctx); // 3 logs
|
|
|
|
|
expect(r.status).toBe('dying');
|
2026-07-06 10:31:46 -04:00
|
|
|
expect(storage.logs()).toHaveLength(3);
|
|
|
|
|
expectLastLogged(storage);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('toggleCondition logs', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
await toggleCondition(e, 'b', 'poisoned', ctx);
|
|
|
|
|
expect(storage.logs()).toHaveLength(1);
|
|
|
|
|
expectLastLogged(storage);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('reorderParticipants logs (BUG-7)', async () => {
|
|
|
|
|
// same-init tie (both 10) for valid reorder (unstarted: no pointer check)
|
2026-07-04 17:22:52 -04:00
|
|
|
const e2 = enc([p('a', 10), p('x', 10), p('c', 3)]);
|
2026-07-06 10:31:46 -04:00
|
|
|
await reorderParticipants(e2, 'x', 'a', ctx);
|
|
|
|
|
expect(storage.logs()).toHaveLength(1);
|
|
|
|
|
expectLastLogged(storage);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('endEncounter logs', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
const started = await startEncounter(e, ctx);
|
|
|
|
|
await endEncounter(started, ctx);
|
|
|
|
|
expect(storage.logs()).toHaveLength(2);
|
|
|
|
|
expectLastLogged(storage);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('Logging contract: no-ops', () => {
|
2026-07-06 10:31:46 -04:00
|
|
|
let storage, ctx;
|
2026-07-04 17:22:52 -04:00
|
|
|
beforeEach(() => {
|
2026-07-06 10:31:46 -04:00
|
|
|
({ storage, ctx } = mockCtx());
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('reorder same-id = no-op', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
const newEnc = await reorderParticipants(e, 'a', 'a', ctx);
|
|
|
|
|
expect(newEnc).toBe(e); // same ref = no write
|
|
|
|
|
expect(storage.logs()).toHaveLength(0);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('reorder cross-init = no-op', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
const newEnc = await reorderParticipants(e, 'a', 'b', ctx);
|
|
|
|
|
expect(newEnc).toBe(e); // same ref = no write
|
|
|
|
|
expect(storage.logs()).toHaveLength(0);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('Logging undo payloads', () => {
|
2026-07-06 10:31:46 -04:00
|
|
|
let storage, ctx;
|
2026-07-04 17:22:52 -04:00
|
|
|
beforeEach(() => {
|
2026-07-06 10:31:46 -04:00
|
|
|
({ storage, ctx } = mockCtx());
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('startEncounter undo restores pre-combat state', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
await startEncounter(e, ctx);
|
|
|
|
|
const log = expectLastLogged(storage);
|
|
|
|
|
expect(log.undo).toBeDefined();
|
|
|
|
|
expect(log.undo.isStarted).toBe(false);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('endEncounter undo restores combat state', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
const started = await startEncounter(e, ctx);
|
|
|
|
|
await endEncounter(started, ctx);
|
|
|
|
|
const log = expectLastLogged(storage);
|
|
|
|
|
expect(log.undo).toBeDefined();
|
|
|
|
|
expect(log.undo.isStarted).toBe(true);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('applyHpChange undo restores prior hp', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7), p('c', 3)]);
|
|
|
|
|
const newEnc = await applyHpChange(e, 'b', 'damage', 10, ctx);
|
|
|
|
|
const log = expectLastLogged(storage);
|
|
|
|
|
expect(log.undo).toBeDefined();
|
|
|
|
|
const restored = { ...newEnc, ...shared.expandUndo(log, newEnc).updates };
|
|
|
|
|
expect(restored.participants.find(x => x.id === 'b').currentHp).toBe(100);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('reorder undo restores prior order (BUG-7)', async () => {
|
2026-07-04 17:22:52 -04:00
|
|
|
const e2 = enc([p('a', 10), p('x', 10), p('c', 3)]);
|
|
|
|
|
const orig = e2.participants.map(p => p.id);
|
2026-07-06 10:31:46 -04:00
|
|
|
const newEnc = await reorderParticipants(e2, 'x', 'a', ctx);
|
|
|
|
|
const log = expectLastLogged(storage);
|
|
|
|
|
expect(log.undo).toBeDefined();
|
|
|
|
|
const restored = { ...newEnc, ...shared.expandUndo(log, newEnc).updates };
|
2026-07-04 17:22:52 -04:00
|
|
|
expect(restored.participants.map(p => p.id)).toEqual(orig);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2026-07-04 17:25:22 -04:00
|
|
|
describe('Logging: addParticipants + updateParticipant', () => {
|
2026-07-06 10:31:46 -04:00
|
|
|
let storage, ctx;
|
2026-07-04 17:22:52 -04:00
|
|
|
beforeEach(() => {
|
2026-07-06 10:31:46 -04:00
|
|
|
({ storage, ctx } = mockCtx());
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('addParticipants logs', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7)]);
|
|
|
|
|
await addParticipants(e, [p('c', 3)], ctx);
|
|
|
|
|
expect(storage.logs()).toHaveLength(1);
|
|
|
|
|
expectLastLogged(storage);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('updateParticipant (same slot) logs', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7)]);
|
|
|
|
|
await updateParticipant(e, 'b', { name: 'B' }, ctx);
|
|
|
|
|
expect(storage.logs()).toHaveLength(1);
|
|
|
|
|
expectLastLogged(storage);
|
2026-07-04 17:25:22 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('updateParticipant (init change) logs', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7)]);
|
|
|
|
|
await updateParticipant(e, 'b', { initiative: 5 }, ctx);
|
|
|
|
|
expect(storage.logs()).toHaveLength(1);
|
|
|
|
|
expectLastLogged(storage);
|
2026-07-04 17:25:22 -04:00
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('addParticipants undo restores prior list', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7)]);
|
2026-07-04 17:25:22 -04:00
|
|
|
const orig = e.participants.map(p => p.id);
|
2026-07-06 10:31:46 -04:00
|
|
|
const newEnc = await addParticipants(e, [p('c', 3)], ctx);
|
|
|
|
|
const log = expectLastLogged(storage);
|
|
|
|
|
const restored = { ...newEnc, ...shared.expandUndo(log, newEnc).updates };
|
2026-07-04 17:25:22 -04:00
|
|
|
expect(restored.participants.map(p => p.id)).toEqual(orig);
|
|
|
|
|
});
|
|
|
|
|
|
2026-07-06 10:31:46 -04:00
|
|
|
test('updateParticipant undo restores prior participant', async () => {
|
|
|
|
|
const e = enc([p('a', 10), p('b', 7)]);
|
2026-07-04 17:25:22 -04:00
|
|
|
const orig = e.participants.map(p => p.id);
|
2026-07-06 10:31:46 -04:00
|
|
|
const newEnc = await updateParticipant(e, 'b', { name: 'B' }, ctx);
|
|
|
|
|
const log = expectLastLogged(storage);
|
|
|
|
|
const restored = { ...newEnc, ...shared.expandUndo(log, newEnc).updates };
|
2026-07-04 17:25:22 -04:00
|
|
|
expect(restored.participants.map(p => p.id)).toEqual(orig);
|
2026-07-04 17:22:52 -04:00
|
|
|
});
|
|
|
|
|
});
|