extraction.test.ts 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081
  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. it('should extract impl Trait for Type as implements edges', () => {
  554. const code = `
  555. pub struct MyCache {}
  556. pub trait Cache {
  557. fn get(&self, key: &str) -> Option<String>;
  558. }
  559. impl Cache for MyCache {
  560. fn get(&self, key: &str) -> Option<String> {
  561. None
  562. }
  563. }
  564. `;
  565. const result = extractFromSource('cache.rs', code);
  566. // Should have an unresolved reference for implements
  567. const implRef = result.unresolvedReferences.find(
  568. (r) => r.referenceKind === 'implements' && r.referenceName === 'Cache'
  569. );
  570. expect(implRef).toBeDefined();
  571. // The struct MyCache should be the source
  572. const myCacheNode = result.nodes.find((n) => n.name === 'MyCache' && n.kind === 'struct');
  573. expect(myCacheNode).toBeDefined();
  574. expect(implRef?.fromNodeId).toBe(myCacheNode?.id);
  575. });
  576. it('should extract trait supertraits as extends references', () => {
  577. const code = `
  578. pub trait Display {}
  579. pub trait Error: Display {
  580. fn description(&self) -> &str;
  581. }
  582. `;
  583. const result = extractFromSource('error.rs', code);
  584. const extendsRef = result.unresolvedReferences.find(
  585. (r) => r.referenceKind === 'extends' && r.referenceName === 'Display'
  586. );
  587. expect(extendsRef).toBeDefined();
  588. const errorTrait = result.nodes.find((n) => n.name === 'Error' && n.kind === 'trait');
  589. expect(errorTrait).toBeDefined();
  590. expect(extendsRef?.fromNodeId).toBe(errorTrait?.id);
  591. });
  592. it('should not create implements edges for plain impl blocks', () => {
  593. const code = `
  594. pub struct Counter {
  595. count: u32,
  596. }
  597. impl Counter {
  598. pub fn new() -> Counter {
  599. Counter { count: 0 }
  600. }
  601. pub fn increment(&mut self) {
  602. self.count += 1;
  603. }
  604. }
  605. `;
  606. const result = extractFromSource('counter.rs', code);
  607. // Should have no implements references (no trait involved)
  608. const implRefs = result.unresolvedReferences.filter(
  609. (r) => r.referenceKind === 'implements'
  610. );
  611. expect(implRefs).toHaveLength(0);
  612. });
  613. });
  614. describe('Java Extraction', () => {
  615. it('should extract class declarations', () => {
  616. const code = `
  617. public class UserService {
  618. private final UserRepository repository;
  619. public UserService(UserRepository repository) {
  620. this.repository = repository;
  621. }
  622. public User getUser(String id) {
  623. return repository.findById(id);
  624. }
  625. }
  626. `;
  627. const result = extractFromSource('UserService.java', code);
  628. const classNode = result.nodes.find((n) => n.kind === 'class');
  629. expect(classNode).toBeDefined();
  630. expect(classNode?.name).toBe('UserService');
  631. expect(classNode?.visibility).toBe('public');
  632. });
  633. it('should extract method declarations', () => {
  634. const code = `
  635. public class Calculator {
  636. public static int add(int a, int b) {
  637. return a + b;
  638. }
  639. }
  640. `;
  641. const result = extractFromSource('Calculator.java', code);
  642. const methodNode = result.nodes.find((n) => n.kind === 'method' && n.name === 'add');
  643. expect(methodNode).toBeDefined();
  644. expect(methodNode?.isStatic).toBe(true);
  645. });
  646. });
  647. describe('C# Extraction', () => {
  648. it('should extract class declarations', () => {
  649. const code = `
  650. public class OrderService
  651. {
  652. private readonly IOrderRepository _repository;
  653. public OrderService(IOrderRepository repository)
  654. {
  655. _repository = repository;
  656. }
  657. public async Task<Order> GetOrderAsync(string id)
  658. {
  659. return await _repository.FindByIdAsync(id);
  660. }
  661. }
  662. `;
  663. const result = extractFromSource('OrderService.cs', code);
  664. const classNode = result.nodes.find((n) => n.kind === 'class');
  665. expect(classNode).toBeDefined();
  666. expect(classNode?.name).toBe('OrderService');
  667. expect(classNode?.visibility).toBe('public');
  668. });
  669. });
  670. describe('PHP Extraction', () => {
  671. it('should extract class declarations', () => {
  672. const code = `<?php
  673. class UserController
  674. {
  675. private UserService $userService;
  676. public function __construct(UserService $userService)
  677. {
  678. $this->userService = $userService;
  679. }
  680. public function show(string $id): User
  681. {
  682. return $this->userService->find($id);
  683. }
  684. }
  685. `;
  686. const result = extractFromSource('UserController.php', code);
  687. const classNode = result.nodes.find((n) => n.kind === 'class');
  688. expect(classNode).toBeDefined();
  689. expect(classNode?.name).toBe('UserController');
  690. });
  691. it('should extract class inheritance (extends) and interface implementation', () => {
  692. const code = `<?php
  693. class ChildController extends BaseController implements Serializable, JsonSerializable
  694. {
  695. public function serialize(): string
  696. {
  697. return json_encode($this);
  698. }
  699. }
  700. `;
  701. const result = extractFromSource('ChildController.php', code);
  702. const classNode = result.nodes.find((n) => n.kind === 'class');
  703. expect(classNode).toBeDefined();
  704. expect(classNode?.name).toBe('ChildController');
  705. const extendsRef = result.unresolvedReferences.find(
  706. (r) => r.referenceKind === 'extends'
  707. );
  708. expect(extendsRef).toBeDefined();
  709. expect(extendsRef?.referenceName).toBe('BaseController');
  710. const implementsRefs = result.unresolvedReferences.filter(
  711. (r) => r.referenceKind === 'implements'
  712. );
  713. expect(implementsRefs.length).toBe(2);
  714. expect(implementsRefs.map((r) => r.referenceName)).toContain('Serializable');
  715. expect(implementsRefs.map((r) => r.referenceName)).toContain('JsonSerializable');
  716. });
  717. });
  718. describe('Swift Extraction', () => {
  719. it('should extract class declarations', () => {
  720. const code = `
  721. public class NetworkManager {
  722. private let session: URLSession
  723. public init(session: URLSession = .shared) {
  724. self.session = session
  725. }
  726. public func fetchData(from url: URL) async throws -> Data {
  727. let (data, _) = try await session.data(from: url)
  728. return data
  729. }
  730. }
  731. `;
  732. const result = extractFromSource('NetworkManager.swift', code);
  733. const classNode = result.nodes.find((n) => n.kind === 'class');
  734. expect(classNode).toBeDefined();
  735. expect(classNode?.name).toBe('NetworkManager');
  736. });
  737. it('should extract function declarations', () => {
  738. const code = `
  739. func calculateSum(_ numbers: [Int]) -> Int {
  740. return numbers.reduce(0, +)
  741. }
  742. public func formatCurrency(amount: Double) -> String {
  743. return String(format: "$%.2f", amount)
  744. }
  745. `;
  746. const result = extractFromSource('utils.swift', code);
  747. const functions = result.nodes.filter((n) => n.kind === 'function');
  748. expect(functions.length).toBeGreaterThanOrEqual(1);
  749. });
  750. it('should extract struct declarations', () => {
  751. const code = `
  752. public struct User {
  753. let id: UUID
  754. var name: String
  755. var email: String
  756. func displayName() -> String {
  757. return name
  758. }
  759. }
  760. `;
  761. const result = extractFromSource('User.swift', code);
  762. const structNode = result.nodes.find((n) => n.kind === 'struct');
  763. expect(structNode).toBeDefined();
  764. expect(structNode?.name).toBe('User');
  765. });
  766. it('should extract protocol declarations', () => {
  767. const code = `
  768. public protocol Repository {
  769. associatedtype Entity
  770. func find(id: String) async throws -> Entity?
  771. func save(_ entity: Entity) async throws
  772. }
  773. `;
  774. const result = extractFromSource('Repository.swift', code);
  775. const protocolNode = result.nodes.find((n) => n.kind === 'interface');
  776. expect(protocolNode).toBeDefined();
  777. expect(protocolNode?.name).toBe('Repository');
  778. });
  779. it('should extract class inheritance and protocol conformance', () => {
  780. const code = `
  781. class DataRequest: Request {
  782. func validate() {}
  783. }
  784. class UploadRequest: DataRequest, Sendable {
  785. func upload() {}
  786. }
  787. enum AFError: Error {
  788. case invalidURL
  789. }
  790. struct HTTPMethod: RawRepresentable {
  791. let rawValue: String
  792. }
  793. protocol UploadConvertible: URLRequestConvertible {
  794. func asURLRequest() throws -> URLRequest
  795. }
  796. `;
  797. const result = extractFromSource('Inheritance.swift', code);
  798. const extendsRefs = result.unresolvedReferences.filter(
  799. (r) => r.referenceKind === 'extends'
  800. );
  801. // DataRequest extends Request
  802. expect(extendsRefs.find((r) => r.referenceName === 'Request')).toBeDefined();
  803. // UploadRequest extends DataRequest and Sendable
  804. expect(extendsRefs.find((r) => r.referenceName === 'DataRequest')).toBeDefined();
  805. expect(extendsRefs.find((r) => r.referenceName === 'Sendable')).toBeDefined();
  806. // AFError extends Error
  807. expect(extendsRefs.find((r) => r.referenceName === 'Error')).toBeDefined();
  808. // HTTPMethod extends RawRepresentable
  809. expect(extendsRefs.find((r) => r.referenceName === 'RawRepresentable')).toBeDefined();
  810. // UploadConvertible extends URLRequestConvertible
  811. expect(extendsRefs.find((r) => r.referenceName === 'URLRequestConvertible')).toBeDefined();
  812. });
  813. });
  814. describe('Kotlin Extraction', () => {
  815. it('should extract class declarations', () => {
  816. const code = `
  817. class UserRepository(private val database: Database) {
  818. fun findById(id: String): User? {
  819. return database.query("SELECT * FROM users WHERE id = ?", id)
  820. }
  821. suspend fun save(user: User) {
  822. database.insert(user)
  823. }
  824. }
  825. `;
  826. const result = extractFromSource('UserRepository.kt', code);
  827. const classNode = result.nodes.find((n) => n.kind === 'class');
  828. expect(classNode).toBeDefined();
  829. expect(classNode?.name).toBe('UserRepository');
  830. });
  831. it('should extract function declarations', () => {
  832. const code = `
  833. fun calculateTotal(items: List<Item>): Double {
  834. return items.sumOf { it.price }
  835. }
  836. suspend fun fetchUserData(userId: String): User {
  837. return api.getUser(userId)
  838. }
  839. `;
  840. const result = extractFromSource('utils.kt', code);
  841. const functions = result.nodes.filter((n) => n.kind === 'function');
  842. expect(functions.length).toBeGreaterThanOrEqual(1);
  843. });
  844. it('should detect suspend functions as async', () => {
  845. const code = `
  846. suspend fun loadData(): List<String> {
  847. delay(1000)
  848. return listOf("a", "b", "c")
  849. }
  850. `;
  851. const result = extractFromSource('loader.kt', code);
  852. const funcNode = result.nodes.find((n) => n.kind === 'function');
  853. expect(funcNode).toBeDefined();
  854. expect(funcNode?.isAsync).toBe(true);
  855. });
  856. it('should extract fun interface declarations', () => {
  857. const code = `
  858. fun interface OnObjectRetainedListener {
  859. fun onObjectRetained()
  860. }
  861. `;
  862. const result = extractFromSource('listener.kt', code);
  863. const ifaceNode = result.nodes.find((n) => n.kind === 'interface');
  864. expect(ifaceNode).toBeDefined();
  865. expect(ifaceNode?.name).toBe('OnObjectRetainedListener');
  866. const methodNode = result.nodes.find((n) => n.kind === 'method');
  867. expect(methodNode).toBeDefined();
  868. expect(methodNode?.name).toBe('onObjectRetained');
  869. expect(methodNode?.qualifiedName).toBe('OnObjectRetainedListener::onObjectRetained');
  870. });
  871. it('should extract complex fun interface with nested classes', () => {
  872. const code = `
  873. fun interface EventListener {
  874. fun onEvent(event: Event)
  875. sealed class Event {
  876. class DumpingHeap : Event()
  877. }
  878. }
  879. `;
  880. const result = extractFromSource('events.kt', code);
  881. const ifaceNode = result.nodes.find((n) => n.kind === 'interface');
  882. expect(ifaceNode).toBeDefined();
  883. expect(ifaceNode?.name).toBe('EventListener');
  884. // Nested sealed class should still be extracted (as sibling due to grammar limitations)
  885. const eventClass = result.nodes.find((n) => n.kind === 'class' && n.name === 'Event');
  886. expect(eventClass).toBeDefined();
  887. const dumpingHeap = result.nodes.find((n) => n.kind === 'class' && n.name === 'DumpingHeap');
  888. expect(dumpingHeap).toBeDefined();
  889. });
  890. it('should not affect regular function declarations', () => {
  891. const code = `
  892. fun interface MyCallback {
  893. fun invoke(value: Int)
  894. }
  895. fun regularFunction(): String {
  896. return "hello"
  897. }
  898. `;
  899. const result = extractFromSource('mixed.kt', code);
  900. const ifaceNode = result.nodes.find((n) => n.kind === 'interface');
  901. expect(ifaceNode).toBeDefined();
  902. expect(ifaceNode?.name).toBe('MyCallback');
  903. const funcNode = result.nodes.find((n) => n.kind === 'function');
  904. expect(funcNode).toBeDefined();
  905. expect(funcNode?.name).toBe('regularFunction');
  906. });
  907. it('should extract fun interface with annotation on method (Pattern 2b)', () => {
  908. // When the SAM method has annotations like @Throws, tree-sitter produces a different
  909. // misparse: function_declaration > ERROR("interface Name {") instead of
  910. // function_declaration > user_type("interface"). This is the OkHttp Interceptor pattern.
  911. const code = `
  912. import java.io.IOException
  913. fun interface Interceptor {
  914. @Throws(IOException::class)
  915. fun intercept(chain: Chain): Response
  916. }
  917. `;
  918. const result = extractFromSource('interceptor.kt', code);
  919. const ifaceNode = result.nodes.find((n) => n.kind === 'interface');
  920. expect(ifaceNode).toBeDefined();
  921. expect(ifaceNode?.name).toBe('Interceptor');
  922. });
  923. it('should extract methods from interface with nested fun interface', () => {
  924. // When an interface contains a nested `fun interface`, tree-sitter misparsed
  925. // the parent body as ERROR. Methods inside should still be extracted.
  926. const code = `
  927. interface WebSocket {
  928. fun request(): Request
  929. fun send(text: String): Boolean
  930. fun cancel()
  931. fun interface Factory {
  932. fun newWebSocket(request: Request): WebSocket
  933. }
  934. }
  935. `;
  936. const result = extractFromSource('websocket.kt', code);
  937. const wsIface = result.nodes.find((n) => n.kind === 'interface' && n.name === 'WebSocket');
  938. expect(wsIface).toBeDefined();
  939. const methods = result.nodes.filter((n) => n.kind === 'method' && n.qualifiedName?.startsWith('WebSocket::'));
  940. const methodNames = methods.map((m) => m.name);
  941. expect(methodNames).toContain('request');
  942. expect(methodNames).toContain('send');
  943. expect(methodNames).toContain('cancel');
  944. });
  945. });
  946. describe('Dart Extraction', () => {
  947. it('should extract class declarations', () => {
  948. const code = `
  949. class UserService {
  950. final Database _db;
  951. Future<User> findById(String id) async {
  952. return await _db.query(id);
  953. }
  954. void _privateMethod() {}
  955. }
  956. `;
  957. const result = extractFromSource('service.dart', code);
  958. const classNode = result.nodes.find((n) => n.kind === 'class');
  959. expect(classNode).toBeDefined();
  960. expect(classNode?.name).toBe('UserService');
  961. expect(classNode?.visibility).toBe('public');
  962. const methodNodes = result.nodes.filter((n) => n.kind === 'method');
  963. expect(methodNodes.length).toBeGreaterThanOrEqual(2);
  964. const findById = methodNodes.find((m) => m.name === 'findById');
  965. expect(findById).toBeDefined();
  966. expect(findById?.isAsync).toBe(true);
  967. const privateMethod = methodNodes.find((m) => m.name === '_privateMethod');
  968. expect(privateMethod).toBeDefined();
  969. expect(privateMethod?.visibility).toBe('private');
  970. });
  971. it('should extract top-level function declarations', () => {
  972. const code = `
  973. void topLevelFunction(String name) {
  974. print(name);
  975. }
  976. `;
  977. const result = extractFromSource('utils.dart', code);
  978. const funcNode = result.nodes.find((n) => n.kind === 'function');
  979. expect(funcNode).toBeDefined();
  980. expect(funcNode?.name).toBe('topLevelFunction');
  981. expect(funcNode?.language).toBe('dart');
  982. });
  983. it('should extract enum declarations', () => {
  984. const code = `
  985. enum Status { active, inactive, pending }
  986. `;
  987. const result = extractFromSource('models.dart', code);
  988. const enumNode = result.nodes.find((n) => n.kind === 'enum');
  989. expect(enumNode).toBeDefined();
  990. expect(enumNode?.name).toBe('Status');
  991. });
  992. it('should extract mixin declarations', () => {
  993. const code = `
  994. mixin LoggerMixin {
  995. void log(String message) {}
  996. }
  997. `;
  998. const result = extractFromSource('mixins.dart', code);
  999. const classNode = result.nodes.find((n) => n.kind === 'class');
  1000. expect(classNode).toBeDefined();
  1001. expect(classNode?.name).toBe('LoggerMixin');
  1002. const methodNode = result.nodes.find((n) => n.kind === 'method');
  1003. expect(methodNode).toBeDefined();
  1004. expect(methodNode?.name).toBe('log');
  1005. });
  1006. it('should extract extension declarations', () => {
  1007. const code = `
  1008. extension StringExt on String {
  1009. bool get isBlank => trim().isEmpty;
  1010. }
  1011. `;
  1012. const result = extractFromSource('extensions.dart', code);
  1013. const classNode = result.nodes.find((n) => n.kind === 'class');
  1014. expect(classNode).toBeDefined();
  1015. expect(classNode?.name).toBe('StringExt');
  1016. });
  1017. it('should detect static methods', () => {
  1018. const code = `
  1019. class Utils {
  1020. static void doWork() {}
  1021. }
  1022. `;
  1023. const result = extractFromSource('utils.dart', code);
  1024. const methodNode = result.nodes.find((n) => n.kind === 'method');
  1025. expect(methodNode).toBeDefined();
  1026. expect(methodNode?.name).toBe('doWork');
  1027. expect(methodNode?.isStatic).toBe(true);
  1028. });
  1029. it('should detect async functions', () => {
  1030. const code = `
  1031. Future<String> fetchData() async {
  1032. return await http.get('/data');
  1033. }
  1034. `;
  1035. const result = extractFromSource('api.dart', code);
  1036. const funcNode = result.nodes.find((n) => n.kind === 'function');
  1037. expect(funcNode).toBeDefined();
  1038. expect(funcNode?.name).toBe('fetchData');
  1039. expect(funcNode?.isAsync).toBe(true);
  1040. });
  1041. it('should detect private visibility via underscore convention', () => {
  1042. const code = `
  1043. void _privateHelper() {}
  1044. void publicFunction() {}
  1045. `;
  1046. const result = extractFromSource('helpers.dart', code);
  1047. const functions = result.nodes.filter((n) => n.kind === 'function');
  1048. const privateFunc = functions.find((f) => f.name === '_privateHelper');
  1049. const publicFunc = functions.find((f) => f.name === 'publicFunction');
  1050. expect(privateFunc?.visibility).toBe('private');
  1051. expect(publicFunc?.visibility).toBe('public');
  1052. });
  1053. });
  1054. describe('Import Extraction', () => {
  1055. describe('TypeScript/JavaScript imports', () => {
  1056. it('should extract default imports', () => {
  1057. const code = `import React from 'react';`;
  1058. const result = extractFromSource('app.tsx', code);
  1059. const importNode = result.nodes.find((n) => n.kind === 'import');
  1060. expect(importNode).toBeDefined();
  1061. expect(importNode?.name).toBe('react');
  1062. expect(importNode?.signature).toBe("import React from 'react';");
  1063. });
  1064. it('should extract named imports', () => {
  1065. const code = `import { Bug, Database } from '@phosphor-icons/react';`;
  1066. const result = extractFromSource('icons.tsx', code);
  1067. const importNode = result.nodes.find((n) => n.kind === 'import');
  1068. expect(importNode).toBeDefined();
  1069. expect(importNode?.name).toBe('@phosphor-icons/react');
  1070. expect(importNode?.signature).toContain('Bug');
  1071. expect(importNode?.signature).toContain('Database');
  1072. });
  1073. it('should extract namespace imports', () => {
  1074. const code = `import * as Icons from '@phosphor-icons/react';`;
  1075. const result = extractFromSource('icons.tsx', code);
  1076. const importNode = result.nodes.find((n) => n.kind === 'import');
  1077. expect(importNode).toBeDefined();
  1078. expect(importNode?.name).toBe('@phosphor-icons/react');
  1079. expect(importNode?.signature).toContain('* as Icons');
  1080. });
  1081. it('should extract side-effect imports', () => {
  1082. const code = `import './styles.css';`;
  1083. const result = extractFromSource('app.tsx', code);
  1084. const importNode = result.nodes.find((n) => n.kind === 'import');
  1085. expect(importNode).toBeDefined();
  1086. expect(importNode?.name).toBe('./styles.css');
  1087. });
  1088. it('should extract mixed imports (default + named)', () => {
  1089. const code = `import React, { useState, useEffect } from 'react';`;
  1090. const result = extractFromSource('app.tsx', code);
  1091. const importNode = result.nodes.find((n) => n.kind === 'import');
  1092. expect(importNode).toBeDefined();
  1093. expect(importNode?.name).toBe('react');
  1094. expect(importNode?.signature).toContain('React');
  1095. expect(importNode?.signature).toContain('useState');
  1096. expect(importNode?.signature).toContain('useEffect');
  1097. });
  1098. it('should extract multiple import statements', () => {
  1099. const code = `
  1100. import React from 'react';
  1101. import { Button } from './components';
  1102. import './styles.css';
  1103. `;
  1104. const result = extractFromSource('app.tsx', code);
  1105. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1106. expect(importNodes.length).toBe(3);
  1107. const names = importNodes.map((n) => n.name);
  1108. expect(names).toContain('react');
  1109. expect(names).toContain('./components');
  1110. expect(names).toContain('./styles.css');
  1111. });
  1112. it('should extract type imports', () => {
  1113. const code = `import type { FC, ReactNode } from 'react';`;
  1114. const result = extractFromSource('types.ts', code);
  1115. const importNode = result.nodes.find((n) => n.kind === 'import');
  1116. expect(importNode).toBeDefined();
  1117. expect(importNode?.name).toBe('react');
  1118. expect(importNode?.signature).toContain('type');
  1119. expect(importNode?.signature).toContain('FC');
  1120. });
  1121. it('should extract aliased named imports', () => {
  1122. const code = `import { useState as useStateAlias } from 'react';`;
  1123. const result = extractFromSource('hooks.ts', code);
  1124. const importNode = result.nodes.find((n) => n.kind === 'import');
  1125. expect(importNode).toBeDefined();
  1126. expect(importNode?.name).toBe('react');
  1127. expect(importNode?.signature).toContain('useState');
  1128. expect(importNode?.signature).toContain('useStateAlias');
  1129. });
  1130. it('should extract relative path imports', () => {
  1131. const code = `import { helper } from '../utils/helper';`;
  1132. const result = extractFromSource('components/Button.tsx', code);
  1133. const importNode = result.nodes.find((n) => n.kind === 'import');
  1134. expect(importNode).toBeDefined();
  1135. expect(importNode?.name).toBe('../utils/helper');
  1136. expect(importNode?.signature).toContain('helper');
  1137. });
  1138. });
  1139. describe('Python imports', () => {
  1140. it('should extract simple import statement', () => {
  1141. const code = `import json`;
  1142. const result = extractFromSource('utils.py', code);
  1143. const importNode = result.nodes.find((n) => n.kind === 'import');
  1144. expect(importNode).toBeDefined();
  1145. expect(importNode?.name).toBe('json');
  1146. });
  1147. it('should extract from import statement', () => {
  1148. const code = `from os import path`;
  1149. const result = extractFromSource('utils.py', code);
  1150. const importNode = result.nodes.find((n) => n.kind === 'import');
  1151. expect(importNode).toBeDefined();
  1152. expect(importNode?.name).toBe('os');
  1153. expect(importNode?.signature).toContain('path');
  1154. });
  1155. it('should extract multiple imports from same module', () => {
  1156. const code = `from typing import List, Dict, Optional`;
  1157. const result = extractFromSource('types.py', code);
  1158. const importNode = result.nodes.find((n) => n.kind === 'import');
  1159. expect(importNode).toBeDefined();
  1160. expect(importNode?.name).toBe('typing');
  1161. expect(importNode?.signature).toContain('List');
  1162. expect(importNode?.signature).toContain('Dict');
  1163. });
  1164. it('should extract multiple import statements', () => {
  1165. const code = `
  1166. import os
  1167. import sys
  1168. `;
  1169. const result = extractFromSource('main.py', code);
  1170. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1171. expect(importNodes.length).toBe(2);
  1172. const names = importNodes.map((n) => n.name);
  1173. expect(names).toContain('os');
  1174. expect(names).toContain('sys');
  1175. });
  1176. it('should extract aliased import', () => {
  1177. const code = `import numpy as np`;
  1178. const result = extractFromSource('data.py', code);
  1179. const importNode = result.nodes.find((n) => n.kind === 'import');
  1180. expect(importNode).toBeDefined();
  1181. expect(importNode?.name).toBe('numpy');
  1182. expect(importNode?.signature).toContain('as np');
  1183. });
  1184. it('should extract relative import', () => {
  1185. const code = `from .utils import helper`;
  1186. const result = extractFromSource('module.py', code);
  1187. const importNode = result.nodes.find((n) => n.kind === 'import');
  1188. expect(importNode).toBeDefined();
  1189. expect(importNode?.name).toBe('.utils');
  1190. expect(importNode?.signature).toContain('helper');
  1191. });
  1192. it('should extract wildcard import', () => {
  1193. const code = `from typing import *`;
  1194. const result = extractFromSource('types.py', code);
  1195. const importNode = result.nodes.find((n) => n.kind === 'import');
  1196. expect(importNode).toBeDefined();
  1197. expect(importNode?.name).toBe('typing');
  1198. expect(importNode?.signature).toContain('*');
  1199. });
  1200. });
  1201. describe('Rust imports', () => {
  1202. it('should extract simple use declaration', () => {
  1203. const code = `use std::io;`;
  1204. const result = extractFromSource('main.rs', code);
  1205. const importNode = result.nodes.find((n) => n.kind === 'import');
  1206. expect(importNode).toBeDefined();
  1207. expect(importNode?.name).toBe('std');
  1208. expect(importNode?.signature).toBe('use std::io;');
  1209. });
  1210. it('should extract scoped use list', () => {
  1211. const code = `use std::{ffi::OsStr, io, path::Path};`;
  1212. const result = extractFromSource('main.rs', code);
  1213. const importNode = result.nodes.find((n) => n.kind === 'import');
  1214. expect(importNode).toBeDefined();
  1215. expect(importNode?.name).toBe('std');
  1216. expect(importNode?.signature).toContain('ffi::OsStr');
  1217. expect(importNode?.signature).toContain('path::Path');
  1218. });
  1219. it('should extract crate imports', () => {
  1220. const code = `use crate::error::Error;`;
  1221. const result = extractFromSource('lib.rs', code);
  1222. const importNode = result.nodes.find((n) => n.kind === 'import');
  1223. expect(importNode).toBeDefined();
  1224. expect(importNode?.name).toBe('crate');
  1225. });
  1226. it('should extract super imports', () => {
  1227. const code = `use super::utils;`;
  1228. const result = extractFromSource('submod.rs', code);
  1229. const importNode = result.nodes.find((n) => n.kind === 'import');
  1230. expect(importNode).toBeDefined();
  1231. expect(importNode?.name).toBe('super');
  1232. });
  1233. it('should extract external crate imports', () => {
  1234. const code = `use serde::{Serialize, Deserialize};`;
  1235. const result = extractFromSource('types.rs', code);
  1236. const importNode = result.nodes.find((n) => n.kind === 'import');
  1237. expect(importNode).toBeDefined();
  1238. expect(importNode?.name).toBe('serde');
  1239. expect(importNode?.signature).toContain('Serialize');
  1240. expect(importNode?.signature).toContain('Deserialize');
  1241. });
  1242. });
  1243. describe('Go imports', () => {
  1244. it('should extract single import', () => {
  1245. const code = `
  1246. package main
  1247. import "fmt"
  1248. `;
  1249. const result = extractFromSource('main.go', code);
  1250. const importNode = result.nodes.find((n) => n.kind === 'import');
  1251. expect(importNode).toBeDefined();
  1252. expect(importNode?.name).toBe('fmt');
  1253. });
  1254. it('should extract grouped imports', () => {
  1255. const code = `
  1256. package main
  1257. import (
  1258. "fmt"
  1259. "os"
  1260. "encoding/json"
  1261. )
  1262. `;
  1263. const result = extractFromSource('main.go', code);
  1264. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1265. expect(importNodes.length).toBe(3);
  1266. const names = importNodes.map((n) => n.name);
  1267. expect(names).toContain('fmt');
  1268. expect(names).toContain('os');
  1269. expect(names).toContain('encoding/json');
  1270. });
  1271. it('should extract aliased import', () => {
  1272. const code = `
  1273. package main
  1274. import f "fmt"
  1275. `;
  1276. const result = extractFromSource('main.go', code);
  1277. const importNode = result.nodes.find((n) => n.kind === 'import');
  1278. expect(importNode).toBeDefined();
  1279. expect(importNode?.name).toBe('fmt');
  1280. expect(importNode?.signature).toContain('f');
  1281. });
  1282. it('should extract dot import', () => {
  1283. const code = `
  1284. package main
  1285. import . "math"
  1286. `;
  1287. const result = extractFromSource('main.go', code);
  1288. const importNode = result.nodes.find((n) => n.kind === 'import');
  1289. expect(importNode).toBeDefined();
  1290. expect(importNode?.name).toBe('math');
  1291. expect(importNode?.signature).toContain('.');
  1292. });
  1293. it('should extract blank import', () => {
  1294. const code = `
  1295. package main
  1296. import _ "github.com/go-sql-driver/mysql"
  1297. `;
  1298. const result = extractFromSource('main.go', code);
  1299. const importNode = result.nodes.find((n) => n.kind === 'import');
  1300. expect(importNode).toBeDefined();
  1301. expect(importNode?.name).toBe('github.com/go-sql-driver/mysql');
  1302. expect(importNode?.signature).toContain('_');
  1303. });
  1304. });
  1305. describe('Swift imports', () => {
  1306. it('should extract simple import', () => {
  1307. const code = `import Foundation`;
  1308. const result = extractFromSource('main.swift', code);
  1309. const importNode = result.nodes.find((n) => n.kind === 'import');
  1310. expect(importNode).toBeDefined();
  1311. expect(importNode?.name).toBe('Foundation');
  1312. expect(importNode?.signature).toBe('import Foundation');
  1313. });
  1314. it('should extract @testable import', () => {
  1315. const code = `@testable import Alamofire`;
  1316. const result = extractFromSource('Tests.swift', code);
  1317. const importNode = result.nodes.find((n) => n.kind === 'import');
  1318. expect(importNode).toBeDefined();
  1319. expect(importNode?.name).toBe('Alamofire');
  1320. expect(importNode?.signature).toContain('@testable');
  1321. });
  1322. it('should extract @preconcurrency import', () => {
  1323. const code = `@preconcurrency import Security`;
  1324. const result = extractFromSource('Auth.swift', code);
  1325. const importNode = result.nodes.find((n) => n.kind === 'import');
  1326. expect(importNode).toBeDefined();
  1327. expect(importNode?.name).toBe('Security');
  1328. });
  1329. it('should extract multiple imports', () => {
  1330. const code = `
  1331. import Foundation
  1332. import UIKit
  1333. import Alamofire
  1334. `;
  1335. const result = extractFromSource('App.swift', code);
  1336. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1337. expect(importNodes.length).toBe(3);
  1338. const names = importNodes.map((n) => n.name);
  1339. expect(names).toContain('Foundation');
  1340. expect(names).toContain('UIKit');
  1341. expect(names).toContain('Alamofire');
  1342. });
  1343. });
  1344. describe('Kotlin imports', () => {
  1345. it('should extract simple import', () => {
  1346. const code = `import java.io.IOException`;
  1347. const result = extractFromSource('Main.kt', code);
  1348. const importNode = result.nodes.find((n) => n.kind === 'import');
  1349. expect(importNode).toBeDefined();
  1350. expect(importNode?.name).toBe('java.io.IOException');
  1351. expect(importNode?.signature).toBe('import java.io.IOException');
  1352. });
  1353. it('should extract aliased import', () => {
  1354. const code = `import okhttp3.Request.Builder as RequestBuilder`;
  1355. const result = extractFromSource('Utils.kt', code);
  1356. const importNode = result.nodes.find((n) => n.kind === 'import');
  1357. expect(importNode).toBeDefined();
  1358. expect(importNode?.name).toBe('okhttp3.Request.Builder');
  1359. expect(importNode?.signature).toContain('as RequestBuilder');
  1360. });
  1361. it('should extract wildcard import', () => {
  1362. const code = `import java.util.concurrent.TimeUnit.*`;
  1363. const result = extractFromSource('Time.kt', code);
  1364. const importNode = result.nodes.find((n) => n.kind === 'import');
  1365. expect(importNode).toBeDefined();
  1366. expect(importNode?.name).toBe('java.util.concurrent.TimeUnit');
  1367. expect(importNode?.signature).toContain('.*');
  1368. });
  1369. it('should extract multiple imports', () => {
  1370. const code = `
  1371. import java.io.IOException
  1372. import kotlin.test.assertFailsWith
  1373. import okhttp3.OkHttpClient
  1374. `;
  1375. const result = extractFromSource('Test.kt', code);
  1376. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1377. expect(importNodes.length).toBe(3);
  1378. const names = importNodes.map((n) => n.name);
  1379. expect(names).toContain('java.io.IOException');
  1380. expect(names).toContain('kotlin.test.assertFailsWith');
  1381. expect(names).toContain('okhttp3.OkHttpClient');
  1382. });
  1383. });
  1384. describe('Java imports', () => {
  1385. it('should extract simple import', () => {
  1386. const code = `import java.util.List;`;
  1387. const result = extractFromSource('Main.java', code);
  1388. const importNode = result.nodes.find((n) => n.kind === 'import');
  1389. expect(importNode).toBeDefined();
  1390. expect(importNode?.name).toBe('java.util.List');
  1391. expect(importNode?.signature).toBe('import java.util.List;');
  1392. });
  1393. it('should extract static import', () => {
  1394. const code = `import static java.util.Collections.emptyList;`;
  1395. const result = extractFromSource('Utils.java', code);
  1396. const importNode = result.nodes.find((n) => n.kind === 'import');
  1397. expect(importNode).toBeDefined();
  1398. expect(importNode?.name).toBe('java.util.Collections.emptyList');
  1399. expect(importNode?.signature).toContain('static');
  1400. });
  1401. it('should extract wildcard import', () => {
  1402. const code = `import java.util.*;`;
  1403. const result = extractFromSource('App.java', code);
  1404. const importNode = result.nodes.find((n) => n.kind === 'import');
  1405. expect(importNode).toBeDefined();
  1406. expect(importNode?.name).toBe('java.util');
  1407. expect(importNode?.signature).toContain('.*');
  1408. });
  1409. it('should extract nested class import', () => {
  1410. const code = `import java.util.Map.Entry;`;
  1411. const result = extractFromSource('MapUtil.java', code);
  1412. const importNode = result.nodes.find((n) => n.kind === 'import');
  1413. expect(importNode).toBeDefined();
  1414. expect(importNode?.name).toBe('java.util.Map.Entry');
  1415. });
  1416. it('should extract multiple imports', () => {
  1417. const code = `
  1418. import java.util.List;
  1419. import java.util.Map;
  1420. import java.io.IOException;
  1421. `;
  1422. const result = extractFromSource('Service.java', code);
  1423. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1424. expect(importNodes.length).toBe(3);
  1425. const names = importNodes.map((n) => n.name);
  1426. expect(names).toContain('java.util.List');
  1427. expect(names).toContain('java.util.Map');
  1428. expect(names).toContain('java.io.IOException');
  1429. });
  1430. });
  1431. describe('C# imports', () => {
  1432. it('should extract simple using', () => {
  1433. const code = `using System;`;
  1434. const result = extractFromSource('Program.cs', code);
  1435. const importNode = result.nodes.find((n) => n.kind === 'import');
  1436. expect(importNode).toBeDefined();
  1437. expect(importNode?.name).toBe('System');
  1438. expect(importNode?.signature).toBe('using System;');
  1439. });
  1440. it('should extract qualified using', () => {
  1441. const code = `using System.Collections.Generic;`;
  1442. const result = extractFromSource('Utils.cs', code);
  1443. const importNode = result.nodes.find((n) => n.kind === 'import');
  1444. expect(importNode).toBeDefined();
  1445. expect(importNode?.name).toBe('System.Collections.Generic');
  1446. });
  1447. it('should extract static using', () => {
  1448. const code = `using static System.Console;`;
  1449. const result = extractFromSource('App.cs', code);
  1450. const importNode = result.nodes.find((n) => n.kind === 'import');
  1451. expect(importNode).toBeDefined();
  1452. expect(importNode?.name).toBe('System.Console');
  1453. expect(importNode?.signature).toContain('static');
  1454. });
  1455. it('should extract alias using', () => {
  1456. const code = `using MyList = System.Collections.Generic.List<int>;`;
  1457. const result = extractFromSource('Types.cs', code);
  1458. const importNode = result.nodes.find((n) => n.kind === 'import');
  1459. expect(importNode).toBeDefined();
  1460. expect(importNode?.name).toBe('System.Collections.Generic.List<int>');
  1461. expect(importNode?.signature).toContain('MyList =');
  1462. });
  1463. it('should extract multiple usings', () => {
  1464. const code = `
  1465. using System;
  1466. using System.Threading.Tasks;
  1467. using Microsoft.Extensions.DependencyInjection;
  1468. `;
  1469. const result = extractFromSource('Service.cs', code);
  1470. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1471. expect(importNodes.length).toBe(3);
  1472. const names = importNodes.map((n) => n.name);
  1473. expect(names).toContain('System');
  1474. expect(names).toContain('System.Threading.Tasks');
  1475. expect(names).toContain('Microsoft.Extensions.DependencyInjection');
  1476. });
  1477. });
  1478. describe('PHP imports', () => {
  1479. it('should extract simple use', () => {
  1480. const code = `<?php use PHPUnit\\Framework\\TestCase;`;
  1481. const result = extractFromSource('Test.php', code);
  1482. const importNode = result.nodes.find((n) => n.kind === 'import');
  1483. expect(importNode).toBeDefined();
  1484. expect(importNode?.name).toBe('PHPUnit\\Framework\\TestCase');
  1485. });
  1486. it('should extract aliased use', () => {
  1487. const code = `<?php use Mockery as m;`;
  1488. const result = extractFromSource('Test.php', code);
  1489. const importNode = result.nodes.find((n) => n.kind === 'import');
  1490. expect(importNode).toBeDefined();
  1491. expect(importNode?.name).toBe('Mockery');
  1492. expect(importNode?.signature).toContain('as m');
  1493. });
  1494. it('should extract function use', () => {
  1495. const code = `<?php use function Illuminate\\Support\\env;`;
  1496. const result = extractFromSource('helpers.php', code);
  1497. const importNode = result.nodes.find((n) => n.kind === 'import');
  1498. expect(importNode).toBeDefined();
  1499. expect(importNode?.name).toBe('Illuminate\\Support\\env');
  1500. expect(importNode?.signature).toContain('function');
  1501. });
  1502. it('should extract grouped use', () => {
  1503. const code = `<?php use Illuminate\\Database\\{Model, Builder};`;
  1504. const result = extractFromSource('Models.php', code);
  1505. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1506. expect(importNodes.length).toBe(2);
  1507. const names = importNodes.map((n) => n.name);
  1508. expect(names).toContain('Illuminate\\Database\\Model');
  1509. expect(names).toContain('Illuminate\\Database\\Builder');
  1510. });
  1511. it('should extract multiple uses', () => {
  1512. const code = `<?php
  1513. use Illuminate\\Support\\Collection;
  1514. use Illuminate\\Support\\Str;
  1515. use Closure;
  1516. `;
  1517. const result = extractFromSource('Service.php', code);
  1518. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1519. expect(importNodes.length).toBe(3);
  1520. const names = importNodes.map((n) => n.name);
  1521. expect(names).toContain('Illuminate\\Support\\Collection');
  1522. expect(names).toContain('Illuminate\\Support\\Str');
  1523. expect(names).toContain('Closure');
  1524. });
  1525. });
  1526. describe('Ruby imports', () => {
  1527. it('should extract require', () => {
  1528. const code = `require 'json'`;
  1529. const result = extractFromSource('app.rb', code);
  1530. const importNode = result.nodes.find((n) => n.kind === 'import');
  1531. expect(importNode).toBeDefined();
  1532. expect(importNode?.name).toBe('json');
  1533. expect(importNode?.signature).toBe("require 'json'");
  1534. });
  1535. it('should extract require with path', () => {
  1536. const code = `require 'active_support/core_ext/string'`;
  1537. const result = extractFromSource('config.rb', code);
  1538. const importNode = result.nodes.find((n) => n.kind === 'import');
  1539. expect(importNode).toBeDefined();
  1540. expect(importNode?.name).toBe('active_support/core_ext/string');
  1541. });
  1542. it('should extract require_relative', () => {
  1543. const code = `require_relative '../test_helper'`;
  1544. const result = extractFromSource('test/my_test.rb', code);
  1545. const importNode = result.nodes.find((n) => n.kind === 'import');
  1546. expect(importNode).toBeDefined();
  1547. expect(importNode?.name).toBe('../test_helper');
  1548. expect(importNode?.signature).toContain('require_relative');
  1549. });
  1550. it('should not extract non-require calls', () => {
  1551. const code = `puts 'hello'`;
  1552. const result = extractFromSource('app.rb', code);
  1553. const importNode = result.nodes.find((n) => n.kind === 'import');
  1554. expect(importNode).toBeUndefined();
  1555. });
  1556. it('should extract multiple requires', () => {
  1557. const code = `
  1558. require 'json'
  1559. require 'yaml'
  1560. require_relative 'helper'
  1561. `;
  1562. const result = extractFromSource('lib.rb', code);
  1563. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1564. expect(importNodes.length).toBe(3);
  1565. const names = importNodes.map((n) => n.name);
  1566. expect(names).toContain('json');
  1567. expect(names).toContain('yaml');
  1568. expect(names).toContain('helper');
  1569. });
  1570. });
  1571. describe('Ruby modules', () => {
  1572. it('should extract module as module node with containment', () => {
  1573. const code = `
  1574. module CachedCounting
  1575. def self.disable
  1576. @enabled = false
  1577. end
  1578. def perform_increment!(key, count)
  1579. write_cache!(key, count)
  1580. end
  1581. end
  1582. `;
  1583. const result = extractFromSource('concerns/cached_counting.rb', code);
  1584. const moduleNode = result.nodes.find((n) => n.kind === 'module' && n.name === 'CachedCounting');
  1585. expect(moduleNode).toBeDefined();
  1586. expect(moduleNode?.qualifiedName).toBe('CachedCounting');
  1587. // Methods inside module should have module-qualified names
  1588. const disableMethod = result.nodes.find((n) => n.name === 'disable' && n.kind === 'method');
  1589. expect(disableMethod).toBeDefined();
  1590. expect(disableMethod?.qualifiedName).toBe('CachedCounting::disable');
  1591. const incrementMethod = result.nodes.find((n) => n.name === 'perform_increment!' && n.kind === 'method');
  1592. expect(incrementMethod).toBeDefined();
  1593. expect(incrementMethod?.qualifiedName).toBe('CachedCounting::perform_increment!');
  1594. // Containment edge from module to methods
  1595. const containsEdges = result.edges.filter((e) => e.source === moduleNode?.id && e.kind === 'contains');
  1596. expect(containsEdges.length).toBeGreaterThanOrEqual(2);
  1597. });
  1598. it('should handle nested modules with classes', () => {
  1599. const code = `
  1600. module Discourse
  1601. module Auth
  1602. class AuthProvider
  1603. def authenticate(params)
  1604. validate(params)
  1605. end
  1606. end
  1607. end
  1608. end
  1609. `;
  1610. const result = extractFromSource('lib/auth.rb', code);
  1611. const discourseModule = result.nodes.find((n) => n.kind === 'module' && n.name === 'Discourse');
  1612. expect(discourseModule).toBeDefined();
  1613. const authModule = result.nodes.find((n) => n.kind === 'module' && n.name === 'Auth');
  1614. expect(authModule).toBeDefined();
  1615. expect(authModule?.qualifiedName).toBe('Discourse::Auth');
  1616. const authProvider = result.nodes.find((n) => n.kind === 'class' && n.name === 'AuthProvider');
  1617. expect(authProvider).toBeDefined();
  1618. expect(authProvider?.qualifiedName).toBe('Discourse::Auth::AuthProvider');
  1619. const authMethod = result.nodes.find((n) => n.name === 'authenticate');
  1620. expect(authMethod).toBeDefined();
  1621. expect(authMethod?.qualifiedName).toBe('Discourse::Auth::AuthProvider::authenticate');
  1622. });
  1623. });
  1624. describe('C/C++ imports', () => {
  1625. it('should extract system include', () => {
  1626. const code = `#include <iostream>`;
  1627. const result = extractFromSource('main.cpp', code);
  1628. const importNode = result.nodes.find((n) => n.kind === 'import');
  1629. expect(importNode).toBeDefined();
  1630. expect(importNode?.name).toBe('iostream');
  1631. expect(importNode?.signature).toBe('#include <iostream>');
  1632. });
  1633. it('should extract system include with path', () => {
  1634. const code = `#include <nlohmann/json.hpp>`;
  1635. const result = extractFromSource('app.cpp', code);
  1636. const importNode = result.nodes.find((n) => n.kind === 'import');
  1637. expect(importNode).toBeDefined();
  1638. expect(importNode?.name).toBe('nlohmann/json.hpp');
  1639. });
  1640. it('should extract local include', () => {
  1641. const code = `#include "myheader.h"`;
  1642. const result = extractFromSource('main.cpp', code);
  1643. const importNode = result.nodes.find((n) => n.kind === 'import');
  1644. expect(importNode).toBeDefined();
  1645. expect(importNode?.name).toBe('myheader.h');
  1646. });
  1647. it('should extract C header', () => {
  1648. const code = `#include <stdio.h>`;
  1649. const result = extractFromSource('main.c', code);
  1650. const importNode = result.nodes.find((n) => n.kind === 'import');
  1651. expect(importNode).toBeDefined();
  1652. expect(importNode?.name).toBe('stdio.h');
  1653. });
  1654. it('should extract multiple includes', () => {
  1655. const code = `
  1656. #include <iostream>
  1657. #include <vector>
  1658. #include "config.h"
  1659. `;
  1660. const result = extractFromSource('app.cpp', code);
  1661. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1662. expect(importNodes.length).toBe(3);
  1663. const names = importNodes.map((n) => n.name);
  1664. expect(names).toContain('iostream');
  1665. expect(names).toContain('vector');
  1666. expect(names).toContain('config.h');
  1667. });
  1668. });
  1669. describe('Dart imports', () => {
  1670. it('should extract dart: import', () => {
  1671. const code = `import 'dart:async';`;
  1672. const result = extractFromSource('main.dart', code);
  1673. const importNode = result.nodes.find((n) => n.kind === 'import');
  1674. expect(importNode).toBeDefined();
  1675. expect(importNode?.name).toBe('dart:async');
  1676. expect(importNode?.signature).toBe("import 'dart:async';");
  1677. });
  1678. it('should extract package import', () => {
  1679. const code = `import 'package:flutter/material.dart';`;
  1680. const result = extractFromSource('app.dart', code);
  1681. const importNode = result.nodes.find((n) => n.kind === 'import');
  1682. expect(importNode).toBeDefined();
  1683. expect(importNode?.name).toBe('package:flutter/material.dart');
  1684. });
  1685. it('should extract aliased import', () => {
  1686. const code = `import 'package:http/http.dart' as http;`;
  1687. const result = extractFromSource('api.dart', code);
  1688. const importNode = result.nodes.find((n) => n.kind === 'import');
  1689. expect(importNode).toBeDefined();
  1690. expect(importNode?.name).toBe('package:http/http.dart');
  1691. expect(importNode?.signature).toContain('as http');
  1692. });
  1693. it('should extract multiple imports', () => {
  1694. const code = `
  1695. import 'dart:async';
  1696. import 'dart:convert';
  1697. import 'package:flutter/material.dart';
  1698. `;
  1699. const result = extractFromSource('main.dart', code);
  1700. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1701. expect(importNodes.length).toBe(3);
  1702. const names = importNodes.map((n) => n.name);
  1703. expect(names).toContain('dart:async');
  1704. expect(names).toContain('dart:convert');
  1705. expect(names).toContain('package:flutter/material.dart');
  1706. });
  1707. it('should extract relative import', () => {
  1708. const code = `import '../utils/helpers.dart';`;
  1709. const result = extractFromSource('lib/main.dart', code);
  1710. const importNode = result.nodes.find((n) => n.kind === 'import');
  1711. expect(importNode).toBeDefined();
  1712. expect(importNode?.name).toBe('../utils/helpers.dart');
  1713. });
  1714. });
  1715. describe('Liquid imports', () => {
  1716. it('should extract render tag', () => {
  1717. const code = `{% render 'loading-spinner' %}`;
  1718. const result = extractFromSource('template.liquid', code);
  1719. const importNode = result.nodes.find((n) => n.kind === 'import');
  1720. expect(importNode).toBeDefined();
  1721. expect(importNode?.name).toBe('loading-spinner');
  1722. expect(importNode?.signature).toContain('render');
  1723. });
  1724. it('should extract section tag', () => {
  1725. const code = `{% section 'header' %}`;
  1726. const result = extractFromSource('layout/theme.liquid', code);
  1727. const importNode = result.nodes.find((n) => n.kind === 'import');
  1728. expect(importNode).toBeDefined();
  1729. expect(importNode?.name).toBe('header');
  1730. expect(importNode?.signature).toContain('section');
  1731. });
  1732. it('should extract include tag', () => {
  1733. const code = `{% include 'icon-cart' %}`;
  1734. const result = extractFromSource('snippets/header.liquid', code);
  1735. const importNode = result.nodes.find((n) => n.kind === 'import');
  1736. expect(importNode).toBeDefined();
  1737. expect(importNode?.name).toBe('icon-cart');
  1738. expect(importNode?.signature).toContain('include');
  1739. });
  1740. it('should extract render with whitespace control', () => {
  1741. const code = `{%- render 'price' -%}`;
  1742. const result = extractFromSource('snippets/product.liquid', code);
  1743. const importNode = result.nodes.find((n) => n.kind === 'import');
  1744. expect(importNode).toBeDefined();
  1745. expect(importNode?.name).toBe('price');
  1746. });
  1747. it('should extract multiple imports', () => {
  1748. const code = `
  1749. {% section 'header' %}
  1750. {% render 'loading-spinner' %}
  1751. {% render 'cart-drawer' %}
  1752. `;
  1753. const result = extractFromSource('layout/theme.liquid', code);
  1754. const importNodes = result.nodes.filter((n) => n.kind === 'import');
  1755. expect(importNodes.length).toBe(3);
  1756. const names = importNodes.map((n) => n.name);
  1757. expect(names).toContain('header');
  1758. expect(names).toContain('loading-spinner');
  1759. expect(names).toContain('cart-drawer');
  1760. });
  1761. });
  1762. });
  1763. // =============================================================================
  1764. // Pascal / Delphi Extraction
  1765. // =============================================================================
  1766. describe('Pascal / Delphi Extraction', () => {
  1767. describe('Language detection', () => {
  1768. it('should detect Pascal files', () => {
  1769. expect(detectLanguage('UAuth.pas')).toBe('pascal');
  1770. expect(detectLanguage('App.dpr')).toBe('pascal');
  1771. expect(detectLanguage('Package.dpk')).toBe('pascal');
  1772. expect(detectLanguage('App.lpr')).toBe('pascal');
  1773. expect(detectLanguage('MainForm.dfm')).toBe('pascal');
  1774. expect(detectLanguage('MainForm.fmx')).toBe('pascal');
  1775. });
  1776. it('should report Pascal as supported', () => {
  1777. expect(isLanguageSupported('pascal')).toBe(true);
  1778. expect(getSupportedLanguages()).toContain('pascal');
  1779. });
  1780. });
  1781. describe('Unit extraction', () => {
  1782. it('should extract unit as module', () => {
  1783. const code = `unit MyUnit;\ninterface\nimplementation\nend.`;
  1784. const result = extractFromSource('MyUnit.pas', code);
  1785. const moduleNode = result.nodes.find((n) => n.kind === 'module');
  1786. expect(moduleNode).toBeDefined();
  1787. expect(moduleNode?.name).toBe('MyUnit');
  1788. expect(moduleNode?.language).toBe('pascal');
  1789. });
  1790. it('should extract program as module', () => {
  1791. const code = `program MyApp;\nbegin\nend.`;
  1792. const result = extractFromSource('MyApp.dpr', code);
  1793. const moduleNode = result.nodes.find((n) => n.kind === 'module');
  1794. expect(moduleNode).toBeDefined();
  1795. expect(moduleNode?.name).toBe('MyApp');
  1796. });
  1797. it('should fallback to filename when module name is empty', () => {
  1798. // Some .dpr templates use "program;" without a name
  1799. const code = `program;\nuses SysUtils;\nbegin\nend.`;
  1800. const result = extractFromSource('Console.dpr', code);
  1801. const moduleNode = result.nodes.find((n) => n.kind === 'module');
  1802. expect(moduleNode).toBeDefined();
  1803. expect(moduleNode?.name).toBe('Console');
  1804. });
  1805. });
  1806. describe('Uses clause (imports)', () => {
  1807. it('should extract uses as individual imports', () => {
  1808. const code = `unit Test;\ninterface\nuses\n System.SysUtils,\n System.Classes;\nimplementation\nend.`;
  1809. const result = extractFromSource('Test.pas', code);
  1810. const imports = result.nodes.filter((n) => n.kind === 'import');
  1811. expect(imports.length).toBe(2);
  1812. expect(imports.map((n) => n.name)).toContain('System.SysUtils');
  1813. expect(imports.map((n) => n.name)).toContain('System.Classes');
  1814. });
  1815. it('should create unresolved references for imports', () => {
  1816. const code = `unit Test;\ninterface\nuses\n UAuth;\nimplementation\nend.`;
  1817. const result = extractFromSource('Test.pas', code);
  1818. const importRef = result.unresolvedReferences.find(
  1819. (r) => r.referenceKind === 'imports'
  1820. );
  1821. expect(importRef).toBeDefined();
  1822. expect(importRef?.referenceName).toBe('UAuth');
  1823. });
  1824. });
  1825. describe('Class extraction', () => {
  1826. it('should extract class declarations', () => {
  1827. const code = `unit Test;\ninterface\ntype\n TMyClass = class\n public\n procedure DoSomething;\n end;\nimplementation\nend.`;
  1828. const result = extractFromSource('Test.pas', code);
  1829. const classNode = result.nodes.find((n) => n.kind === 'class');
  1830. expect(classNode).toBeDefined();
  1831. expect(classNode?.name).toBe('TMyClass');
  1832. });
  1833. it('should extract class with inheritance', () => {
  1834. const code = `unit Test;\ninterface\ntype\n TChild = class(TParent)\n end;\nimplementation\nend.`;
  1835. const result = extractFromSource('Test.pas', code);
  1836. const extendsRef = result.unresolvedReferences.find(
  1837. (r) => r.referenceKind === 'extends'
  1838. );
  1839. expect(extendsRef).toBeDefined();
  1840. expect(extendsRef?.referenceName).toBe('TParent');
  1841. });
  1842. it('should extract class with interface implementation', () => {
  1843. const code = `unit Test;\ninterface\ntype\n TService = class(TInterfacedObject, ILogger)\n end;\nimplementation\nend.`;
  1844. const result = extractFromSource('Test.pas', code);
  1845. const extendsRef = result.unresolvedReferences.find(
  1846. (r) => r.referenceKind === 'extends'
  1847. );
  1848. const implementsRef = result.unresolvedReferences.find(
  1849. (r) => r.referenceKind === 'implements'
  1850. );
  1851. expect(extendsRef?.referenceName).toBe('TInterfacedObject');
  1852. expect(implementsRef?.referenceName).toBe('ILogger');
  1853. });
  1854. });
  1855. describe('Record extraction', () => {
  1856. it('should extract records as class nodes', () => {
  1857. const code = `unit Test;\ninterface\ntype\n TPoint = record\n X: Double;\n Y: Double;\n end;\nimplementation\nend.`;
  1858. const result = extractFromSource('Test.pas', code);
  1859. const classNode = result.nodes.find((n) => n.kind === 'class');
  1860. expect(classNode).toBeDefined();
  1861. expect(classNode?.name).toBe('TPoint');
  1862. const fields = result.nodes.filter((n) => n.kind === 'field');
  1863. expect(fields.length).toBe(2);
  1864. expect(fields.map((f) => f.name)).toContain('X');
  1865. expect(fields.map((f) => f.name)).toContain('Y');
  1866. });
  1867. });
  1868. describe('Interface extraction', () => {
  1869. it('should extract interface declarations', () => {
  1870. const code = `unit Test;\ninterface\ntype\n ILogger = interface\n procedure Log(const AMsg: string);\n end;\nimplementation\nend.`;
  1871. const result = extractFromSource('Test.pas', code);
  1872. const ifaceNode = result.nodes.find((n) => n.kind === 'interface');
  1873. expect(ifaceNode).toBeDefined();
  1874. expect(ifaceNode?.name).toBe('ILogger');
  1875. });
  1876. });
  1877. describe('Method extraction', () => {
  1878. it('should extract methods with visibility', () => {
  1879. 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.`;
  1880. const result = extractFromSource('Test.pas', code);
  1881. const methods = result.nodes.filter((n) => n.kind === 'method');
  1882. expect(methods.length).toBe(2);
  1883. const createMethod = methods.find((m) => m.name === 'Create');
  1884. expect(createMethod?.visibility).toBe('public');
  1885. const getValue = methods.find((m) => m.name === 'GetValue');
  1886. expect(getValue?.visibility).toBe('public');
  1887. const fields = result.nodes.filter((n) => n.kind === 'field');
  1888. const fValue = fields.find((f) => f.name === 'FValue');
  1889. expect(fValue?.visibility).toBe('private');
  1890. });
  1891. it('should detect static methods (class methods)', () => {
  1892. const code = `unit Test;\ninterface\ntype\n THelper = class\n public\n class function Create: THelper; static;\n end;\nimplementation\nend.`;
  1893. const result = extractFromSource('Test.pas', code);
  1894. const methods = result.nodes.filter((n) => n.kind === 'method');
  1895. const staticMethod = methods.find((m) => m.name === 'Create');
  1896. expect(staticMethod?.isStatic).toBe(true);
  1897. });
  1898. });
  1899. describe('Enum extraction', () => {
  1900. it('should extract enums with members', () => {
  1901. const code = `unit Test;\ninterface\ntype\n TColor = (clRed, clGreen, clBlue);\nimplementation\nend.`;
  1902. const result = extractFromSource('Test.pas', code);
  1903. const enumNode = result.nodes.find((n) => n.kind === 'enum');
  1904. expect(enumNode).toBeDefined();
  1905. expect(enumNode?.name).toBe('TColor');
  1906. const members = result.nodes.filter((n) => n.kind === 'enum_member');
  1907. expect(members.length).toBe(3);
  1908. expect(members.map((m) => m.name)).toEqual(['clRed', 'clGreen', 'clBlue']);
  1909. });
  1910. });
  1911. describe('Property extraction', () => {
  1912. it('should extract properties', () => {
  1913. const code = `unit Test;\ninterface\ntype\n TObj = class\n public\n property Name: string read FName write FName;\n end;\nimplementation\nend.`;
  1914. const result = extractFromSource('Test.pas', code);
  1915. const propNode = result.nodes.find((n) => n.kind === 'property');
  1916. expect(propNode).toBeDefined();
  1917. expect(propNode?.name).toBe('Name');
  1918. expect(propNode?.visibility).toBe('public');
  1919. });
  1920. });
  1921. describe('Constant extraction', () => {
  1922. it('should extract constants', () => {
  1923. const code = `unit Test;\ninterface\nconst\n MAX_RETRIES = 3;\n APP_NAME = 'MyApp';\nimplementation\nend.`;
  1924. const result = extractFromSource('Test.pas', code);
  1925. const constants = result.nodes.filter((n) => n.kind === 'constant');
  1926. expect(constants.length).toBe(2);
  1927. expect(constants.map((c) => c.name)).toContain('MAX_RETRIES');
  1928. expect(constants.map((c) => c.name)).toContain('APP_NAME');
  1929. });
  1930. });
  1931. describe('Type alias extraction', () => {
  1932. it('should extract type aliases', () => {
  1933. const code = `unit Test;\ninterface\ntype\n TUserName = string;\nimplementation\nend.`;
  1934. const result = extractFromSource('Test.pas', code);
  1935. const aliasNode = result.nodes.find((n) => n.kind === 'type_alias');
  1936. expect(aliasNode).toBeDefined();
  1937. expect(aliasNode?.name).toBe('TUserName');
  1938. });
  1939. });
  1940. describe('Call extraction', () => {
  1941. it('should extract calls from implementation bodies', () => {
  1942. 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.`;
  1943. const result = extractFromSource('Test.pas', code);
  1944. const callRef = result.unresolvedReferences.find(
  1945. (r) => r.referenceKind === 'calls'
  1946. );
  1947. expect(callRef).toBeDefined();
  1948. expect(callRef?.referenceName).toBe('WriteLn');
  1949. });
  1950. });
  1951. describe('Containment edges', () => {
  1952. it('should create contains edges for class members', () => {
  1953. const code = `unit Test;\ninterface\ntype\n TObj = class\n public\n procedure Foo;\n end;\nimplementation\nend.`;
  1954. const result = extractFromSource('Test.pas', code);
  1955. const classNode = result.nodes.find((n) => n.kind === 'class');
  1956. const methodNode = result.nodes.find((n) => n.kind === 'method');
  1957. expect(classNode).toBeDefined();
  1958. expect(methodNode).toBeDefined();
  1959. const containsEdge = result.edges.find(
  1960. (e) => e.source === classNode?.id && e.target === methodNode?.id && e.kind === 'contains'
  1961. );
  1962. expect(containsEdge).toBeDefined();
  1963. });
  1964. });
  1965. describe('Full fixture: UAuth.pas', () => {
  1966. const code = `unit UAuth;
  1967. interface
  1968. uses
  1969. System.SysUtils,
  1970. System.Classes;
  1971. type
  1972. ITokenValidator = interface
  1973. ['{11111111-1111-1111-1111-111111111111}']
  1974. function Validate(const AToken: string): Boolean;
  1975. end;
  1976. TAuthService = class(TInterfacedObject, ITokenValidator)
  1977. private
  1978. FToken: string;
  1979. FLoginCount: Integer;
  1980. procedure IncLoginCount;
  1981. protected
  1982. function GetToken: string;
  1983. public
  1984. constructor Create;
  1985. destructor Destroy; override;
  1986. function Validate(const AToken: string): Boolean;
  1987. function Login(const AUser, APass: string): string;
  1988. property Token: string read GetToken;
  1989. property LoginCount: Integer read FLoginCount;
  1990. end;
  1991. implementation
  1992. constructor TAuthService.Create;
  1993. begin
  1994. inherited Create;
  1995. FToken := '';
  1996. FLoginCount := 0;
  1997. end;
  1998. destructor TAuthService.Destroy;
  1999. begin
  2000. FToken := '';
  2001. inherited Destroy;
  2002. end;
  2003. procedure TAuthService.IncLoginCount;
  2004. begin
  2005. Inc(FLoginCount);
  2006. end;
  2007. function TAuthService.GetToken: string;
  2008. begin
  2009. Result := FToken;
  2010. end;
  2011. function TAuthService.Validate(const AToken: string): Boolean;
  2012. begin
  2013. Result := AToken <> '';
  2014. end;
  2015. function TAuthService.Login(const AUser, APass: string): string;
  2016. begin
  2017. IncLoginCount;
  2018. if Validate(AUser + ':' + APass) then
  2019. begin
  2020. FToken := AUser;
  2021. Result := 'ok';
  2022. end
  2023. else
  2024. Result := '';
  2025. end;
  2026. end.`;
  2027. it('should extract all expected nodes', () => {
  2028. const result = extractFromSource('UAuth.pas', code);
  2029. expect(result.errors).toHaveLength(0);
  2030. // Module
  2031. const moduleNode = result.nodes.find((n) => n.kind === 'module');
  2032. expect(moduleNode?.name).toBe('UAuth');
  2033. // Imports
  2034. const imports = result.nodes.filter((n) => n.kind === 'import');
  2035. expect(imports.length).toBe(2);
  2036. // Interface
  2037. const ifaceNode = result.nodes.find((n) => n.kind === 'interface');
  2038. expect(ifaceNode?.name).toBe('ITokenValidator');
  2039. // Class
  2040. const classNode = result.nodes.find((n) => n.kind === 'class');
  2041. expect(classNode?.name).toBe('TAuthService');
  2042. // Methods
  2043. const methods = result.nodes.filter((n) => n.kind === 'method');
  2044. expect(methods.length).toBeGreaterThanOrEqual(6);
  2045. expect(methods.map((m) => m.name)).toContain('Create');
  2046. expect(methods.map((m) => m.name)).toContain('Destroy');
  2047. expect(methods.map((m) => m.name)).toContain('Login');
  2048. // Fields
  2049. const fields = result.nodes.filter((n) => n.kind === 'field');
  2050. expect(fields.length).toBe(2);
  2051. expect(fields.every((f) => f.visibility === 'private')).toBe(true);
  2052. // Properties
  2053. const props = result.nodes.filter((n) => n.kind === 'property');
  2054. expect(props.length).toBe(2);
  2055. expect(props.map((p) => p.name)).toContain('Token');
  2056. expect(props.map((p) => p.name)).toContain('LoginCount');
  2057. });
  2058. it('should extract inheritance and interface implementation', () => {
  2059. const result = extractFromSource('UAuth.pas', code);
  2060. const extendsRef = result.unresolvedReferences.find(
  2061. (r) => r.referenceKind === 'extends'
  2062. );
  2063. expect(extendsRef?.referenceName).toBe('TInterfacedObject');
  2064. const implementsRef = result.unresolvedReferences.find(
  2065. (r) => r.referenceKind === 'implements'
  2066. );
  2067. expect(implementsRef?.referenceName).toBe('ITokenValidator');
  2068. });
  2069. it('should extract calls from implementation', () => {
  2070. const result = extractFromSource('UAuth.pas', code);
  2071. const callRefs = result.unresolvedReferences.filter(
  2072. (r) => r.referenceKind === 'calls'
  2073. );
  2074. expect(callRefs.map((r) => r.referenceName)).toContain('Inc');
  2075. expect(callRefs.map((r) => r.referenceName)).toContain('Validate');
  2076. });
  2077. });
  2078. describe('Full fixture: UTypes.pas', () => {
  2079. const code = `unit UTypes;
  2080. interface
  2081. uses
  2082. System.SysUtils;
  2083. const
  2084. C_MAX_RETRIES = 3;
  2085. C_DEFAULT_NAME = 'Guest';
  2086. type
  2087. TUserRole = (urAdmin, urEditor, urViewer);
  2088. TPoint2D = record
  2089. X: Double;
  2090. Y: Double;
  2091. end;
  2092. TUserName = string;
  2093. TUserInfo = class
  2094. public
  2095. type
  2096. TAddress = record
  2097. Street: string;
  2098. City: string;
  2099. Zip: string;
  2100. end;
  2101. private
  2102. FName: TUserName;
  2103. FRole: TUserRole;
  2104. FAddress: TAddress;
  2105. public
  2106. constructor Create(const AName: TUserName; ARole: TUserRole);
  2107. function GetDisplayName: string;
  2108. class function CreateAdmin(const AName: TUserName): TUserInfo; static;
  2109. property Name: TUserName read FName write FName;
  2110. property Role: TUserRole read FRole;
  2111. property Address: TAddress read FAddress write FAddress;
  2112. end;
  2113. implementation
  2114. constructor TUserInfo.Create(const AName: TUserName; ARole: TUserRole);
  2115. begin
  2116. FName := AName;
  2117. FRole := ARole;
  2118. end;
  2119. function TUserInfo.GetDisplayName: string;
  2120. begin
  2121. if FRole = urAdmin then
  2122. Result := '[Admin] ' + FName
  2123. else
  2124. Result := FName;
  2125. end;
  2126. class function TUserInfo.CreateAdmin(const AName: TUserName): TUserInfo;
  2127. begin
  2128. Result := TUserInfo.Create(AName, urAdmin);
  2129. end;
  2130. end.`;
  2131. it('should extract enums with members', () => {
  2132. const result = extractFromSource('UTypes.pas', code);
  2133. const enumNode = result.nodes.find((n) => n.kind === 'enum');
  2134. expect(enumNode?.name).toBe('TUserRole');
  2135. const members = result.nodes.filter((n) => n.kind === 'enum_member');
  2136. expect(members.length).toBe(3);
  2137. expect(members.map((m) => m.name)).toEqual(['urAdmin', 'urEditor', 'urViewer']);
  2138. });
  2139. it('should extract constants', () => {
  2140. const result = extractFromSource('UTypes.pas', code);
  2141. const constants = result.nodes.filter((n) => n.kind === 'constant');
  2142. expect(constants.length).toBe(2);
  2143. expect(constants.map((c) => c.name)).toContain('C_MAX_RETRIES');
  2144. expect(constants.map((c) => c.name)).toContain('C_DEFAULT_NAME');
  2145. });
  2146. it('should extract type aliases', () => {
  2147. const result = extractFromSource('UTypes.pas', code);
  2148. const aliases = result.nodes.filter((n) => n.kind === 'type_alias');
  2149. expect(aliases.map((a) => a.name)).toContain('TUserName');
  2150. });
  2151. it('should extract records as classes with fields', () => {
  2152. const result = extractFromSource('UTypes.pas', code);
  2153. const classes = result.nodes.filter((n) => n.kind === 'class');
  2154. expect(classes.map((c) => c.name)).toContain('TPoint2D');
  2155. // TPoint2D fields
  2156. const fields = result.nodes.filter((n) => n.kind === 'field');
  2157. expect(fields.map((f) => f.name)).toContain('X');
  2158. expect(fields.map((f) => f.name)).toContain('Y');
  2159. });
  2160. it('should extract static class methods', () => {
  2161. const result = extractFromSource('UTypes.pas', code);
  2162. const methods = result.nodes.filter((n) => n.kind === 'method');
  2163. const staticMethod = methods.find((m) => m.name === 'CreateAdmin');
  2164. expect(staticMethod).toBeDefined();
  2165. expect(staticMethod?.isStatic).toBe(true);
  2166. });
  2167. it('should extract nested types', () => {
  2168. const result = extractFromSource('UTypes.pas', code);
  2169. const classes = result.nodes.filter((n) => n.kind === 'class');
  2170. expect(classes.map((c) => c.name)).toContain('TAddress');
  2171. });
  2172. });
  2173. });
  2174. // =============================================================================
  2175. // DFM/FMX Extraction
  2176. // =============================================================================
  2177. describe('DFM/FMX Extraction', () => {
  2178. it('should extract components from DFM', () => {
  2179. const code = `object Form1: TForm1
  2180. Left = 0
  2181. Top = 0
  2182. Caption = 'My Form'
  2183. object Button1: TButton
  2184. Left = 10
  2185. Top = 10
  2186. Caption = 'Click Me'
  2187. end
  2188. end`;
  2189. const result = extractFromSource('Form1.dfm', code);
  2190. const components = result.nodes.filter((n) => n.kind === 'component');
  2191. expect(components.length).toBe(2);
  2192. expect(components.map((c) => c.name)).toContain('Form1');
  2193. expect(components.map((c) => c.name)).toContain('Button1');
  2194. const button = components.find((c) => c.name === 'Button1');
  2195. expect(button?.signature).toBe('TButton');
  2196. });
  2197. it('should extract nested component hierarchy', () => {
  2198. const code = `object Form1: TForm1
  2199. object Panel1: TPanel
  2200. object Label1: TLabel
  2201. Caption = 'Hello'
  2202. end
  2203. end
  2204. end`;
  2205. const result = extractFromSource('Form1.dfm', code);
  2206. const components = result.nodes.filter((n) => n.kind === 'component');
  2207. expect(components.length).toBe(3);
  2208. // Check nesting: Panel1 contains Label1
  2209. const panel = components.find((c) => c.name === 'Panel1');
  2210. const label = components.find((c) => c.name === 'Label1');
  2211. const containsEdge = result.edges.find(
  2212. (e) => e.source === panel?.id && e.target === label?.id && e.kind === 'contains'
  2213. );
  2214. expect(containsEdge).toBeDefined();
  2215. });
  2216. it('should extract event handler references', () => {
  2217. const code = `object Form1: TForm1
  2218. OnCreate = FormCreate
  2219. OnDestroy = FormDestroy
  2220. object Button1: TButton
  2221. OnClick = Button1Click
  2222. end
  2223. end`;
  2224. const result = extractFromSource('Form1.dfm', code);
  2225. const refs = result.unresolvedReferences;
  2226. expect(refs.length).toBe(3);
  2227. expect(refs.map((r) => r.referenceName)).toContain('FormCreate');
  2228. expect(refs.map((r) => r.referenceName)).toContain('FormDestroy');
  2229. expect(refs.map((r) => r.referenceName)).toContain('Button1Click');
  2230. expect(refs.every((r) => r.referenceKind === 'references')).toBe(true);
  2231. });
  2232. it('should handle multi-line properties', () => {
  2233. const code = `object Form1: TForm1
  2234. SQL.Strings = (
  2235. 'SELECT * FROM users'
  2236. 'WHERE active = 1')
  2237. object Button1: TButton
  2238. OnClick = Button1Click
  2239. end
  2240. end`;
  2241. const result = extractFromSource('Form1.dfm', code);
  2242. const components = result.nodes.filter((n) => n.kind === 'component');
  2243. expect(components.length).toBe(2);
  2244. const refs = result.unresolvedReferences;
  2245. expect(refs.length).toBe(1);
  2246. expect(refs[0]?.referenceName).toBe('Button1Click');
  2247. });
  2248. it('should handle inherited keyword', () => {
  2249. const code = `inherited Form1: TForm1
  2250. Caption = 'Inherited Form'
  2251. object Button1: TButton
  2252. OnClick = Button1Click
  2253. end
  2254. end`;
  2255. const result = extractFromSource('Form1.dfm', code);
  2256. const components = result.nodes.filter((n) => n.kind === 'component');
  2257. expect(components.length).toBe(2);
  2258. expect(components.map((c) => c.name)).toContain('Form1');
  2259. });
  2260. it('should handle item collection properties', () => {
  2261. const code = `object Form1: TForm1
  2262. object StatusBar1: TStatusBar
  2263. Panels = <
  2264. item
  2265. Width = 200
  2266. end
  2267. item
  2268. Width = 200
  2269. end>
  2270. end
  2271. end`;
  2272. const result = extractFromSource('Form1.dfm', code);
  2273. const components = result.nodes.filter((n) => n.kind === 'component');
  2274. expect(components.length).toBe(2);
  2275. });
  2276. describe('Full fixture: MainForm.dfm', () => {
  2277. const code = `object frmMain: TfrmMain
  2278. Left = 0
  2279. Top = 0
  2280. Caption = 'CodeGraph DFM Fixture'
  2281. ClientHeight = 480
  2282. ClientWidth = 640
  2283. OnCreate = FormCreate
  2284. OnDestroy = FormDestroy
  2285. object pnlTop: TPanel
  2286. Left = 0
  2287. Top = 0
  2288. Width = 640
  2289. Height = 50
  2290. object lblTitle: TLabel
  2291. Left = 16
  2292. Top = 16
  2293. Caption = 'Authentication Service'
  2294. end
  2295. object btnLogin: TButton
  2296. Left = 540
  2297. Top = 12
  2298. OnClick = btnLoginClick
  2299. end
  2300. end
  2301. object pnlContent: TPanel
  2302. Left = 0
  2303. Top = 50
  2304. object edtUsername: TEdit
  2305. Left = 16
  2306. Top = 16
  2307. OnChange = edtUsernameChange
  2308. end
  2309. object edtPassword: TEdit
  2310. Left = 16
  2311. Top = 48
  2312. OnKeyPress = edtPasswordKeyPress
  2313. end
  2314. object mmoLog: TMemo
  2315. Left = 16
  2316. Top = 88
  2317. end
  2318. end
  2319. object pnlStatus: TStatusBar
  2320. Left = 0
  2321. Top = 440
  2322. Panels = <
  2323. item
  2324. Width = 200
  2325. end
  2326. item
  2327. Width = 200
  2328. end>
  2329. end
  2330. end`;
  2331. it('should extract all components', () => {
  2332. const result = extractFromSource('MainForm.dfm', code);
  2333. const components = result.nodes.filter((n) => n.kind === 'component');
  2334. expect(components.length).toBe(9);
  2335. expect(components.map((c) => c.name)).toEqual(
  2336. expect.arrayContaining([
  2337. 'frmMain', 'pnlTop', 'lblTitle', 'btnLogin',
  2338. 'pnlContent', 'edtUsername', 'edtPassword', 'mmoLog', 'pnlStatus',
  2339. ])
  2340. );
  2341. });
  2342. it('should extract all event handlers', () => {
  2343. const result = extractFromSource('MainForm.dfm', code);
  2344. const refs = result.unresolvedReferences;
  2345. expect(refs.length).toBe(5);
  2346. expect(refs.map((r) => r.referenceName)).toEqual(
  2347. expect.arrayContaining([
  2348. 'FormCreate', 'FormDestroy', 'btnLoginClick',
  2349. 'edtUsernameChange', 'edtPasswordKeyPress',
  2350. ])
  2351. );
  2352. });
  2353. });
  2354. });
  2355. describe('Full Indexing', () => {
  2356. let tempDir: string;
  2357. beforeEach(() => {
  2358. tempDir = createTempDir();
  2359. });
  2360. afterEach(() => {
  2361. cleanupTempDir(tempDir);
  2362. });
  2363. it('should index a TypeScript file', async () => {
  2364. // Create test file
  2365. const srcDir = path.join(tempDir, 'src');
  2366. fs.mkdirSync(srcDir);
  2367. fs.writeFileSync(
  2368. path.join(srcDir, 'utils.ts'),
  2369. `
  2370. export function add(a: number, b: number): number {
  2371. return a + b;
  2372. }
  2373. export function multiply(a: number, b: number): number {
  2374. return a * b;
  2375. }
  2376. `
  2377. );
  2378. // Initialize and index
  2379. const cg = CodeGraph.initSync(tempDir);
  2380. const result = await cg.indexAll();
  2381. expect(result.success).toBe(true);
  2382. expect(result.filesIndexed).toBe(1);
  2383. expect(result.nodesCreated).toBeGreaterThanOrEqual(2);
  2384. // Check nodes were stored
  2385. const nodes = cg.getNodesInFile('src/utils.ts');
  2386. expect(nodes.length).toBeGreaterThanOrEqual(2);
  2387. const addFunc = nodes.find((n) => n.name === 'add');
  2388. expect(addFunc).toBeDefined();
  2389. expect(addFunc?.kind).toBe('function');
  2390. cg.close();
  2391. });
  2392. it('should index multiple files', async () => {
  2393. // Create test files
  2394. const srcDir = path.join(tempDir, 'src');
  2395. fs.mkdirSync(srcDir);
  2396. fs.writeFileSync(
  2397. path.join(srcDir, 'math.ts'),
  2398. `export function add(a: number, b: number) { return a + b; }`
  2399. );
  2400. fs.writeFileSync(
  2401. path.join(srcDir, 'string.ts'),
  2402. `export function capitalize(s: string) { return s.toUpperCase(); }`
  2403. );
  2404. // Initialize and index
  2405. const cg = CodeGraph.initSync(tempDir);
  2406. const result = await cg.indexAll();
  2407. expect(result.success).toBe(true);
  2408. expect(result.filesIndexed).toBe(2);
  2409. const files = cg.getFiles();
  2410. expect(files.length).toBe(2);
  2411. cg.close();
  2412. });
  2413. it('should track file hashes for incremental updates', async () => {
  2414. // Create initial file
  2415. const srcDir = path.join(tempDir, 'src');
  2416. fs.mkdirSync(srcDir);
  2417. fs.writeFileSync(path.join(srcDir, 'main.ts'), `export const x = 1;`);
  2418. // Initialize and index
  2419. const cg = CodeGraph.initSync(tempDir);
  2420. await cg.indexAll();
  2421. // Check file is tracked
  2422. const file = cg.getFile('src/main.ts');
  2423. expect(file).toBeDefined();
  2424. expect(file?.contentHash).toBeDefined();
  2425. // Modify file
  2426. fs.writeFileSync(path.join(srcDir, 'main.ts'), `export const x = 2;`);
  2427. // Check for changes
  2428. const changes = cg.getChangedFiles();
  2429. expect(changes.modified).toContain('src/main.ts');
  2430. cg.close();
  2431. });
  2432. it('should sync and detect changes', async () => {
  2433. // Create initial file
  2434. const srcDir = path.join(tempDir, 'src');
  2435. fs.mkdirSync(srcDir);
  2436. fs.writeFileSync(
  2437. path.join(srcDir, 'main.ts'),
  2438. `export function original() { return 1; }`
  2439. );
  2440. // Initialize and index
  2441. const cg = CodeGraph.initSync(tempDir);
  2442. await cg.indexAll();
  2443. const initialNodes = cg.getNodesInFile('src/main.ts');
  2444. expect(initialNodes.some((n) => n.name === 'original')).toBe(true);
  2445. // Modify file
  2446. fs.writeFileSync(
  2447. path.join(srcDir, 'main.ts'),
  2448. `export function updated() { return 2; }`
  2449. );
  2450. // Sync
  2451. const syncResult = await cg.sync();
  2452. expect(syncResult.filesModified).toBe(1);
  2453. // Check nodes were updated
  2454. const updatedNodes = cg.getNodesInFile('src/main.ts');
  2455. expect(updatedNodes.some((n) => n.name === 'updated')).toBe(true);
  2456. expect(updatedNodes.some((n) => n.name === 'original')).toBe(false);
  2457. cg.close();
  2458. });
  2459. });
  2460. describe('Path Normalization', () => {
  2461. it('should convert backslashes to forward slashes', () => {
  2462. expect(normalizePath('gui\\node_modules\\foo')).toBe('gui/node_modules/foo');
  2463. expect(normalizePath('src\\components\\Button.tsx')).toBe('src/components/Button.tsx');
  2464. });
  2465. it('should leave forward-slash paths unchanged', () => {
  2466. expect(normalizePath('src/components/Button.tsx')).toBe('src/components/Button.tsx');
  2467. });
  2468. it('should handle empty string', () => {
  2469. expect(normalizePath('')).toBe('');
  2470. });
  2471. });
  2472. describe('Directory Exclusion', () => {
  2473. let tempDir: string;
  2474. beforeEach(() => {
  2475. tempDir = createTempDir();
  2476. });
  2477. afterEach(() => {
  2478. cleanupTempDir(tempDir);
  2479. });
  2480. it('should exclude node_modules directories', () => {
  2481. // Create structure: src/index.ts + node_modules/pkg/index.js
  2482. const srcDir = path.join(tempDir, 'src');
  2483. const nmDir = path.join(tempDir, 'node_modules', 'pkg');
  2484. fs.mkdirSync(srcDir, { recursive: true });
  2485. fs.mkdirSync(nmDir, { recursive: true });
  2486. fs.writeFileSync(path.join(srcDir, 'index.ts'), 'export const x = 1;');
  2487. fs.writeFileSync(path.join(nmDir, 'index.js'), 'module.exports = {};');
  2488. const config = { ...DEFAULT_CONFIG, rootDir: tempDir };
  2489. const files = scanDirectory(tempDir, config);
  2490. expect(files).toContain('src/index.ts');
  2491. expect(files.every((f) => !f.includes('node_modules'))).toBe(true);
  2492. });
  2493. it('should exclude nested node_modules directories', () => {
  2494. // Create structure: packages/app/node_modules/pkg/index.js
  2495. const srcDir = path.join(tempDir, 'packages', 'app', 'src');
  2496. const nmDir = path.join(tempDir, 'packages', 'app', 'node_modules', 'pkg');
  2497. fs.mkdirSync(srcDir, { recursive: true });
  2498. fs.mkdirSync(nmDir, { recursive: true });
  2499. fs.writeFileSync(path.join(srcDir, 'index.ts'), 'export const x = 1;');
  2500. fs.writeFileSync(path.join(nmDir, 'index.js'), 'module.exports = {};');
  2501. const config = { ...DEFAULT_CONFIG, rootDir: tempDir };
  2502. const files = scanDirectory(tempDir, config);
  2503. expect(files).toContain('packages/app/src/index.ts');
  2504. expect(files.every((f) => !f.includes('node_modules'))).toBe(true);
  2505. });
  2506. it('should exclude .git directories', () => {
  2507. const srcDir = path.join(tempDir, 'src');
  2508. const gitDir = path.join(tempDir, '.git', 'objects');
  2509. fs.mkdirSync(srcDir, { recursive: true });
  2510. fs.mkdirSync(gitDir, { recursive: true });
  2511. fs.writeFileSync(path.join(srcDir, 'index.ts'), 'export const x = 1;');
  2512. fs.writeFileSync(path.join(gitDir, 'pack.ts'), 'export const y = 2;');
  2513. const config = { ...DEFAULT_CONFIG, rootDir: tempDir };
  2514. const files = scanDirectory(tempDir, config);
  2515. expect(files).toContain('src/index.ts');
  2516. expect(files.every((f) => !f.includes('.git'))).toBe(true);
  2517. });
  2518. it('should return forward-slash paths on all platforms', () => {
  2519. const srcDir = path.join(tempDir, 'src', 'components');
  2520. fs.mkdirSync(srcDir, { recursive: true });
  2521. fs.writeFileSync(path.join(srcDir, 'Button.tsx'), 'export function Button() {}');
  2522. const config = { ...DEFAULT_CONFIG, rootDir: tempDir };
  2523. const files = scanDirectory(tempDir, config);
  2524. expect(files.length).toBe(1);
  2525. expect(files[0]).toBe('src/components/Button.tsx');
  2526. expect(files[0]).not.toContain('\\');
  2527. });
  2528. it('should respect .codegraphignore marker', () => {
  2529. const srcDir = path.join(tempDir, 'src');
  2530. const vendorDir = path.join(tempDir, 'vendor');
  2531. fs.mkdirSync(srcDir, { recursive: true });
  2532. fs.mkdirSync(vendorDir, { recursive: true });
  2533. fs.writeFileSync(path.join(srcDir, 'index.ts'), 'export const x = 1;');
  2534. fs.writeFileSync(path.join(vendorDir, 'lib.ts'), 'export const y = 2;');
  2535. fs.writeFileSync(path.join(vendorDir, '.codegraphignore'), '');
  2536. const config = { ...DEFAULT_CONFIG, rootDir: tempDir };
  2537. const files = scanDirectory(tempDir, config);
  2538. expect(files).toContain('src/index.ts');
  2539. expect(files.every((f) => !f.includes('vendor'))).toBe(true);
  2540. });
  2541. });