Release Healer Man 0.1.5

This commit is contained in:
phenom
2026-08-18 16:22:19 -04:00
parent f4c9cf356c
commit 55cfd43d66
62 changed files with 3030 additions and 153 deletions
+70
View File
@@ -3,6 +3,7 @@ import { mkdtempSync, rmSync } from "node:fs";
import os from "node:os";
import path from "node:path";
import test from "node:test";
import { DatabaseSync } from "node:sqlite";
import { GameDatabaseError, openGameDatabase } from "./database.mjs";
function withDatabase(run) {
@@ -52,3 +53,72 @@ test("persists opaque cloud roster data with increasing revisions", () => withDa
assert.equal(second.revision, 2);
assert.equal(database.getCloudSave(registered.account.id).data.characters[0].name, "Mendbetter");
}));
test("derives GM authority from the hardcoded Phenom account", () => withDatabase(async (database) => {
const gm = await database.register("Phenom", "storm-admin");
const player = await database.register("Ordinary", "storm-player");
assert.deepEqual(gm.account.roles, ["gm"]);
assert.deepEqual((await database.login("pHeNoM", "storm-admin")).account.roles, ["gm"]);
assert.equal(database.isGameMaster(database.authenticate(gm.token)), true);
assert.equal(database.isGameMaster(database.authenticate(player.token)), false);
assert.equal(database.isGameMaster({ ...player.account, roles: ["gm"] }), false);
}));
test("recovers Manastorm configuration after restart and falls back safely from corrupt data", async () => {
const directory = mkdtempSync(path.join(os.tmpdir(), "healer-man-db-restart-test-"));
const databasePath = path.join(directory, "game.db");
try {
const first = openGameDatabase({ databasePath });
const gm = await first.register("Phenom", "storm-admin");
const current = first.getManastormConfig();
first.putManastormConfig(first.authenticate(gm.token), 0, {
...current.config,
global: { ...current.config.global, enabled: false },
});
first.close();
const restarted = openGameDatabase({ databasePath });
assert.equal(restarted.getManastormConfig().revision, 1);
assert.equal(restarted.getManastormConfig().config.global.enabled, false);
restarted.close();
const raw = new DatabaseSync(databasePath);
raw.prepare("UPDATE manastorm_admin_config SET config_json = ? WHERE id = 1").run("{corrupt");
raw.close();
const recovered = openGameDatabase({ databasePath });
assert.equal(recovered.getManastormConfig().revision, 0);
assert.deepEqual(recovered.getManastormConfig().config.bosses, {});
recovered.close();
} finally {
rmSync(directory, { recursive: true, force: true });
}
});
test("persists revisioned Manastorm GM configuration and rejects stale or unauthorized writes", () => withDatabase(async (database) => {
const gm = await database.register("Phenom", "storm-admin");
const player = await database.register("Ordinary", "storm-player");
const gmAccount = database.authenticate(gm.token);
const playerAccount = database.authenticate(player.token);
const initial = database.getManastormConfig();
assert.equal(initial.revision, 0);
assert.deepEqual(initial.config.bosses, {});
const configured = {
...initial.config,
global: { ...initial.config.global, affixesEnabled: false },
};
const saved = database.putManastormConfig(gmAccount, 0, configured);
assert.equal(saved.revision, 1);
assert.equal(saved.config.global.affixesEnabled, false);
assert.equal(database.getManastormConfig().updatedBy, "Phenom");
assert.throws(() => database.putManastormConfig(gmAccount, 0, configured), (error) => (
error instanceof GameDatabaseError && error.status === 409
));
assert.throws(() => database.putManastormConfig(playerAccount, 1, configured), (error) => (
error instanceof GameDatabaseError && error.status === 403
));
assert.throws(() => database.putManastormConfig(gmAccount, 1, {
...configured,
bosses: { "boss:incomplete": { status: "ready" } },
}), (error) => error instanceof GameDatabaseError && error.status === 400);
}));