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
136 lines
5.2 KiB
Plaintext
136 lines
5.2 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 network_exports = {};
|
|
__export(network_exports, {
|
|
default: () => network_default,
|
|
isFetch: () => isFetch,
|
|
renderRequest: () => renderRequest
|
|
});
|
|
module.exports = __toCommonJS(network_exports);
|
|
var import_zodBundle = require("../../zodBundle");
|
|
var import_tool = require("./tool");
|
|
const requests = (0, import_tool.defineTabTool)({
|
|
capability: "core",
|
|
schema: {
|
|
name: "browser_network_requests",
|
|
title: "List network requests",
|
|
description: "Returns all network requests since loading the page",
|
|
inputSchema: import_zodBundle.z.object({
|
|
static: import_zodBundle.z.boolean().default(false).describe("Whether to include successful static resources like images, fonts, scripts, etc. Defaults to false."),
|
|
requestBody: import_zodBundle.z.boolean().default(false).describe("Whether to include request body. Defaults to false."),
|
|
requestHeaders: import_zodBundle.z.boolean().default(false).describe("Whether to include request headers. Defaults to false."),
|
|
filter: import_zodBundle.z.string().optional().describe('Only return requests whose URL matches this regexp (e.g. "/api/.*user").'),
|
|
filename: import_zodBundle.z.string().optional().describe("Filename to save the network requests to. If not provided, requests are returned as text.")
|
|
}),
|
|
type: "readOnly"
|
|
},
|
|
handle: async (tab, params, response) => {
|
|
const requests2 = await tab.requests();
|
|
const filter = params.filter ? new RegExp(params.filter) : void 0;
|
|
const text = [];
|
|
for (const request of requests2) {
|
|
if (!params.static && !isFetch(request) && isSuccessfulResponse(request))
|
|
continue;
|
|
if (filter) {
|
|
filter.lastIndex = 0;
|
|
if (!filter.test(request.url()))
|
|
continue;
|
|
}
|
|
text.push(await renderRequest(request, params.requestBody, params.requestHeaders));
|
|
}
|
|
await response.addResult("Network", text.join("\n"), { prefix: "network", ext: "log", suggestedFilename: params.filename });
|
|
}
|
|
});
|
|
const networkClear = (0, import_tool.defineTabTool)({
|
|
capability: "core",
|
|
skillOnly: true,
|
|
schema: {
|
|
name: "browser_network_clear",
|
|
title: "Clear network requests",
|
|
description: "Clear all network requests",
|
|
inputSchema: import_zodBundle.z.object({}),
|
|
type: "readOnly"
|
|
},
|
|
handle: async (tab, params, response) => {
|
|
await tab.clearRequests();
|
|
}
|
|
});
|
|
function isSuccessfulResponse(request) {
|
|
if (request.failure())
|
|
return false;
|
|
const response = request.existingResponse();
|
|
return !!response && response.status() < 400;
|
|
}
|
|
function isFetch(request) {
|
|
return ["fetch", "xhr"].includes(request.resourceType());
|
|
}
|
|
async function renderRequest(request, includeBody = false, includeHeaders = false) {
|
|
const response = request.existingResponse();
|
|
const result = [];
|
|
result.push(`[${request.method().toUpperCase()}] ${request.url()}`);
|
|
if (response)
|
|
result.push(` => [${response.status()}] ${response.statusText()}`);
|
|
else if (request.failure())
|
|
result.push(` => [FAILED] ${request.failure()?.errorText ?? "Unknown error"}`);
|
|
if (includeHeaders) {
|
|
const headers = request.headers();
|
|
const headerLines = Object.entries(headers).map(([k, v]) => ` ${k}: ${v}`).join("\n");
|
|
if (headerLines)
|
|
result.push(`
|
|
Request headers:
|
|
${headerLines}`);
|
|
}
|
|
if (includeBody) {
|
|
const postData = request.postData();
|
|
if (postData)
|
|
result.push(`
|
|
Request body: ${postData}`);
|
|
}
|
|
return result.join("");
|
|
}
|
|
const networkStateSet = (0, import_tool.defineTool)({
|
|
capability: "network",
|
|
schema: {
|
|
name: "browser_network_state_set",
|
|
title: "Set network state",
|
|
description: "Sets the browser network state to online or offline. When offline, all network requests will fail.",
|
|
inputSchema: import_zodBundle.z.object({
|
|
state: import_zodBundle.z.enum(["online", "offline"]).describe('Set to "offline" to simulate offline mode, "online" to restore network connectivity')
|
|
}),
|
|
type: "action"
|
|
},
|
|
handle: async (context, params, response) => {
|
|
const browserContext = await context.ensureBrowserContext();
|
|
const offline = params.state === "offline";
|
|
await browserContext.setOffline(offline);
|
|
response.addTextResult(`Network is now ${params.state}`);
|
|
response.addCode(`await page.context().setOffline(${offline});`);
|
|
}
|
|
});
|
|
var network_default = [
|
|
requests,
|
|
networkClear,
|
|
networkStateSet
|
|
];
|
|
// Annotate the CommonJS export names for ESM import in node:
|
|
0 && (module.exports = {
|
|
isFetch,
|
|
renderRequest
|
|
});
|