| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- /**
- * Tests for the CI/scripting fields `codegraph status --json` exposes (issue
- * #329): the `version`, `indexPath`, and `lastIndexed` fields, plus the
- * matching `CodeGraph.getLastIndexedAt()` library method.
- *
- * The CLI itself is exercised end-to-end against the built binary so the JSON
- * field names survive future refactors of the underlying plumbing.
- */
- import { describe, it, expect, beforeEach, afterEach } from 'vitest';
- import { execFileSync } from 'child_process';
- import * as fs from 'fs';
- import * as path from 'path';
- import * as os from 'os';
- import { CodeGraph } from '../src';
- const BIN = path.resolve(__dirname, '../dist/bin/codegraph.js');
- const PKG_VERSION = JSON.parse(
- fs.readFileSync(path.resolve(__dirname, '../package.json'), 'utf-8'),
- ).version as string;
- function runStatusJson(cwd: string): Record<string, unknown> {
- const stdout = execFileSync(process.execPath, [BIN, 'status', '--json'], {
- cwd,
- encoding: 'utf-8',
- env: { ...process.env, CODEGRAPH_NO_DAEMON: '1' },
- stdio: ['ignore', 'pipe', 'pipe'],
- });
- // JSON mode prints exactly one line to stdout; be defensive about any stray
- // leading output by parsing the last non-empty line.
- const line = stdout.trim().split('\n').filter(Boolean).pop()!;
- return JSON.parse(line);
- }
- describe('codegraph status --json — CI fields (#329)', () => {
- let tempDir: string;
- beforeEach(() => {
- tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-status-json-'));
- });
- afterEach(() => {
- fs.rmSync(tempDir, { recursive: true, force: true });
- });
- it('getLastIndexedAt() is null before indexing and a recent ms timestamp after', async () => {
- const cg = CodeGraph.initSync(tempDir);
- expect(cg.getLastIndexedAt()).toBeNull();
- fs.writeFileSync(path.join(tempDir, 'a.ts'), 'export const x = 1;\n');
- const before = Date.now();
- await cg.indexAll();
- const after = Date.now();
- const last = cg.getLastIndexedAt();
- expect(last).not.toBeNull();
- expect(typeof last).toBe('number');
- expect(last!).toBeGreaterThanOrEqual(before - 1000);
- expect(last!).toBeLessThanOrEqual(after + 1000);
- cg.close();
- });
- it('status --json on an UNINITIALIZED project reports version + indexPath + lastIndexed:null', () => {
- const out = runStatusJson(tempDir);
- expect(out.initialized).toBe(false);
- expect(out.version).toBe(PKG_VERSION);
- expect(typeof out.indexPath).toBe('string');
- expect(out.indexPath as string).toContain('.codegraph');
- expect(out.lastIndexed).toBeNull();
- });
- it('status --json on an INDEXED project reports version + indexPath + a round-trippable lastIndexed', async () => {
- fs.writeFileSync(path.join(tempDir, 'a.ts'), 'export const x = 1;\n');
- const before = Date.now();
- const cg = CodeGraph.initSync(tempDir);
- await cg.indexAll();
- const after = Date.now();
- cg.close();
- const out = runStatusJson(tempDir);
- expect(out.initialized).toBe(true);
- expect(out.version).toBe(PKG_VERSION);
- expect(out.indexPath as string).toContain('.codegraph');
- expect(typeof out.lastIndexed).toBe('string');
- // ISO string that round-trips back into the index window.
- const ms = Date.parse(out.lastIndexed as string);
- expect(ms).toBeGreaterThanOrEqual(before - 1000);
- expect(ms).toBeLessThanOrEqual(after + 1000);
- });
- });
- describe('index completeness marker (index_state)', () => {
- let tempDir: string;
- beforeEach(() => {
- tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-index-state-'));
- });
- afterEach(() => {
- fs.rmSync(tempDir, { recursive: true, force: true });
- });
- it('a clean full index stamps state=complete with reconciled counts', async () => {
- fs.writeFileSync(path.join(tempDir, 'a.ts'), 'export function f(): number { return 1; }\n');
- fs.writeFileSync(path.join(tempDir, 'b.ts'), 'import { f } from "./a";\nexport const y = f();\n');
- const cg = CodeGraph.initSync(tempDir);
- const result = await cg.indexAll();
- // The scan's ground truth is reported and fully accounted for.
- expect(result.filesDiscovered).toBeDefined();
- expect(result.filesIndexed + result.filesSkipped + result.filesErrored).toBe(
- result.filesDiscovered
- );
- expect(result.errors.filter((e) => e.code === 'index_partial')).toHaveLength(0);
- expect(cg.getIndexState()).toBe('complete');
- cg.close();
- const out = runStatusJson(tempDir);
- expect((out.index as Record<string, unknown>).state).toBe('complete');
- });
- it('a run killed mid-index leaves state=indexing, and status --json surfaces it', async () => {
- fs.writeFileSync(path.join(tempDir, 'a.ts'), 'export const x = 1;\n');
- const cg = CodeGraph.initSync(tempDir);
- await cg.indexAll();
- cg.close();
- // Simulate a kill between the start-marker write and completion: the
- // marker a dead process leaves behind is exactly 'indexing'. Written
- // straight into the DB — the process that died can't have cleaned it up.
- // (require, not import: vite tries to bundle a dynamic import specifier.)
- // eslint-disable-next-line @typescript-eslint/no-require-imports
- const { DatabaseSync } = require('node:sqlite');
- const db = new DatabaseSync(path.join(tempDir, '.codegraph', 'codegraph.db'));
- db.prepare(
- "INSERT INTO project_metadata (key, value, updated_at) VALUES ('index_state', 'indexing', 0) " +
- "ON CONFLICT(key) DO UPDATE SET value = 'indexing'"
- ).run();
- db.close();
- const out = runStatusJson(tempDir);
- expect((out.index as Record<string, unknown>).state).toBe('indexing');
- const reopened = await CodeGraph.open(tempDir);
- expect(reopened.getIndexState()).toBe('indexing');
- reopened.close();
- });
- });
|