| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /**
- * Issue #1740 — concurrent direct-mode serve --mcp must fail fast on the
- * second writer instead of silently degrading auto-sync.
- */
- import { afterEach, beforeEach, describe, expect, it } from 'vitest';
- import { ChildProcessWithoutNullStreams, spawn } from 'child_process';
- import * as fs from 'fs';
- import * as os from 'os';
- import * as path from 'path';
- import { CodeGraph } from '../src';
- import { getWriterPidPath } from '../src/mcp/writer-lock';
- const BIN = path.resolve(__dirname, '../dist/bin/codegraph.js');
- function sleep(ms: number): Promise<void> {
- return new Promise((r) => setTimeout(r, ms));
- }
- function spawnMcp(
- cwd: string,
- env: NodeJS.ProcessEnv,
- ): { child: ChildProcessWithoutNullStreams; getStderr: () => string } {
- const child = spawn(process.execPath, [BIN, 'serve', '--mcp'], {
- cwd,
- stdio: ['pipe', 'pipe', 'pipe'],
- env: { ...process.env, ...env },
- }) as ChildProcessWithoutNullStreams;
- child.on('error', () => {});
- child.stdin.on('error', () => {});
- let stderr = '';
- child.stderr.on('data', (c: Buffer) => { stderr += c.toString('utf8'); });
- child.stdout.on('data', () => {});
- return { child, getStderr: () => stderr };
- }
- describe('issue #1740 — direct-mode writer lock', () => {
- let tempDir: string;
- let realRoot: string;
- const children: ChildProcessWithoutNullStreams[] = [];
- beforeEach(async () => {
- tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'cg1740-mcp-'));
- realRoot = fs.realpathSync(tempDir);
- fs.mkdirSync(path.join(realRoot, 'src'));
- fs.writeFileSync(path.join(realRoot, 'src/a.ts'), 'export function a() { return 1; }\n');
- const cg = await CodeGraph.init(realRoot);
- await cg.indexAll();
- cg.close();
- });
- afterEach(async () => {
- for (const c of children) {
- try { c.kill('SIGTERM'); } catch { /* ignore */ }
- }
- children.length = 0;
- await sleep(300);
- try { fs.rmSync(tempDir, { recursive: true, force: true }); } catch { /* ignore */ }
- });
- it('second CODEGRAPH_NO_DAEMON serve --mcp exits with writer-lock error', async () => {
- const env = {
- CODEGRAPH_NO_DAEMON: '1',
- CODEGRAPH_MCP_DEBUG: '1',
- CODEGRAPH_NO_WATCHDOG: '1',
- CODEGRAPH_STARTUP_HANDSHAKE_TIMEOUT_MS: '0',
- // Avoid wasm --liftoff-only re-exec so lock.pid matches the spawned pid.
- CODEGRAPH_NO_RELAUNCH: '1',
- CODEGRAPH_WASM_RELAUNCHED: '1',
- };
- const first = spawnMcp(realRoot, env);
- children.push(first.child);
- const lockPath = getWriterPidPath(realRoot);
- const deadline = Date.now() + 10000;
- while (Date.now() < deadline && !fs.existsSync(lockPath)) {
- await sleep(50);
- }
- expect(fs.existsSync(lockPath)).toBe(true);
- expect(first.child.exitCode).toBeNull();
- const second = spawnMcp(realRoot, env);
- children.push(second.child);
- const code = await new Promise<number | null>((resolve) => {
- const timer = setTimeout(() => resolve(second.child.exitCode), 10000);
- second.child.on('close', (c) => {
- clearTimeout(timer);
- resolve(c);
- });
- });
- expect(code).toBe(1);
- expect(second.getStderr()).toMatch(/writer lock held/i);
- expect(second.getStderr()).toMatch(/CODEGRAPH_NO_DAEMON/);
- expect(first.child.exitCode).toBeNull();
- const lock = JSON.parse(fs.readFileSync(lockPath, 'utf8')) as { pid: number };
- expect(lock.pid).toBe(first.child.pid);
- }, 20000);
- it('default daemon mode still allows two proxies to share one writer', async () => {
- const env = {
- CODEGRAPH_MCP_LOG_ATTACH: '1',
- CODEGRAPH_NO_WATCHDOG: '1',
- CODEGRAPH_STARTUP_HANDSHAKE_TIMEOUT_MS: '0',
- CODEGRAPH_NO_RELAUNCH: '1',
- CODEGRAPH_WASM_RELAUNCHED: '1',
- };
- const a = spawnMcp(realRoot, env);
- const b = spawnMcp(realRoot, env);
- children.push(a.child, b.child);
- const lockPath = getWriterPidPath(realRoot);
- const deadline = Date.now() + 15000;
- while (Date.now() < deadline && !fs.existsSync(lockPath)) {
- await sleep(50);
- }
- expect(fs.existsSync(lockPath)).toBe(true);
- await sleep(1000);
- expect(a.child.exitCode).toBeNull();
- expect(b.child.exitCode).toBeNull();
- const lock = JSON.parse(fs.readFileSync(lockPath, 'utf8')) as { pid: number; mode: string };
- expect(lock.mode).toBe('daemon');
- expect(lock.pid).not.toBe(a.child.pid);
- expect(lock.pid).not.toBe(b.child.pid);
- }, 25000);
- });
|