Some checks failed
Main Confidence / confidence (push) Failing after 45s
## Summary - introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries - apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces - expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests ## Validation - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions) - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions) Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #253
143 lines
5.1 KiB
Plaintext
143 lines
5.1 KiB
Plaintext
"use strict";
|
|
var __defProp = Object.defineProperty;
|
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
var __export = (target, all) => {
|
|
for (var name in all)
|
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
};
|
|
var __copyProps = (to, from, except, desc) => {
|
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
for (let key of __getOwnPropNames(from))
|
|
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
}
|
|
return to;
|
|
};
|
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
var ffConnection_exports = {};
|
|
__export(ffConnection_exports, {
|
|
ConnectionEvents: () => ConnectionEvents,
|
|
FFConnection: () => FFConnection,
|
|
FFSession: () => FFSession,
|
|
kBrowserCloseMessageId: () => kBrowserCloseMessageId
|
|
});
|
|
module.exports = __toCommonJS(ffConnection_exports);
|
|
var import_events = require("events");
|
|
var import_debugLogger = require("../utils/debugLogger");
|
|
var import_helper = require("../helper");
|
|
var import_protocolError = require("../protocolError");
|
|
const ConnectionEvents = {
|
|
Disconnected: Symbol("Disconnected")
|
|
};
|
|
const kBrowserCloseMessageId = -9999;
|
|
class FFConnection extends import_events.EventEmitter {
|
|
constructor(transport, protocolLogger, browserLogsCollector) {
|
|
super();
|
|
this.setMaxListeners(0);
|
|
this._transport = transport;
|
|
this._protocolLogger = protocolLogger;
|
|
this._browserLogsCollector = browserLogsCollector;
|
|
this._lastId = 0;
|
|
this._sessions = /* @__PURE__ */ new Map();
|
|
this._closed = false;
|
|
this.rootSession = new FFSession(this, "", (message) => this._rawSend(message));
|
|
this._sessions.set("", this.rootSession);
|
|
this._transport.onmessage = this._onMessage.bind(this);
|
|
this._transport.onclose = this._onClose.bind(this);
|
|
}
|
|
nextMessageId() {
|
|
return ++this._lastId;
|
|
}
|
|
_rawSend(message) {
|
|
this._protocolLogger("send", message);
|
|
this._transport.send(message);
|
|
}
|
|
async _onMessage(message) {
|
|
this._protocolLogger("receive", message);
|
|
if (message.id === kBrowserCloseMessageId)
|
|
return;
|
|
const session = this._sessions.get(message.sessionId || "");
|
|
if (session)
|
|
session.dispatchMessage(message);
|
|
}
|
|
_onClose(reason) {
|
|
this._closed = true;
|
|
this._transport.onmessage = void 0;
|
|
this._transport.onclose = void 0;
|
|
this._browserDisconnectedLogs = import_helper.helper.formatBrowserLogs(this._browserLogsCollector.recentLogs(), reason);
|
|
this.rootSession.dispose();
|
|
Promise.resolve().then(() => this.emit(ConnectionEvents.Disconnected));
|
|
}
|
|
close() {
|
|
if (!this._closed)
|
|
this._transport.close();
|
|
}
|
|
createSession(sessionId) {
|
|
const session = new FFSession(this, sessionId, (message) => this._rawSend({ ...message, sessionId }));
|
|
this._sessions.set(sessionId, session);
|
|
return session;
|
|
}
|
|
}
|
|
class FFSession extends import_events.EventEmitter {
|
|
constructor(connection, sessionId, rawSend) {
|
|
super();
|
|
this._disposed = false;
|
|
this._crashed = false;
|
|
this.setMaxListeners(0);
|
|
this._callbacks = /* @__PURE__ */ new Map();
|
|
this._connection = connection;
|
|
this._sessionId = sessionId;
|
|
this._rawSend = rawSend;
|
|
}
|
|
markAsCrashed() {
|
|
this._crashed = true;
|
|
}
|
|
async send(method, params) {
|
|
if (this._crashed || this._disposed || this._connection._closed || this._connection._browserDisconnectedLogs)
|
|
throw new import_protocolError.ProtocolError(this._crashed ? "crashed" : "closed", void 0, this._connection._browserDisconnectedLogs);
|
|
const id = this._connection.nextMessageId();
|
|
this._rawSend({ method, params, id });
|
|
return new Promise((resolve, reject) => {
|
|
this._callbacks.set(id, { resolve, reject, error: new import_protocolError.ProtocolError("error", method) });
|
|
});
|
|
}
|
|
sendMayFail(method, params) {
|
|
return this.send(method, params).catch((error) => import_debugLogger.debugLogger.log("error", error));
|
|
}
|
|
dispatchMessage(object) {
|
|
if (object.id) {
|
|
const callback = this._callbacks.get(object.id);
|
|
if (callback) {
|
|
this._callbacks.delete(object.id);
|
|
if (object.error) {
|
|
callback.error.setMessage(object.error.message);
|
|
callback.reject(callback.error);
|
|
} else {
|
|
callback.resolve(object.result);
|
|
}
|
|
}
|
|
} else {
|
|
Promise.resolve().then(() => this.emit(object.method, object.params));
|
|
}
|
|
}
|
|
dispose() {
|
|
this._disposed = true;
|
|
this._connection._sessions.delete(this._sessionId);
|
|
for (const callback of this._callbacks.values()) {
|
|
callback.error.type = this._crashed ? "crashed" : "closed";
|
|
callback.error.logs = this._connection._browserDisconnectedLogs;
|
|
callback.reject(callback.error);
|
|
}
|
|
this._callbacks.clear();
|
|
}
|
|
}
|
|
// Annotate the CommonJS export names for ESM import in node:
|
|
0 && (module.exports = {
|
|
ConnectionEvents,
|
|
FFConnection,
|
|
FFSession,
|
|
kBrowserCloseMessageId
|
|
});
|