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>
86 lines
2.8 KiB
JavaScript
86 lines
2.8 KiB
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Some settings and code related to Mocha's handling of Node.js/V8 flags.
|
|
* @private
|
|
* @module
|
|
*/
|
|
|
|
const nodeFlags = process.allowedNodeEnvironmentFlags;
|
|
const {isMochaFlag} = require('./run-option-metadata');
|
|
const unparse = require('yargs-unparser');
|
|
|
|
/**
|
|
* These flags are considered "debug" flags.
|
|
* @see {@link impliesNoTimeouts}
|
|
* @private
|
|
*/
|
|
const debugFlags = new Set(['inspect', 'inspect-brk']);
|
|
|
|
/**
|
|
* Mocha has historical support for various `node` and V8 flags which might not
|
|
* appear in `process.allowedNodeEnvironmentFlags`.
|
|
* These include:
|
|
* - `--preserve-symlinks`
|
|
* - `--harmony-*`
|
|
* - `--gc-global`
|
|
* - `--trace-*`
|
|
* - `--es-staging`
|
|
* - `--use-strict`
|
|
* - `--v8-*` (but *not* `--v8-options`)
|
|
* @summary Whether or not to pass a flag along to the `node` executable.
|
|
* @param {string} flag - Flag to test
|
|
* @param {boolean} [bareword=true] - If `false`, we expect `flag` to have one or two leading dashes.
|
|
* @returns {boolean} If the flag is considered a "Node" flag.
|
|
* @private
|
|
*/
|
|
exports.isNodeFlag = (flag, bareword = true) => {
|
|
if (!bareword) {
|
|
// check if the flag begins with dashes; if not, not a node flag.
|
|
if (!/^--?/.test(flag)) {
|
|
return false;
|
|
}
|
|
// strip the leading dashes to match against subsequent checks
|
|
flag = flag.replace(/^--?/, '');
|
|
}
|
|
return (
|
|
// check actual node flags from `process.allowedNodeEnvironmentFlags`,
|
|
// then historical support for various V8 and non-`NODE_OPTIONS` flags
|
|
// and also any V8 flags with `--v8-` prefix
|
|
(!isMochaFlag(flag) && nodeFlags && nodeFlags.has(flag)) ||
|
|
debugFlags.has(flag) ||
|
|
/(?:preserve-symlinks(?:-main)?|harmony(?:[_-]|$)|(?:trace[_-].+$)|gc[_-]global$|es[_-]staging$|use[_-]strict$|v8[_-](?!options).+?$)/.test(
|
|
flag
|
|
)
|
|
);
|
|
};
|
|
|
|
/**
|
|
* Returns `true` if the flag is a "debug-like" flag. These require timeouts
|
|
* to be suppressed, or pausing the debugger on breakpoints will cause test failures.
|
|
* @param {string} flag - Flag to test
|
|
* @returns {boolean}
|
|
* @private
|
|
*/
|
|
exports.impliesNoTimeouts = flag => debugFlags.has(flag);
|
|
|
|
/**
|
|
* All non-strictly-boolean arguments to node--those with values--must specify those values using `=`, e.g., `--inspect=0.0.0.0`.
|
|
* Unparse these arguments using `yargs-unparser` (which would result in `--inspect 0.0.0.0`), then supply `=` where we have values.
|
|
* There's probably an easier or more robust way to do this; fixes welcome
|
|
* @param {Object} opts - Arguments object
|
|
* @returns {string[]} Unparsed arguments using `=` to specify values
|
|
* @private
|
|
*/
|
|
exports.unparseNodeFlags = opts => {
|
|
var args = unparse(opts);
|
|
return args.length
|
|
? args
|
|
.join(' ')
|
|
.split(/\b/)
|
|
.map(arg => (arg === ' ' ? '=' : arg))
|
|
.join('')
|
|
.split(' ')
|
|
: [];
|
|
};
|