Implements Phases 1-8 of the TFTSR implementation plan. Rust backend (Tauri 2.x, src-tauri/): - Multi-provider AI: OpenAI-compatible, Anthropic, Gemini, Mistral, Ollama - PII detection engine: 11 regex patterns with overlap resolution - SQLCipher AES-256 encrypted database with 10 versioned migrations - 28 Tauri IPC commands for triage, analysis, document, and system ops - Ollama: hardware probe, model recommendations, pull/delete with events - RCA and blameless post-mortem Markdown document generators - PDF export via printpdf - Audit log: SHA-256 hash of every external data send - Integration stubs for Confluence, ServiceNow, Azure DevOps (v0.2) Frontend (React 18 + TypeScript + Vite, src/): - 9 pages: full triage workflow NewIssue→LogUpload→Triage→Resolution→RCA→Postmortem→History+Settings - 7 components: ChatWindow, TriageProgress, PiiDiffViewer, DocEditor, HardwareReport, ModelSelector, UI primitives - 3 Zustand stores: session, settings (persisted), history - Type-safe tauriCommands.ts matching Rust backend types exactly - 8 IT domain system prompts (Linux, Windows, Network, K8s, DB, Virt, HW, Obs) DevOps: - .woodpecker/test.yml: rustfmt, clippy, cargo test, tsc, vitest on every push - .woodpecker/release.yml: linux/amd64 + linux/arm64 builds, Gogs release upload Verified: - cargo check: zero errors - tsc --noEmit: zero errors - vitest run: 13/13 unit tests passing Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
100 lines
4.5 KiB
TypeScript
100 lines
4.5 KiB
TypeScript
import type { JsonCompatible } from '@wdio/types';
|
|
import { type local, type remote } from 'webdriver';
|
|
import { URLPattern } from 'urlpattern-polyfill';
|
|
import type { MockFilterOptions, RequestWithOptions, RespondWithOptions } from './types.js';
|
|
import type { WaitForOptions } from '../../types.js';
|
|
type RespondBody = string | JsonCompatible | Buffer;
|
|
/**
|
|
* Network interception class based on a WebDriver Bidi implementation.
|
|
*
|
|
* Note: this code is executed in Node.js and in the browser, so make sure
|
|
* you use primitives that work in both environments.
|
|
*/
|
|
export default class WebDriverInterception {
|
|
#private;
|
|
constructor(pattern: URLPattern, mockId: string, filterOptions: MockFilterOptions, browser: WebdriverIO.Browser);
|
|
static initiate(url: string, filterOptions: MockFilterOptions, browser: WebdriverIO.Browser): Promise<WebDriverInterception>;
|
|
/**
|
|
* Get the raw binary data for a mock response by request ID
|
|
* @param {string} requestId The ID of the request to retrieve the binary response for
|
|
* @returns {Buffer | null} The binary data as a Buffer, or null if no matching binary response is found
|
|
*/
|
|
getBinaryResponse(requestId: string): Buffer | null;
|
|
/**
|
|
* Simulate a responseStarted event for testing purposes
|
|
* @param request NetworkResponseCompletedParameters to simulate
|
|
*/
|
|
simulateResponseStarted(request: local.NetworkResponseCompletedParameters): void;
|
|
debugResponseBodies(): Map<string, remote.NetworkBytesValue>;
|
|
/**
|
|
* allows access to all requests made with given pattern
|
|
*/
|
|
get calls(): local.NetworkResponseCompletedParameters[];
|
|
/**
|
|
* Resets all information stored in the `mock.calls` set.
|
|
*/
|
|
clear(): this;
|
|
/**
|
|
* Does what `mock.clear()` does and makes removes custom request overrides
|
|
* and response overwrites
|
|
*/
|
|
reset(): this;
|
|
/**
|
|
* Does everything that `mock.reset()` does, and also
|
|
* removes any mocked return values or implementations.
|
|
* Restored mock does not emit events and could not mock responses
|
|
*/
|
|
restore(): Promise<this>;
|
|
/**
|
|
* Always use request modification for the next request done by the browser.
|
|
* @param payload payload to overwrite the request
|
|
* @param once apply overwrite only once for the next request
|
|
* @returns this instance to chain commands
|
|
*/
|
|
request(overwrite: RequestWithOptions, once?: boolean): this;
|
|
/**
|
|
* alias for `mock.request(…, true)`
|
|
*/
|
|
requestOnce(payload: RequestWithOptions): this;
|
|
/**
|
|
* Always respond with same overwrite
|
|
* @param {*} payload payload to overwrite the response
|
|
* @param {*} params additional respond parameters to overwrite
|
|
* @param {boolean} once apply overwrite only once for the next request
|
|
* @returns this instance to chain commands
|
|
*/
|
|
respond(payload: RespondBody, params?: Omit<RespondWithOptions, 'body'>, once?: boolean): this;
|
|
/**
|
|
* alias for `mock.respond(…, true)`
|
|
*/
|
|
respondOnce(payload: RespondBody, params?: Omit<RespondWithOptions, 'body'>): this;
|
|
/**
|
|
* Abort the request with an error code
|
|
* @param {string} errorReason error code of the response
|
|
* @param {boolean} once if request should be aborted only once for the next request
|
|
*/
|
|
abort(once?: boolean): this;
|
|
/**
|
|
* alias for `mock.abort(true)`
|
|
*/
|
|
abortOnce(): this;
|
|
/**
|
|
* Redirect request to another URL
|
|
* @param {string} redirectUrl URL to redirect to
|
|
* @param {boolean} sticky if request should be redirected for all following requests
|
|
*/
|
|
redirect(redirectUrl: string, once?: boolean): this;
|
|
/**
|
|
* alias for `mock.redirect(…, true)`
|
|
*/
|
|
redirectOnce(redirectUrl: string): this;
|
|
on(event: 'request', callback: (request: local.NetworkBeforeRequestSentParameters) => void): WebDriverInterception;
|
|
on(event: 'match', callback: (match: local.NetworkBeforeRequestSentParameters) => void): WebDriverInterception;
|
|
on(event: 'continue', callback: (requestId: string) => void): WebDriverInterception;
|
|
on(event: 'fail', callback: (requestId: string) => void): WebDriverInterception;
|
|
on(event: 'overwrite', callback: (response: local.NetworkResponseCompletedParameters) => void): WebDriverInterception;
|
|
waitForResponse({ timeout, interval, timeoutMsg, }?: WaitForOptions): Promise<boolean> | Promise<Promise<boolean>>;
|
|
}
|
|
export declare function parseUrlPattern(url: string | URLPattern): URLPattern;
|
|
export {};
|
|
//# sourceMappingURL=index.d.ts.map
|