@bryan-thompson/inspector-assessment-cli 1.26.6 → 1.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/__tests__/assess-full-e2e.test.js +496 -0
- package/build/__tests__/assessment-runner/assessment-executor.test.js +248 -0
- package/build/__tests__/assessment-runner/config-builder.test.js +289 -0
- package/build/__tests__/assessment-runner/index.test.js +41 -0
- package/build/__tests__/assessment-runner/server-config.test.js +249 -0
- package/build/__tests__/assessment-runner/server-connection.test.js +221 -0
- package/build/__tests__/assessment-runner/source-loader.test.js +341 -0
- package/build/__tests__/assessment-runner/tool-wrapper.test.js +114 -0
- package/build/__tests__/assessment-runner-facade.test.js +118 -0
- package/build/assess-full.js +29 -1255
- package/build/lib/assessment-runner/assessment-executor.js +323 -0
- package/build/lib/assessment-runner/config-builder.js +127 -0
- package/build/lib/assessment-runner/index.js +20 -0
- package/build/lib/assessment-runner/server-config.js +78 -0
- package/build/lib/assessment-runner/server-connection.js +80 -0
- package/build/lib/assessment-runner/source-loader.js +139 -0
- package/build/lib/assessment-runner/tool-wrapper.js +40 -0
- package/build/lib/assessment-runner/types.js +8 -0
- package/build/lib/assessment-runner.js +6 -740
- package/build/lib/cli-parser.js +83 -2
- package/build/lib/comparison-handler.js +84 -0
- package/build/lib/result-output.js +154 -0
- package/package.json +1 -1
|
@@ -0,0 +1,496 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CLI E2E Integration Tests (Issue #97)
|
|
3
|
+
*
|
|
4
|
+
* End-to-end tests that verify the mcp-assess-full CLI works correctly
|
|
5
|
+
* as a black-box system, including:
|
|
6
|
+
* - Command-line argument handling (--help, --version, --config, etc.)
|
|
7
|
+
* - JSONL event stream output format
|
|
8
|
+
* - Exit codes (0 for PASS, 1 for FAIL/error)
|
|
9
|
+
* - Graceful error handling
|
|
10
|
+
*
|
|
11
|
+
* Tests that require testbed servers (vulnerable-mcp, hardened-mcp) skip
|
|
12
|
+
* gracefully when servers are unavailable, allowing CI to pass without
|
|
13
|
+
* external dependencies.
|
|
14
|
+
*
|
|
15
|
+
* @see https://github.com/triepod-ai/inspector-assessment/issues/97
|
|
16
|
+
*/
|
|
17
|
+
import { describe, it, expect, beforeAll, afterAll } from "@jest/globals";
|
|
18
|
+
import { spawn } from "child_process";
|
|
19
|
+
import * as fs from "fs";
|
|
20
|
+
import * as path from "path";
|
|
21
|
+
import * as os from "os";
|
|
22
|
+
import { fileURLToPath } from "url";
|
|
23
|
+
// ============================================================================
|
|
24
|
+
// Constants
|
|
25
|
+
// ============================================================================
|
|
26
|
+
/** Get __dirname equivalent for ES modules */
|
|
27
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
28
|
+
const __dirname = path.dirname(__filename);
|
|
29
|
+
/** Path to the built CLI entry point */
|
|
30
|
+
const CLI_PATH = path.resolve(__dirname, "../../build/assess-full.js");
|
|
31
|
+
/** Testbed server URLs */
|
|
32
|
+
const VULNERABLE_URL = "http://localhost:10900/mcp";
|
|
33
|
+
const HARDENED_URL = "http://localhost:10901/mcp";
|
|
34
|
+
/** Default headers for MCP HTTP servers */
|
|
35
|
+
const DEFAULT_HEADERS = {
|
|
36
|
+
"Content-Type": "application/json",
|
|
37
|
+
Accept: "application/json, text/event-stream",
|
|
38
|
+
};
|
|
39
|
+
/** Temp directory for test config files */
|
|
40
|
+
const TEMP_DIR = path.join(os.tmpdir(), "assess-full-e2e-tests");
|
|
41
|
+
// ============================================================================
|
|
42
|
+
// Helper Functions
|
|
43
|
+
// ============================================================================
|
|
44
|
+
/**
|
|
45
|
+
* Spawn the CLI process and capture output
|
|
46
|
+
*
|
|
47
|
+
* @param args - CLI arguments
|
|
48
|
+
* @param timeout - Timeout in milliseconds (default: 60000)
|
|
49
|
+
* @returns CLI result with stdout, stderr, exit code, and parsed JSONL events
|
|
50
|
+
*/
|
|
51
|
+
async function spawnCLI(args, timeout = 60000) {
|
|
52
|
+
return new Promise((resolve) => {
|
|
53
|
+
const startTime = Date.now();
|
|
54
|
+
let stdout = "";
|
|
55
|
+
let stderr = "";
|
|
56
|
+
let exitCode = null;
|
|
57
|
+
let proc = null;
|
|
58
|
+
// Spawn the CLI process
|
|
59
|
+
proc = spawn("node", [CLI_PATH, ...args], {
|
|
60
|
+
stdio: ["pipe", "pipe", "pipe"],
|
|
61
|
+
env: {
|
|
62
|
+
...process.env,
|
|
63
|
+
// Ensure consistent output
|
|
64
|
+
NO_COLOR: "1",
|
|
65
|
+
FORCE_COLOR: "0",
|
|
66
|
+
},
|
|
67
|
+
});
|
|
68
|
+
// Capture stdout
|
|
69
|
+
proc.stdout?.on("data", (data) => {
|
|
70
|
+
stdout += data.toString();
|
|
71
|
+
});
|
|
72
|
+
// Capture stderr
|
|
73
|
+
proc.stderr?.on("data", (data) => {
|
|
74
|
+
stderr += data.toString();
|
|
75
|
+
});
|
|
76
|
+
// Set timeout
|
|
77
|
+
const timer = setTimeout(() => {
|
|
78
|
+
if (proc && !proc.killed) {
|
|
79
|
+
proc.kill("SIGTERM");
|
|
80
|
+
exitCode = -1; // Indicate timeout
|
|
81
|
+
}
|
|
82
|
+
}, timeout);
|
|
83
|
+
// Handle process exit
|
|
84
|
+
proc.on("close", (code) => {
|
|
85
|
+
clearTimeout(timer);
|
|
86
|
+
// Don't overwrite timeout exit code (-1)
|
|
87
|
+
if (exitCode !== -1) {
|
|
88
|
+
exitCode = code;
|
|
89
|
+
}
|
|
90
|
+
const duration = Date.now() - startTime;
|
|
91
|
+
const jsonlEvents = parseJSONLEvents(stderr);
|
|
92
|
+
resolve({
|
|
93
|
+
stdout,
|
|
94
|
+
stderr,
|
|
95
|
+
exitCode,
|
|
96
|
+
jsonlEvents,
|
|
97
|
+
duration,
|
|
98
|
+
});
|
|
99
|
+
});
|
|
100
|
+
// Handle errors
|
|
101
|
+
proc.on("error", (err) => {
|
|
102
|
+
clearTimeout(timer);
|
|
103
|
+
stderr += `\nProcess error: ${err.message}`;
|
|
104
|
+
resolve({
|
|
105
|
+
stdout,
|
|
106
|
+
stderr,
|
|
107
|
+
exitCode: -1,
|
|
108
|
+
jsonlEvents: [],
|
|
109
|
+
duration: Date.now() - startTime,
|
|
110
|
+
});
|
|
111
|
+
});
|
|
112
|
+
});
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* Parse JSONL events from stderr output
|
|
116
|
+
*
|
|
117
|
+
* JSONL events are emitted one per line to stderr.
|
|
118
|
+
* Non-JSON lines are ignored (they may be console warnings or errors).
|
|
119
|
+
*
|
|
120
|
+
* @param stderr - Raw stderr output
|
|
121
|
+
* @returns Array of parsed JSONL events
|
|
122
|
+
*/
|
|
123
|
+
function parseJSONLEvents(stderr) {
|
|
124
|
+
const events = [];
|
|
125
|
+
const lines = stderr.split("\n");
|
|
126
|
+
for (const line of lines) {
|
|
127
|
+
const trimmed = line.trim();
|
|
128
|
+
if (!trimmed)
|
|
129
|
+
continue;
|
|
130
|
+
try {
|
|
131
|
+
const parsed = JSON.parse(trimmed);
|
|
132
|
+
// Check if it looks like a JSONL event (has 'event' field)
|
|
133
|
+
if (parsed && typeof parsed === "object" && "event" in parsed) {
|
|
134
|
+
events.push(parsed);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
catch {
|
|
138
|
+
// Not a JSON line, skip
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
return events;
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* Check if a server is available by sending an initialize request
|
|
145
|
+
*
|
|
146
|
+
* Note: MCP servers use Server-Sent Events (SSE) which keeps connections open.
|
|
147
|
+
* We need to check if the server responds with any data rather than waiting
|
|
148
|
+
* for the connection to close.
|
|
149
|
+
*
|
|
150
|
+
* @param url - Server URL to check
|
|
151
|
+
* @returns True if server responds, false otherwise
|
|
152
|
+
*/
|
|
153
|
+
async function checkServerAvailable(url) {
|
|
154
|
+
try {
|
|
155
|
+
const controller = new AbortController();
|
|
156
|
+
// Give enough time to receive initial response but not wait forever
|
|
157
|
+
const timeoutId = setTimeout(() => controller.abort(), 5000);
|
|
158
|
+
const response = await fetch(url, {
|
|
159
|
+
method: "POST",
|
|
160
|
+
headers: DEFAULT_HEADERS,
|
|
161
|
+
body: JSON.stringify({
|
|
162
|
+
jsonrpc: "2.0",
|
|
163
|
+
method: "initialize",
|
|
164
|
+
params: {
|
|
165
|
+
protocolVersion: "2024-11-05",
|
|
166
|
+
capabilities: {},
|
|
167
|
+
clientInfo: { name: "e2e-test", version: "1.0.0" },
|
|
168
|
+
},
|
|
169
|
+
id: 1,
|
|
170
|
+
}),
|
|
171
|
+
signal: controller.signal,
|
|
172
|
+
});
|
|
173
|
+
// Server responded with a status code - check if it's OK
|
|
174
|
+
if (response.status >= 500) {
|
|
175
|
+
clearTimeout(timeoutId);
|
|
176
|
+
return false;
|
|
177
|
+
}
|
|
178
|
+
// For SSE responses, check if we can read any data
|
|
179
|
+
// This confirms the server is actually responding
|
|
180
|
+
const reader = response.body?.getReader();
|
|
181
|
+
if (!reader) {
|
|
182
|
+
clearTimeout(timeoutId);
|
|
183
|
+
return response.status < 500;
|
|
184
|
+
}
|
|
185
|
+
try {
|
|
186
|
+
// Try to read the first chunk
|
|
187
|
+
const { done, value } = await reader.read();
|
|
188
|
+
clearTimeout(timeoutId);
|
|
189
|
+
reader.cancel(); // Cancel the stream - we don't need more data
|
|
190
|
+
// If we got any data, the server is available
|
|
191
|
+
return !done && value && value.length > 0;
|
|
192
|
+
}
|
|
193
|
+
catch {
|
|
194
|
+
clearTimeout(timeoutId);
|
|
195
|
+
// If read fails after successful fetch, server still responded
|
|
196
|
+
return true;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
catch {
|
|
200
|
+
return false;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
/**
|
|
204
|
+
* Create a temporary config file for testing
|
|
205
|
+
*
|
|
206
|
+
* @param config - Configuration object
|
|
207
|
+
* @param filename - Optional filename (default: auto-generated)
|
|
208
|
+
* @returns Path to the created config file
|
|
209
|
+
*/
|
|
210
|
+
function createTempConfig(config, filename) {
|
|
211
|
+
const name = filename || `config-${Date.now()}.json`;
|
|
212
|
+
const configPath = path.join(TEMP_DIR, name);
|
|
213
|
+
// Defensive: ensure directory exists (handles race conditions with beforeAll)
|
|
214
|
+
if (!fs.existsSync(TEMP_DIR)) {
|
|
215
|
+
fs.mkdirSync(TEMP_DIR, { recursive: true });
|
|
216
|
+
}
|
|
217
|
+
fs.writeFileSync(configPath, JSON.stringify(config, null, 2));
|
|
218
|
+
return configPath;
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* Create an invalid (malformed) JSON config file
|
|
222
|
+
*
|
|
223
|
+
* @param content - Raw content to write
|
|
224
|
+
* @param filename - Optional filename
|
|
225
|
+
* @returns Path to the created file
|
|
226
|
+
*/
|
|
227
|
+
function createInvalidConfig(content, filename) {
|
|
228
|
+
const name = filename || `invalid-${Date.now()}.json`;
|
|
229
|
+
const configPath = path.join(TEMP_DIR, name);
|
|
230
|
+
// Defensive: ensure directory exists (handles race conditions with beforeAll)
|
|
231
|
+
if (!fs.existsSync(TEMP_DIR)) {
|
|
232
|
+
fs.mkdirSync(TEMP_DIR, { recursive: true });
|
|
233
|
+
}
|
|
234
|
+
fs.writeFileSync(configPath, content);
|
|
235
|
+
return configPath;
|
|
236
|
+
}
|
|
237
|
+
// ============================================================================
|
|
238
|
+
// Test Setup
|
|
239
|
+
// ============================================================================
|
|
240
|
+
describe("CLI E2E Integration Tests", () => {
|
|
241
|
+
let vulnerableAvailable = false;
|
|
242
|
+
let hardenedAvailable = false;
|
|
243
|
+
beforeAll(async () => {
|
|
244
|
+
// Create temp directory
|
|
245
|
+
if (!fs.existsSync(TEMP_DIR)) {
|
|
246
|
+
fs.mkdirSync(TEMP_DIR, { recursive: true });
|
|
247
|
+
}
|
|
248
|
+
// Check server availability for integration tests
|
|
249
|
+
const [v, h] = await Promise.all([
|
|
250
|
+
checkServerAvailable(VULNERABLE_URL),
|
|
251
|
+
checkServerAvailable(HARDENED_URL),
|
|
252
|
+
]);
|
|
253
|
+
vulnerableAvailable = v;
|
|
254
|
+
hardenedAvailable = h;
|
|
255
|
+
if (!v && !h) {
|
|
256
|
+
console.log("\n⚠️ Testbed servers unavailable - integration tests will skip gracefully");
|
|
257
|
+
console.log(" To run full tests, start:");
|
|
258
|
+
console.log(" - vulnerable-mcp: http://localhost:10900/mcp");
|
|
259
|
+
console.log(" - hardened-mcp: http://localhost:10901/mcp\n");
|
|
260
|
+
}
|
|
261
|
+
}, 30000); // 30 second timeout for server availability checks
|
|
262
|
+
afterAll(() => {
|
|
263
|
+
// Clean up temp directory
|
|
264
|
+
if (fs.existsSync(TEMP_DIR)) {
|
|
265
|
+
const files = fs.readdirSync(TEMP_DIR);
|
|
266
|
+
for (const file of files) {
|
|
267
|
+
fs.unlinkSync(path.join(TEMP_DIR, file));
|
|
268
|
+
}
|
|
269
|
+
fs.rmdirSync(TEMP_DIR);
|
|
270
|
+
}
|
|
271
|
+
});
|
|
272
|
+
// ==========================================================================
|
|
273
|
+
// Group 1: Help and Version Display (No Server Required)
|
|
274
|
+
// ==========================================================================
|
|
275
|
+
describe("Help and Version Display", () => {
|
|
276
|
+
it("should display help with --help flag", async () => {
|
|
277
|
+
const result = await spawnCLI(["--help"], 10000);
|
|
278
|
+
expect(result.exitCode).toBe(0);
|
|
279
|
+
expect(result.stdout).toContain("Usage: mcp-assess-full");
|
|
280
|
+
expect(result.stdout).toContain("--server");
|
|
281
|
+
expect(result.stdout).toContain("--config");
|
|
282
|
+
expect(result.stdout).toContain("--profile");
|
|
283
|
+
});
|
|
284
|
+
it("should display help with -h flag", async () => {
|
|
285
|
+
const result = await spawnCLI(["-h"], 10000);
|
|
286
|
+
expect(result.exitCode).toBe(0);
|
|
287
|
+
expect(result.stdout).toContain("Usage: mcp-assess-full");
|
|
288
|
+
});
|
|
289
|
+
it("should display version with --version flag", async () => {
|
|
290
|
+
const result = await spawnCLI(["--version"], 10000);
|
|
291
|
+
expect(result.exitCode).toBe(0);
|
|
292
|
+
// Version should match semver pattern (e.g., 1.26.7)
|
|
293
|
+
expect(result.stdout).toMatch(/mcp-assess-full \d+\.\d+\.\d+/);
|
|
294
|
+
});
|
|
295
|
+
it("should display version with -V flag", async () => {
|
|
296
|
+
const result = await spawnCLI(["-V"], 10000);
|
|
297
|
+
expect(result.exitCode).toBe(0);
|
|
298
|
+
expect(result.stdout).toMatch(/\d+\.\d+\.\d+/);
|
|
299
|
+
});
|
|
300
|
+
});
|
|
301
|
+
// ==========================================================================
|
|
302
|
+
// Group 2: Configuration Validation (No Server Required)
|
|
303
|
+
// ==========================================================================
|
|
304
|
+
describe("Configuration Validation", () => {
|
|
305
|
+
it("should fail gracefully when config file is missing", async () => {
|
|
306
|
+
const result = await spawnCLI([
|
|
307
|
+
"--server",
|
|
308
|
+
"test-server",
|
|
309
|
+
"--config",
|
|
310
|
+
"/nonexistent/path/config.json",
|
|
311
|
+
], 10000);
|
|
312
|
+
expect(result.exitCode).toBe(1);
|
|
313
|
+
// Error message should mention the issue
|
|
314
|
+
expect(result.stderr.toLowerCase()).toMatch(/error|not found|enoent/i);
|
|
315
|
+
});
|
|
316
|
+
it("should fail gracefully for malformed JSON config", async () => {
|
|
317
|
+
const configPath = createInvalidConfig("{ invalid json }");
|
|
318
|
+
const result = await spawnCLI(["--server", "test-server", "--config", configPath], 10000);
|
|
319
|
+
expect(result.exitCode).toBe(1);
|
|
320
|
+
expect(result.stderr.toLowerCase()).toMatch(/error|parse|json|syntax/i);
|
|
321
|
+
});
|
|
322
|
+
it("should fail gracefully with missing --server flag", async () => {
|
|
323
|
+
const configPath = createTempConfig({
|
|
324
|
+
transport: "http",
|
|
325
|
+
url: "http://localhost:9999/mcp",
|
|
326
|
+
});
|
|
327
|
+
const result = await spawnCLI(["--config", configPath], 10000);
|
|
328
|
+
expect(result.exitCode).toBe(1);
|
|
329
|
+
expect(result.stderr).toContain("--server is required");
|
|
330
|
+
});
|
|
331
|
+
});
|
|
332
|
+
// ==========================================================================
|
|
333
|
+
// Group 3: Profile Selection (No Server Required)
|
|
334
|
+
// ==========================================================================
|
|
335
|
+
describe("Profile Selection", () => {
|
|
336
|
+
it("should list available profiles in help text", async () => {
|
|
337
|
+
const result = await spawnCLI(["--help"], 10000);
|
|
338
|
+
expect(result.stdout).toContain("quick");
|
|
339
|
+
expect(result.stdout).toContain("security");
|
|
340
|
+
expect(result.stdout).toContain("compliance");
|
|
341
|
+
expect(result.stdout).toContain("full");
|
|
342
|
+
});
|
|
343
|
+
it("should reject invalid profile names", async () => {
|
|
344
|
+
const result = await spawnCLI(["--server", "test", "--profile", "invalid-profile-name"], 10000);
|
|
345
|
+
expect(result.exitCode).toBe(1);
|
|
346
|
+
expect(result.stderr).toMatch(/invalid profile/i);
|
|
347
|
+
});
|
|
348
|
+
});
|
|
349
|
+
// ==========================================================================
|
|
350
|
+
// Group 4: Error Handling (No Server Required)
|
|
351
|
+
// ==========================================================================
|
|
352
|
+
describe("Error Handling", () => {
|
|
353
|
+
it("should fail gracefully when server is unreachable", async () => {
|
|
354
|
+
const configPath = createTempConfig({
|
|
355
|
+
transport: "http",
|
|
356
|
+
url: "http://localhost:19999/mcp", // Non-existent port
|
|
357
|
+
});
|
|
358
|
+
const result = await spawnCLI(["--server", "unreachable", "--config", configPath], 30000);
|
|
359
|
+
expect(result.exitCode).toBe(1);
|
|
360
|
+
// Should have some error indication
|
|
361
|
+
expect(result.stderr.toLowerCase()).toMatch(/error|connect|fail|econnrefused/i);
|
|
362
|
+
});
|
|
363
|
+
it("should reject unknown arguments", async () => {
|
|
364
|
+
const result = await spawnCLI(["--server", "test", "--unknown-flag-xyz"], 10000);
|
|
365
|
+
expect(result.exitCode).toBe(1);
|
|
366
|
+
expect(result.stderr).toMatch(/unknown argument/i);
|
|
367
|
+
});
|
|
368
|
+
});
|
|
369
|
+
// ==========================================================================
|
|
370
|
+
// Group 5: Server Assessment (Integration - Requires Testbed Servers)
|
|
371
|
+
// ==========================================================================
|
|
372
|
+
describe("Server Assessment (Integration)", () => {
|
|
373
|
+
it("should complete assessment against vulnerable-mcp", async () => {
|
|
374
|
+
if (!vulnerableAvailable) {
|
|
375
|
+
console.log("⏩ Skipping: vulnerable-mcp not available");
|
|
376
|
+
return;
|
|
377
|
+
}
|
|
378
|
+
const configPath = createTempConfig({
|
|
379
|
+
transport: "http",
|
|
380
|
+
url: VULNERABLE_URL,
|
|
381
|
+
});
|
|
382
|
+
const result = await spawnCLI([
|
|
383
|
+
"--server",
|
|
384
|
+
"vulnerable-mcp",
|
|
385
|
+
"--config",
|
|
386
|
+
configPath,
|
|
387
|
+
"--profile",
|
|
388
|
+
"quick",
|
|
389
|
+
], 600000);
|
|
390
|
+
// Should complete (may PASS or FAIL based on vulnerabilities)
|
|
391
|
+
expect([0, 1]).toContain(result.exitCode);
|
|
392
|
+
// Should emit assessment_complete event
|
|
393
|
+
const completeEvent = result.jsonlEvents.find((e) => e.event === "assessment_complete");
|
|
394
|
+
expect(completeEvent).toBeDefined();
|
|
395
|
+
}, 660000); // 11 minute jest timeout (was 6 min)
|
|
396
|
+
it("should emit valid JSONL events to stderr", async () => {
|
|
397
|
+
if (!vulnerableAvailable) {
|
|
398
|
+
console.log("⏩ Skipping: vulnerable-mcp not available");
|
|
399
|
+
return;
|
|
400
|
+
}
|
|
401
|
+
const configPath = createTempConfig({
|
|
402
|
+
transport: "http",
|
|
403
|
+
url: VULNERABLE_URL,
|
|
404
|
+
});
|
|
405
|
+
const result = await spawnCLI([
|
|
406
|
+
"--server",
|
|
407
|
+
"vulnerable-mcp",
|
|
408
|
+
"--config",
|
|
409
|
+
configPath,
|
|
410
|
+
"--profile",
|
|
411
|
+
"quick",
|
|
412
|
+
], 600000);
|
|
413
|
+
// Validate event sequence
|
|
414
|
+
const eventTypes = result.jsonlEvents.map((e) => e.event);
|
|
415
|
+
expect(eventTypes).toContain("server_connected");
|
|
416
|
+
expect(eventTypes).toContain("tools_discovery_complete");
|
|
417
|
+
expect(eventTypes).toContain("assessment_complete");
|
|
418
|
+
// Validate server_connected event structure
|
|
419
|
+
const serverConnected = result.jsonlEvents.find((e) => e.event === "server_connected");
|
|
420
|
+
expect(serverConnected).toHaveProperty("serverName");
|
|
421
|
+
expect(serverConnected).toHaveProperty("transport");
|
|
422
|
+
expect(serverConnected).toHaveProperty("version");
|
|
423
|
+
// Validate assessment_complete event structure
|
|
424
|
+
const assessmentComplete = result.jsonlEvents.find((e) => e.event === "assessment_complete");
|
|
425
|
+
expect(assessmentComplete).toHaveProperty("overallStatus");
|
|
426
|
+
expect(assessmentComplete).toHaveProperty("totalTests");
|
|
427
|
+
expect(assessmentComplete).toHaveProperty("outputPath");
|
|
428
|
+
}, 660000); // 11 minute jest timeout (was 6 min)
|
|
429
|
+
it("should return exit code 1 for FAIL status on vulnerable server", async () => {
|
|
430
|
+
if (!vulnerableAvailable) {
|
|
431
|
+
console.log("⏩ Skipping: vulnerable-mcp not available");
|
|
432
|
+
return;
|
|
433
|
+
}
|
|
434
|
+
const configPath = createTempConfig({
|
|
435
|
+
transport: "http",
|
|
436
|
+
url: VULNERABLE_URL,
|
|
437
|
+
});
|
|
438
|
+
const result = await spawnCLI([
|
|
439
|
+
"--server",
|
|
440
|
+
"vulnerable-mcp",
|
|
441
|
+
"--config",
|
|
442
|
+
configPath,
|
|
443
|
+
"--profile",
|
|
444
|
+
"security",
|
|
445
|
+
], 600000);
|
|
446
|
+
// Vulnerable server should have vulnerabilities -> FAIL status
|
|
447
|
+
const assessmentComplete = result.jsonlEvents.find((e) => e.event === "assessment_complete");
|
|
448
|
+
if (assessmentComplete?.overallStatus === "FAIL") {
|
|
449
|
+
expect(result.exitCode).toBe(1);
|
|
450
|
+
}
|
|
451
|
+
}, 660000); // 11 minute jest timeout (was 6 min)
|
|
452
|
+
it("should return exit code 0 for PASS status on hardened server", async () => {
|
|
453
|
+
if (!hardenedAvailable) {
|
|
454
|
+
console.log("⏩ Skipping: hardened-mcp not available");
|
|
455
|
+
return;
|
|
456
|
+
}
|
|
457
|
+
const configPath = createTempConfig({
|
|
458
|
+
transport: "http",
|
|
459
|
+
url: HARDENED_URL,
|
|
460
|
+
});
|
|
461
|
+
const result = await spawnCLI([
|
|
462
|
+
"--server",
|
|
463
|
+
"hardened-mcp",
|
|
464
|
+
"--config",
|
|
465
|
+
configPath,
|
|
466
|
+
"--profile",
|
|
467
|
+
"quick",
|
|
468
|
+
], 600000);
|
|
469
|
+
// Hardened server should pass -> exit 0
|
|
470
|
+
const assessmentComplete = result.jsonlEvents.find((e) => e.event === "assessment_complete");
|
|
471
|
+
if (assessmentComplete?.overallStatus === "PASS") {
|
|
472
|
+
expect(result.exitCode).toBe(0);
|
|
473
|
+
}
|
|
474
|
+
}, 660000); // 11 minute jest timeout (was 6 min)
|
|
475
|
+
});
|
|
476
|
+
// ==========================================================================
|
|
477
|
+
// Group 6: Preflight Mode (Integration - Requires Testbed Servers)
|
|
478
|
+
// ==========================================================================
|
|
479
|
+
describe("Preflight Mode", () => {
|
|
480
|
+
it("should run preflight validation quickly", async () => {
|
|
481
|
+
if (!vulnerableAvailable) {
|
|
482
|
+
console.log("⏩ Skipping: testbed server not available");
|
|
483
|
+
return;
|
|
484
|
+
}
|
|
485
|
+
const configPath = createTempConfig({
|
|
486
|
+
transport: "http",
|
|
487
|
+
url: VULNERABLE_URL,
|
|
488
|
+
});
|
|
489
|
+
const result = await spawnCLI(["--server", "vulnerable-mcp", "--config", configPath, "--preflight"], 30000);
|
|
490
|
+
// Preflight should complete faster than full assessment
|
|
491
|
+
expect(result.duration).toBeLessThan(20000);
|
|
492
|
+
// Should indicate success or provide validation info
|
|
493
|
+
expect([0, 1]).toContain(result.exitCode);
|
|
494
|
+
}, 60000); // 1 minute timeout for preflight
|
|
495
|
+
});
|
|
496
|
+
});
|