mirror of
https://github.com/Youzini-afk/ST-Bionic-Memory-Ecology.git
synced 2026-05-15 22:30:38 +08:00
178 lines
5.3 KiB
JavaScript
178 lines
5.3 KiB
JavaScript
import assert from "node:assert/strict";
|
|
|
|
import {
|
|
buildAuthorityProbeUrls,
|
|
collectAuthorityFeatures,
|
|
normalizeAuthorityCapabilityState,
|
|
normalizeAuthoritySettings,
|
|
probeAuthorityCapabilities,
|
|
} from "../runtime/authority-capabilities.js";
|
|
import { defaultSettings } from "../runtime/settings-defaults.js";
|
|
|
|
const normalizedSettings = normalizeAuthoritySettings(defaultSettings);
|
|
assert.equal(normalizedSettings.enabled, true);
|
|
assert.equal(normalizedSettings.enabledMode, "auto");
|
|
assert.equal(normalizedSettings.baseUrl, "/api/plugins/authority");
|
|
assert.equal(normalizedSettings.storageMode, "auto-server-primary");
|
|
assert.equal(normalizedSettings.vectorMode, "auto-primary");
|
|
assert.equal(normalizedSettings.primaryWhenAvailable, true);
|
|
|
|
assert.deepEqual(buildAuthorityProbeUrls("/api/plugins/authority/"), [
|
|
"/api/plugins/authority/probe",
|
|
]);
|
|
|
|
const collected = collectAuthorityFeatures({
|
|
features: {
|
|
sql: { queryPage: true },
|
|
trivium: { upsert: true },
|
|
jobs: { background: true },
|
|
transfers: { fs: true },
|
|
},
|
|
});
|
|
assert.equal(collected.has("sql"), true);
|
|
assert.equal(collected.has("sql.querypage"), true);
|
|
assert.equal(collected.has("sql"), true);
|
|
assert.equal(collected.has("trivium"), true);
|
|
assert.equal(collected.has("jobs.background"), true);
|
|
assert.equal(collected.has("transfers.fs"), true);
|
|
|
|
const readyState = normalizeAuthorityCapabilityState(
|
|
{
|
|
installed: true,
|
|
healthy: true,
|
|
features: ["sql", "trivium", "jobs", "transfers.fs"],
|
|
},
|
|
defaultSettings,
|
|
);
|
|
assert.equal(readyState.serverPrimaryReady, true);
|
|
assert.equal(readyState.storagePrimaryReady, true);
|
|
assert.equal(readyState.triviumPrimaryReady, true);
|
|
assert.equal(readyState.minimumFeatureSetReady, true);
|
|
|
|
const missingState = normalizeAuthorityCapabilityState(
|
|
{
|
|
installed: true,
|
|
healthy: true,
|
|
features: ["sql"],
|
|
},
|
|
defaultSettings,
|
|
);
|
|
assert.equal(missingState.serverPrimaryReady, false);
|
|
assert.equal(missingState.triviumPrimaryReady, false);
|
|
assert.ok(missingState.missingFeatures.includes("trivium.search"));
|
|
|
|
const disabledState = await probeAuthorityCapabilities({
|
|
settings: {
|
|
...defaultSettings,
|
|
authorityEnabled: "off",
|
|
},
|
|
fetchImpl: async () => {
|
|
throw new Error("should-not-fetch");
|
|
},
|
|
nowMs: 1000,
|
|
});
|
|
assert.equal(disabledState.reason, "disabled");
|
|
assert.equal(disabledState.serverPrimaryReady, false);
|
|
assert.equal(disabledState.lastProbeAt, 1000);
|
|
|
|
const requestedUrls = [];
|
|
const probedState = await probeAuthorityCapabilities({
|
|
settings: defaultSettings,
|
|
allowRelativeUrl: true,
|
|
nowMs: 2000,
|
|
fetchImpl: async (url, options = {}) => {
|
|
requestedUrls.push([url, options.method || "GET", options.headers || {}]);
|
|
if (url.endsWith("/probe")) {
|
|
assert.equal(options.method, "POST");
|
|
return {
|
|
ok: true,
|
|
status: 200,
|
|
async json() {
|
|
return {
|
|
healthy: true,
|
|
features: {
|
|
sql: { queryPage: true },
|
|
trivium: { upsert: true },
|
|
jobs: { background: true },
|
|
transfers: { fs: true },
|
|
},
|
|
};
|
|
},
|
|
};
|
|
}
|
|
if (url.endsWith("/session/init")) {
|
|
assert.equal(options.method, "POST");
|
|
return {
|
|
ok: true,
|
|
status: 200,
|
|
async json() {
|
|
return { sessionToken: "session-probe-token" };
|
|
},
|
|
};
|
|
}
|
|
if (url.endsWith("/session/current")) {
|
|
assert.equal(options.method, "GET");
|
|
assert.equal(options.headers["x-authority-session-token"], "session-probe-token");
|
|
return {
|
|
ok: true,
|
|
status: 200,
|
|
async json() {
|
|
return { ok: true };
|
|
},
|
|
};
|
|
}
|
|
if (url.endsWith("/permissions/evaluate-batch")) {
|
|
assert.equal(options.method, "POST");
|
|
assert.equal(options.headers["x-authority-session-token"], "session-probe-token");
|
|
const body = JSON.parse(String(options.body || "{}"));
|
|
assert.equal(Array.isArray(body.requests), true);
|
|
assert.equal(body.requests.some((request) => request.resource === "fs.private"), true);
|
|
return {
|
|
ok: true,
|
|
status: 200,
|
|
async json() {
|
|
return {
|
|
results: body.requests.map((request) => ({
|
|
decision: "granted",
|
|
resource: request.resource,
|
|
target: request.target || "",
|
|
})),
|
|
};
|
|
},
|
|
};
|
|
}
|
|
return {
|
|
ok: false,
|
|
status: 404,
|
|
async json() {
|
|
return {};
|
|
},
|
|
};
|
|
},
|
|
});
|
|
assert.equal(requestedUrls[0]?.[0], "/api/plugins/authority/probe");
|
|
assert.deepEqual(
|
|
requestedUrls.map(([url]) => url),
|
|
[
|
|
"/api/plugins/authority/probe",
|
|
"/api/plugins/authority/session/init",
|
|
"/api/plugins/authority/session/current",
|
|
"/api/plugins/authority/permissions/evaluate-batch",
|
|
],
|
|
);
|
|
assert.equal(probedState.installed, true);
|
|
assert.equal(probedState.healthy, true);
|
|
assert.equal(probedState.serverPrimaryReady, true);
|
|
assert.equal(probedState.lastProbeAt, 2000);
|
|
|
|
const relativeUnavailable = await probeAuthorityCapabilities({
|
|
settings: defaultSettings,
|
|
allowRelativeUrl: false,
|
|
fetchImpl: async () => ({ ok: true, status: 200, json: async () => ({}) }),
|
|
nowMs: 3000,
|
|
});
|
|
assert.equal(relativeUnavailable.reason, "relative-url-unavailable");
|
|
assert.equal(relativeUnavailable.serverPrimaryReady, false);
|
|
|
|
console.log("authority-capabilities tests passed");
|