1
0

extraction.test.ts 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766
  1. /**
  2. * Extraction Tests
  3. *
  4. * Tests for the tree-sitter extraction system.
  5. */
  6. import { describe, it, expect, beforeAll, beforeEach, afterEach } from 'vitest';
  7. import * as fs from 'fs';
  8. import * as path from 'path';
  9. import * as os from 'os';
  10. import { CodeGraph } from '../src';
  11. import { extractFromSource, scanDirectory, shouldIncludeFile } from '../src/extraction';
  12. import { detectLanguage, isLanguageSupported, getSupportedLanguages, initGrammars, loadAllGrammars } from '../src/extraction/grammars';
  13. import { normalizePath } from '../src/utils';
  14. import { DEFAULT_CONFIG } from '../src/types';
  15. beforeAll(async () => {
  16. await initGrammars();
  17. await loadAllGrammars();
  18. });
  19. // Create a temporary directory for each test
  20. function createTempDir(): string {
  21. return fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-test-'));
  22. }
  23. // Clean up temporary directory
  24. function cleanupTempDir(dir: string): void {
  25. if (fs.existsSync(dir)) {
  26. fs.rmSync(dir, { recursive: true, force: true });
  27. }
  28. }
  29. describe('Language Detection', () => {
  30. it('should detect TypeScript files', () => {
  31. expect(detectLanguage('src/index.ts')).toBe('typescript');
  32. expect(detectLanguage('components/Button.tsx')).toBe('tsx');
  33. });
  34. it('should detect JavaScript files', () => {
  35. expect(detectLanguage('index.js')).toBe('javascript');
  36. expect(detectLanguage('App.jsx')).toBe('jsx');
  37. expect(detectLanguage('config.mjs')).toBe('javascript');
  38. });
  39. it('should detect Python files', () => {
  40. expect(detectLanguage('main.py')).toBe('python');
  41. });
  42. it('should detect Go files', () => {
  43. expect(detectLanguage('main.go')).toBe('go');
  44. });
  45. it('should detect Rust files', () => {
  46. expect(detectLanguage('lib.rs')).toBe('rust');
  47. });
  48. it('should detect Java files', () => {
  49. expect(detectLanguage('Main.java')).toBe('java');
  50. });
  51. it('should detect C files', () => {
  52. expect(detectLanguage('main.c')).toBe('c');
  53. expect(detectLanguage('utils.h')).toBe('c');
  54. });
  55. it('should detect C++ files', () => {
  56. expect(detectLanguage('main.cpp')).toBe('cpp');
  57. expect(detectLanguage('class.hpp')).toBe('cpp');
  58. });
  59. it('should detect C# files', () => {
  60. expect(detectLanguage('Program.cs')).toBe('csharp');
  61. });
  62. it('should detect PHP files', () => {
  63. expect(detectLanguage('index.php')).toBe('php');
  64. });
  65. it('should detect Ruby files', () => {
  66. expect(detectLanguage('app.rb')).toBe('ruby');
  67. });
  68. it('should detect Swift files', () => {
  69. expect(detectLanguage('ViewController.swift')).toBe('swift');
  70. });
  71. it('should detect Kotlin files', () => {
  72. expect(detectLanguage('MainActivity.kt')).toBe('kotlin');
  73. expect(detectLanguage('build.gradle.kts')).toBe('kotlin');
  74. });
  75. it('should detect Dart files', () => {
  76. expect(detectLanguage('main.dart')).toBe('dart');
  77. });
  78. it('should return unknown for unsupported extensions', () => {
  79. expect(detectLanguage('styles.css')).toBe('unknown');
  80. expect(detectLanguage('data.json')).toBe('unknown');
  81. });
  82. });
  83. describe('Language Support', () => {
  84. it('should report supported languages', () => {
  85. expect(isLanguageSupported('typescript')).toBe(true);
  86. expect(isLanguageSupported('python')).toBe(true);
  87. expect(isLanguageSupported('go')).toBe(true);
  88. expect(isLanguageSupported('unknown')).toBe(false);
  89. });
  90. it('should list all supported languages', () => {
  91. const languages = getSupportedLanguages();
  92. expect(languages).toContain('typescript');
  93. expect(languages).toContain('javascript');
  94. expect(languages).toContain('python');
  95. expect(languages).toContain('go');
  96. expect(languages).toContain('rust');
  97. expect(languages).toContain('java');
  98. expect(languages).toContain('csharp');
  99. expect(languages).toContain('php');
  100. expect(languages).toContain('ruby');
  101. expect(languages).toContain('swift');
  102. expect(languages).toContain('kotlin');
  103. expect(languages).toContain('dart');
  104. });
  105. });
  106. describe('TypeScript Extraction', () => {
  107. it('should extract function declarations', () => {
  108. const code = `
  109. export function processPayment(amount: number): Promise<Receipt> {
  110. return stripe.charge(amount);
  111. }
  112. `;
  113. const result = extractFromSource('payment.ts', code);
  114. // File node + function node
  115. const fileNode = result.nodes.find((n) => n.kind === 'file');
  116. expect(fileNode).toBeDefined();
  117. expect(fileNode?.name).toBe('payment.ts');
  118. const funcNode = result.nodes.find((n) => n.kind === 'function');
  119. expect(funcNode).toMatchObject({
  120. kind: 'function',
  121. name: 'processPayment',
  122. language: 'typescript',
  123. isExported: true,
  124. });
  125. expect(funcNode?.signature).toContain('amount: number');
  126. });
  127. it('should extract class declarations', () => {
  128. const code = `
  129. export class PaymentService {
  130. private stripe: StripeClient;
  131. constructor(apiKey: string) {
  132. this.stripe = new StripeClient(apiKey);
  133. }
  134. async charge(amount: number): Promise<Receipt> {
  135. return this.stripe.charge(amount);
  136. }
  137. }
  138. `;
  139. const result = extractFromSource('service.ts', code);
  140. const classNode = result.nodes.find((n) => n.kind === 'class');
  141. const methodNodes = result.nodes.filter((n) => n.kind === 'method');
  142. expect(classNode).toBeDefined();
  143. expect(classNode?.name).toBe('PaymentService');
  144. expect(classNode?.isExported).toBe(true);
  145. expect(methodNodes.length).toBeGreaterThanOrEqual(1);
  146. const chargeMethod = methodNodes.find((m) => m.name === 'charge');
  147. expect(chargeMethod).toBeDefined();
  148. });
  149. it('should extract interfaces', () => {
  150. const code = `
  151. export interface User {
  152. id: string;
  153. name: string;
  154. email: string;
  155. }
  156. `;
  157. const result = extractFromSource('types.ts', code);
  158. const fileNode = result.nodes.find((n) => n.kind === 'file');
  159. expect(fileNode).toBeDefined();
  160. const ifaceNode = result.nodes.find((n) => n.kind === 'interface');
  161. expect(ifaceNode).toMatchObject({
  162. kind: 'interface',
  163. name: 'User',
  164. isExported: true,
  165. });
  166. });
  167. it('should track function calls', () => {
  168. const code = `
  169. function main() {
  170. const result = processData();
  171. console.log(result);
  172. }
  173. `;
  174. const result = extractFromSource('main.ts', code);
  175. expect(result.unresolvedReferences.length).toBeGreaterThan(0);
  176. const calls = result.unresolvedReferences.filter((r) => r.referenceKind === 'calls');
  177. expect(calls.some((c) => c.referenceName === 'processData')).toBe(true);
  178. });
  179. });
  180. describe('Arrow Function Export Extraction', () => {
  181. it('should extract exported arrow functions assigned to const', () => {
  182. const code = `
  183. export const useAuth = (): AuthContextValue => {
  184. return useContext(AuthContext);
  185. };
  186. `;
  187. const result = extractFromSource('hooks.ts', code);
  188. const funcNode = result.nodes.find((n) => n.kind === 'function' && n.name === 'useAuth');
  189. expect(funcNode).toBeDefined();
  190. expect(funcNode).toMatchObject({
  191. kind: 'function',
  192. name: 'useAuth',
  193. isExported: true,
  194. });
  195. });
  196. it('should extract exported function expressions assigned to const', () => {
  197. const code = `
  198. export const processData = function(input: string): string {
  199. return input.trim();
  200. };
  201. `;
  202. const result = extractFromSource('utils.ts', code);
  203. const funcNode = result.nodes.find((n) => n.kind === 'function' && n.name === 'processData');
  204. expect(funcNode).toBeDefined();
  205. expect(funcNode).toMatchObject({
  206. kind: 'function',
  207. name: 'processData',
  208. isExported: true,
  209. });
  210. });
  211. it('should not extract non-exported arrow functions as exported', () => {
  212. const code = `
  213. const internalHelper = () => {
  214. return 42;
  215. };
  216. `;
  217. const result = extractFromSource('internal.ts', code);
  218. const helperNode = result.nodes.find((n) => n.name === 'internalHelper');
  219. expect(helperNode).toBeDefined();
  220. expect(helperNode?.isExported).toBeFalsy();
  221. });
  222. it('should still skip truly anonymous arrow functions', () => {
  223. const code = `
  224. const items = [1, 2, 3].map((x) => x * 2);
  225. `;
  226. const result = extractFromSource('anon.ts', code);
  227. // The inline arrow function passed to .map() has no variable_declarator parent
  228. // and should remain anonymous (skipped)
  229. const anonFunctions = result.nodes.filter(
  230. (n) => n.kind === 'function' && n.name === '<anonymous>'
  231. );
  232. expect(anonFunctions).toHaveLength(0);
  233. });
  234. it('should extract multiple exported arrow functions from the same file', () => {
  235. const code = `
  236. export const add = (a: number, b: number): number => a + b;
  237. export const subtract = (a: number, b: number): number => a - b;
  238. const internal = () => 'not exported';
  239. `;
  240. const result = extractFromSource('math.ts', code);
  241. const exported = result.nodes.filter((n) => n.kind === 'function' && n.isExported);
  242. expect(exported).toHaveLength(2);
  243. expect(exported.map((n) => n.name).sort()).toEqual(['add', 'subtract']);
  244. const internalNode = result.nodes.find((n) => n.name === 'internal');
  245. expect(internalNode).toBeDefined();
  246. expect(internalNode?.isExported).toBeFalsy();
  247. });
  248. it('should extract arrow functions in JavaScript files', () => {
  249. const code = `
  250. export const fetchData = async () => {
  251. const response = await fetch('/api/data');
  252. return response.json();
  253. };
  254. `;
  255. const result = extractFromSource('api.js', code);
  256. const funcNode = result.nodes.find((n) => n.kind === 'function' && n.name === 'fetchData');
  257. expect(funcNode).toBeDefined();
  258. expect(funcNode).toMatchObject({
  259. kind: 'function',
  260. name: 'fetchData',
  261. isExported: true,
  262. });
  263. });
  264. });
  265. describe('Type Alias Extraction', () => {
  266. it('should extract exported type aliases in TypeScript', () => {
  267. const code = `
  268. export type AuthContextValue = {
  269. user: User | null;
  270. login: () => void;
  271. logout: () => void;
  272. };
  273. `;
  274. const result = extractFromSource('types.ts', code);
  275. const typeNode = result.nodes.find((n) => n.kind === 'type_alias');
  276. expect(typeNode).toMatchObject({
  277. kind: 'type_alias',
  278. name: 'AuthContextValue',
  279. isExported: true,
  280. });
  281. });
  282. it('should extract non-exported type aliases', () => {
  283. const code = `
  284. type InternalState = {
  285. loading: boolean;
  286. error: string | null;
  287. };
  288. `;
  289. const result = extractFromSource('internal.ts', code);
  290. const typeNode = result.nodes.find((n) => n.kind === 'type_alias');
  291. expect(typeNode).toMatchObject({
  292. kind: 'type_alias',
  293. name: 'InternalState',
  294. isExported: false,
  295. });
  296. });
  297. it('should extract multiple type aliases from the same file', () => {
  298. const code = `
  299. export type UnitSystem = 'metric' | 'imperial';
  300. export type DateFormat = 'ISO' | 'US' | 'EU';
  301. type Internal = string;
  302. `;
  303. const result = extractFromSource('config.ts', code);
  304. const typeAliases = result.nodes.filter((n) => n.kind === 'type_alias');
  305. expect(typeAliases).toHaveLength(3);
  306. const exported = typeAliases.filter((n) => n.isExported);
  307. expect(exported).toHaveLength(2);
  308. expect(exported.map((n) => n.name).sort()).toEqual(['DateFormat', 'UnitSystem']);
  309. });
  310. });
  311. describe('Exported Variable Extraction', () => {
  312. it('should extract exported const with call expression (Zustand store)', () => {
  313. const code = `
  314. export const useUIStore = create<UIState>((set) => ({
  315. isOpen: false,
  316. toggle: () => set((s) => ({ isOpen: !s.isOpen })),
  317. }));
  318. `;
  319. const result = extractFromSource('store.ts', code);
  320. const varNode = result.nodes.find((n) => n.kind === 'variable' && n.name === 'useUIStore');
  321. expect(varNode).toBeDefined();
  322. expect(varNode?.isExported).toBe(true);
  323. });
  324. it('should extract exported const with object literal', () => {
  325. const code = `
  326. export const config = {
  327. apiUrl: 'https://api.example.com',
  328. timeout: 5000,
  329. };
  330. `;
  331. const result = extractFromSource('config.ts', code);
  332. const varNode = result.nodes.find((n) => n.kind === 'variable' && n.name === 'config');
  333. expect(varNode).toBeDefined();
  334. expect(varNode?.isExported).toBe(true);
  335. });
  336. it('should extract exported const with array literal', () => {
  337. const code = `
  338. export const SCREEN_NAMES = ['home', 'settings', 'profile'] as const;
  339. `;
  340. const result = extractFromSource('constants.ts', code);
  341. const varNode = result.nodes.find((n) => n.kind === 'variable' && n.name === 'SCREEN_NAMES');
  342. expect(varNode).toBeDefined();
  343. expect(varNode?.isExported).toBe(true);
  344. });
  345. it('should extract exported const with primitive value', () => {
  346. const code = `
  347. export const MAX_RETRIES = 3;
  348. export const API_VERSION = "v2";
  349. `;
  350. const result = extractFromSource('constants.ts', code);
  351. const variables = result.nodes.filter((n) => n.kind === 'variable');
  352. expect(variables).toHaveLength(2);
  353. expect(variables.map((n) => n.name).sort()).toEqual(['API_VERSION', 'MAX_RETRIES']);
  354. });
  355. it('should NOT duplicate arrow functions as both function and variable', () => {
  356. const code = `
  357. export const useAuth = () => {
  358. return useContext(AuthContext);
  359. };
  360. `;
  361. const result = extractFromSource('hooks.ts', code);
  362. // Should be extracted as function (from arrow function handler), NOT as variable
  363. const funcNodes = result.nodes.filter((n) => n.kind === 'function' && n.name === 'useAuth');
  364. const varNodes = result.nodes.filter((n) => n.kind === 'variable' && n.name === 'useAuth');
  365. expect(funcNodes).toHaveLength(1);
  366. expect(varNodes).toHaveLength(0);
  367. });
  368. it('should extract non-exported const as non-exported variable', () => {
  369. const code = `
  370. const internalConfig = {
  371. debug: true,
  372. };
  373. `;
  374. const result = extractFromSource('internal.ts', code);
  375. // Non-exported const at file level should be extracted as a constant (not exported)
  376. const varNodes = result.nodes.filter((n) => (n.kind === 'variable' || n.kind === 'constant') && n.name === 'internalConfig');
  377. expect(varNodes).toHaveLength(1);
  378. expect(varNodes[0]?.isExported).toBeFalsy();
  379. });
  380. it('should extract Zod schema exports', () => {
  381. const code = `
  382. export const userSchema = z.object({
  383. id: z.string(),
  384. name: z.string(),
  385. email: z.string().email(),
  386. });
  387. `;
  388. const result = extractFromSource('schemas.ts', code);
  389. const varNode = result.nodes.find((n) => n.kind === 'variable' && n.name === 'userSchema');
  390. expect(varNode).toBeDefined();
  391. expect(varNode?.isExported).toBe(true);
  392. });
  393. it('should extract XState machine exports', () => {
  394. const code = `
  395. export const authMachine = createMachine({
  396. id: "auth",
  397. initial: "idle",
  398. states: {
  399. idle: {},
  400. authenticated: {},
  401. },
  402. });
  403. `;
  404. const result = extractFromSource('machine.ts', code);
  405. const varNode = result.nodes.find((n) => n.kind === 'variable' && n.name === 'authMachine');
  406. expect(varNode).toBeDefined();
  407. expect(varNode?.isExported).toBe(true);
  408. });
  409. });
  410. describe('File Node Extraction', () => {
  411. it('should create a file-kind node for each parsed file', () => {
  412. const code = `
  413. export function greet(name: string): string {
  414. return "Hello " + name;
  415. }
  416. `;
  417. const result = extractFromSource('greeter.ts', code);
  418. const fileNode = result.nodes.find((n) => n.kind === 'file');
  419. expect(fileNode).toBeDefined();
  420. expect(fileNode?.name).toBe('greeter.ts');
  421. expect(fileNode?.filePath).toBe('greeter.ts');
  422. expect(fileNode?.language).toBe('typescript');
  423. expect(fileNode?.startLine).toBe(1);
  424. });
  425. it('should create file nodes for Python files', () => {
  426. const code = `
  427. def main():
  428. pass
  429. `;
  430. const result = extractFromSource('main.py', code);
  431. const fileNode = result.nodes.find((n) => n.kind === 'file');
  432. expect(fileNode).toBeDefined();
  433. expect(fileNode?.name).toBe('main.py');
  434. expect(fileNode?.language).toBe('python');
  435. });
  436. it('should create containment edges from file node to top-level declarations', () => {
  437. const code = `
  438. export function foo() {}
  439. export function bar() {}
  440. `;
  441. const result = extractFromSource('fns.ts', code);
  442. const fileNode = result.nodes.find((n) => n.kind === 'file');
  443. expect(fileNode).toBeDefined();
  444. // There should be contains edges from the file node to each function
  445. const containsEdges = result.edges.filter(
  446. (e) => e.source === fileNode?.id && e.kind === 'contains'
  447. );
  448. expect(containsEdges.length).toBeGreaterThanOrEqual(2);
  449. });
  450. });
  451. describe('Python Extraction', () => {
  452. it('should extract function definitions', () => {
  453. const code = `
  454. def calculate_total(items: list, tax_rate: float) -> float:
  455. """Calculate total with tax."""
  456. subtotal = sum(item.price for item in items)
  457. return subtotal * (1 + tax_rate)
  458. `;
  459. const result = extractFromSource('calc.py', code);
  460. const fileNode = result.nodes.find((n) => n.kind === 'file');
  461. expect(fileNode).toBeDefined();
  462. const funcNode = result.nodes.find((n) => n.kind === 'function');
  463. expect(funcNode).toMatchObject({
  464. kind: 'function',
  465. name: 'calculate_total',
  466. language: 'python',
  467. });
  468. });
  469. it('should extract class definitions', () => {
  470. const code = `
  471. class UserService:
  472. """Service for managing users."""
  473. def __init__(self, db):
  474. self.db = db
  475. def get_user(self, user_id: str) -> User:
  476. return self.db.find_user(user_id)
  477. `;
  478. const result = extractFromSource('service.py', code);
  479. const classNode = result.nodes.find((n) => n.kind === 'class');
  480. expect(classNode).toBeDefined();
  481. expect(classNode?.name).toBe('UserService');
  482. });
  483. });
  484. describe('Go Extraction', () => {
  485. it('should extract function declarations', () => {
  486. const code = `
  487. package main
  488. func ProcessOrder(order Order) (Receipt, error) {
  489. // Process the order
  490. return Receipt{}, nil
  491. }
  492. `;
  493. const result = extractFromSource('main.go', code);
  494. const funcNode = result.nodes.find((n) => n.kind === 'function');
  495. expect(funcNode).toBeDefined();
  496. expect(funcNode?.name).toBe('ProcessOrder');
  497. });
  498. it('should extract method declarations', () => {
  499. const code = `
  500. package main
  501. type Service struct {
  502. db *Database
  503. }
  504. func (s *Service) GetUser(id string) (*User, error) {
  505. return s.db.FindUser(id)
  506. }
  507. `;
  508. const result = extractFromSource('service.go', code);
  509. const methodNode = result.nodes.find((n) => n.kind === 'method');
  510. expect(methodNode).toBeDefined();
  511. expect(methodNode?.name).toBe('GetUser');
  512. });
  513. });
  514. describe('Rust Extraction', () => {
  515. it('should extract function declarations', () => {
  516. const code = `
  517. pub fn process_data(input: &str) -> Result<Output, Error> {
  518. // Process data
  519. Ok(Output::new())
  520. }
  521. `;
  522. const result = extractFromSource('lib.rs', code);
  523. const funcNode = result.nodes.find((n) => n.kind === 'function');
  524. expect(funcNode).toBeDefined();
  525. expect(funcNode?.name).toBe('process_data');
  526. expect(funcNode?.visibility).toBe('public');
  527. });
  528. it('should extract struct declarations', () => {
  529. const code = `
  530. pub struct User {
  531. pub id: String,
  532. pub name: String,
  533. email: String,
  534. }
  535. `;
  536. const result = extractFromSource('models.rs', code);
  537. const structNode = result.nodes.find((n) => n.kind === 'struct');
  538. expect(structNode).toBeDefined();
  539. expect(structNode?.name).toBe('User');
  540. });
  541. it('should extract trait declarations', () => {
  542. const code = `
  543. pub trait Repository {
  544. fn find(&self, id: &str) -> Option<Entity>;
  545. fn save(&mut self, entity: Entity) -> Result<(), Error>;
  546. }
  547. `;
  548. const result = extractFromSource('traits.rs', code);
  549. const traitNode = result.nodes.find((n) => n.kind === 'trait');
  550. expect(traitNode).toBeDefined();
  551. expect(traitNode?.name).toBe('Repository');
  552. });
  553. });
  554. describe('Java Extraction', () => {
  555. it('should extract class declarations', () => {
  556. const code = `
  557. public class UserService {
  558. private final UserRepository repository;
  559. public UserService(UserRepository repository) {
  560. this.repository = repository;
  561. }
  562. public User getUser(String id) {
  563. return repository.findById(id);
  564. }
  565. }
  566. `;
  567. const result = extractFromSource('UserService.java', code);
  568. const classNode = result.nodes.find((n) => n.kind === 'class');
  569. expect(classNode).toBeDefined();
  570. expect(classNode?.name).toBe('UserService');
  571. expect(classNode?.visibility).toBe('public');
  572. });
  573. it('should extract method declarations', () => {
  574. const code = `
  575. public class Calculator {
  576. public static int add(int a, int b) {
  577. return a + b;
  578. }
  579. }
  580. `;
  581. const result = extractFromSource('Calculator.java', code);
  582. const methodNode = result.nodes.find((n) => n.kind === 'method' && n.name === 'add');
  583. expect(methodNode).toBeDefined();
  584. expect(methodNode?.isStatic).toBe(true);
  585. });
  586. });
  587. describe('C# Extraction', () => {
  588. it('should extract class declarations', () => {
  589. const code = `
  590. public class OrderService
  591. {
  592. private readonly IOrderRepository _repository;
  593. public OrderService(IOrderRepository repository)
  594. {
  595. _repository = repository;
  596. }
  597. public async Task<Order> GetOrderAsync(string id)
  598. {
  599. return await _repository.FindByIdAsync(id);
  600. }
  601. }
  602. `;
  603. const result = extractFromSource('OrderService.cs', code);
  604. const classNode = result.nodes.find((n) => n.kind === 'class');
  605. expect(classNode).toBeDefined();
  606. expect(classNode?.name).toBe('OrderService');
  607. expect(classNode?.visibility).toBe('public');
  608. });
  609. });
  610. describe('PHP Extraction', () => {
  611. it('should extract class declarations', () => {
  612. const code = `<?php
  613. class UserController
  614. {
  615. private UserService $userService;
  616. public function __construct(UserService $userService)
  617. {
  618. $this->userService = $userService;
  619. }
  620. public function show(string $id): User
  621. {
  622. return $this->userService->find($id);
  623. }
  624. }
  625. `;
  626. const result = extractFromSource('UserController.php', code);
  627. const classNode = result.nodes.find((n) => n.kind === 'class');
  628. expect(classNode).toBeDefined();
  629. expect(classNode?.name).toBe('UserController');
  630. });
  631. });
  632. describe('Swift Extraction', () => {
  633. it('should extract class declarations', () => {
  634. const code = `
  635. public class NetworkManager {
  636. private let session: URLSession
  637. public init(session: URLSession = .shared) {
  638. self.session = session
  639. }
  640. public func fetchData(from url: URL) async throws -> Data {
  641. let (data, _) = try await session.data(from: url)
  642. return data
  643. }
  644. }
  645. `;
  646. const result = extractFromSource('NetworkManager.swift', code);
  647. const classNode = result.nodes.find((n) => n.kind === 'class');
  648. expect(classNode).toBeDefined();
  649. expect(classNode?.name).toBe('NetworkManager');
  650. });
  651. it('should extract function declarations', () => {
  652. const code = `
  653. func calculateSum(_ numbers: [Int]) -> Int {
  654. return numbers.reduce(0, +)
  655. }
  656. public func formatCurrency(amount: Double) -> String {
  657. return String(format: "$%.2f", amount)
  658. }
  659. `;
  660. const result = extractFromSource('utils.swift', code);
  661. const functions = result.nodes.filter((n) => n.kind === 'function');
  662. expect(functions.length).toBeGreaterThanOrEqual(1);
  663. });
  664. it('should extract struct declarations', () => {
  665. const code = `
  666. public struct User {
  667. let id: UUID
  668. var name: String
  669. var email: String
  670. func displayName() -> String {
  671. return name
  672. }
  673. }
  674. `;
  675. const result = extractFromSource('User.swift', code);
  676. const structNode = result.nodes.find((n) => n.kind === 'struct');
  677. expect(structNode).toBeDefined();
  678. expect(structNode?.name).toBe('User');
  679. });
  680. it('should extract protocol declarations', () => {
  681. const code = `
  682. public protocol Repository {
  683. associatedtype Entity
  684. func find(id: String) async throws -> Entity?
  685. func save(_ entity: Entity) async throws
  686. }
  687. `;
  688. const result = extractFromSource('Repository.swift', code);
  689. const protocolNode = result.nodes.find((n) => n.kind === 'interface');
  690. expect(protocolNode).toBeDefined();
  691. expect(protocolNode?.name).toBe('Repository');
  692. });
  693. });
  694. describe('Kotlin Extraction', () => {
  695. it('should extract class declarations', () => {
  696. const code = `
  697. class UserRepository(private val database: Database) {
  698. fun findById(id: String): User? {
  699. return database.query("SELECT * FROM users WHERE id = ?", id)
  700. }
  701. suspend fun save(user: User) {
  702. database.insert(user)
  703. }
  704. }
  705. `;
  706. const result = extractFromSource('UserRepository.kt', code);
  707. const classNode = result.nodes.find((n) => n.kind === 'class');
  708. expect(classNode).toBeDefined();
  709. expect(classNode?.name).toBe('UserRepository');
  710. });
  711. it('should extract function declarations', () => {
  712. const code = `
  713. fun calculateTotal(items: List<Item>): Double {
  714. return items.sumOf { it.price }
  715. }
  716. suspend fun fetchUserData(userId: String): User {
  717. return api.getUser(userId)
  718. }
  719. `;
  720. const result = extractFromSource('utils.kt', code);
  721. const functions = result.nodes.filter((n) => n.kind === 'function');
  722. expect(functions.length).toBeGreaterThanOrEqual(1);
  723. });
  724. it('should detect suspend functions as async', () => {
  725. const code = `
  726. suspend fun loadData(): List<String> {
  727. delay(1000)
  728. return listOf("a", "b", "c")
  729. }
  730. `;
  731. const result = extractFromSource('loader.kt', code);
  732. const funcNode = result.nodes.find((n) => n.kind === 'function');
  733. expect(funcNode).toBeDefined();
  734. expect(funcNode?.isAsync).toBe(true);
  735. });
  736. });
  737. describe('Dart Extraction', () => {
  738. it('should extract class declarations', () => {
  739. const code = `
  740. class UserService {
  741. final Database _db;
  742. Future<User> findById(String id) async {
  743. return await _db.query(id);
  744. }
  745. void _privateMethod() {}
  746. }
  747. `;
  748. const result = extractFromSource('service.dart', code);
  749. const classNode = result.nodes.find((n) => n.kind === 'class');
  750. expect(classNode).toBeDefined();
  751. expect(classNode?.name).toBe('UserService');
  752. expect(classNode?.visibility).toBe('public');
  753. const methodNodes = result.nodes.filter((n) => n.kind === 'method');
  754. expect(methodNodes.length).toBeGreaterThanOrEqual(2);
  755. const findById = methodNodes.find((m) => m.name === 'findById');
  756. expect(findById).toBeDefined();
  757. expect(findById?.isAsync).toBe(true);
  758. const privateMethod = methodNodes.find((m) => m.name === '_privateMethod');
  759. expect(privateMethod).toBeDefined();
  760. expect(privateMethod?.visibility).toBe('private');
  761. });
  762. it('should extract top-level function declarations', () => {
  763. const code = `
  764. void topLevelFunction(String name) {
  765. print(name);
  766. }
  767. `;
  768. const result = extractFromSource('utils.dart', code);
  769. const funcNode = result.nodes.find((n) => n.kind === 'function');
  770. expect(funcNode).toBeDefined();
  771. expect(funcNode?.name).toBe('topLevelFunction');
  772. expect(funcNode?.language).toBe('dart');
  773. });
  774. it('should extract enum declarations', () => {
  775. const code = `
  776. enum Status { active, inactive, pending }
  777. `;
  778. const result = extractFromSource('models.dart', code);
  779. const enumNode = result.nodes.find((n) => n.kind === 'enum');
  780. expect(enumNode).toBeDefined();
  781. expect(enumNode?.name).toBe('Status');
  782. });
  783. it('should extract mixin declarations', () => {
  784. const code = `
  785. mixin LoggerMixin {
  786. void log(String message) {}
  787. }
  788. `;
  789. const result = extractFromSource('mixins.dart', code);
  790. const classNode = result.nodes.find((n) => n.kind === 'class');
  791. expect(classNode).toBeDefined();
  792. expect(classNode?.name).toBe('LoggerMixin');
  793. const methodNode = result.nodes.find((n) => n.kind === 'method');
  794. expect(methodNode).toBeDefined();
  795. expect(methodNode?.name).toBe('log');
  796. });
  797. it('should extract extension declarations', () => {
  798. const code = `
  799. extension StringExt on String {
  800. bool get isBlank => trim().isEmpty;
  801. }
  802. `;
  803. const result = extractFromSource('extensions.dart', code);
  804. const classNode = result.nodes.find((n) => n.kind === 'class');
  805. expect(classNode).toBeDefined();
  806. expect(classNode?.name).toBe('StringExt');
  807. });
  808. it('should detect static methods', () => {
  809. const code = `
  810. class Utils {
  811. static void doWork() {}
  812. }
  813. `;
  814. const result = extractFromSource('utils.dart', code);
  815. const methodNode = result.nodes.find((n) => n.kind === 'method');
  816. expect(methodNode).toBeDefined();
  817. expect(methodNode?.name).toBe('doWork');
  818. expect(methodNode?.isStatic).toBe(true);
  819. });
  820. it('should detect async functions', () => {
  821. const code = `
  822. Future<String> fetchData() async {
  823. return await http.get('/data');
  824. }
  825. `;
  826. const result = extractFromSource('api.dart', code);
  827. const funcNode = result.nodes.find((n) => n.kind === 'function');
  828. expect(funcNode).toBeDefined();
  829. expect(funcNode?.name).toBe('fetchData');
  830. expect(funcNode?.isAsync).toBe(true);
  831. });
  832. it('should detect private visibility via underscore convention', () => {
  833. const code = `
  834. void _privateHelper() {}
  835. void publicFunction() {}
  836. `;
  837. const result = extractFromSource('helpers.dart', code);
  838. const functions = result.nodes.filter((n) => n.kind === 'function');
  839. const privateFunc = functions.find((f) => f.name === '_privateHelper');
  840. const publicFunc = functions.find((f) => f.name === 'publicFunction');
  841. expect(privateFunc?.visibility).toBe('private');
  842. expect(publicFunc?.visibility).toBe('public');
  843. });
  844. });
  845. describe('Import Extraction', () => {
  846. describe('TypeScript/JavaScript imports', () => {
  847. it('should extract default imports', () => {
  848. const code = `import React from 'react';`;
  849. const result = extractFromSource('app.tsx', code);
  850. const importNode = result.nodes.find((n) => n.kind === 'import');
  851. expect(importNode).toBeDefined();
  852. expect(importNode?.name).toBe('react');
  853. expect(importNode?.signature).toBe("import React from 'react';");
  854. });
  855. it('should extract named imports', () => {
  856. const code = `import { Bug, Database } from '@phosphor-icons/react';`;
  857. const result = extractFromSource('icons.tsx', code);
  858. const importNode = result.nodes.find((n) => n.kind === 'import');
  859. expect(importNode).toBeDefined();
  860. expect(importNode?.name).toBe('@phosphor-icons/react');
  861. expect(importNode?.signature).toContain('Bug');
  862. expect(importNode?.signature).toContain('Database');
  863. });
  864. it('should extract namespace imports', () => {
  865. const code = `import * as Icons from '@phosphor-icons/react';`;
  866. const result = extractFromSource('icons.tsx', code);
  867. const importNode = result.nodes.find((n) => n.kind === 'import');
  868. expect(importNode).toBeDefined();
  869. expect(importNode?.name).toBe('@phosphor-icons/react');
  870. expect(importNode?.signature).toContain('* as Icons');
  871. });
  872. it('should extract side-effect imports', () => {
  873. const code = `import './styles.css';`;
  874. const result = extractFromSource('app.tsx', code);
  875. const importNode = result.nodes.find((n) => n.kind === 'import');
  876. expect(importNode).toBeDefined();
  877. expect(importNode?.name).toBe('./styles.css');
  878. });
  879. it('should extract mixed imports (default + named)', () => {
  880. const code = `import React, { useState, useEffect } from 'react';`;
  881. const result = extractFromSource('app.tsx', code);
  882. const importNode = result.nodes.find((n) => n.kind === 'import');
  883. expect(importNode).toBeDefined();
  884. expect(importNode?.name).toBe('react');
  885. expect(importNode?.signature).toContain('React');
  886. expect(importNode?.signature).toContain('useState');
  887. expect(importNode?.signature).toContain('useEffect');
  888. });
  889. it('should extract multiple import statements', () => {
  890. const code = `
  891. import React from 'react';
  892. import { Button } from './components';
  893. import './styles.css';
  894. `;
  895. const result = extractFromSource('app.tsx', code);
  896. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  897. expect(importNodes.length).toBe(3);
  898. const names = importNodes.map((n) => n.name);
  899. expect(names).toContain('react');
  900. expect(names).toContain('./components');
  901. expect(names).toContain('./styles.css');
  902. });
  903. it('should extract type imports', () => {
  904. const code = `import type { FC, ReactNode } from 'react';`;
  905. const result = extractFromSource('types.ts', code);
  906. const importNode = result.nodes.find((n) => n.kind === 'import');
  907. expect(importNode).toBeDefined();
  908. expect(importNode?.name).toBe('react');
  909. expect(importNode?.signature).toContain('type');
  910. expect(importNode?.signature).toContain('FC');
  911. });
  912. it('should extract aliased named imports', () => {
  913. const code = `import { useState as useStateAlias } from 'react';`;
  914. const result = extractFromSource('hooks.ts', code);
  915. const importNode = result.nodes.find((n) => n.kind === 'import');
  916. expect(importNode).toBeDefined();
  917. expect(importNode?.name).toBe('react');
  918. expect(importNode?.signature).toContain('useState');
  919. expect(importNode?.signature).toContain('useStateAlias');
  920. });
  921. it('should extract relative path imports', () => {
  922. const code = `import { helper } from '../utils/helper';`;
  923. const result = extractFromSource('components/Button.tsx', code);
  924. const importNode = result.nodes.find((n) => n.kind === 'import');
  925. expect(importNode).toBeDefined();
  926. expect(importNode?.name).toBe('../utils/helper');
  927. expect(importNode?.signature).toContain('helper');
  928. });
  929. });
  930. describe('Python imports', () => {
  931. it('should extract simple import statement', () => {
  932. const code = `import json`;
  933. const result = extractFromSource('utils.py', code);
  934. const importNode = result.nodes.find((n) => n.kind === 'import');
  935. expect(importNode).toBeDefined();
  936. expect(importNode?.name).toBe('json');
  937. });
  938. it('should extract from import statement', () => {
  939. const code = `from os import path`;
  940. const result = extractFromSource('utils.py', code);
  941. const importNode = result.nodes.find((n) => n.kind === 'import');
  942. expect(importNode).toBeDefined();
  943. expect(importNode?.name).toBe('os');
  944. expect(importNode?.signature).toContain('path');
  945. });
  946. it('should extract multiple imports from same module', () => {
  947. const code = `from typing import List, Dict, Optional`;
  948. const result = extractFromSource('types.py', code);
  949. const importNode = result.nodes.find((n) => n.kind === 'import');
  950. expect(importNode).toBeDefined();
  951. expect(importNode?.name).toBe('typing');
  952. expect(importNode?.signature).toContain('List');
  953. expect(importNode?.signature).toContain('Dict');
  954. });
  955. it('should extract multiple import statements', () => {
  956. const code = `
  957. import os
  958. import sys
  959. `;
  960. const result = extractFromSource('main.py', code);
  961. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  962. expect(importNodes.length).toBe(2);
  963. const names = importNodes.map((n) => n.name);
  964. expect(names).toContain('os');
  965. expect(names).toContain('sys');
  966. });
  967. it('should extract aliased import', () => {
  968. const code = `import numpy as np`;
  969. const result = extractFromSource('data.py', code);
  970. const importNode = result.nodes.find((n) => n.kind === 'import');
  971. expect(importNode).toBeDefined();
  972. expect(importNode?.name).toBe('numpy');
  973. expect(importNode?.signature).toContain('as np');
  974. });
  975. it('should extract relative import', () => {
  976. const code = `from .utils import helper`;
  977. const result = extractFromSource('module.py', code);
  978. const importNode = result.nodes.find((n) => n.kind === 'import');
  979. expect(importNode).toBeDefined();
  980. expect(importNode?.name).toBe('.utils');
  981. expect(importNode?.signature).toContain('helper');
  982. });
  983. it('should extract wildcard import', () => {
  984. const code = `from typing import *`;
  985. const result = extractFromSource('types.py', code);
  986. const importNode = result.nodes.find((n) => n.kind === 'import');
  987. expect(importNode).toBeDefined();
  988. expect(importNode?.name).toBe('typing');
  989. expect(importNode?.signature).toContain('*');
  990. });
  991. });
  992. describe('Rust imports', () => {
  993. it('should extract simple use declaration', () => {
  994. const code = `use std::io;`;
  995. const result = extractFromSource('main.rs', code);
  996. const importNode = result.nodes.find((n) => n.kind === 'import');
  997. expect(importNode).toBeDefined();
  998. expect(importNode?.name).toBe('std');
  999. expect(importNode?.signature).toBe('use std::io;');
  1000. });
  1001. it('should extract scoped use list', () => {
  1002. const code = `use std::{ffi::OsStr, io, path::Path};`;
  1003. const result = extractFromSource('main.rs', code);
  1004. const importNode = result.nodes.find((n) => n.kind === 'import');
  1005. expect(importNode).toBeDefined();
  1006. expect(importNode?.name).toBe('std');
  1007. expect(importNode?.signature).toContain('ffi::OsStr');
  1008. expect(importNode?.signature).toContain('path::Path');
  1009. });
  1010. it('should extract crate imports', () => {
  1011. const code = `use crate::error::Error;`;
  1012. const result = extractFromSource('lib.rs', code);
  1013. const importNode = result.nodes.find((n) => n.kind === 'import');
  1014. expect(importNode).toBeDefined();
  1015. expect(importNode?.name).toBe('crate');
  1016. });
  1017. it('should extract super imports', () => {
  1018. const code = `use super::utils;`;
  1019. const result = extractFromSource('submod.rs', code);
  1020. const importNode = result.nodes.find((n) => n.kind === 'import');
  1021. expect(importNode).toBeDefined();
  1022. expect(importNode?.name).toBe('super');
  1023. });
  1024. it('should extract external crate imports', () => {
  1025. const code = `use serde::{Serialize, Deserialize};`;
  1026. const result = extractFromSource('types.rs', code);
  1027. const importNode = result.nodes.find((n) => n.kind === 'import');
  1028. expect(importNode).toBeDefined();
  1029. expect(importNode?.name).toBe('serde');
  1030. expect(importNode?.signature).toContain('Serialize');
  1031. expect(importNode?.signature).toContain('Deserialize');
  1032. });
  1033. });
  1034. describe('Go imports', () => {
  1035. it('should extract single import', () => {
  1036. const code = `
  1037. package main
  1038. import "fmt"
  1039. `;
  1040. const result = extractFromSource('main.go', code);
  1041. const importNode = result.nodes.find((n) => n.kind === 'import');
  1042. expect(importNode).toBeDefined();
  1043. expect(importNode?.name).toBe('fmt');
  1044. });
  1045. it('should extract grouped imports', () => {
  1046. const code = `
  1047. package main
  1048. import (
  1049. "fmt"
  1050. "os"
  1051. "encoding/json"
  1052. )
  1053. `;
  1054. const result = extractFromSource('main.go', code);
  1055. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1056. expect(importNodes.length).toBe(3);
  1057. const names = importNodes.map((n) => n.name);
  1058. expect(names).toContain('fmt');
  1059. expect(names).toContain('os');
  1060. expect(names).toContain('encoding/json');
  1061. });
  1062. it('should extract aliased import', () => {
  1063. const code = `
  1064. package main
  1065. import f "fmt"
  1066. `;
  1067. const result = extractFromSource('main.go', code);
  1068. const importNode = result.nodes.find((n) => n.kind === 'import');
  1069. expect(importNode).toBeDefined();
  1070. expect(importNode?.name).toBe('fmt');
  1071. expect(importNode?.signature).toContain('f');
  1072. });
  1073. it('should extract dot import', () => {
  1074. const code = `
  1075. package main
  1076. import . "math"
  1077. `;
  1078. const result = extractFromSource('main.go', code);
  1079. const importNode = result.nodes.find((n) => n.kind === 'import');
  1080. expect(importNode).toBeDefined();
  1081. expect(importNode?.name).toBe('math');
  1082. expect(importNode?.signature).toContain('.');
  1083. });
  1084. it('should extract blank import', () => {
  1085. const code = `
  1086. package main
  1087. import _ "github.com/go-sql-driver/mysql"
  1088. `;
  1089. const result = extractFromSource('main.go', code);
  1090. const importNode = result.nodes.find((n) => n.kind === 'import');
  1091. expect(importNode).toBeDefined();
  1092. expect(importNode?.name).toBe('github.com/go-sql-driver/mysql');
  1093. expect(importNode?.signature).toContain('_');
  1094. });
  1095. });
  1096. describe('Swift imports', () => {
  1097. it('should extract simple import', () => {
  1098. const code = `import Foundation`;
  1099. const result = extractFromSource('main.swift', code);
  1100. const importNode = result.nodes.find((n) => n.kind === 'import');
  1101. expect(importNode).toBeDefined();
  1102. expect(importNode?.name).toBe('Foundation');
  1103. expect(importNode?.signature).toBe('import Foundation');
  1104. });
  1105. it('should extract @testable import', () => {
  1106. const code = `@testable import Alamofire`;
  1107. const result = extractFromSource('Tests.swift', code);
  1108. const importNode = result.nodes.find((n) => n.kind === 'import');
  1109. expect(importNode).toBeDefined();
  1110. expect(importNode?.name).toBe('Alamofire');
  1111. expect(importNode?.signature).toContain('@testable');
  1112. });
  1113. it('should extract @preconcurrency import', () => {
  1114. const code = `@preconcurrency import Security`;
  1115. const result = extractFromSource('Auth.swift', code);
  1116. const importNode = result.nodes.find((n) => n.kind === 'import');
  1117. expect(importNode).toBeDefined();
  1118. expect(importNode?.name).toBe('Security');
  1119. });
  1120. it('should extract multiple imports', () => {
  1121. const code = `
  1122. import Foundation
  1123. import UIKit
  1124. import Alamofire
  1125. `;
  1126. const result = extractFromSource('App.swift', code);
  1127. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1128. expect(importNodes.length).toBe(3);
  1129. const names = importNodes.map((n) => n.name);
  1130. expect(names).toContain('Foundation');
  1131. expect(names).toContain('UIKit');
  1132. expect(names).toContain('Alamofire');
  1133. });
  1134. });
  1135. describe('Kotlin imports', () => {
  1136. it('should extract simple import', () => {
  1137. const code = `import java.io.IOException`;
  1138. const result = extractFromSource('Main.kt', code);
  1139. const importNode = result.nodes.find((n) => n.kind === 'import');
  1140. expect(importNode).toBeDefined();
  1141. expect(importNode?.name).toBe('java.io.IOException');
  1142. expect(importNode?.signature).toBe('import java.io.IOException');
  1143. });
  1144. it('should extract aliased import', () => {
  1145. const code = `import okhttp3.Request.Builder as RequestBuilder`;
  1146. const result = extractFromSource('Utils.kt', code);
  1147. const importNode = result.nodes.find((n) => n.kind === 'import');
  1148. expect(importNode).toBeDefined();
  1149. expect(importNode?.name).toBe('okhttp3.Request.Builder');
  1150. expect(importNode?.signature).toContain('as RequestBuilder');
  1151. });
  1152. it('should extract wildcard import', () => {
  1153. const code = `import java.util.concurrent.TimeUnit.*`;
  1154. const result = extractFromSource('Time.kt', code);
  1155. const importNode = result.nodes.find((n) => n.kind === 'import');
  1156. expect(importNode).toBeDefined();
  1157. expect(importNode?.name).toBe('java.util.concurrent.TimeUnit');
  1158. expect(importNode?.signature).toContain('.*');
  1159. });
  1160. it('should extract multiple imports', () => {
  1161. const code = `
  1162. import java.io.IOException
  1163. import kotlin.test.assertFailsWith
  1164. import okhttp3.OkHttpClient
  1165. `;
  1166. const result = extractFromSource('Test.kt', code);
  1167. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1168. expect(importNodes.length).toBe(3);
  1169. const names = importNodes.map((n) => n.name);
  1170. expect(names).toContain('java.io.IOException');
  1171. expect(names).toContain('kotlin.test.assertFailsWith');
  1172. expect(names).toContain('okhttp3.OkHttpClient');
  1173. });
  1174. });
  1175. describe('Java imports', () => {
  1176. it('should extract simple import', () => {
  1177. const code = `import java.util.List;`;
  1178. const result = extractFromSource('Main.java', code);
  1179. const importNode = result.nodes.find((n) => n.kind === 'import');
  1180. expect(importNode).toBeDefined();
  1181. expect(importNode?.name).toBe('java.util.List');
  1182. expect(importNode?.signature).toBe('import java.util.List;');
  1183. });
  1184. it('should extract static import', () => {
  1185. const code = `import static java.util.Collections.emptyList;`;
  1186. const result = extractFromSource('Utils.java', code);
  1187. const importNode = result.nodes.find((n) => n.kind === 'import');
  1188. expect(importNode).toBeDefined();
  1189. expect(importNode?.name).toBe('java.util.Collections.emptyList');
  1190. expect(importNode?.signature).toContain('static');
  1191. });
  1192. it('should extract wildcard import', () => {
  1193. const code = `import java.util.*;`;
  1194. const result = extractFromSource('App.java', code);
  1195. const importNode = result.nodes.find((n) => n.kind === 'import');
  1196. expect(importNode).toBeDefined();
  1197. expect(importNode?.name).toBe('java.util');
  1198. expect(importNode?.signature).toContain('.*');
  1199. });
  1200. it('should extract nested class import', () => {
  1201. const code = `import java.util.Map.Entry;`;
  1202. const result = extractFromSource('MapUtil.java', code);
  1203. const importNode = result.nodes.find((n) => n.kind === 'import');
  1204. expect(importNode).toBeDefined();
  1205. expect(importNode?.name).toBe('java.util.Map.Entry');
  1206. });
  1207. it('should extract multiple imports', () => {
  1208. const code = `
  1209. import java.util.List;
  1210. import java.util.Map;
  1211. import java.io.IOException;
  1212. `;
  1213. const result = extractFromSource('Service.java', code);
  1214. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1215. expect(importNodes.length).toBe(3);
  1216. const names = importNodes.map((n) => n.name);
  1217. expect(names).toContain('java.util.List');
  1218. expect(names).toContain('java.util.Map');
  1219. expect(names).toContain('java.io.IOException');
  1220. });
  1221. });
  1222. describe('C# imports', () => {
  1223. it('should extract simple using', () => {
  1224. const code = `using System;`;
  1225. const result = extractFromSource('Program.cs', code);
  1226. const importNode = result.nodes.find((n) => n.kind === 'import');
  1227. expect(importNode).toBeDefined();
  1228. expect(importNode?.name).toBe('System');
  1229. expect(importNode?.signature).toBe('using System;');
  1230. });
  1231. it('should extract qualified using', () => {
  1232. const code = `using System.Collections.Generic;`;
  1233. const result = extractFromSource('Utils.cs', code);
  1234. const importNode = result.nodes.find((n) => n.kind === 'import');
  1235. expect(importNode).toBeDefined();
  1236. expect(importNode?.name).toBe('System.Collections.Generic');
  1237. });
  1238. it('should extract static using', () => {
  1239. const code = `using static System.Console;`;
  1240. const result = extractFromSource('App.cs', code);
  1241. const importNode = result.nodes.find((n) => n.kind === 'import');
  1242. expect(importNode).toBeDefined();
  1243. expect(importNode?.name).toBe('System.Console');
  1244. expect(importNode?.signature).toContain('static');
  1245. });
  1246. it('should extract alias using', () => {
  1247. const code = `using MyList = System.Collections.Generic.List<int>;`;
  1248. const result = extractFromSource('Types.cs', code);
  1249. const importNode = result.nodes.find((n) => n.kind === 'import');
  1250. expect(importNode).toBeDefined();
  1251. expect(importNode?.name).toBe('System.Collections.Generic.List<int>');
  1252. expect(importNode?.signature).toContain('MyList =');
  1253. });
  1254. it('should extract multiple usings', () => {
  1255. const code = `
  1256. using System;
  1257. using System.Threading.Tasks;
  1258. using Microsoft.Extensions.DependencyInjection;
  1259. `;
  1260. const result = extractFromSource('Service.cs', code);
  1261. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1262. expect(importNodes.length).toBe(3);
  1263. const names = importNodes.map((n) => n.name);
  1264. expect(names).toContain('System');
  1265. expect(names).toContain('System.Threading.Tasks');
  1266. expect(names).toContain('Microsoft.Extensions.DependencyInjection');
  1267. });
  1268. });
  1269. describe('PHP imports', () => {
  1270. it('should extract simple use', () => {
  1271. const code = `<?php use PHPUnit\\Framework\\TestCase;`;
  1272. const result = extractFromSource('Test.php', code);
  1273. const importNode = result.nodes.find((n) => n.kind === 'import');
  1274. expect(importNode).toBeDefined();
  1275. expect(importNode?.name).toBe('PHPUnit\\Framework\\TestCase');
  1276. });
  1277. it('should extract aliased use', () => {
  1278. const code = `<?php use Mockery as m;`;
  1279. const result = extractFromSource('Test.php', code);
  1280. const importNode = result.nodes.find((n) => n.kind === 'import');
  1281. expect(importNode).toBeDefined();
  1282. expect(importNode?.name).toBe('Mockery');
  1283. expect(importNode?.signature).toContain('as m');
  1284. });
  1285. it('should extract function use', () => {
  1286. const code = `<?php use function Illuminate\\Support\\env;`;
  1287. const result = extractFromSource('helpers.php', code);
  1288. const importNode = result.nodes.find((n) => n.kind === 'import');
  1289. expect(importNode).toBeDefined();
  1290. expect(importNode?.name).toBe('Illuminate\\Support\\env');
  1291. expect(importNode?.signature).toContain('function');
  1292. });
  1293. it('should extract grouped use', () => {
  1294. const code = `<?php use Illuminate\\Database\\{Model, Builder};`;
  1295. const result = extractFromSource('Models.php', code);
  1296. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1297. expect(importNodes.length).toBe(2);
  1298. const names = importNodes.map((n) => n.name);
  1299. expect(names).toContain('Illuminate\\Database\\Model');
  1300. expect(names).toContain('Illuminate\\Database\\Builder');
  1301. });
  1302. it('should extract multiple uses', () => {
  1303. const code = `<?php
  1304. use Illuminate\\Support\\Collection;
  1305. use Illuminate\\Support\\Str;
  1306. use Closure;
  1307. `;
  1308. const result = extractFromSource('Service.php', code);
  1309. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1310. expect(importNodes.length).toBe(3);
  1311. const names = importNodes.map((n) => n.name);
  1312. expect(names).toContain('Illuminate\\Support\\Collection');
  1313. expect(names).toContain('Illuminate\\Support\\Str');
  1314. expect(names).toContain('Closure');
  1315. });
  1316. });
  1317. describe('Ruby imports', () => {
  1318. it('should extract require', () => {
  1319. const code = `require 'json'`;
  1320. const result = extractFromSource('app.rb', code);
  1321. const importNode = result.nodes.find((n) => n.kind === 'import');
  1322. expect(importNode).toBeDefined();
  1323. expect(importNode?.name).toBe('json');
  1324. expect(importNode?.signature).toBe("require 'json'");
  1325. });
  1326. it('should extract require with path', () => {
  1327. const code = `require 'active_support/core_ext/string'`;
  1328. const result = extractFromSource('config.rb', code);
  1329. const importNode = result.nodes.find((n) => n.kind === 'import');
  1330. expect(importNode).toBeDefined();
  1331. expect(importNode?.name).toBe('active_support/core_ext/string');
  1332. });
  1333. it('should extract require_relative', () => {
  1334. const code = `require_relative '../test_helper'`;
  1335. const result = extractFromSource('test/my_test.rb', code);
  1336. const importNode = result.nodes.find((n) => n.kind === 'import');
  1337. expect(importNode).toBeDefined();
  1338. expect(importNode?.name).toBe('../test_helper');
  1339. expect(importNode?.signature).toContain('require_relative');
  1340. });
  1341. it('should not extract non-require calls', () => {
  1342. const code = `puts 'hello'`;
  1343. const result = extractFromSource('app.rb', code);
  1344. const importNode = result.nodes.find((n) => n.kind === 'import');
  1345. expect(importNode).toBeUndefined();
  1346. });
  1347. it('should extract multiple requires', () => {
  1348. const code = `
  1349. require 'json'
  1350. require 'yaml'
  1351. require_relative 'helper'
  1352. `;
  1353. const result = extractFromSource('lib.rb', code);
  1354. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1355. expect(importNodes.length).toBe(3);
  1356. const names = importNodes.map((n) => n.name);
  1357. expect(names).toContain('json');
  1358. expect(names).toContain('yaml');
  1359. expect(names).toContain('helper');
  1360. });
  1361. });
  1362. describe('C/C++ imports', () => {
  1363. it('should extract system include', () => {
  1364. const code = `#include <iostream>`;
  1365. const result = extractFromSource('main.cpp', code);
  1366. const importNode = result.nodes.find((n) => n.kind === 'import');
  1367. expect(importNode).toBeDefined();
  1368. expect(importNode?.name).toBe('iostream');
  1369. expect(importNode?.signature).toBe('#include <iostream>');
  1370. });
  1371. it('should extract system include with path', () => {
  1372. const code = `#include <nlohmann/json.hpp>`;
  1373. const result = extractFromSource('app.cpp', code);
  1374. const importNode = result.nodes.find((n) => n.kind === 'import');
  1375. expect(importNode).toBeDefined();
  1376. expect(importNode?.name).toBe('nlohmann/json.hpp');
  1377. });
  1378. it('should extract local include', () => {
  1379. const code = `#include "myheader.h"`;
  1380. const result = extractFromSource('main.cpp', code);
  1381. const importNode = result.nodes.find((n) => n.kind === 'import');
  1382. expect(importNode).toBeDefined();
  1383. expect(importNode?.name).toBe('myheader.h');
  1384. });
  1385. it('should extract C header', () => {
  1386. const code = `#include <stdio.h>`;
  1387. const result = extractFromSource('main.c', code);
  1388. const importNode = result.nodes.find((n) => n.kind === 'import');
  1389. expect(importNode).toBeDefined();
  1390. expect(importNode?.name).toBe('stdio.h');
  1391. });
  1392. it('should extract multiple includes', () => {
  1393. const code = `
  1394. #include <iostream>
  1395. #include <vector>
  1396. #include "config.h"
  1397. `;
  1398. const result = extractFromSource('app.cpp', code);
  1399. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1400. expect(importNodes.length).toBe(3);
  1401. const names = importNodes.map((n) => n.name);
  1402. expect(names).toContain('iostream');
  1403. expect(names).toContain('vector');
  1404. expect(names).toContain('config.h');
  1405. });
  1406. });
  1407. describe('Dart imports', () => {
  1408. it('should extract dart: import', () => {
  1409. const code = `import 'dart:async';`;
  1410. const result = extractFromSource('main.dart', code);
  1411. const importNode = result.nodes.find((n) => n.kind === 'import');
  1412. expect(importNode).toBeDefined();
  1413. expect(importNode?.name).toBe('dart:async');
  1414. expect(importNode?.signature).toBe("import 'dart:async';");
  1415. });
  1416. it('should extract package import', () => {
  1417. const code = `import 'package:flutter/material.dart';`;
  1418. const result = extractFromSource('app.dart', code);
  1419. const importNode = result.nodes.find((n) => n.kind === 'import');
  1420. expect(importNode).toBeDefined();
  1421. expect(importNode?.name).toBe('package:flutter/material.dart');
  1422. });
  1423. it('should extract aliased import', () => {
  1424. const code = `import 'package:http/http.dart' as http;`;
  1425. const result = extractFromSource('api.dart', code);
  1426. const importNode = result.nodes.find((n) => n.kind === 'import');
  1427. expect(importNode).toBeDefined();
  1428. expect(importNode?.name).toBe('package:http/http.dart');
  1429. expect(importNode?.signature).toContain('as http');
  1430. });
  1431. it('should extract multiple imports', () => {
  1432. const code = `
  1433. import 'dart:async';
  1434. import 'dart:convert';
  1435. import 'package:flutter/material.dart';
  1436. `;
  1437. const result = extractFromSource('main.dart', code);
  1438. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1439. expect(importNodes.length).toBe(3);
  1440. const names = importNodes.map((n) => n.name);
  1441. expect(names).toContain('dart:async');
  1442. expect(names).toContain('dart:convert');
  1443. expect(names).toContain('package:flutter/material.dart');
  1444. });
  1445. it('should extract relative import', () => {
  1446. const code = `import '../utils/helpers.dart';`;
  1447. const result = extractFromSource('lib/main.dart', code);
  1448. const importNode = result.nodes.find((n) => n.kind === 'import');
  1449. expect(importNode).toBeDefined();
  1450. expect(importNode?.name).toBe('../utils/helpers.dart');
  1451. });
  1452. });
  1453. describe('Liquid imports', () => {
  1454. it('should extract render tag', () => {
  1455. const code = `{% render 'loading-spinner' %}`;
  1456. const result = extractFromSource('template.liquid', code);
  1457. const importNode = result.nodes.find((n) => n.kind === 'import');
  1458. expect(importNode).toBeDefined();
  1459. expect(importNode?.name).toBe('loading-spinner');
  1460. expect(importNode?.signature).toContain('render');
  1461. });
  1462. it('should extract section tag', () => {
  1463. const code = `{% section 'header' %}`;
  1464. const result = extractFromSource('layout/theme.liquid', code);
  1465. const importNode = result.nodes.find((n) => n.kind === 'import');
  1466. expect(importNode).toBeDefined();
  1467. expect(importNode?.name).toBe('header');
  1468. expect(importNode?.signature).toContain('section');
  1469. });
  1470. it('should extract include tag', () => {
  1471. const code = `{% include 'icon-cart' %}`;
  1472. const result = extractFromSource('snippets/header.liquid', code);
  1473. const importNode = result.nodes.find((n) => n.kind === 'import');
  1474. expect(importNode).toBeDefined();
  1475. expect(importNode?.name).toBe('icon-cart');
  1476. expect(importNode?.signature).toContain('include');
  1477. });
  1478. it('should extract render with whitespace control', () => {
  1479. const code = `{%- render 'price' -%}`;
  1480. const result = extractFromSource('snippets/product.liquid', code);
  1481. const importNode = result.nodes.find((n) => n.kind === 'import');
  1482. expect(importNode).toBeDefined();
  1483. expect(importNode?.name).toBe('price');
  1484. });
  1485. it('should extract multiple imports', () => {
  1486. const code = `
  1487. {% section 'header' %}
  1488. {% render 'loading-spinner' %}
  1489. {% render 'cart-drawer' %}
  1490. `;
  1491. const result = extractFromSource('layout/theme.liquid', code);
  1492. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1493. expect(importNodes.length).toBe(3);
  1494. const names = importNodes.map((n) => n.name);
  1495. expect(names).toContain('header');
  1496. expect(names).toContain('loading-spinner');
  1497. expect(names).toContain('cart-drawer');
  1498. });
  1499. });
  1500. });
  1501. // =============================================================================
  1502. // Pascal / Delphi Extraction
  1503. // =============================================================================
  1504. describe('Pascal / Delphi Extraction', () => {
  1505. describe('Language detection', () => {
  1506. it('should detect Pascal files', () => {
  1507. expect(detectLanguage('UAuth.pas')).toBe('pascal');
  1508. expect(detectLanguage('App.dpr')).toBe('pascal');
  1509. expect(detectLanguage('Package.dpk')).toBe('pascal');
  1510. expect(detectLanguage('App.lpr')).toBe('pascal');
  1511. expect(detectLanguage('MainForm.dfm')).toBe('pascal');
  1512. expect(detectLanguage('MainForm.fmx')).toBe('pascal');
  1513. });
  1514. it('should report Pascal as supported', () => {
  1515. expect(isLanguageSupported('pascal')).toBe(true);
  1516. expect(getSupportedLanguages()).toContain('pascal');
  1517. });
  1518. });
  1519. describe('Unit extraction', () => {
  1520. it('should extract unit as module', () => {
  1521. const code = `unit MyUnit;\ninterface\nimplementation\nend.`;
  1522. const result = extractFromSource('MyUnit.pas', code);
  1523. const moduleNode = result.nodes.find((n) => n.kind === 'module');
  1524. expect(moduleNode).toBeDefined();
  1525. expect(moduleNode?.name).toBe('MyUnit');
  1526. expect(moduleNode?.language).toBe('pascal');
  1527. });
  1528. it('should extract program as module', () => {
  1529. const code = `program MyApp;\nbegin\nend.`;
  1530. const result = extractFromSource('MyApp.dpr', code);
  1531. const moduleNode = result.nodes.find((n) => n.kind === 'module');
  1532. expect(moduleNode).toBeDefined();
  1533. expect(moduleNode?.name).toBe('MyApp');
  1534. });
  1535. it('should fallback to filename when module name is empty', () => {
  1536. // Some .dpr templates use "program;" without a name
  1537. const code = `program;\nuses SysUtils;\nbegin\nend.`;
  1538. const result = extractFromSource('Console.dpr', code);
  1539. const moduleNode = result.nodes.find((n) => n.kind === 'module');
  1540. expect(moduleNode).toBeDefined();
  1541. expect(moduleNode?.name).toBe('Console');
  1542. });
  1543. });
  1544. describe('Uses clause (imports)', () => {
  1545. it('should extract uses as individual imports', () => {
  1546. const code = `unit Test;\ninterface\nuses\n System.SysUtils,\n System.Classes;\nimplementation\nend.`;
  1547. const result = extractFromSource('Test.pas', code);
  1548. const imports = result.nodes.filter((n) => n.kind === 'import');
  1549. expect(imports.length).toBe(2);
  1550. expect(imports.map((n) => n.name)).toContain('System.SysUtils');
  1551. expect(imports.map((n) => n.name)).toContain('System.Classes');
  1552. });
  1553. it('should create unresolved references for imports', () => {
  1554. const code = `unit Test;\ninterface\nuses\n UAuth;\nimplementation\nend.`;
  1555. const result = extractFromSource('Test.pas', code);
  1556. const importRef = result.unresolvedReferences.find(
  1557. (r) => r.referenceKind === 'imports'
  1558. );
  1559. expect(importRef).toBeDefined();
  1560. expect(importRef?.referenceName).toBe('UAuth');
  1561. });
  1562. });
  1563. describe('Class extraction', () => {
  1564. it('should extract class declarations', () => {
  1565. const code = `unit Test;\ninterface\ntype\n TMyClass = class\n public\n procedure DoSomething;\n end;\nimplementation\nend.`;
  1566. const result = extractFromSource('Test.pas', code);
  1567. const classNode = result.nodes.find((n) => n.kind === 'class');
  1568. expect(classNode).toBeDefined();
  1569. expect(classNode?.name).toBe('TMyClass');
  1570. });
  1571. it('should extract class with inheritance', () => {
  1572. const code = `unit Test;\ninterface\ntype\n TChild = class(TParent)\n end;\nimplementation\nend.`;
  1573. const result = extractFromSource('Test.pas', code);
  1574. const extendsRef = result.unresolvedReferences.find(
  1575. (r) => r.referenceKind === 'extends'
  1576. );
  1577. expect(extendsRef).toBeDefined();
  1578. expect(extendsRef?.referenceName).toBe('TParent');
  1579. });
  1580. it('should extract class with interface implementation', () => {
  1581. const code = `unit Test;\ninterface\ntype\n TService = class(TInterfacedObject, ILogger)\n end;\nimplementation\nend.`;
  1582. const result = extractFromSource('Test.pas', code);
  1583. const extendsRef = result.unresolvedReferences.find(
  1584. (r) => r.referenceKind === 'extends'
  1585. );
  1586. const implementsRef = result.unresolvedReferences.find(
  1587. (r) => r.referenceKind === 'implements'
  1588. );
  1589. expect(extendsRef?.referenceName).toBe('TInterfacedObject');
  1590. expect(implementsRef?.referenceName).toBe('ILogger');
  1591. });
  1592. });
  1593. describe('Record extraction', () => {
  1594. it('should extract records as class nodes', () => {
  1595. const code = `unit Test;\ninterface\ntype\n TPoint = record\n X: Double;\n Y: Double;\n end;\nimplementation\nend.`;
  1596. const result = extractFromSource('Test.pas', code);
  1597. const classNode = result.nodes.find((n) => n.kind === 'class');
  1598. expect(classNode).toBeDefined();
  1599. expect(classNode?.name).toBe('TPoint');
  1600. const fields = result.nodes.filter((n) => n.kind === 'field');
  1601. expect(fields.length).toBe(2);
  1602. expect(fields.map((f) => f.name)).toContain('X');
  1603. expect(fields.map((f) => f.name)).toContain('Y');
  1604. });
  1605. });
  1606. describe('Interface extraction', () => {
  1607. it('should extract interface declarations', () => {
  1608. const code = `unit Test;\ninterface\ntype\n ILogger = interface\n procedure Log(const AMsg: string);\n end;\nimplementation\nend.`;
  1609. const result = extractFromSource('Test.pas', code);
  1610. const ifaceNode = result.nodes.find((n) => n.kind === 'interface');
  1611. expect(ifaceNode).toBeDefined();
  1612. expect(ifaceNode?.name).toBe('ILogger');
  1613. });
  1614. });
  1615. describe('Method extraction', () => {
  1616. it('should extract methods with visibility', () => {
  1617. const code = `unit Test;\ninterface\ntype\n TMyClass = class\n private\n FValue: Integer;\n public\n constructor Create;\n function GetValue: Integer;\n end;\nimplementation\nend.`;
  1618. const result = extractFromSource('Test.pas', code);
  1619. const methods = result.nodes.filter((n) => n.kind === 'method');
  1620. expect(methods.length).toBe(2);
  1621. const createMethod = methods.find((m) => m.name === 'Create');
  1622. expect(createMethod?.visibility).toBe('public');
  1623. const getValue = methods.find((m) => m.name === 'GetValue');
  1624. expect(getValue?.visibility).toBe('public');
  1625. const fields = result.nodes.filter((n) => n.kind === 'field');
  1626. const fValue = fields.find((f) => f.name === 'FValue');
  1627. expect(fValue?.visibility).toBe('private');
  1628. });
  1629. it('should detect static methods (class methods)', () => {
  1630. const code = `unit Test;\ninterface\ntype\n THelper = class\n public\n class function Create: THelper; static;\n end;\nimplementation\nend.`;
  1631. const result = extractFromSource('Test.pas', code);
  1632. const methods = result.nodes.filter((n) => n.kind === 'method');
  1633. const staticMethod = methods.find((m) => m.name === 'Create');
  1634. expect(staticMethod?.isStatic).toBe(true);
  1635. });
  1636. });
  1637. describe('Enum extraction', () => {
  1638. it('should extract enums with members', () => {
  1639. const code = `unit Test;\ninterface\ntype\n TColor = (clRed, clGreen, clBlue);\nimplementation\nend.`;
  1640. const result = extractFromSource('Test.pas', code);
  1641. const enumNode = result.nodes.find((n) => n.kind === 'enum');
  1642. expect(enumNode).toBeDefined();
  1643. expect(enumNode?.name).toBe('TColor');
  1644. const members = result.nodes.filter((n) => n.kind === 'enum_member');
  1645. expect(members.length).toBe(3);
  1646. expect(members.map((m) => m.name)).toEqual(['clRed', 'clGreen', 'clBlue']);
  1647. });
  1648. });
  1649. describe('Property extraction', () => {
  1650. it('should extract properties', () => {
  1651. const code = `unit Test;\ninterface\ntype\n TObj = class\n public\n property Name: string read FName write FName;\n end;\nimplementation\nend.`;
  1652. const result = extractFromSource('Test.pas', code);
  1653. const propNode = result.nodes.find((n) => n.kind === 'property');
  1654. expect(propNode).toBeDefined();
  1655. expect(propNode?.name).toBe('Name');
  1656. expect(propNode?.visibility).toBe('public');
  1657. });
  1658. });
  1659. describe('Constant extraction', () => {
  1660. it('should extract constants', () => {
  1661. const code = `unit Test;\ninterface\nconst\n MAX_RETRIES = 3;\n APP_NAME = 'MyApp';\nimplementation\nend.`;
  1662. const result = extractFromSource('Test.pas', code);
  1663. const constants = result.nodes.filter((n) => n.kind === 'constant');
  1664. expect(constants.length).toBe(2);
  1665. expect(constants.map((c) => c.name)).toContain('MAX_RETRIES');
  1666. expect(constants.map((c) => c.name)).toContain('APP_NAME');
  1667. });
  1668. });
  1669. describe('Type alias extraction', () => {
  1670. it('should extract type aliases', () => {
  1671. const code = `unit Test;\ninterface\ntype\n TUserName = string;\nimplementation\nend.`;
  1672. const result = extractFromSource('Test.pas', code);
  1673. const aliasNode = result.nodes.find((n) => n.kind === 'type_alias');
  1674. expect(aliasNode).toBeDefined();
  1675. expect(aliasNode?.name).toBe('TUserName');
  1676. });
  1677. });
  1678. describe('Call extraction', () => {
  1679. it('should extract calls from implementation bodies', () => {
  1680. const code = `unit Test;\ninterface\ntype\n TObj = class\n public\n procedure DoWork;\n end;\nimplementation\nprocedure TObj.DoWork;\nbegin\n WriteLn('hello');\nend;\nend.`;
  1681. const result = extractFromSource('Test.pas', code);
  1682. const callRef = result.unresolvedReferences.find(
  1683. (r) => r.referenceKind === 'calls'
  1684. );
  1685. expect(callRef).toBeDefined();
  1686. expect(callRef?.referenceName).toBe('WriteLn');
  1687. });
  1688. });
  1689. describe('Containment edges', () => {
  1690. it('should create contains edges for class members', () => {
  1691. const code = `unit Test;\ninterface\ntype\n TObj = class\n public\n procedure Foo;\n end;\nimplementation\nend.`;
  1692. const result = extractFromSource('Test.pas', code);
  1693. const classNode = result.nodes.find((n) => n.kind === 'class');
  1694. const methodNode = result.nodes.find((n) => n.kind === 'method');
  1695. expect(classNode).toBeDefined();
  1696. expect(methodNode).toBeDefined();
  1697. const containsEdge = result.edges.find(
  1698. (e) => e.source === classNode?.id && e.target === methodNode?.id && e.kind === 'contains'
  1699. );
  1700. expect(containsEdge).toBeDefined();
  1701. });
  1702. });
  1703. describe('Full fixture: UAuth.pas', () => {
  1704. const code = `unit UAuth;
  1705. interface
  1706. uses
  1707. System.SysUtils,
  1708. System.Classes;
  1709. type
  1710. ITokenValidator = interface
  1711. ['{11111111-1111-1111-1111-111111111111}']
  1712. function Validate(const AToken: string): Boolean;
  1713. end;
  1714. TAuthService = class(TInterfacedObject, ITokenValidator)
  1715. private
  1716. FToken: string;
  1717. FLoginCount: Integer;
  1718. procedure IncLoginCount;
  1719. protected
  1720. function GetToken: string;
  1721. public
  1722. constructor Create;
  1723. destructor Destroy; override;
  1724. function Validate(const AToken: string): Boolean;
  1725. function Login(const AUser, APass: string): string;
  1726. property Token: string read GetToken;
  1727. property LoginCount: Integer read FLoginCount;
  1728. end;
  1729. implementation
  1730. constructor TAuthService.Create;
  1731. begin
  1732. inherited Create;
  1733. FToken := '';
  1734. FLoginCount := 0;
  1735. end;
  1736. destructor TAuthService.Destroy;
  1737. begin
  1738. FToken := '';
  1739. inherited Destroy;
  1740. end;
  1741. procedure TAuthService.IncLoginCount;
  1742. begin
  1743. Inc(FLoginCount);
  1744. end;
  1745. function TAuthService.GetToken: string;
  1746. begin
  1747. Result := FToken;
  1748. end;
  1749. function TAuthService.Validate(const AToken: string): Boolean;
  1750. begin
  1751. Result := AToken <> '';
  1752. end;
  1753. function TAuthService.Login(const AUser, APass: string): string;
  1754. begin
  1755. IncLoginCount;
  1756. if Validate(AUser + ':' + APass) then
  1757. begin
  1758. FToken := AUser;
  1759. Result := 'ok';
  1760. end
  1761. else
  1762. Result := '';
  1763. end;
  1764. end.`;
  1765. it('should extract all expected nodes', () => {
  1766. const result = extractFromSource('UAuth.pas', code);
  1767. expect(result.errors).toHaveLength(0);
  1768. // Module
  1769. const moduleNode = result.nodes.find((n) => n.kind === 'module');
  1770. expect(moduleNode?.name).toBe('UAuth');
  1771. // Imports
  1772. const imports = result.nodes.filter((n) => n.kind === 'import');
  1773. expect(imports.length).toBe(2);
  1774. // Interface
  1775. const ifaceNode = result.nodes.find((n) => n.kind === 'interface');
  1776. expect(ifaceNode?.name).toBe('ITokenValidator');
  1777. // Class
  1778. const classNode = result.nodes.find((n) => n.kind === 'class');
  1779. expect(classNode?.name).toBe('TAuthService');
  1780. // Methods
  1781. const methods = result.nodes.filter((n) => n.kind === 'method');
  1782. expect(methods.length).toBeGreaterThanOrEqual(6);
  1783. expect(methods.map((m) => m.name)).toContain('Create');
  1784. expect(methods.map((m) => m.name)).toContain('Destroy');
  1785. expect(methods.map((m) => m.name)).toContain('Login');
  1786. // Fields
  1787. const fields = result.nodes.filter((n) => n.kind === 'field');
  1788. expect(fields.length).toBe(2);
  1789. expect(fields.every((f) => f.visibility === 'private')).toBe(true);
  1790. // Properties
  1791. const props = result.nodes.filter((n) => n.kind === 'property');
  1792. expect(props.length).toBe(2);
  1793. expect(props.map((p) => p.name)).toContain('Token');
  1794. expect(props.map((p) => p.name)).toContain('LoginCount');
  1795. });
  1796. it('should extract inheritance and interface implementation', () => {
  1797. const result = extractFromSource('UAuth.pas', code);
  1798. const extendsRef = result.unresolvedReferences.find(
  1799. (r) => r.referenceKind === 'extends'
  1800. );
  1801. expect(extendsRef?.referenceName).toBe('TInterfacedObject');
  1802. const implementsRef = result.unresolvedReferences.find(
  1803. (r) => r.referenceKind === 'implements'
  1804. );
  1805. expect(implementsRef?.referenceName).toBe('ITokenValidator');
  1806. });
  1807. it('should extract calls from implementation', () => {
  1808. const result = extractFromSource('UAuth.pas', code);
  1809. const callRefs = result.unresolvedReferences.filter(
  1810. (r) => r.referenceKind === 'calls'
  1811. );
  1812. expect(callRefs.map((r) => r.referenceName)).toContain('Inc');
  1813. expect(callRefs.map((r) => r.referenceName)).toContain('Validate');
  1814. });
  1815. });
  1816. describe('Full fixture: UTypes.pas', () => {
  1817. const code = `unit UTypes;
  1818. interface
  1819. uses
  1820. System.SysUtils;
  1821. const
  1822. C_MAX_RETRIES = 3;
  1823. C_DEFAULT_NAME = 'Guest';
  1824. type
  1825. TUserRole = (urAdmin, urEditor, urViewer);
  1826. TPoint2D = record
  1827. X: Double;
  1828. Y: Double;
  1829. end;
  1830. TUserName = string;
  1831. TUserInfo = class
  1832. public
  1833. type
  1834. TAddress = record
  1835. Street: string;
  1836. City: string;
  1837. Zip: string;
  1838. end;
  1839. private
  1840. FName: TUserName;
  1841. FRole: TUserRole;
  1842. FAddress: TAddress;
  1843. public
  1844. constructor Create(const AName: TUserName; ARole: TUserRole);
  1845. function GetDisplayName: string;
  1846. class function CreateAdmin(const AName: TUserName): TUserInfo; static;
  1847. property Name: TUserName read FName write FName;
  1848. property Role: TUserRole read FRole;
  1849. property Address: TAddress read FAddress write FAddress;
  1850. end;
  1851. implementation
  1852. constructor TUserInfo.Create(const AName: TUserName; ARole: TUserRole);
  1853. begin
  1854. FName := AName;
  1855. FRole := ARole;
  1856. end;
  1857. function TUserInfo.GetDisplayName: string;
  1858. begin
  1859. if FRole = urAdmin then
  1860. Result := '[Admin] ' + FName
  1861. else
  1862. Result := FName;
  1863. end;
  1864. class function TUserInfo.CreateAdmin(const AName: TUserName): TUserInfo;
  1865. begin
  1866. Result := TUserInfo.Create(AName, urAdmin);
  1867. end;
  1868. end.`;
  1869. it('should extract enums with members', () => {
  1870. const result = extractFromSource('UTypes.pas', code);
  1871. const enumNode = result.nodes.find((n) => n.kind === 'enum');
  1872. expect(enumNode?.name).toBe('TUserRole');
  1873. const members = result.nodes.filter((n) => n.kind === 'enum_member');
  1874. expect(members.length).toBe(3);
  1875. expect(members.map((m) => m.name)).toEqual(['urAdmin', 'urEditor', 'urViewer']);
  1876. });
  1877. it('should extract constants', () => {
  1878. const result = extractFromSource('UTypes.pas', code);
  1879. const constants = result.nodes.filter((n) => n.kind === 'constant');
  1880. expect(constants.length).toBe(2);
  1881. expect(constants.map((c) => c.name)).toContain('C_MAX_RETRIES');
  1882. expect(constants.map((c) => c.name)).toContain('C_DEFAULT_NAME');
  1883. });
  1884. it('should extract type aliases', () => {
  1885. const result = extractFromSource('UTypes.pas', code);
  1886. const aliases = result.nodes.filter((n) => n.kind === 'type_alias');
  1887. expect(aliases.map((a) => a.name)).toContain('TUserName');
  1888. });
  1889. it('should extract records as classes with fields', () => {
  1890. const result = extractFromSource('UTypes.pas', code);
  1891. const classes = result.nodes.filter((n) => n.kind === 'class');
  1892. expect(classes.map((c) => c.name)).toContain('TPoint2D');
  1893. // TPoint2D fields
  1894. const fields = result.nodes.filter((n) => n.kind === 'field');
  1895. expect(fields.map((f) => f.name)).toContain('X');
  1896. expect(fields.map((f) => f.name)).toContain('Y');
  1897. });
  1898. it('should extract static class methods', () => {
  1899. const result = extractFromSource('UTypes.pas', code);
  1900. const methods = result.nodes.filter((n) => n.kind === 'method');
  1901. const staticMethod = methods.find((m) => m.name === 'CreateAdmin');
  1902. expect(staticMethod).toBeDefined();
  1903. expect(staticMethod?.isStatic).toBe(true);
  1904. });
  1905. it('should extract nested types', () => {
  1906. const result = extractFromSource('UTypes.pas', code);
  1907. const classes = result.nodes.filter((n) => n.kind === 'class');
  1908. expect(classes.map((c) => c.name)).toContain('TAddress');
  1909. });
  1910. });
  1911. });
  1912. // =============================================================================
  1913. // DFM/FMX Extraction
  1914. // =============================================================================
  1915. describe('DFM/FMX Extraction', () => {
  1916. it('should extract components from DFM', () => {
  1917. const code = `object Form1: TForm1
  1918. Left = 0
  1919. Top = 0
  1920. Caption = 'My Form'
  1921. object Button1: TButton
  1922. Left = 10
  1923. Top = 10
  1924. Caption = 'Click Me'
  1925. end
  1926. end`;
  1927. const result = extractFromSource('Form1.dfm', code);
  1928. const components = result.nodes.filter((n) => n.kind === 'component');
  1929. expect(components.length).toBe(2);
  1930. expect(components.map((c) => c.name)).toContain('Form1');
  1931. expect(components.map((c) => c.name)).toContain('Button1');
  1932. const button = components.find((c) => c.name === 'Button1');
  1933. expect(button?.signature).toBe('TButton');
  1934. });
  1935. it('should extract nested component hierarchy', () => {
  1936. const code = `object Form1: TForm1
  1937. object Panel1: TPanel
  1938. object Label1: TLabel
  1939. Caption = 'Hello'
  1940. end
  1941. end
  1942. end`;
  1943. const result = extractFromSource('Form1.dfm', code);
  1944. const components = result.nodes.filter((n) => n.kind === 'component');
  1945. expect(components.length).toBe(3);
  1946. // Check nesting: Panel1 contains Label1
  1947. const panel = components.find((c) => c.name === 'Panel1');
  1948. const label = components.find((c) => c.name === 'Label1');
  1949. const containsEdge = result.edges.find(
  1950. (e) => e.source === panel?.id && e.target === label?.id && e.kind === 'contains'
  1951. );
  1952. expect(containsEdge).toBeDefined();
  1953. });
  1954. it('should extract event handler references', () => {
  1955. const code = `object Form1: TForm1
  1956. OnCreate = FormCreate
  1957. OnDestroy = FormDestroy
  1958. object Button1: TButton
  1959. OnClick = Button1Click
  1960. end
  1961. end`;
  1962. const result = extractFromSource('Form1.dfm', code);
  1963. const refs = result.unresolvedReferences;
  1964. expect(refs.length).toBe(3);
  1965. expect(refs.map((r) => r.referenceName)).toContain('FormCreate');
  1966. expect(refs.map((r) => r.referenceName)).toContain('FormDestroy');
  1967. expect(refs.map((r) => r.referenceName)).toContain('Button1Click');
  1968. expect(refs.every((r) => r.referenceKind === 'references')).toBe(true);
  1969. });
  1970. it('should handle multi-line properties', () => {
  1971. const code = `object Form1: TForm1
  1972. SQL.Strings = (
  1973. 'SELECT * FROM users'
  1974. 'WHERE active = 1')
  1975. object Button1: TButton
  1976. OnClick = Button1Click
  1977. end
  1978. end`;
  1979. const result = extractFromSource('Form1.dfm', code);
  1980. const components = result.nodes.filter((n) => n.kind === 'component');
  1981. expect(components.length).toBe(2);
  1982. const refs = result.unresolvedReferences;
  1983. expect(refs.length).toBe(1);
  1984. expect(refs[0]?.referenceName).toBe('Button1Click');
  1985. });
  1986. it('should handle inherited keyword', () => {
  1987. const code = `inherited Form1: TForm1
  1988. Caption = 'Inherited Form'
  1989. object Button1: TButton
  1990. OnClick = Button1Click
  1991. end
  1992. end`;
  1993. const result = extractFromSource('Form1.dfm', code);
  1994. const components = result.nodes.filter((n) => n.kind === 'component');
  1995. expect(components.length).toBe(2);
  1996. expect(components.map((c) => c.name)).toContain('Form1');
  1997. });
  1998. it('should handle item collection properties', () => {
  1999. const code = `object Form1: TForm1
  2000. object StatusBar1: TStatusBar
  2001. Panels = <
  2002. item
  2003. Width = 200
  2004. end
  2005. item
  2006. Width = 200
  2007. end>
  2008. end
  2009. end`;
  2010. const result = extractFromSource('Form1.dfm', code);
  2011. const components = result.nodes.filter((n) => n.kind === 'component');
  2012. expect(components.length).toBe(2);
  2013. });
  2014. describe('Full fixture: MainForm.dfm', () => {
  2015. const code = `object frmMain: TfrmMain
  2016. Left = 0
  2017. Top = 0
  2018. Caption = 'CodeGraph DFM Fixture'
  2019. ClientHeight = 480
  2020. ClientWidth = 640
  2021. OnCreate = FormCreate
  2022. OnDestroy = FormDestroy
  2023. object pnlTop: TPanel
  2024. Left = 0
  2025. Top = 0
  2026. Width = 640
  2027. Height = 50
  2028. object lblTitle: TLabel
  2029. Left = 16
  2030. Top = 16
  2031. Caption = 'Authentication Service'
  2032. end
  2033. object btnLogin: TButton
  2034. Left = 540
  2035. Top = 12
  2036. OnClick = btnLoginClick
  2037. end
  2038. end
  2039. object pnlContent: TPanel
  2040. Left = 0
  2041. Top = 50
  2042. object edtUsername: TEdit
  2043. Left = 16
  2044. Top = 16
  2045. OnChange = edtUsernameChange
  2046. end
  2047. object edtPassword: TEdit
  2048. Left = 16
  2049. Top = 48
  2050. OnKeyPress = edtPasswordKeyPress
  2051. end
  2052. object mmoLog: TMemo
  2053. Left = 16
  2054. Top = 88
  2055. end
  2056. end
  2057. object pnlStatus: TStatusBar
  2058. Left = 0
  2059. Top = 440
  2060. Panels = <
  2061. item
  2062. Width = 200
  2063. end
  2064. item
  2065. Width = 200
  2066. end>
  2067. end
  2068. end`;
  2069. it('should extract all components', () => {
  2070. const result = extractFromSource('MainForm.dfm', code);
  2071. const components = result.nodes.filter((n) => n.kind === 'component');
  2072. expect(components.length).toBe(9);
  2073. expect(components.map((c) => c.name)).toEqual(
  2074. expect.arrayContaining([
  2075. 'frmMain', 'pnlTop', 'lblTitle', 'btnLogin',
  2076. 'pnlContent', 'edtUsername', 'edtPassword', 'mmoLog', 'pnlStatus',
  2077. ])
  2078. );
  2079. });
  2080. it('should extract all event handlers', () => {
  2081. const result = extractFromSource('MainForm.dfm', code);
  2082. const refs = result.unresolvedReferences;
  2083. expect(refs.length).toBe(5);
  2084. expect(refs.map((r) => r.referenceName)).toEqual(
  2085. expect.arrayContaining([
  2086. 'FormCreate', 'FormDestroy', 'btnLoginClick',
  2087. 'edtUsernameChange', 'edtPasswordKeyPress',
  2088. ])
  2089. );
  2090. });
  2091. });
  2092. });
  2093. describe('Full Indexing', () => {
  2094. let tempDir: string;
  2095. beforeEach(() => {
  2096. tempDir = createTempDir();
  2097. });
  2098. afterEach(() => {
  2099. cleanupTempDir(tempDir);
  2100. });
  2101. it('should index a TypeScript file', async () => {
  2102. // Create test file
  2103. const srcDir = path.join(tempDir, 'src');
  2104. fs.mkdirSync(srcDir);
  2105. fs.writeFileSync(
  2106. path.join(srcDir, 'utils.ts'),
  2107. `
  2108. export function add(a: number, b: number): number {
  2109. return a + b;
  2110. }
  2111. export function multiply(a: number, b: number): number {
  2112. return a * b;
  2113. }
  2114. `
  2115. );
  2116. // Initialize and index
  2117. const cg = CodeGraph.initSync(tempDir);
  2118. const result = await cg.indexAll();
  2119. expect(result.success).toBe(true);
  2120. expect(result.filesIndexed).toBe(1);
  2121. expect(result.nodesCreated).toBeGreaterThanOrEqual(2);
  2122. // Check nodes were stored
  2123. const nodes = cg.getNodesInFile('src/utils.ts');
  2124. expect(nodes.length).toBeGreaterThanOrEqual(2);
  2125. const addFunc = nodes.find((n) => n.name === 'add');
  2126. expect(addFunc).toBeDefined();
  2127. expect(addFunc?.kind).toBe('function');
  2128. cg.close();
  2129. });
  2130. it('should index multiple files', async () => {
  2131. // Create test files
  2132. const srcDir = path.join(tempDir, 'src');
  2133. fs.mkdirSync(srcDir);
  2134. fs.writeFileSync(
  2135. path.join(srcDir, 'math.ts'),
  2136. `export function add(a: number, b: number) { return a + b; }`
  2137. );
  2138. fs.writeFileSync(
  2139. path.join(srcDir, 'string.ts'),
  2140. `export function capitalize(s: string) { return s.toUpperCase(); }`
  2141. );
  2142. // Initialize and index
  2143. const cg = CodeGraph.initSync(tempDir);
  2144. const result = await cg.indexAll();
  2145. expect(result.success).toBe(true);
  2146. expect(result.filesIndexed).toBe(2);
  2147. const files = cg.getFiles();
  2148. expect(files.length).toBe(2);
  2149. cg.close();
  2150. });
  2151. it('should track file hashes for incremental updates', async () => {
  2152. // Create initial file
  2153. const srcDir = path.join(tempDir, 'src');
  2154. fs.mkdirSync(srcDir);
  2155. fs.writeFileSync(path.join(srcDir, 'main.ts'), `export const x = 1;`);
  2156. // Initialize and index
  2157. const cg = CodeGraph.initSync(tempDir);
  2158. await cg.indexAll();
  2159. // Check file is tracked
  2160. const file = cg.getFile('src/main.ts');
  2161. expect(file).toBeDefined();
  2162. expect(file?.contentHash).toBeDefined();
  2163. // Modify file
  2164. fs.writeFileSync(path.join(srcDir, 'main.ts'), `export const x = 2;`);
  2165. // Check for changes
  2166. const changes = cg.getChangedFiles();
  2167. expect(changes.modified).toContain('src/main.ts');
  2168. cg.close();
  2169. });
  2170. it('should sync and detect changes', async () => {
  2171. // Create initial file
  2172. const srcDir = path.join(tempDir, 'src');
  2173. fs.mkdirSync(srcDir);
  2174. fs.writeFileSync(
  2175. path.join(srcDir, 'main.ts'),
  2176. `export function original() { return 1; }`
  2177. );
  2178. // Initialize and index
  2179. const cg = CodeGraph.initSync(tempDir);
  2180. await cg.indexAll();
  2181. const initialNodes = cg.getNodesInFile('src/main.ts');
  2182. expect(initialNodes.some((n) => n.name === 'original')).toBe(true);
  2183. // Modify file
  2184. fs.writeFileSync(
  2185. path.join(srcDir, 'main.ts'),
  2186. `export function updated() { return 2; }`
  2187. );
  2188. // Sync
  2189. const syncResult = await cg.sync();
  2190. expect(syncResult.filesModified).toBe(1);
  2191. // Check nodes were updated
  2192. const updatedNodes = cg.getNodesInFile('src/main.ts');
  2193. expect(updatedNodes.some((n) => n.name === 'updated')).toBe(true);
  2194. expect(updatedNodes.some((n) => n.name === 'original')).toBe(false);
  2195. cg.close();
  2196. });
  2197. });
  2198. describe('Path Normalization', () => {
  2199. it('should convert backslashes to forward slashes', () => {
  2200. expect(normalizePath('gui\\node_modules\\foo')).toBe('gui/node_modules/foo');
  2201. expect(normalizePath('src\\components\\Button.tsx')).toBe('src/components/Button.tsx');
  2202. });
  2203. it('should leave forward-slash paths unchanged', () => {
  2204. expect(normalizePath('src/components/Button.tsx')).toBe('src/components/Button.tsx');
  2205. });
  2206. it('should handle empty string', () => {
  2207. expect(normalizePath('')).toBe('');
  2208. });
  2209. });
  2210. describe('Directory Exclusion', () => {
  2211. let tempDir: string;
  2212. beforeEach(() => {
  2213. tempDir = createTempDir();
  2214. });
  2215. afterEach(() => {
  2216. cleanupTempDir(tempDir);
  2217. });
  2218. it('should exclude node_modules directories', () => {
  2219. // Create structure: src/index.ts + node_modules/pkg/index.js
  2220. const srcDir = path.join(tempDir, 'src');
  2221. const nmDir = path.join(tempDir, 'node_modules', 'pkg');
  2222. fs.mkdirSync(srcDir, { recursive: true });
  2223. fs.mkdirSync(nmDir, { recursive: true });
  2224. fs.writeFileSync(path.join(srcDir, 'index.ts'), 'export const x = 1;');
  2225. fs.writeFileSync(path.join(nmDir, 'index.js'), 'module.exports = {};');
  2226. const config = { ...DEFAULT_CONFIG, rootDir: tempDir };
  2227. const files = scanDirectory(tempDir, config);
  2228. expect(files).toContain('src/index.ts');
  2229. expect(files.every((f) => !f.includes('node_modules'))).toBe(true);
  2230. });
  2231. it('should exclude nested node_modules directories', () => {
  2232. // Create structure: packages/app/node_modules/pkg/index.js
  2233. const srcDir = path.join(tempDir, 'packages', 'app', 'src');
  2234. const nmDir = path.join(tempDir, 'packages', 'app', 'node_modules', 'pkg');
  2235. fs.mkdirSync(srcDir, { recursive: true });
  2236. fs.mkdirSync(nmDir, { recursive: true });
  2237. fs.writeFileSync(path.join(srcDir, 'index.ts'), 'export const x = 1;');
  2238. fs.writeFileSync(path.join(nmDir, 'index.js'), 'module.exports = {};');
  2239. const config = { ...DEFAULT_CONFIG, rootDir: tempDir };
  2240. const files = scanDirectory(tempDir, config);
  2241. expect(files).toContain('packages/app/src/index.ts');
  2242. expect(files.every((f) => !f.includes('node_modules'))).toBe(true);
  2243. });
  2244. it('should exclude .git directories', () => {
  2245. const srcDir = path.join(tempDir, 'src');
  2246. const gitDir = path.join(tempDir, '.git', 'objects');
  2247. fs.mkdirSync(srcDir, { recursive: true });
  2248. fs.mkdirSync(gitDir, { recursive: true });
  2249. fs.writeFileSync(path.join(srcDir, 'index.ts'), 'export const x = 1;');
  2250. fs.writeFileSync(path.join(gitDir, 'pack.ts'), 'export const y = 2;');
  2251. const config = { ...DEFAULT_CONFIG, rootDir: tempDir };
  2252. const files = scanDirectory(tempDir, config);
  2253. expect(files).toContain('src/index.ts');
  2254. expect(files.every((f) => !f.includes('.git'))).toBe(true);
  2255. });
  2256. it('should return forward-slash paths on all platforms', () => {
  2257. const srcDir = path.join(tempDir, 'src', 'components');
  2258. fs.mkdirSync(srcDir, { recursive: true });
  2259. fs.writeFileSync(path.join(srcDir, 'Button.tsx'), 'export function Button() {}');
  2260. const config = { ...DEFAULT_CONFIG, rootDir: tempDir };
  2261. const files = scanDirectory(tempDir, config);
  2262. expect(files.length).toBe(1);
  2263. expect(files[0]).toBe('src/components/Button.tsx');
  2264. expect(files[0]).not.toContain('\\');
  2265. });
  2266. it('should respect .codegraphignore marker', () => {
  2267. const srcDir = path.join(tempDir, 'src');
  2268. const vendorDir = path.join(tempDir, 'vendor');
  2269. fs.mkdirSync(srcDir, { recursive: true });
  2270. fs.mkdirSync(vendorDir, { recursive: true });
  2271. fs.writeFileSync(path.join(srcDir, 'index.ts'), 'export const x = 1;');
  2272. fs.writeFileSync(path.join(vendorDir, 'lib.ts'), 'export const y = 2;');
  2273. fs.writeFileSync(path.join(vendorDir, '.codegraphignore'), '');
  2274. const config = { ...DEFAULT_CONFIG, rootDir: tempDir };
  2275. const files = scanDirectory(tempDir, config);
  2276. expect(files).toContain('src/index.ts');
  2277. expect(files.every((f) => !f.includes('vendor'))).toBe(true);
  2278. });
  2279. });