resolution.test.ts 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717
  1. /**
  2. * Resolution Module Tests
  3. *
  4. * Tests for Phase 3: Reference Resolution
  5. */
  6. import { describe, it, expect, 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 { Node, UnresolvedReference } from '../src/types';
  12. import { ReferenceResolver, createResolver, ResolutionContext } from '../src/resolution';
  13. import { matchReference } from '../src/resolution/name-matcher';
  14. import { resolveImportPath, extractImportMappings, resolveJvmImport, loadCppIncludeDirs, clearCppIncludeDirCache, isPhpIncludePathRef } from '../src/resolution/import-resolver';
  15. import type { UnresolvedRef } from '../src/resolution/types';
  16. import { detectFrameworks, getAllFrameworkResolvers } from '../src/resolution/frameworks';
  17. import { QueryBuilder } from '../src/db/queries';
  18. import { DatabaseConnection } from '../src/db';
  19. describe('Resolution Module', () => {
  20. let tempDir: string;
  21. let cg: CodeGraph;
  22. beforeEach(() => {
  23. // Create temp directory
  24. tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-resolution-test-'));
  25. });
  26. afterEach(() => {
  27. // Clean up
  28. if (cg) {
  29. cg.destroy();
  30. } else if (fs.existsSync(tempDir)) {
  31. fs.rmSync(tempDir, { recursive: true });
  32. }
  33. });
  34. describe('Name Matcher', () => {
  35. it('should match exact name references', () => {
  36. // Create a mock context
  37. const mockNodes: Node[] = [
  38. {
  39. id: 'func:test.ts:myFunction:10',
  40. kind: 'function',
  41. name: 'myFunction',
  42. qualifiedName: 'test.ts::myFunction',
  43. filePath: 'test.ts',
  44. language: 'typescript',
  45. startLine: 10,
  46. endLine: 20,
  47. startColumn: 0,
  48. endColumn: 0,
  49. updatedAt: Date.now(),
  50. },
  51. ];
  52. const context: ResolutionContext = {
  53. getNodesInFile: () => mockNodes,
  54. getNodesByName: (name) => mockNodes.filter((n) => n.name === name),
  55. getNodesByQualifiedName: () => [],
  56. getNodesByKind: () => [],
  57. fileExists: () => true,
  58. readFile: () => null,
  59. getProjectRoot: () => '/test',
  60. getAllFiles: () => ['test.ts'],
  61. };
  62. const ref = {
  63. fromNodeId: 'caller:main.ts:caller:5',
  64. referenceName: 'myFunction',
  65. referenceKind: 'calls' as const,
  66. line: 5,
  67. column: 10,
  68. filePath: 'main.ts',
  69. language: 'typescript' as const,
  70. };
  71. const result = matchReference(ref, context);
  72. expect(result).not.toBeNull();
  73. expect(result?.targetNodeId).toBe('func:test.ts:myFunction:10');
  74. expect(result?.resolvedBy).toBe('exact-match');
  75. });
  76. it('should prefer same-module candidates over cross-module matches', () => {
  77. // Simulates a Python monorepo where multiple apps define navigate()
  78. const candidateA: Node = {
  79. id: 'func:apps/app_a/src/server.py:navigate:10',
  80. kind: 'function',
  81. name: 'navigate',
  82. qualifiedName: 'apps/app_a/src/server.py::navigate',
  83. filePath: 'apps/app_a/src/server.py',
  84. language: 'python',
  85. startLine: 10,
  86. endLine: 20,
  87. startColumn: 0,
  88. endColumn: 0,
  89. updatedAt: Date.now(),
  90. };
  91. const candidateB: Node = {
  92. id: 'func:apps/app_b/src/server.py:navigate:15',
  93. kind: 'function',
  94. name: 'navigate',
  95. qualifiedName: 'apps/app_b/src/server.py::navigate',
  96. filePath: 'apps/app_b/src/server.py',
  97. language: 'python',
  98. startLine: 15,
  99. endLine: 25,
  100. startColumn: 0,
  101. endColumn: 0,
  102. updatedAt: Date.now(),
  103. };
  104. const context: ResolutionContext = {
  105. getNodesInFile: () => [],
  106. getNodesByName: (name) => name === 'navigate' ? [candidateA, candidateB] : [],
  107. getNodesByQualifiedName: () => [],
  108. getNodesByKind: () => [],
  109. fileExists: () => true,
  110. readFile: () => null,
  111. getProjectRoot: () => '/test',
  112. getAllFiles: () => [],
  113. getNodesByLowerName: () => [],
  114. getImportMappings: () => [],
  115. };
  116. // Reference from app_a should resolve to app_a's navigate, not app_b's
  117. const ref = {
  118. fromNodeId: 'func:apps/app_a/src/handler.py:handler:5',
  119. referenceName: 'navigate',
  120. referenceKind: 'calls' as const,
  121. line: 5,
  122. column: 10,
  123. filePath: 'apps/app_a/src/handler.py',
  124. language: 'python' as const,
  125. };
  126. const result = matchReference(ref, context);
  127. expect(result).not.toBeNull();
  128. expect(result?.targetNodeId).toBe('func:apps/app_a/src/server.py:navigate:10');
  129. expect(result?.resolvedBy).toBe('exact-match');
  130. });
  131. it('should lower confidence for cross-module exact matches', () => {
  132. // Only one candidate but in a completely different module
  133. const candidates: Node[] = [
  134. {
  135. id: 'func:apps/app_b/src/server.py:navigate:10',
  136. kind: 'function',
  137. name: 'navigate',
  138. qualifiedName: 'apps/app_b/src/server.py::navigate',
  139. filePath: 'apps/app_b/src/server.py',
  140. language: 'python',
  141. startLine: 10,
  142. endLine: 20,
  143. startColumn: 0,
  144. endColumn: 0,
  145. updatedAt: Date.now(),
  146. },
  147. {
  148. id: 'func:apps/app_c/src/server.py:navigate:10',
  149. kind: 'function',
  150. name: 'navigate',
  151. qualifiedName: 'apps/app_c/src/server.py::navigate',
  152. filePath: 'apps/app_c/src/server.py',
  153. language: 'python',
  154. startLine: 10,
  155. endLine: 20,
  156. startColumn: 0,
  157. endColumn: 0,
  158. updatedAt: Date.now(),
  159. },
  160. ];
  161. const context: ResolutionContext = {
  162. getNodesInFile: () => [],
  163. getNodesByName: (name) => name === 'navigate' ? candidates : [],
  164. getNodesByQualifiedName: () => [],
  165. getNodesByKind: () => [],
  166. fileExists: () => true,
  167. readFile: () => null,
  168. getProjectRoot: () => '/test',
  169. getAllFiles: () => [],
  170. getNodesByLowerName: () => [],
  171. getImportMappings: () => [],
  172. };
  173. // Reference from app_a — neither candidate is in the same module
  174. const ref = {
  175. fromNodeId: 'func:apps/app_a/src/handler.py:handler:5',
  176. referenceName: 'navigate',
  177. referenceKind: 'calls' as const,
  178. line: 5,
  179. column: 10,
  180. filePath: 'apps/app_a/src/handler.py',
  181. language: 'python' as const,
  182. };
  183. const result = matchReference(ref, context);
  184. // Should still resolve but with low confidence
  185. expect(result).not.toBeNull();
  186. expect(result?.confidence).toBeLessThanOrEqual(0.4);
  187. });
  188. it('should match qualified name references', () => {
  189. const mockClassNode: Node = {
  190. id: 'class:user.ts:User:5',
  191. kind: 'class',
  192. name: 'User',
  193. qualifiedName: 'user.ts::User',
  194. filePath: 'user.ts',
  195. language: 'typescript',
  196. startLine: 5,
  197. endLine: 30,
  198. startColumn: 0,
  199. endColumn: 0,
  200. updatedAt: Date.now(),
  201. };
  202. const mockMethodNode: Node = {
  203. id: 'method:user.ts:User.save:15',
  204. kind: 'method',
  205. name: 'save',
  206. qualifiedName: 'user.ts::User::save',
  207. filePath: 'user.ts',
  208. language: 'typescript',
  209. startLine: 15,
  210. endLine: 25,
  211. startColumn: 0,
  212. endColumn: 0,
  213. updatedAt: Date.now(),
  214. };
  215. const context: ResolutionContext = {
  216. getNodesInFile: (fp) => fp === 'user.ts' ? [mockClassNode, mockMethodNode] : [],
  217. getNodesByName: (name) => {
  218. if (name === 'User') return [mockClassNode];
  219. if (name === 'save') return [mockMethodNode];
  220. return [];
  221. },
  222. getNodesByQualifiedName: (qn) => {
  223. if (qn === 'user.ts::User::save') return [mockMethodNode];
  224. return [];
  225. },
  226. getNodesByKind: () => [],
  227. fileExists: () => true,
  228. readFile: () => null,
  229. getProjectRoot: () => '/test',
  230. getAllFiles: () => ['user.ts'],
  231. };
  232. const ref = {
  233. fromNodeId: 'caller:main.ts:main:5',
  234. referenceName: 'User.save',
  235. referenceKind: 'calls' as const,
  236. line: 5,
  237. column: 10,
  238. filePath: 'main.ts',
  239. language: 'typescript' as const,
  240. };
  241. const result = matchReference(ref, context);
  242. expect(result).not.toBeNull();
  243. expect(result?.targetNodeId).toBe('method:user.ts:User.save:15');
  244. });
  245. });
  246. describe('Ubiquitous-name ceiling (#999)', () => {
  247. // A vendored theme/SDK re-declares the same method name across thousands of
  248. // files (Metronic's `init`/`update`/… on every widget). The fuzzy strategies
  249. // used to score every same-named candidate per ref — O(K) per ref, O(K²)
  250. // total — which pinned a core for 15-28 min at "Resolving refs … 94%". Above
  251. // the ceiling they must DECLINE instead, since no proximity/word-overlap
  252. // score can pick the one true target among thousands anyway.
  253. const CEILING = 500;
  254. // A spy context: counts how many nodes the strategy actually inspects, so we
  255. // can assert the cap short-circuits BEFORE the O(K) scoring (not just that it
  256. // returns null).
  257. const makeManyMethods = (n: number, name: string): Node[] =>
  258. Array.from({ length: n }, (_, i) => ({
  259. id: `method:widget${i}.js:Widget${i}.${name}:1`,
  260. kind: 'method' as const,
  261. name,
  262. qualifiedName: `widget${i}.js::Widget${i}::${name}`,
  263. filePath: `static/theme/widget${i}.js`,
  264. language: 'javascript' as const,
  265. startLine: 1,
  266. endLine: 5,
  267. startColumn: 0,
  268. endColumn: 0,
  269. updatedAt: Date.now(),
  270. }));
  271. const spyContext = (nodes: Node[]): { ctx: ResolutionContext; lookups: () => number } => {
  272. let scanned = 0;
  273. const ctx: ResolutionContext = {
  274. getNodesInFile: () => [],
  275. getNodesByName: (name) => {
  276. const hit = nodes.filter((n) => n.name === name);
  277. scanned += hit.length;
  278. return hit;
  279. },
  280. getNodesByQualifiedName: () => [],
  281. getNodesByKind: () => [],
  282. fileExists: () => true,
  283. readFile: () => null,
  284. getProjectRoot: () => '/test',
  285. getAllFiles: () => [],
  286. getNodesByLowerName: () => [],
  287. getImportMappings: () => [],
  288. };
  289. return { ctx, lookups: () => scanned };
  290. };
  291. it('declines a method call (`obj.init`) above the ceiling instead of scoring K candidates', () => {
  292. const { ctx } = spyContext(makeManyMethods(CEILING + 1, 'init'));
  293. const ref = {
  294. fromNodeId: 'method:caller.js:caller:1',
  295. referenceName: 'widget.init',
  296. referenceKind: 'calls' as const,
  297. line: 2,
  298. column: 4,
  299. filePath: 'static/theme/caller.js',
  300. language: 'javascript' as const,
  301. };
  302. expect(matchReference(ref, ctx)).toBeNull();
  303. });
  304. it('declines a bare exact-name ref above the ceiling', () => {
  305. const { ctx } = spyContext(makeManyMethods(CEILING + 1, 'render'));
  306. const ref = {
  307. fromNodeId: 'method:caller.js:caller:1',
  308. referenceName: 'render',
  309. referenceKind: 'calls' as const,
  310. line: 2,
  311. column: 4,
  312. filePath: 'static/theme/caller.js',
  313. language: 'javascript' as const,
  314. };
  315. expect(matchReference(ref, ctx)).toBeNull();
  316. });
  317. it('still resolves a SAME-FILE definition when one exists (precise path unaffected)', () => {
  318. // Strategy 1 (class-name) and same-file matching are precise — a ubiquitous
  319. // name with an unambiguous local target still resolves.
  320. const nodes = makeManyMethods(CEILING + 1, 'init');
  321. const local: Node = {
  322. id: 'class:static/theme/caller.js:Widgetly:1',
  323. kind: 'class',
  324. name: 'Widgetly',
  325. qualifiedName: 'static/theme/caller.js::Widgetly',
  326. filePath: 'static/theme/caller.js',
  327. language: 'javascript',
  328. startLine: 1, endLine: 9, startColumn: 0, endColumn: 0, updatedAt: Date.now(),
  329. };
  330. const localMethod: Node = {
  331. id: 'method:static/theme/caller.js:Widgetly.init:2',
  332. kind: 'method',
  333. name: 'init',
  334. qualifiedName: 'static/theme/caller.js::Widgetly::init',
  335. filePath: 'static/theme/caller.js',
  336. language: 'javascript',
  337. startLine: 2, endLine: 4, startColumn: 0, endColumn: 0, updatedAt: Date.now(),
  338. };
  339. const all = [...nodes, local, localMethod];
  340. const ctx: ResolutionContext = {
  341. getNodesInFile: (fp) => all.filter((n) => n.filePath === fp),
  342. getNodesByName: (name) => all.filter((n) => n.name === name),
  343. getNodesByQualifiedName: () => [],
  344. getNodesByKind: () => [],
  345. fileExists: () => true,
  346. readFile: () => null,
  347. getProjectRoot: () => '/test',
  348. getAllFiles: () => [],
  349. getNodesByLowerName: () => [],
  350. getImportMappings: () => [],
  351. };
  352. // `Widgetly.init` names the class explicitly → Strategy 1 resolves it.
  353. const ref = {
  354. fromNodeId: 'method:static/theme/caller.js:caller:6',
  355. referenceName: 'Widgetly.init',
  356. referenceKind: 'calls' as const,
  357. line: 6,
  358. column: 4,
  359. filePath: 'static/theme/caller.js',
  360. language: 'javascript' as const,
  361. };
  362. const result = matchReference(ref, ctx);
  363. expect(result?.targetNodeId).toBe('method:static/theme/caller.js:Widgetly.init:2');
  364. });
  365. it('still scores normally JUST below the ceiling (no behavior change for normal repos)', () => {
  366. // Real repos top out near ~40 same-named methods; this proves a sub-ceiling
  367. // collision still resolves via proximity, so the cap is invisible to them.
  368. const nodes = makeManyMethods(CEILING - 1, 'update');
  369. // Make ONE candidate share the caller's directory so proximity picks it.
  370. nodes[0] = {
  371. ...nodes[0]!,
  372. id: 'method:static/theme/app/Widget0.update:1',
  373. qualifiedName: 'static/theme/app/widget.js::Widget0::update',
  374. filePath: 'static/theme/app/widget.js',
  375. };
  376. const ctx: ResolutionContext = {
  377. getNodesInFile: () => [],
  378. getNodesByName: (name) => nodes.filter((n) => n.name === name),
  379. getNodesByQualifiedName: () => [],
  380. getNodesByKind: () => [],
  381. fileExists: () => true,
  382. readFile: () => null,
  383. getProjectRoot: () => '/test',
  384. getAllFiles: () => [],
  385. getNodesByLowerName: () => [],
  386. getImportMappings: () => [],
  387. };
  388. const ref = {
  389. fromNodeId: 'method:static/theme/app/caller.js:caller:1',
  390. referenceName: 'update',
  391. referenceKind: 'calls' as const,
  392. line: 2,
  393. column: 4,
  394. filePath: 'static/theme/app/caller.js',
  395. language: 'javascript' as const,
  396. };
  397. // Below the ceiling the fuzzy path runs and resolves SOMETHING (not capped).
  398. expect(matchReference(ref, ctx)).not.toBeNull();
  399. });
  400. });
  401. describe('Import Resolver', () => {
  402. it('should resolve relative import paths', () => {
  403. const context: ResolutionContext = {
  404. getNodesInFile: () => [],
  405. getNodesByName: () => [],
  406. getNodesByQualifiedName: () => [],
  407. getNodesByKind: () => [],
  408. fileExists: (p) => p === 'src/components/utils.ts' || p === 'src/components/utils/index.ts',
  409. readFile: () => null,
  410. getProjectRoot: () => '',
  411. getAllFiles: () => ['src/components/utils.ts', 'src/components/utils/index.ts'],
  412. };
  413. const result = resolveImportPath(
  414. './utils',
  415. 'src/components/Button.ts',
  416. 'typescript',
  417. context
  418. );
  419. expect(result).toBe('src/components/utils.ts');
  420. });
  421. it('should resolve parent directory imports', () => {
  422. const context: ResolutionContext = {
  423. getNodesInFile: () => [],
  424. getNodesByName: () => [],
  425. getNodesByQualifiedName: () => [],
  426. getNodesByKind: () => [],
  427. fileExists: (p) => p === 'src/helpers.ts' || p === 'src/helpers/index.ts',
  428. readFile: () => null,
  429. getProjectRoot: () => '',
  430. getAllFiles: () => ['src/helpers.ts', 'src/helpers/index.ts'],
  431. };
  432. const result = resolveImportPath(
  433. '../helpers',
  434. 'src/components/Button.ts',
  435. 'typescript',
  436. context
  437. );
  438. expect(result).toBe('src/helpers.ts');
  439. });
  440. it('should extract JS/TS import mappings', () => {
  441. const content = `
  442. import { foo } from './foo';
  443. import bar from '../bar';
  444. import * as utils from './utils';
  445. import { baz, qux } from './baz';
  446. `;
  447. const mappings = extractImportMappings(
  448. 'src/index.ts',
  449. content,
  450. 'typescript'
  451. );
  452. expect(mappings.length).toBeGreaterThan(0);
  453. expect(mappings.some((m) => m.localName === 'foo')).toBe(true);
  454. expect(mappings.some((m) => m.localName === 'bar')).toBe(true);
  455. });
  456. it('should extract Python import mappings', () => {
  457. const content = `
  458. from utils import helper
  459. from .models import User
  460. import os
  461. from ..services import auth_service
  462. `;
  463. const mappings = extractImportMappings(
  464. 'src/main.py',
  465. content,
  466. 'python'
  467. );
  468. expect(mappings.length).toBeGreaterThan(0);
  469. expect(mappings.some((m) => m.localName === 'helper')).toBe(true);
  470. expect(mappings.some((m) => m.localName === 'User')).toBe(true);
  471. });
  472. });
  473. describe('JVM FQN Import Resolution', () => {
  474. // Build a ResolutionContext stub whose getNodesByQualifiedName answers
  475. // from a fixed table — the only context method resolveJvmImport touches.
  476. const makeContext = (byQName: Record<string, Node[]>): ResolutionContext => ({
  477. getNodesInFile: () => [],
  478. getNodesByName: () => [],
  479. getNodesByQualifiedName: (q) => byQName[q] ?? [],
  480. getNodesByKind: () => [],
  481. fileExists: () => false,
  482. readFile: () => null,
  483. getProjectRoot: () => '',
  484. getAllFiles: () => [],
  485. });
  486. const node = (id: string, name: string, qualifiedName: string, kind: Node['kind'] = 'class', language: Node['language'] = 'kotlin'): Node => ({
  487. id, kind, name, qualifiedName,
  488. filePath: 'Models.kt', language,
  489. startLine: 1, endLine: 1, startColumn: 0, endColumn: 0,
  490. updatedAt: 0,
  491. });
  492. const importRef = (referenceName: string, language: Node['language'] = 'kotlin'): UnresolvedRef => ({
  493. fromNodeId: 'caller',
  494. referenceName,
  495. referenceKind: 'imports',
  496. line: 1, column: 0,
  497. filePath: 'Caller.kt',
  498. language,
  499. });
  500. it('resolves a Kotlin class import by FQN regardless of filename', () => {
  501. const target = node('n1', 'Bar', 'com.example.foo::Bar');
  502. const ctx = makeContext({ 'com.example.foo::Bar': [target] });
  503. const result = resolveJvmImport(importRef('com.example.foo.Bar'), ctx);
  504. expect(result?.targetNodeId).toBe('n1');
  505. expect(result?.resolvedBy).toBe('import');
  506. });
  507. it('resolves a Kotlin top-level function import by FQN', () => {
  508. const util = node('n2', 'util', 'com.example.foo::util', 'function');
  509. const ctx = makeContext({ 'com.example.foo::util': [util] });
  510. const result = resolveJvmImport(importRef('com.example.foo.util'), ctx);
  511. expect(result?.targetNodeId).toBe('n2');
  512. });
  513. it('resolves a Java import by FQN', () => {
  514. const target = node('n3', 'Bar', 'com.example.foo::Bar', 'class', 'java');
  515. const ctx = makeContext({ 'com.example.foo::Bar': [target] });
  516. const result = resolveJvmImport(importRef('com.example.foo.Bar', 'java'), ctx);
  517. expect(result?.targetNodeId).toBe('n3');
  518. });
  519. it('resolves cross-language: Kotlin importing a Java class', () => {
  520. // The Kotlin file declares `import com.example.JavaBar` — the target is
  521. // a Java class node. JVM interop means the resolver doesn't care about
  522. // the source language of the target, only that the FQN matches.
  523. const target = node('n4', 'JavaBar', 'com.example::JavaBar', 'class', 'java');
  524. const ctx = makeContext({ 'com.example::JavaBar': [target] });
  525. const result = resolveJvmImport(importRef('com.example.JavaBar'), ctx);
  526. expect(result?.targetNodeId).toBe('n4');
  527. });
  528. it('disambiguates a name collision across packages', () => {
  529. // Two classes named `Bar` in different packages. Each import resolves
  530. // to the one whose FQN matches — not to "whichever was found first".
  531. const barA = node('n5a', 'Bar', 'com.example.alpha::Bar');
  532. const barB = node('n5b', 'Bar', 'com.example.beta::Bar');
  533. const ctx = makeContext({
  534. 'com.example.alpha::Bar': [barA],
  535. 'com.example.beta::Bar': [barB],
  536. });
  537. expect(resolveJvmImport(importRef('com.example.alpha.Bar'), ctx)?.targetNodeId).toBe('n5a');
  538. expect(resolveJvmImport(importRef('com.example.beta.Bar'), ctx)?.targetNodeId).toBe('n5b');
  539. });
  540. it('returns null for wildcard imports', () => {
  541. const ctx = makeContext({});
  542. expect(resolveJvmImport(importRef('com.example.foo.*'), ctx)).toBeNull();
  543. });
  544. it('returns null for unqualified names', () => {
  545. // A single-segment name has no package; nothing to look up by FQN.
  546. const ctx = makeContext({ 'Bar': [node('n6', 'Bar', 'Bar')] });
  547. expect(resolveJvmImport(importRef('Bar'), ctx)).toBeNull();
  548. });
  549. it('returns null for non-JVM languages', () => {
  550. const target = node('n7', 'Bar', 'com.example::Bar');
  551. const ctx = makeContext({ 'com.example::Bar': [target] });
  552. expect(resolveJvmImport(importRef('com.example.Bar', 'typescript'), ctx)).toBeNull();
  553. });
  554. it('returns null for non-imports reference kinds', () => {
  555. // The resolver intentionally only acts on `imports` refs; ordinary
  556. // `calls`/`extends` refs fall through to the framework + name-matcher
  557. // strategies.
  558. const target = node('n8', 'Bar', 'com.example::Bar');
  559. const ctx = makeContext({ 'com.example::Bar': [target] });
  560. const ref: UnresolvedRef = {
  561. fromNodeId: 'caller', referenceName: 'com.example.Bar',
  562. referenceKind: 'calls', line: 1, column: 0,
  563. filePath: 'Caller.kt', language: 'kotlin',
  564. };
  565. expect(resolveJvmImport(ref, ctx)).toBeNull();
  566. });
  567. it('returns null when the FQN is not in the index', () => {
  568. const ctx = makeContext({});
  569. expect(resolveJvmImport(importRef('com.example.Unknown'), ctx)).toBeNull();
  570. });
  571. });
  572. describe('Framework Detection', () => {
  573. it('should detect React framework', () => {
  574. const context: ResolutionContext = {
  575. getNodesInFile: () => [],
  576. getNodesByName: () => [],
  577. getNodesByQualifiedName: () => [],
  578. getNodesByKind: () => [],
  579. fileExists: () => false,
  580. readFile: (p) => {
  581. if (p === 'package.json') {
  582. return JSON.stringify({
  583. dependencies: { react: '^18.0.0' },
  584. });
  585. }
  586. return null;
  587. },
  588. getProjectRoot: () => '/test',
  589. getAllFiles: () => ['package.json', 'src/App.tsx'],
  590. };
  591. const frameworks = detectFrameworks(context);
  592. expect(frameworks.some((f) => f.name === 'react')).toBe(true);
  593. });
  594. it('should detect Express framework', () => {
  595. const context: ResolutionContext = {
  596. getNodesInFile: () => [],
  597. getNodesByName: () => [],
  598. getNodesByQualifiedName: () => [],
  599. getNodesByKind: () => [],
  600. fileExists: () => false,
  601. readFile: (p) => {
  602. if (p === 'package.json') {
  603. return JSON.stringify({
  604. dependencies: { express: '^4.18.0' },
  605. });
  606. }
  607. return null;
  608. },
  609. getProjectRoot: () => '/test',
  610. getAllFiles: () => ['package.json', 'src/app.js'],
  611. };
  612. const frameworks = detectFrameworks(context);
  613. expect(frameworks.some((f) => f.name === 'express')).toBe(true);
  614. });
  615. it('should detect Laravel framework', () => {
  616. const context: ResolutionContext = {
  617. getNodesInFile: () => [],
  618. getNodesByName: () => [],
  619. getNodesByQualifiedName: () => [],
  620. getNodesByKind: () => [],
  621. fileExists: (p) => p === 'artisan',
  622. readFile: () => null,
  623. getProjectRoot: () => '/test',
  624. getAllFiles: () => ['artisan', 'app/Http/Kernel.php'],
  625. };
  626. const frameworks = detectFrameworks(context);
  627. expect(frameworks.some((f) => f.name === 'laravel')).toBe(true);
  628. });
  629. it('should return all framework resolvers', () => {
  630. const resolvers = getAllFrameworkResolvers();
  631. expect(resolvers.length).toBeGreaterThan(0);
  632. expect(resolvers.some((r) => r.name === 'react')).toBe(true);
  633. expect(resolvers.some((r) => r.name === 'express')).toBe(true);
  634. expect(resolvers.some((r) => r.name === 'laravel')).toBe(true);
  635. });
  636. });
  637. describe('React Framework Resolver', () => {
  638. it('should resolve React component references', () => {
  639. const mockNodes: Node[] = [
  640. {
  641. id: 'component:src/Button.tsx:Button:5',
  642. kind: 'component',
  643. name: 'Button',
  644. qualifiedName: 'src/Button.tsx::Button',
  645. filePath: 'src/Button.tsx',
  646. language: 'tsx',
  647. startLine: 5,
  648. endLine: 20,
  649. startColumn: 0,
  650. endColumn: 0,
  651. updatedAt: Date.now(),
  652. },
  653. ];
  654. const context: ResolutionContext = {
  655. getNodesInFile: (fp) => (fp === 'src/Button.tsx' ? mockNodes : []),
  656. getNodesByName: () => mockNodes,
  657. getNodesByQualifiedName: () => [],
  658. getNodesByKind: () => [],
  659. fileExists: () => false,
  660. readFile: (p) => {
  661. if (p === 'package.json') {
  662. return JSON.stringify({ dependencies: { react: '^18.0.0' } });
  663. }
  664. return null;
  665. },
  666. getProjectRoot: () => '/test',
  667. getAllFiles: () => ['package.json', 'src/Button.tsx', 'src/App.tsx'],
  668. };
  669. const frameworks = detectFrameworks(context);
  670. const reactResolver = frameworks.find((f) => f.name === 'react');
  671. expect(reactResolver).toBeDefined();
  672. const ref = {
  673. fromNodeId: 'component:src/App.tsx:App:1',
  674. referenceName: 'Button',
  675. referenceKind: 'renders' as const,
  676. line: 10,
  677. column: 5,
  678. filePath: 'src/App.tsx',
  679. // Refs extracted from .tsx files carry language 'tsx' — component
  680. // resolution is gated to JSX-capable refs (#764: PascalCase TYPE refs
  681. // from plain .ts files were resolving to arbitrary same-named classes).
  682. language: 'tsx' as const,
  683. };
  684. const result = reactResolver!.resolve(ref, context);
  685. expect(result).not.toBeNull();
  686. expect(result?.targetNodeId).toBe('component:src/Button.tsx:Button:5');
  687. // The same PascalCase name referenced from a plain .ts file is a TYPE
  688. // reference, not a component usage — component resolution must decline
  689. // and leave it to proximity-aware name matching (#764: a .ts GraphQL
  690. // types file's own `Account` alias was losing to an arbitrary same-named
  691. // class in another monorepo package).
  692. const tsRef = { ...ref, filePath: 'src/models.ts', language: 'typescript' as const };
  693. expect(reactResolver!.resolve(tsRef, context)).toBeNull();
  694. });
  695. it('should resolve custom hook references', () => {
  696. const mockNodes: Node[] = [
  697. {
  698. id: 'hook:src/hooks/useAuth.ts:useAuth:1',
  699. kind: 'function',
  700. name: 'useAuth',
  701. qualifiedName: 'src/hooks/useAuth.ts::useAuth',
  702. filePath: 'src/hooks/useAuth.ts',
  703. language: 'typescript',
  704. startLine: 1,
  705. endLine: 20,
  706. startColumn: 0,
  707. endColumn: 0,
  708. updatedAt: Date.now(),
  709. },
  710. ];
  711. const context: ResolutionContext = {
  712. getNodesInFile: (fp) => (fp.includes('useAuth') ? mockNodes : []),
  713. getNodesByName: () => mockNodes,
  714. getNodesByQualifiedName: () => [],
  715. getNodesByKind: () => [],
  716. fileExists: () => false,
  717. readFile: (p) => {
  718. if (p === 'package.json') {
  719. return JSON.stringify({ dependencies: { react: '^18.0.0' } });
  720. }
  721. return null;
  722. },
  723. getProjectRoot: () => '/test',
  724. getAllFiles: () => ['package.json', 'src/hooks/useAuth.ts'],
  725. };
  726. const frameworks = detectFrameworks(context);
  727. const reactResolver = frameworks.find((f) => f.name === 'react');
  728. const ref = {
  729. fromNodeId: 'component:src/App.tsx:App:1',
  730. referenceName: 'useAuth',
  731. referenceKind: 'calls' as const,
  732. line: 5,
  733. column: 10,
  734. filePath: 'src/App.tsx',
  735. language: 'typescript' as const,
  736. };
  737. const result = reactResolver!.resolve(ref, context);
  738. expect(result).not.toBeNull();
  739. expect(result?.targetNodeId).toBe('hook:src/hooks/useAuth.ts:useAuth:1');
  740. });
  741. });
  742. describe('Integration Tests', () => {
  743. it('should create resolver from CodeGraph instance', async () => {
  744. // Create a simple TypeScript project
  745. fs.writeFileSync(
  746. path.join(tempDir, 'package.json'),
  747. JSON.stringify({ name: 'test', dependencies: { react: '^18.0.0' } })
  748. );
  749. const srcDir = path.join(tempDir, 'src');
  750. fs.mkdirSync(srcDir);
  751. // Create utility file
  752. fs.writeFileSync(
  753. path.join(srcDir, 'utils.ts'),
  754. `export function formatDate(date: Date): string {
  755. return date.toISOString();
  756. }
  757. export function parseDate(str: string): Date {
  758. return new Date(str);
  759. }`
  760. );
  761. // Create main file that uses utils
  762. fs.writeFileSync(
  763. path.join(srcDir, 'main.ts'),
  764. `import { formatDate, parseDate } from './utils';
  765. function processDate(input: string): string {
  766. const date = parseDate(input);
  767. return formatDate(date);
  768. }`
  769. );
  770. // Initialize and index
  771. cg = await CodeGraph.init(tempDir, { index: true });
  772. // Check that resolver detected React framework
  773. const frameworks = cg.getDetectedFrameworks();
  774. expect(frameworks).toContain('react');
  775. // Get stats to verify indexing worked
  776. const stats = cg.getStats();
  777. expect(stats.fileCount).toBe(2);
  778. expect(stats.nodeCount).toBeGreaterThan(0);
  779. });
  780. it('should resolve references after indexing', async () => {
  781. // Create a project with references
  782. const srcDir = path.join(tempDir, 'src');
  783. fs.mkdirSync(srcDir, { recursive: true });
  784. fs.writeFileSync(
  785. path.join(srcDir, 'helper.ts'),
  786. `export function helperFunction(): void {
  787. console.log('helper');
  788. }`
  789. );
  790. fs.writeFileSync(
  791. path.join(srcDir, 'main.ts'),
  792. `import { helperFunction } from './helper';
  793. function main(): void {
  794. helperFunction();
  795. }`
  796. );
  797. cg = await CodeGraph.init(tempDir, { index: true });
  798. // Run reference resolution
  799. const result = cg.resolveReferences();
  800. // Should have attempted resolution
  801. expect(result.stats.total).toBeGreaterThanOrEqual(0);
  802. });
  803. it('promotes calls→instantiates when target resolves to a class (Python)', async () => {
  804. // Python has no `new` keyword — `Foo()` is the standard
  805. // instantiation syntax. Extraction can't tell that apart from
  806. // a function call without symbol info, so it emits a `calls`
  807. // ref. Resolution promotes it to `instantiates` once the
  808. // target is known to be a class.
  809. const srcDir = path.join(tempDir, 'src');
  810. fs.mkdirSync(srcDir, { recursive: true });
  811. fs.writeFileSync(
  812. path.join(srcDir, 'app.py'),
  813. `class UserService:
  814. def __init__(self):
  815. self.db = None
  816. def bootstrap():
  817. return UserService()
  818. `
  819. );
  820. cg = await CodeGraph.init(tempDir, { index: true });
  821. cg.resolveReferences();
  822. const bootstrap = cg
  823. .getNodesByKind('function')
  824. .find((n) => n.name === 'bootstrap');
  825. expect(bootstrap).toBeDefined();
  826. const outgoing = cg.getOutgoingEdges(bootstrap!.id);
  827. const instantiates = outgoing.find((e) => e.kind === 'instantiates');
  828. expect(instantiates).toBeDefined();
  829. // Same edge must NOT also appear as a `calls` edge — promotion
  830. // replaces the kind, doesn't duplicate.
  831. const callsToUserService = outgoing.filter(
  832. (e) => e.kind === 'calls' && e.target === instantiates!.target
  833. );
  834. expect(callsToUserService).toHaveLength(0);
  835. });
  836. it('records instantiates for C++ stack/brace construction, targeting the class (#1035)', async () => {
  837. // `Calculator calc(0)` (direct-init) and `Widget w{1, 2}` (brace-init)
  838. // carry the constructor args directly on the declarator — there's no
  839. // call/new node — so they recorded no `instantiates` edge, while heap
  840. // `new Calculator(0)` did. Both stack forms now do.
  841. fs.writeFileSync(
  842. path.join(tempDir, 'm.cpp'),
  843. `class Calculator { public: Calculator(int seed) {} int add(int a, int b){ return a+b; } };
  844. class Widget { public: Widget(int a, int b) {} };
  845. int runStack(int a, int b) { Calculator calc(0); return calc.add(a, b); }
  846. int runBrace() { Widget w{1, 2}; return 0; }
  847. int runHeap(int a, int b) { Calculator* c = new Calculator(0); return c->add(a, b); }
  848. void noise() { int x(5); int y{6}; Calculator deferred; }
  849. `
  850. );
  851. cg = await CodeGraph.init(tempDir, { index: true });
  852. const fn = (name: string) => cg.getNodesByKind('function').find((n) => n.name === name)!;
  853. const instTargets = (name: string) =>
  854. cg
  855. .getOutgoingEdges(fn(name).id)
  856. .filter((e) => e.kind === 'instantiates')
  857. .map((e) => cg.getNode(e.target)!);
  858. // Direct-init (the issue) and brace-init both instantiate, targeting the
  859. // CLASS node — not the same-named constructor method.
  860. const stack = instTargets('runStack');
  861. expect(stack.map((n) => `${n.kind}:${n.name}`)).toContain('class:Calculator');
  862. expect(instTargets('runBrace').map((n) => `${n.kind}:${n.name}`)).toContain('class:Widget');
  863. // Heap still works (regression guard).
  864. expect(instTargets('runHeap').map((n) => `${n.kind}:${n.name}`)).toContain('class:Calculator');
  865. // Primitives (`int x(0)`/`int y{6}`) and bare default construction
  866. // (`Calculator deferred;`) must NOT mint an instantiates edge.
  867. expect(instTargets('noise')).toHaveLength(0);
  868. });
  869. it('resolves a cross-file static method call to the method, not the class (#825)', async () => {
  870. // `Foo.bar()` where `Foo` is an imported class must link to the static
  871. // method `Foo::bar`, NOT to the class `Foo`. Previously the import
  872. // resolver dropped the `.bar` member and resolved to `Foo`, which the
  873. // calls→instantiates promotion then turned into `run instantiates Foo`,
  874. // leaving the static method with zero callers and a hollow impact radius.
  875. fs.writeFileSync(
  876. path.join(tempDir, 'helpers.ts'),
  877. `export class Foo {\n static bar(x: number) { return x + 1; }\n}\n`
  878. );
  879. fs.writeFileSync(
  880. path.join(tempDir, 'caller.ts'),
  881. `import { Foo } from './helpers';\nexport function run() { return Foo.bar(41); }\n`
  882. );
  883. cg = await CodeGraph.init(tempDir, { index: true });
  884. cg.resolveReferences();
  885. const bar = cg.getNodesByKind('method').find((n) => n.name === 'bar');
  886. const foo = cg.getNodesByKind('class').find((n) => n.name === 'Foo');
  887. const run = cg.getNodesByKind('function').find((n) => n.name === 'run');
  888. expect(bar).toBeDefined();
  889. expect(foo).toBeDefined();
  890. expect(run).toBeDefined();
  891. // `run` is reported as a caller of the static method `Foo.bar`.
  892. const barCallers = cg.getCallers(bar!.id).map((c) => c.node.name);
  893. expect(barCallers).toContain('run');
  894. // And the call is NOT mis-promoted to `run instantiates Foo`.
  895. const outgoing = cg.getOutgoingEdges(run!.id);
  896. expect(
  897. outgoing.filter((e) => e.kind === 'instantiates' && e.target === foo!.id)
  898. ).toHaveLength(0);
  899. // The real edge is a `calls` edge to the method.
  900. expect(
  901. outgoing.some((e) => e.kind === 'calls' && e.target === bar!.id)
  902. ).toBe(true);
  903. });
  904. it('resolves Go cross-package qualified calls via go.mod module path (#388)', async () => {
  905. // Pre-#388, every `pkga.FuncX(...)` call in a Go monorepo was flagged
  906. // external (isExternalImport returned true for any non-`/internal/`
  907. // import without `.`-prefix) and resolution fell through to name-match
  908. // with path proximity — recall on cross-package callers was ~<1%.
  909. fs.writeFileSync(
  910. path.join(tempDir, 'go.mod'),
  911. 'module github.com/example/myproject\n\ngo 1.21\n'
  912. );
  913. const pkgaDir = path.join(tempDir, 'pkga');
  914. const pkgbDir = path.join(tempDir, 'pkgb');
  915. const pkgcDir = path.join(tempDir, 'pkgc');
  916. fs.mkdirSync(pkgaDir);
  917. fs.mkdirSync(pkgbDir);
  918. fs.mkdirSync(pkgcDir);
  919. // Same-name exported function in two packages — only the imported one
  920. // should resolve. Exercises disambiguation, not just connectivity.
  921. fs.writeFileSync(
  922. path.join(pkgaDir, 'conv.go'),
  923. 'package pkga\nfunc Convert(x int) int { return x * 2 }\n'
  924. );
  925. fs.writeFileSync(
  926. path.join(pkgbDir, 'conv.go'),
  927. 'package pkgb\nfunc Convert(x int) int { return x + 1 }\n'
  928. );
  929. fs.writeFileSync(
  930. path.join(pkgcDir, 'use.go'),
  931. `package pkgc
  932. import "github.com/example/myproject/pkga"
  933. func UsePkga() {
  934. pkga.Convert(5)
  935. }
  936. `
  937. );
  938. cg = await CodeGraph.init(tempDir, { index: true });
  939. const usePkga = cg.getNodesByKind('function').filter((n) => n.name ==='UsePkga')[0];
  940. expect(usePkga).toBeDefined();
  941. const outgoing = cg.getOutgoingEdges(usePkga!.id);
  942. const callEdges = outgoing.filter((e) => e.kind === 'calls');
  943. expect(callEdges).toHaveLength(1);
  944. const target = cg.getNode(callEdges[0]!.target);
  945. expect(target?.name).toBe('Convert');
  946. // Critical: the resolver must pick the imported pkga's Convert,
  947. // not pkgb's. With the broken (pre-fix) resolver this lands on
  948. // whichever Convert happens to be cheaper under path proximity.
  949. expect(target?.filePath.replace(/\\/g, '/')).toBe('pkga/conv.go');
  950. });
  951. it('resolves Go aliased imports across packages (#388)', async () => {
  952. fs.writeFileSync(
  953. path.join(tempDir, 'go.mod'),
  954. 'module github.com/example/myproject\n\ngo 1.21\n'
  955. );
  956. fs.mkdirSync(path.join(tempDir, 'pkgb'));
  957. fs.mkdirSync(path.join(tempDir, 'pkgd'));
  958. fs.writeFileSync(
  959. path.join(tempDir, 'pkgb', 'lib.go'),
  960. 'package pkgb\nfunc Compute(x int) int { return x }\n'
  961. );
  962. fs.writeFileSync(
  963. path.join(tempDir, 'pkgd', 'use.go'),
  964. `package pkgd
  965. import (
  966. "fmt"
  967. alias "github.com/example/myproject/pkgb"
  968. )
  969. func UseAliased() {
  970. fmt.Println("hi")
  971. alias.Compute(3)
  972. }
  973. `
  974. );
  975. cg = await CodeGraph.init(tempDir, { index: true });
  976. const useAliased = cg.getNodesByKind('function').filter((n) => n.name ==='UseAliased')[0];
  977. expect(useAliased).toBeDefined();
  978. const calls = cg.getOutgoingEdges(useAliased!.id).filter((e) => e.kind === 'calls');
  979. // fmt.Println is stdlib — must stay external. alias.Compute must resolve.
  980. expect(calls).toHaveLength(1);
  981. const target = cg.getNode(calls[0]!.target);
  982. expect(target?.name).toBe('Compute');
  983. expect(target?.filePath.replace(/\\/g, '/')).toBe('pkgb/lib.go');
  984. });
  985. it('resolves Python module-attribute calls after `from pkg import module` (#578)', async () => {
  986. // Pre-#578, a `module.func()` call where `module` was bound via
  987. // `from pkg import module` dropped its `calls` edge. The file→file import
  988. // edge resolved (resolveModuleImportToFile falls back to a dotted-module
  989. // file lookup for absolute package paths), but resolvePythonModuleMember
  990. // had no such fallback — resolveImportPath returns null for an absolute
  991. // package path like `pkg.module`, so the member never resolved and
  992. // callers/callees/impact on the target came back empty. Same root-cause
  993. // class as the Go cross-package qualified call (#388).
  994. fs.mkdirSync(path.join(tempDir, 'pkg'));
  995. fs.writeFileSync(path.join(tempDir, 'pkg', '__init__.py'), '');
  996. fs.writeFileSync(
  997. path.join(tempDir, 'pkg', 'module.py'),
  998. 'def func():\n return 1\n'
  999. );
  1000. fs.writeFileSync(
  1001. path.join(tempDir, 'main.py'),
  1002. `from pkg import module
  1003. import os
  1004. def caller():
  1005. return module.func()
  1006. def external_caller():
  1007. return os.getcwd()
  1008. `
  1009. );
  1010. cg = await CodeGraph.init(tempDir, { index: true });
  1011. const caller = cg.getNodesByKind('function').filter((n) => n.name === 'caller')[0];
  1012. expect(caller).toBeDefined();
  1013. const calls = cg.getOutgoingEdges(caller!.id).filter((e) => e.kind === 'calls');
  1014. // module.func() must resolve to the real function in the submodule file.
  1015. expect(calls).toHaveLength(1);
  1016. const target = cg.getNode(calls[0]!.target);
  1017. expect(target?.name).toBe('func');
  1018. expect(target?.filePath.replace(/\\/g, '/')).toBe('pkg/module.py');
  1019. // The flip side of the fix: an attribute call through a *stdlib* module
  1020. // (`os.getcwd()`) must still create no edge — the fallback only matches
  1021. // real in-repo module files.
  1022. const externalCaller = cg.getNodesByKind('function').filter((n) => n.name === 'external_caller')[0];
  1023. expect(externalCaller).toBeDefined();
  1024. const externalCalls = cg.getOutgoingEdges(externalCaller!.id).filter((e) => e.kind === 'calls');
  1025. expect(externalCalls).toHaveLength(0);
  1026. });
  1027. it('attaches Go methods to their receiver type across files (#583, cross-file half)', async () => {
  1028. // In Go a type's methods are commonly declared in a different file from the
  1029. // `type` declaration (`type Box` in box.go, `func (b *Box) Get()` in
  1030. // box_methods.go). Extraction only attaches the struct→method `contains`
  1031. // edge when the type is in the SAME file (the owner lookup is file-scoped),
  1032. // so a cross-file method was orphaned from its struct — breaking member
  1033. // outlines and any callers/callees/impact traversal through `contains`. A
  1034. // resolution-phase pass now links them within the package (= directory).
  1035. fs.writeFileSync(
  1036. path.join(tempDir, 'box.go'),
  1037. 'package main\n\ntype Box struct{ v int }\n'
  1038. );
  1039. fs.writeFileSync(
  1040. path.join(tempDir, 'box_methods.go'),
  1041. 'package main\n\nfunc (b *Box) Get() int { return b.v }\nfunc (b *Box) Set(x int) { b.v = x }\n'
  1042. );
  1043. // Generic receiver declared cross-file too — exercises #583 half A
  1044. // (generic `*Stack[T]` receiver parsing) and half B (cross-file) together.
  1045. fs.writeFileSync(
  1046. path.join(tempDir, 'stack.go'),
  1047. 'package main\n\ntype Stack[T any] struct {\n\titems []T\n}\n'
  1048. );
  1049. fs.writeFileSync(
  1050. path.join(tempDir, 'stack_push.go'),
  1051. 'package main\n\nfunc (s *Stack[T]) Push(v T) { s.items = append(s.items, v) }\n'
  1052. );
  1053. // A same-named type in another package must NOT capture this package's
  1054. // methods — the link is scoped to the receiver type's own directory.
  1055. fs.mkdirSync(path.join(tempDir, 'other'));
  1056. fs.writeFileSync(
  1057. path.join(tempDir, 'other', 'box.go'),
  1058. 'package other\n\ntype Box struct{ w int }\n'
  1059. );
  1060. cg = await CodeGraph.init(tempDir, { index: true });
  1061. const methodsOf = (typeName: string, file: string): string[] => {
  1062. const node = cg
  1063. .getNodesByKind('struct')
  1064. .find((n) => n.name === typeName && n.filePath.replace(/\\/g, '/') === file);
  1065. expect(node, `${typeName} @ ${file}`).toBeDefined();
  1066. return cg
  1067. .getOutgoingEdges(node!.id)
  1068. .filter((e) => e.kind === 'contains')
  1069. .map((e) => cg.getNode(e.target))
  1070. .filter((n) => !!n && n.kind === 'method')
  1071. .map((n) => n!.name)
  1072. .sort();
  1073. };
  1074. // Cross-file (non-generic) methods now attach to their struct.
  1075. expect(methodsOf('Box', 'box.go')).toEqual(['Get', 'Set']);
  1076. // Generic + cross-file.
  1077. expect(methodsOf('Stack', 'stack.go')).toEqual(['Push']);
  1078. // Cross-package isolation: other/Box defines no methods of its own.
  1079. expect(methodsOf('Box', 'other/box.go')).toEqual([]);
  1080. });
  1081. it('TS type_alias object-shape members resolve method calls (#359)', async () => {
  1082. // Pre-#359, `recorder.stop()` (recorder: RecorderHandle) attached
  1083. // to `StdioMcpClient.stop` in a sibling directory via path-proximity
  1084. // because the type_alias had no `stop` node — only the unrelated
  1085. // class did. Now type_alias produces member nodes (property/method),
  1086. // so the camelCase receiver↔type word overlap pulls the call to
  1087. // `RecorderHandle::stop` instead of the look-alike class.
  1088. fs.mkdirSync(path.join(tempDir, 'voice'));
  1089. fs.mkdirSync(path.join(tempDir, 'codegraph'));
  1090. fs.writeFileSync(
  1091. path.join(tempDir, 'voice', 'recorder.ts'),
  1092. `export type RecorderHandle = {
  1093. wavPath: string;
  1094. stop: () => Promise<{ ok: true }>;
  1095. };
  1096. `
  1097. );
  1098. fs.writeFileSync(
  1099. path.join(tempDir, 'voice', 'controller.ts'),
  1100. `import type { RecorderHandle } from "./recorder";
  1101. export async function finaliseRecording(recorder: RecorderHandle) {
  1102. return await recorder.stop();
  1103. }
  1104. `
  1105. );
  1106. fs.writeFileSync(
  1107. path.join(tempDir, 'codegraph', 'stdio-client.ts'),
  1108. `export class StdioMcpClient {
  1109. private stopped = false;
  1110. async stop(): Promise<void> { this.stopped = true; }
  1111. }
  1112. `
  1113. );
  1114. cg = await CodeGraph.init(tempDir, { index: true });
  1115. const handleStop = cg
  1116. .getNodesByKind('method')
  1117. .find((n) => n.qualifiedName === 'RecorderHandle::stop');
  1118. expect(handleStop).toBeDefined();
  1119. const clientStop = cg
  1120. .getNodesByKind('method')
  1121. .find((n) => n.qualifiedName === 'StdioMcpClient::stop');
  1122. expect(clientStop).toBeDefined();
  1123. const handleCallers = cg.getIncomingEdges(handleStop!.id).filter((e) => e.kind === 'calls');
  1124. const clientCallers = cg.getIncomingEdges(clientStop!.id).filter((e) => e.kind === 'calls');
  1125. expect(handleCallers.length).toBeGreaterThanOrEqual(1);
  1126. // The class method must have NO callers — voice/'s call must NOT
  1127. // mis-attribute. A non-empty list would mean the false-positive
  1128. // path is still firing.
  1129. expect(clientCallers).toHaveLength(0);
  1130. // Function-typed property surfaces as a `method` node, not `property`,
  1131. // because `stop()` semantics at the call site are method semantics.
  1132. expect(handleStop!.kind).toBe('method');
  1133. });
  1134. it('Java import disambiguates same-name classes across modules (#314)', async () => {
  1135. // Pre-#314 the import resolver had no Java branch at all, so a
  1136. // multi-module Maven repo where `dao/converter/FooConverter` and
  1137. // `service/converter/FooConverter` both export a `convert` method
  1138. // resolved by file-path proximity — picking whichever class was
  1139. // closer to the caller, which is wrong any time the caller lives
  1140. // in an equidistant cross-cutting module.
  1141. const daoDir = path.join(tempDir, 'dao/src/main/java/com/example/dao/converter');
  1142. const serviceDir = path.join(tempDir, 'service/src/main/java/com/example/service/converter');
  1143. const webDir = path.join(tempDir, 'web/src/main/java/com/example/web');
  1144. fs.mkdirSync(daoDir, { recursive: true });
  1145. fs.mkdirSync(serviceDir, { recursive: true });
  1146. fs.mkdirSync(webDir, { recursive: true });
  1147. fs.writeFileSync(
  1148. path.join(daoDir, 'FooConverter.java'),
  1149. `package com.example.dao.converter;
  1150. public class FooConverter { public String convert(String x) { return "dao:" + x; } }
  1151. `
  1152. );
  1153. fs.writeFileSync(
  1154. path.join(serviceDir, 'FooConverter.java'),
  1155. `package com.example.service.converter;
  1156. public class FooConverter { public String convert(String x) { return "svc:" + x; } }
  1157. `
  1158. );
  1159. // The caller imports the SERVICE version — even though dao is
  1160. // alphabetically/lexically first in the candidate list, the
  1161. // import must trump that order.
  1162. fs.writeFileSync(
  1163. path.join(webDir, 'Handler.java'),
  1164. `package com.example.web;
  1165. import com.example.service.converter.FooConverter;
  1166. public class Handler {
  1167. private FooConverter fooConverter;
  1168. public String use() { return fooConverter.convert("input"); }
  1169. }
  1170. `
  1171. );
  1172. cg = await CodeGraph.init(tempDir, { index: true });
  1173. const use = cg
  1174. .getNodesByKind('method')
  1175. .find((n) => n.qualifiedName === 'com.example.web::Handler::use');
  1176. expect(use).toBeDefined();
  1177. const calls = cg.getOutgoingEdges(use!.id).filter((e) => e.kind === 'calls');
  1178. expect(calls.length).toBeGreaterThanOrEqual(1);
  1179. const target = cg.getNode(calls[0]!.target);
  1180. expect(target?.name).toBe('convert');
  1181. expect(target?.filePath.replace(/\\/g, '/')).toBe(
  1182. 'service/src/main/java/com/example/service/converter/FooConverter.java'
  1183. );
  1184. });
  1185. it('C# extracts references from method/property/field types (#381)', async () => {
  1186. // Pre-#381, every C# project produced ZERO `references` edges:
  1187. // csharp.ts was missing returnField, and the type-leaf walker
  1188. // only recognized TS/Java's `type_identifier` nodes — C# uses
  1189. // `identifier`/`predefined_type`/`qualified_name`/`generic_name`.
  1190. const srcDir = path.join(tempDir, 'src');
  1191. fs.mkdirSync(srcDir, { recursive: true });
  1192. fs.writeFileSync(
  1193. path.join(srcDir, 'Dtos.cs'),
  1194. `namespace MyApp;
  1195. public class SessionInfoDto { public string Id { get; set; } = ""; }
  1196. public class UserDto { public string Name { get; set; } = ""; }
  1197. `
  1198. );
  1199. fs.writeFileSync(
  1200. path.join(srcDir, 'Service.cs'),
  1201. `using System.Threading.Tasks;
  1202. namespace MyApp;
  1203. public class DataExporter
  1204. {
  1205. public SessionInfoDto Build(UserDto user, SessionInfoDto session) { return session; }
  1206. public Task<SessionInfoDto> BuildAsync(UserDto user) { return Task.FromResult(new SessionInfoDto()); }
  1207. public SessionInfoDto Latest { get; set; } = new();
  1208. private UserDto _cached;
  1209. }
  1210. `
  1211. );
  1212. cg = await CodeGraph.init(tempDir, { index: true });
  1213. const sessionDto = cg
  1214. .getNodesByKind('class')
  1215. .find((n) => n.name === 'SessionInfoDto');
  1216. const userDto = cg
  1217. .getNodesByKind('class')
  1218. .find((n) => n.name === 'UserDto');
  1219. expect(sessionDto).toBeDefined();
  1220. expect(userDto).toBeDefined();
  1221. const sessionIncoming = cg
  1222. .getIncomingEdges(sessionDto!.id)
  1223. .filter((e) => e.kind === 'references');
  1224. const userIncoming = cg
  1225. .getIncomingEdges(userDto!.id)
  1226. .filter((e) => e.kind === 'references');
  1227. // SessionInfoDto: Build return, Build param, BuildAsync return (inside Task<>), Latest property.
  1228. // UserDto: Build param, BuildAsync param, _cached field.
  1229. expect(sessionIncoming.length).toBeGreaterThanOrEqual(4);
  1230. expect(userIncoming.length).toBeGreaterThanOrEqual(3);
  1231. });
  1232. it('C# primary-constructor parameters record their type dependencies (#237)', async () => {
  1233. // C# 12 primary constructors declare a type's injected dependencies inline
  1234. // (`class Svc(IRepo repo, [FromKeyedServices("k")] ICache cache)`). Each
  1235. // ctor parameter's type is recorded as a `references` edge from the class,
  1236. // so a DI-registered contract reached only through a primary ctor is no
  1237. // longer reported as having no dependents.
  1238. fs.mkdirSync(path.join(tempDir, 'src'), { recursive: true });
  1239. fs.writeFileSync(
  1240. path.join(tempDir, 'src', 'Contracts.cs'),
  1241. `namespace App;
  1242. public interface IRepo { }
  1243. public class ICache { }
  1244. `
  1245. );
  1246. fs.writeFileSync(
  1247. path.join(tempDir, 'src', 'OrderService.cs'),
  1248. `namespace App;
  1249. public sealed class OrderService(IRepo repo, [FromKeyedServices("primary")] ICache cache)
  1250. {
  1251. public void Run() { }
  1252. }
  1253. `
  1254. );
  1255. cg = await CodeGraph.init(tempDir, { index: true });
  1256. const svc = cg.getNodesByKind('class').find((n) => n.name === 'OrderService');
  1257. expect(svc).toBeDefined();
  1258. // The class itself must index (it used to vanish under the old grammar).
  1259. const out = cg.getOutgoingEdges(svc!.id).filter((e) => e.kind === 'references');
  1260. const depNames = out.map((e) => cg.getNode(e.target)?.name);
  1261. expect(depNames).toContain('IRepo');
  1262. expect(depNames).toContain('ICache'); // the keyed-DI ([FromKeyedServices]) dependency
  1263. });
  1264. it('Go: leaves stdlib calls (fmt.Println, etc.) external', async () => {
  1265. fs.writeFileSync(
  1266. path.join(tempDir, 'go.mod'),
  1267. 'module github.com/example/myproject\n\ngo 1.21\n'
  1268. );
  1269. fs.writeFileSync(
  1270. path.join(tempDir, 'main.go'),
  1271. `package main
  1272. import "fmt"
  1273. func main() {
  1274. fmt.Println("hi")
  1275. }
  1276. `
  1277. );
  1278. cg = await CodeGraph.init(tempDir, { index: true });
  1279. const mainFn = cg.getNodesByKind('function').filter((n) => n.name ==='main')[0];
  1280. const calls = cg.getOutgoingEdges(mainFn!.id).filter((e) => e.kind === 'calls');
  1281. // No spurious in-project edge — fmt.* must stay unresolved/external.
  1282. expect(calls).toHaveLength(0);
  1283. });
  1284. });
  1285. describe('Name Matcher: kind bias for new ref kinds', () => {
  1286. const baseContext = (candidates: Node[]): ResolutionContext => ({
  1287. getNodesInFile: () => [],
  1288. getNodesByName: (name) => candidates.filter((c) => c.name === name),
  1289. getNodesByQualifiedName: () => [],
  1290. getNodesByKind: () => [],
  1291. fileExists: () => true,
  1292. readFile: () => null,
  1293. getProjectRoot: () => '/test',
  1294. getAllFiles: () => [],
  1295. getNodesByLowerName: () => [],
  1296. getImportMappings: () => [],
  1297. });
  1298. it('prefers a class candidate over a function for `instantiates` refs', () => {
  1299. // A class and a function share a name across the codebase.
  1300. // Without the kind bias, the function (which gets the +25 `calls`
  1301. // bonus historically applied to all candidates of that kind) would
  1302. // win. Now the instantiates branch reverses it.
  1303. const fn: Node = {
  1304. id: 'func:utils.ts:Logger:5', kind: 'function', name: 'Logger',
  1305. qualifiedName: 'utils.ts::Logger', filePath: 'utils.ts', language: 'typescript',
  1306. startLine: 5, endLine: 7, startColumn: 0, endColumn: 0, updatedAt: Date.now(),
  1307. };
  1308. const cls: Node = {
  1309. id: 'class:logger.ts:Logger:10', kind: 'class', name: 'Logger',
  1310. qualifiedName: 'logger.ts::Logger', filePath: 'logger.ts', language: 'typescript',
  1311. startLine: 10, endLine: 30, startColumn: 0, endColumn: 0, updatedAt: Date.now(),
  1312. };
  1313. const ref = {
  1314. fromNodeId: 'func:main.ts:bootstrap:1',
  1315. referenceName: 'Logger',
  1316. referenceKind: 'instantiates' as const,
  1317. line: 5, column: 0, filePath: 'main.ts', language: 'typescript' as const,
  1318. };
  1319. const result = matchReference(ref, baseContext([fn, cls]));
  1320. expect(result?.targetNodeId).toBe('class:logger.ts:Logger:10');
  1321. });
  1322. it('prefers a function candidate over a non-function for `decorates` refs', () => {
  1323. const variable: Node = {
  1324. id: 'var:config.ts:Inject:5', kind: 'variable', name: 'Inject',
  1325. qualifiedName: 'config.ts::Inject', filePath: 'config.ts', language: 'typescript',
  1326. startLine: 5, endLine: 5, startColumn: 0, endColumn: 0, updatedAt: Date.now(),
  1327. };
  1328. const decorator: Node = {
  1329. id: 'func:di.ts:Inject:10', kind: 'function', name: 'Inject',
  1330. qualifiedName: 'di.ts::Inject', filePath: 'di.ts', language: 'typescript',
  1331. startLine: 10, endLine: 20, startColumn: 0, endColumn: 0, updatedAt: Date.now(),
  1332. };
  1333. const ref = {
  1334. fromNodeId: 'class:svc.ts:UserService:1',
  1335. referenceName: 'Inject',
  1336. referenceKind: 'decorates' as const,
  1337. line: 5, column: 0, filePath: 'svc.ts', language: 'typescript' as const,
  1338. };
  1339. const result = matchReference(ref, baseContext([variable, decorator]));
  1340. expect(result?.targetNodeId).toBe('func:di.ts:Inject:10');
  1341. });
  1342. });
  1343. describe('tsconfig path aliases', () => {
  1344. it('resolves an aliased import to the alias-mapped file (not a same-named file elsewhere)', async () => {
  1345. // Two same-named exports in different directories. Without alias
  1346. // resolution, name-matcher would pick whichever it finds first;
  1347. // with alias resolution, the import path uniquely picks one.
  1348. fs.mkdirSync(path.join(tempDir, 'src/utils'), { recursive: true });
  1349. fs.mkdirSync(path.join(tempDir, 'src/legacy'), { recursive: true });
  1350. fs.writeFileSync(
  1351. path.join(tempDir, 'src/utils/format.ts'),
  1352. `export function pickMe(): number { return 1; }\n`
  1353. );
  1354. fs.writeFileSync(
  1355. path.join(tempDir, 'src/legacy/format.ts'),
  1356. `export function pickMe(): number { return 99; }\n`
  1357. );
  1358. fs.writeFileSync(
  1359. path.join(tempDir, 'src/main.ts'),
  1360. `import { pickMe } from '@utils/format';\nexport function go(): number { return pickMe(); }\n`
  1361. );
  1362. fs.writeFileSync(
  1363. path.join(tempDir, 'tsconfig.json'),
  1364. JSON.stringify({
  1365. compilerOptions: {
  1366. baseUrl: './src',
  1367. paths: { '@utils/*': ['utils/*'] },
  1368. },
  1369. })
  1370. );
  1371. cg = await CodeGraph.init(tempDir, { index: true });
  1372. cg.resolveReferences();
  1373. // The two pickMe nodes live in different files. The aliased
  1374. // import should attach the call edge to the @utils-mapped one,
  1375. // not the legacy duplicate.
  1376. const all = cg.getNodesByKind('function').filter((n) => n.name === 'pickMe');
  1377. const utilsNode = all.find((n) => n.filePath === 'src/utils/format.ts');
  1378. const legacyNode = all.find((n) => n.filePath === 'src/legacy/format.ts');
  1379. expect(utilsNode).toBeDefined();
  1380. expect(legacyNode).toBeDefined();
  1381. const utilsCallers = cg.getCallers(utilsNode!.id);
  1382. const legacyCallers = cg.getCallers(legacyNode!.id);
  1383. expect(utilsCallers.length).toBeGreaterThan(0);
  1384. expect(utilsCallers.some((c) => c.node.filePath === 'src/main.ts')).toBe(true);
  1385. // The legacy node should NOT have a caller from src/main.ts —
  1386. // the alias correctly picked the utils version.
  1387. expect(legacyCallers.some((c) => c.node.filePath === 'src/main.ts')).toBe(false);
  1388. });
  1389. it('falls back gracefully when tsconfig is absent', async () => {
  1390. fs.mkdirSync(path.join(tempDir, 'src'), { recursive: true });
  1391. fs.writeFileSync(
  1392. path.join(tempDir, 'src/a.ts'),
  1393. `export function aFn(): void {}\n`
  1394. );
  1395. fs.writeFileSync(
  1396. path.join(tempDir, 'src/b.ts'),
  1397. `import { aFn } from './a';\nexport function bFn(): void { aFn(); }\n`
  1398. );
  1399. cg = await CodeGraph.init(tempDir, { index: true });
  1400. // No tsconfig present — index should still complete and the
  1401. // relative-import-based call edge should be created.
  1402. const aFn = cg.getNodesByKind('function').find((n) => n.name === 'aFn');
  1403. expect(aFn).toBeDefined();
  1404. const callers = cg.getCallers(aFn!.id);
  1405. expect(callers.some((c) => c.node.filePath === 'src/b.ts')).toBe(true);
  1406. });
  1407. });
  1408. describe('re-export chain following', () => {
  1409. it('chases a 3-hop barrel chain (wildcard → named → declaration)', async () => {
  1410. // main.ts → all.ts (wildcard) → index.ts (named) → auth.ts (declaration).
  1411. // Without chain following, `signIn` resolves to nothing because
  1412. // none of the barrel files declare it directly.
  1413. fs.mkdirSync(path.join(tempDir, 'src/services'), { recursive: true });
  1414. fs.writeFileSync(
  1415. path.join(tempDir, 'src/services/auth.ts'),
  1416. `export function signIn(): void {}\n`
  1417. );
  1418. fs.writeFileSync(
  1419. path.join(tempDir, 'src/services/index.ts'),
  1420. `export { signIn } from './auth';\n`
  1421. );
  1422. fs.writeFileSync(
  1423. path.join(tempDir, 'src/all.ts'),
  1424. `export * from './services/index';\n`
  1425. );
  1426. fs.writeFileSync(
  1427. path.join(tempDir, 'src/main.ts'),
  1428. `import { signIn } from './all';\nexport function go(): void { signIn(); }\n`
  1429. );
  1430. cg = await CodeGraph.init(tempDir, { index: true });
  1431. cg.resolveReferences();
  1432. const signInNode = cg
  1433. .getNodesByKind('function')
  1434. .find((n) => n.name === 'signIn' && n.filePath === 'src/services/auth.ts');
  1435. expect(signInNode).toBeDefined();
  1436. const callers = cg.getCallers(signInNode!.id);
  1437. expect(callers.some((c) => c.node.filePath === 'src/main.ts')).toBe(true);
  1438. });
  1439. it('follows a renamed named re-export (export { foo as bar } from ...)', async () => {
  1440. // The chase has to look up `foo` in the upstream module even
  1441. // though the importer asked for `bar` — exercises the rename
  1442. // branch of findExportedSymbol.
  1443. fs.mkdirSync(path.join(tempDir, 'src'), { recursive: true });
  1444. fs.writeFileSync(
  1445. path.join(tempDir, 'src/auth.ts'),
  1446. `export function signIn(): void {}\n`
  1447. );
  1448. fs.writeFileSync(
  1449. path.join(tempDir, 'src/index.ts'),
  1450. `export { signIn as login } from './auth';\n`
  1451. );
  1452. fs.writeFileSync(
  1453. path.join(tempDir, 'src/main.ts'),
  1454. `import { login } from './index';\nexport function go(): void { login(); }\n`
  1455. );
  1456. cg = await CodeGraph.init(tempDir, { index: true });
  1457. cg.resolveReferences();
  1458. const signInNode = cg
  1459. .getNodesByKind('function')
  1460. .find((n) => n.name === 'signIn' && n.filePath === 'src/auth.ts');
  1461. expect(signInNode).toBeDefined();
  1462. const callers = cg.getCallers(signInNode!.id);
  1463. expect(callers.some((c) => c.node.filePath === 'src/main.ts')).toBe(true);
  1464. });
  1465. it('follows a default re-export of a .svelte component (export { default as Foo } from ./RealButton.svelte) (#629)', async () => {
  1466. // The ubiquitous Svelte/React component-barrel form. The leaf is a
  1467. // .svelte component (extracted as kind 'component', the default
  1468. // export). The re-export ALIAS (`Foo`) deliberately differs from the
  1469. // component's real name (`RealButton`) so the name-matcher fallback
  1470. // can't coincidentally connect them — the only path to the edge is
  1471. // the import-chase, which must match a `component` (not just
  1472. // function/class) for the default export. Otherwise the
  1473. // consumer↔component edge is never created and `callers` returns a
  1474. // false 0.
  1475. fs.mkdirSync(path.join(tempDir, 'src/lib'), { recursive: true });
  1476. fs.writeFileSync(
  1477. path.join(tempDir, 'src/lib/RealButton.svelte'),
  1478. `<script lang="ts">\n export let label: string = '';\n</script>\n\n<button>{label}</button>\n`
  1479. );
  1480. fs.writeFileSync(
  1481. path.join(tempDir, 'src/lib/index.ts'),
  1482. `export { default as Foo } from './RealButton.svelte';\n`
  1483. );
  1484. fs.writeFileSync(
  1485. path.join(tempDir, 'src/Bar.svelte'),
  1486. `<script lang="ts">\n import { Foo } from './lib';\n</script>\n\n<Foo />\n`
  1487. );
  1488. cg = await CodeGraph.init(tempDir, { index: true });
  1489. cg.resolveReferences();
  1490. const fooNode = cg
  1491. .getNodesByKind('component')
  1492. .find((n) => n.name === 'RealButton' && n.filePath === 'src/lib/RealButton.svelte');
  1493. expect(fooNode).toBeDefined();
  1494. const callers = cg.getCallers(fooNode!.id);
  1495. expect(callers.some((c) => c.node.filePath === 'src/Bar.svelte')).toBe(true);
  1496. });
  1497. it('links an .astro page to the component and TS util it uses (#768)', async () => {
  1498. // The canonical Astro shape: a page imports a layout/component in
  1499. // frontmatter and uses it as a template tag; the component's template
  1500. // calls an imported .ts util. Both hops must produce graph edges or
  1501. // an Astro project is invisible to callers/impact.
  1502. fs.mkdirSync(path.join(tempDir, 'src/components'), { recursive: true });
  1503. fs.mkdirSync(path.join(tempDir, 'src/utils'), { recursive: true });
  1504. fs.mkdirSync(path.join(tempDir, 'src/pages'), { recursive: true });
  1505. fs.writeFileSync(
  1506. path.join(tempDir, 'src/utils/format.ts'),
  1507. `export function formatDate(d: Date): string { return d.toISOString(); }\n`
  1508. );
  1509. fs.writeFileSync(
  1510. path.join(tempDir, 'src/components/PostCard.astro'),
  1511. `---\nimport { formatDate } from '../utils/format';\nconst { date } = Astro.props;\n---\n<time>{formatDate(date)}</time>\n`
  1512. );
  1513. fs.writeFileSync(
  1514. path.join(tempDir, 'src/pages/index.astro'),
  1515. `---\nimport PostCard from '../components/PostCard.astro';\n---\n<PostCard date={new Date()} />\n`
  1516. );
  1517. cg = await CodeGraph.init(tempDir, { index: true });
  1518. cg.resolveReferences();
  1519. // Hop 1: page → component (template tag through the frontmatter import)
  1520. const cardNode = cg
  1521. .getNodesByKind('component')
  1522. .find((n) => n.name === 'PostCard' && n.filePath === 'src/components/PostCard.astro');
  1523. expect(cardNode).toBeDefined();
  1524. const cardCallers = cg.getCallers(cardNode!.id);
  1525. expect(cardCallers.some((c) => c.node.filePath === 'src/pages/index.astro')).toBe(true);
  1526. // Hop 2: component template call → .ts util
  1527. const fmtNode = cg
  1528. .getNodesByKind('function')
  1529. .find((n) => n.name === 'formatDate' && n.filePath === 'src/utils/format.ts');
  1530. expect(fmtNode).toBeDefined();
  1531. const fmtCallers = cg.getCallers(fmtNode!.id);
  1532. expect(fmtCallers.some((c) => c.node.filePath === 'src/components/PostCard.astro')).toBe(true);
  1533. });
  1534. it('resolves a bare directory import (import { x } from "." / "./") to index.ts (#629)', async () => {
  1535. // `import { helper } from '.'` (or './') must map to the
  1536. // directory's index.ts before the re-export chase can run. The
  1537. // barrel renames `realHelper` → `helper` so the name-matcher can't
  1538. // mask a path-resolution failure: only the bare-dir resolution +
  1539. // rename chase can connect the edge.
  1540. fs.mkdirSync(path.join(tempDir, 'src'), { recursive: true });
  1541. fs.writeFileSync(
  1542. path.join(tempDir, 'src/util.ts'),
  1543. `export function realHelper(): void {}\n`
  1544. );
  1545. fs.writeFileSync(
  1546. path.join(tempDir, 'src/index.ts'),
  1547. `export { realHelper as helper } from './util';\n`
  1548. );
  1549. fs.writeFileSync(
  1550. path.join(tempDir, 'src/main.ts'),
  1551. `import { helper } from '.';\nexport function go(): void { helper(); }\n`
  1552. );
  1553. fs.writeFileSync(
  1554. path.join(tempDir, 'src/main2.ts'),
  1555. `import { helper } from './';\nexport function go2(): void { helper(); }\n`
  1556. );
  1557. cg = await CodeGraph.init(tempDir, { index: true });
  1558. cg.resolveReferences();
  1559. const helperNode = cg
  1560. .getNodesByKind('function')
  1561. .find((n) => n.name === 'realHelper' && n.filePath === 'src/util.ts');
  1562. expect(helperNode).toBeDefined();
  1563. const callers = cg.getCallers(helperNode!.id);
  1564. expect(callers.some((c) => c.node.filePath === 'src/main.ts')).toBe(true);
  1565. expect(callers.some((c) => c.node.filePath === 'src/main2.ts')).toBe(true);
  1566. });
  1567. it('resolves a workspace package-subpath barrel (@scope/pkg/sub) to its index (#629)', async () => {
  1568. // bun/npm/pnpm workspace: `@scope/ui/widgets` → the `ui` package's
  1569. // `widgets/` subdir index, which re-exports a .svelte component.
  1570. // Alias `Thing` ≠ component `Widget` defeats the name-matcher, so
  1571. // only workspace-package resolution can connect the edge.
  1572. fs.mkdirSync(path.join(tempDir, 'packages/ui/widgets'), { recursive: true });
  1573. fs.writeFileSync(
  1574. path.join(tempDir, 'package.json'),
  1575. JSON.stringify({ name: 'root', private: true, workspaces: ['packages/*'] }, null, 2)
  1576. );
  1577. fs.writeFileSync(
  1578. path.join(tempDir, 'packages/ui/package.json'),
  1579. JSON.stringify({ name: '@scope/ui', version: '1.0.0' }, null, 2)
  1580. );
  1581. fs.writeFileSync(
  1582. path.join(tempDir, 'packages/ui/widgets/Widget.svelte'),
  1583. `<script lang="ts">\n export let label: string = '';\n</script>\n\n<button>{label}</button>\n`
  1584. );
  1585. fs.writeFileSync(
  1586. path.join(tempDir, 'packages/ui/widgets/index.ts'),
  1587. `export { default as Thing } from './Widget.svelte';\n`
  1588. );
  1589. fs.mkdirSync(path.join(tempDir, 'app'), { recursive: true });
  1590. fs.writeFileSync(
  1591. path.join(tempDir, 'app/App.svelte'),
  1592. `<script lang="ts">\n import { Thing } from '@scope/ui/widgets';\n</script>\n\n<Thing />\n`
  1593. );
  1594. cg = await CodeGraph.init(tempDir, { index: true });
  1595. cg.resolveReferences();
  1596. const buttonNode = cg
  1597. .getNodesByKind('component')
  1598. .find((n) => n.name === 'Widget' && n.filePath === 'packages/ui/widgets/Widget.svelte');
  1599. expect(buttonNode).toBeDefined();
  1600. const callers = cg.getCallers(buttonNode!.id);
  1601. expect(callers.some((c) => c.node.filePath === 'app/App.svelte')).toBe(true);
  1602. });
  1603. it('resolves a barrel import from a Vue SFC <script> block (#629)', async () => {
  1604. // The same import-resolution gaps (no SFC import mappings, no SFC
  1605. // extension list, barrel parsed in the consumer's language) broke
  1606. // Vue SFCs too. Guards the resolver-side generalization to `.vue`.
  1607. // The barrel renames `realRun` → `run` so only the import-chase (not
  1608. // the name-matcher) can connect the call.
  1609. fs.mkdirSync(path.join(tempDir, 'src'), { recursive: true });
  1610. fs.writeFileSync(
  1611. path.join(tempDir, 'src/util.ts'),
  1612. `export function realRun(): void {}\n`
  1613. );
  1614. fs.writeFileSync(
  1615. path.join(tempDir, 'src/index.ts'),
  1616. `export { realRun as run } from './util';\n`
  1617. );
  1618. fs.writeFileSync(
  1619. path.join(tempDir, 'src/App.vue'),
  1620. `<script lang="ts">\nimport { run } from './';\nexport default { mounted() { run(); } };\n</script>\n<template><div/></template>\n`
  1621. );
  1622. cg = await CodeGraph.init(tempDir, { index: true });
  1623. cg.resolveReferences();
  1624. const runNode = cg
  1625. .getNodesByKind('function')
  1626. .find((n) => n.name === 'realRun' && n.filePath === 'src/util.ts');
  1627. expect(runNode).toBeDefined();
  1628. const callers = cg.getCallers(runNode!.id);
  1629. expect(callers.some((c) => c.node.filePath === 'src/App.vue')).toBe(true);
  1630. });
  1631. it('follows a Vue component used in a <template> through a default re-export barrel (#629)', async () => {
  1632. // End-to-end Vue analogue of the Svelte case: the leaf is a `.vue`
  1633. // component re-exported under an alias (`Thing`) that differs from its
  1634. // real name (`Widget`), and the consumer uses it ONLY in markup
  1635. // (`<Thing />`). Requires both the new template-tag extraction AND the
  1636. // barrel default-export chase to connect the edge.
  1637. fs.mkdirSync(path.join(tempDir, 'src/lib'), { recursive: true });
  1638. fs.writeFileSync(
  1639. path.join(tempDir, 'src/lib/Widget.vue'),
  1640. `<script setup lang="ts">\ndefineProps<{ label?: string }>();\n</script>\n<template><button>x</button></template>\n`
  1641. );
  1642. fs.writeFileSync(
  1643. path.join(tempDir, 'src/lib/index.ts'),
  1644. `export { default as Thing } from './Widget.vue';\n`
  1645. );
  1646. fs.writeFileSync(
  1647. path.join(tempDir, 'src/App.vue'),
  1648. `<script setup lang="ts">\nimport { Thing } from './lib';\n</script>\n<template>\n <Thing />\n</template>\n`
  1649. );
  1650. cg = await CodeGraph.init(tempDir, { index: true });
  1651. cg.resolveReferences();
  1652. const widgetNode = cg
  1653. .getNodesByKind('component')
  1654. .find((n) => n.name === 'Widget' && n.filePath === 'src/lib/Widget.vue');
  1655. expect(widgetNode).toBeDefined();
  1656. const callers = cg.getCallers(widgetNode!.id);
  1657. expect(callers.some((c) => c.node.filePath === 'src/App.vue')).toBe(true);
  1658. });
  1659. });
  1660. describe('C/C++ Import Resolution', () => {
  1661. afterEach(() => {
  1662. clearCppIncludeDirCache();
  1663. });
  1664. it('should resolve C include to header in same directory', () => {
  1665. const context: ResolutionContext = {
  1666. getNodesInFile: () => [],
  1667. getNodesByName: () => [],
  1668. getNodesByQualifiedName: () => [],
  1669. getNodesByKind: () => [],
  1670. fileExists: (p) => p === 'utils.h',
  1671. readFile: () => null,
  1672. getProjectRoot: () => '',
  1673. getAllFiles: () => ['utils.h', 'main.c'],
  1674. };
  1675. const result = resolveImportPath(
  1676. 'utils.h',
  1677. 'main.c',
  1678. 'c',
  1679. context
  1680. );
  1681. expect(result).toBe('utils.h');
  1682. });
  1683. it('should resolve C++ include with .hpp extension', () => {
  1684. const context: ResolutionContext = {
  1685. getNodesInFile: () => [],
  1686. getNodesByName: () => [],
  1687. getNodesByQualifiedName: () => [],
  1688. getNodesByKind: () => [],
  1689. fileExists: (p) => p === 'include/myclass.hpp',
  1690. readFile: () => null,
  1691. getProjectRoot: () => '',
  1692. getAllFiles: () => ['include/myclass.hpp', 'src/main.cpp'],
  1693. getCppIncludeDirs: () => ['include'],
  1694. };
  1695. const result = resolveImportPath(
  1696. 'myclass.hpp',
  1697. 'src/main.cpp',
  1698. 'cpp',
  1699. context
  1700. );
  1701. expect(result).toBe('include/myclass.hpp');
  1702. });
  1703. it('should resolve include with subdirectory path', () => {
  1704. const context: ResolutionContext = {
  1705. getNodesInFile: () => [],
  1706. getNodesByName: () => [],
  1707. getNodesByQualifiedName: () => [],
  1708. getNodesByKind: () => [],
  1709. fileExists: (p) => p === 'utils/helpers.h',
  1710. readFile: () => null,
  1711. getProjectRoot: () => '',
  1712. getAllFiles: () => ['utils/helpers.h', 'main.c'],
  1713. };
  1714. const result = resolveImportPath(
  1715. 'utils/helpers.h',
  1716. 'main.c',
  1717. 'c',
  1718. context
  1719. );
  1720. expect(result).toBe('utils/helpers.h');
  1721. });
  1722. it('should resolve include via include directories', () => {
  1723. const context: ResolutionContext = {
  1724. getNodesInFile: () => [],
  1725. getNodesByName: () => [],
  1726. getNodesByQualifiedName: () => [],
  1727. getNodesByKind: () => [],
  1728. fileExists: (p) => p === 'include/myheader.h',
  1729. readFile: () => null,
  1730. getProjectRoot: () => '',
  1731. getAllFiles: () => ['include/myheader.h', 'src/main.cpp'],
  1732. getCppIncludeDirs: () => ['include'],
  1733. };
  1734. const result = resolveImportPath(
  1735. 'myheader.h',
  1736. 'src/main.cpp',
  1737. 'cpp',
  1738. context
  1739. );
  1740. expect(result).toBe('include/myheader.h');
  1741. });
  1742. it('should resolve include trying multiple extensions', () => {
  1743. const context: ResolutionContext = {
  1744. getNodesInFile: () => [],
  1745. getNodesByName: () => [],
  1746. getNodesByQualifiedName: () => [],
  1747. getNodesByKind: () => [],
  1748. // myclass.h does not exist, but myclass.hpp does
  1749. fileExists: (p) => p === 'include/myclass.hpp',
  1750. readFile: () => null,
  1751. getProjectRoot: () => '',
  1752. getAllFiles: () => ['include/myclass.hpp', 'src/main.cpp'],
  1753. getCppIncludeDirs: () => ['include'],
  1754. };
  1755. const result = resolveImportPath(
  1756. 'myclass',
  1757. 'src/main.cpp',
  1758. 'cpp',
  1759. context
  1760. );
  1761. expect(result).toBe('include/myclass.hpp');
  1762. });
  1763. it('should return null for system headers', () => {
  1764. const context: ResolutionContext = {
  1765. getNodesInFile: () => [],
  1766. getNodesByName: () => [],
  1767. getNodesByQualifiedName: () => [],
  1768. getNodesByKind: () => [],
  1769. fileExists: () => true,
  1770. readFile: () => null,
  1771. getProjectRoot: () => '',
  1772. getAllFiles: () => [],
  1773. };
  1774. // C standard library header
  1775. expect(resolveImportPath('stdio.h', 'main.c', 'c', context)).toBeNull();
  1776. // C++ standard library header
  1777. expect(resolveImportPath('vector', 'main.cpp', 'cpp', context)).toBeNull();
  1778. // C++ C-wrapper header
  1779. expect(resolveImportPath('cstdio', 'main.cpp', 'cpp', context)).toBeNull();
  1780. });
  1781. it('should return null for single-component third-party paths that cannot be resolved', () => {
  1782. const context: ResolutionContext = {
  1783. getNodesInFile: () => [],
  1784. getNodesByName: () => [],
  1785. getNodesByQualifiedName: () => [],
  1786. getNodesByKind: () => [],
  1787. fileExists: () => false,
  1788. readFile: () => null,
  1789. getProjectRoot: () => '',
  1790. getAllFiles: () => [],
  1791. getCppIncludeDirs: () => [],
  1792. };
  1793. // Third-party bare header without path — not resolvable, returns null
  1794. const result = resolveImportPath(
  1795. 'openssl/ssl.h',
  1796. 'main.cpp',
  1797. 'cpp',
  1798. context
  1799. );
  1800. expect(result).toBeNull();
  1801. });
  1802. it('should not filter project headers with path separators', () => {
  1803. const context: ResolutionContext = {
  1804. getNodesInFile: () => [],
  1805. getNodesByName: () => [],
  1806. getNodesByQualifiedName: () => [],
  1807. getNodesByKind: () => [],
  1808. fileExists: (p) => p === 'mylib/utils.h',
  1809. readFile: () => null,
  1810. getProjectRoot: () => '',
  1811. getAllFiles: () => ['mylib/utils.h'],
  1812. };
  1813. // Path with separator should NOT be filtered as external
  1814. const result = resolveImportPath(
  1815. 'mylib/utils.h',
  1816. 'main.c',
  1817. 'c',
  1818. context
  1819. );
  1820. expect(result).toBe('mylib/utils.h');
  1821. });
  1822. it('should extract C/C++ import mappings from #include directives', () => {
  1823. const code = `#include <iostream>
  1824. #include "myheader.h"
  1825. #include "utils/helpers.hpp"`;
  1826. const mappings = extractImportMappings('main.cpp', code, 'cpp');
  1827. expect(mappings.length).toBe(3);
  1828. expect(mappings[0]).toEqual({
  1829. localName: 'iostream',
  1830. exportedName: '*',
  1831. source: 'iostream',
  1832. isDefault: false,
  1833. isNamespace: true,
  1834. });
  1835. expect(mappings[1]).toEqual({
  1836. localName: 'myheader',
  1837. exportedName: '*',
  1838. source: 'myheader.h',
  1839. isDefault: false,
  1840. isNamespace: true,
  1841. });
  1842. expect(mappings[2]).toEqual({
  1843. localName: 'helpers',
  1844. exportedName: '*',
  1845. source: 'utils/helpers.hpp',
  1846. isDefault: false,
  1847. isNamespace: true,
  1848. });
  1849. });
  1850. it('should discover include directories from compile_commands.json', () => {
  1851. // Create a temp project with compile_commands.json
  1852. const tempProject = fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-cpp-test-'));
  1853. try {
  1854. const compileDb = [
  1855. {
  1856. directory: tempProject,
  1857. command: 'g++ -Iinclude -Isrc/lib -isystem /usr/include -c src/main.cpp',
  1858. file: 'src/main.cpp',
  1859. },
  1860. ];
  1861. fs.writeFileSync(
  1862. path.join(tempProject, 'compile_commands.json'),
  1863. JSON.stringify(compileDb)
  1864. );
  1865. // Create the include dirs so they exist
  1866. fs.mkdirSync(path.join(tempProject, 'include'), { recursive: true });
  1867. fs.mkdirSync(path.join(tempProject, 'src', 'lib'), { recursive: true });
  1868. clearCppIncludeDirCache();
  1869. const dirs = loadCppIncludeDirs(tempProject);
  1870. // Should find include and src/lib (relative to project root)
  1871. // /usr/include is absolute and outside project, should be excluded
  1872. expect(dirs).toContain('include');
  1873. expect(dirs).toContain('src/lib');
  1874. expect(dirs.some(d => d.includes('usr'))).toBe(false);
  1875. } finally {
  1876. fs.rmSync(tempProject, { recursive: true });
  1877. }
  1878. });
  1879. it('should fall back to heuristic include dirs when no compile_commands.json', () => {
  1880. const tempProject = fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-cpp-test-'));
  1881. try {
  1882. // Create include/ and src/ directories with headers
  1883. fs.mkdirSync(path.join(tempProject, 'include'), { recursive: true });
  1884. fs.writeFileSync(path.join(tempProject, 'include', 'types.h'), '');
  1885. fs.mkdirSync(path.join(tempProject, 'src'), { recursive: true });
  1886. fs.writeFileSync(path.join(tempProject, 'src', 'main.cpp'), '');
  1887. // Create a directory without headers — should not be included
  1888. fs.mkdirSync(path.join(tempProject, 'docs'), { recursive: true });
  1889. clearCppIncludeDirCache();
  1890. const dirs = loadCppIncludeDirs(tempProject);
  1891. expect(dirs).toContain('include');
  1892. expect(dirs).toContain('src');
  1893. expect(dirs).not.toContain('docs');
  1894. } finally {
  1895. fs.rmSync(tempProject, { recursive: true });
  1896. }
  1897. });
  1898. // Documents the cross-language `.h` behavior. Objective-C and C++ share
  1899. // the `.h` extension, so in a mixed iOS-style project an Obj-C header
  1900. // dir gets claimed as a C/C++ include dir too. That's intentional — a
  1901. // C++ file legitimately can `#include "Foo.h"` against an Obj-C header
  1902. // (Obj-C++ / .mm callers), and false-positive inclusion is far cheaper
  1903. // than missing real resolutions. The test pins this so a later
  1904. // "exclude objc dirs" refactor breaks loudly and reviewers see the
  1905. // trade-off explicitly.
  1906. it('heuristic claims any top-level dir containing .h files, including Obj-C', () => {
  1907. const tempProject = fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-cpp-test-'));
  1908. try {
  1909. // C++ side: an `cppmod` dir with a .hpp (C++-only extension)
  1910. fs.mkdirSync(path.join(tempProject, 'cppmod'), { recursive: true });
  1911. fs.writeFileSync(path.join(tempProject, 'cppmod', 'shared.hpp'), '');
  1912. // Obj-C side: an `iosmod` dir with .h + .m (no .cpp/.hpp).
  1913. fs.mkdirSync(path.join(tempProject, 'iosmod'), { recursive: true });
  1914. fs.writeFileSync(path.join(tempProject, 'iosmod', 'View.h'), '');
  1915. fs.writeFileSync(path.join(tempProject, 'iosmod', 'View.m'), '');
  1916. clearCppIncludeDirCache();
  1917. const dirs = loadCppIncludeDirs(tempProject);
  1918. // Both included — Obj-C dirs are intentionally allowed.
  1919. expect(dirs).toContain('cppmod');
  1920. expect(dirs).toContain('iosmod');
  1921. } finally {
  1922. fs.rmSync(tempProject, { recursive: true });
  1923. }
  1924. });
  1925. // End-to-end: ensure `#include "X.h"` produces a file→file `imports` edge
  1926. // in the actual indexing pipeline (not just a phantom file→import-node
  1927. // edge). This pins the include-dir resolution path so the headline PR
  1928. // feature can't silently regress to a no-op in the indexing flow.
  1929. it('connects #include to the real header file via include-dir scan (end-to-end)', async () => {
  1930. const tempProject = fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-cpp-e2e-'));
  1931. try {
  1932. fs.mkdirSync(path.join(tempProject, 'include'), { recursive: true });
  1933. fs.mkdirSync(path.join(tempProject, 'src'), { recursive: true });
  1934. fs.writeFileSync(
  1935. path.join(tempProject, 'include', 'utils.h'),
  1936. `#ifndef UTILS_H\n#define UTILS_H\nint add(int, int);\n#endif\n`
  1937. );
  1938. fs.writeFileSync(
  1939. path.join(tempProject, 'src', 'main.cpp'),
  1940. `#include "utils.h"\n#include <vector>\nint main(){ return add(1,2); }\n`
  1941. );
  1942. clearCppIncludeDirCache();
  1943. cg = await CodeGraph.init(tempProject, { index: true });
  1944. // Sanity: file nodes exist for the header and the cpp.
  1945. const allFiles = cg.getStats();
  1946. expect(allFiles.fileCount).toBe(2);
  1947. // The `#include "utils.h"` edge should target the real
  1948. // `include/utils.h` file node — not a floating `import` node
  1949. // living inside main.cpp.
  1950. const db = DatabaseConnection.open(path.join(tempProject, '.codegraph', 'codegraph.db'));
  1951. const rows = db.getDb().prepare(`
  1952. select dst.kind as dstKind, dst.file_path as dstPath
  1953. from edges e
  1954. join nodes src on e.source = src.id
  1955. join nodes dst on e.target = dst.id
  1956. where e.kind = 'imports'
  1957. and src.kind = 'file'
  1958. and src.file_path = 'src/main.cpp'
  1959. `).all() as Array<{ dstKind: string; dstPath: string }>;
  1960. const resolvedToHeader = rows.find(
  1961. (r) => r.dstKind === 'file' && r.dstPath === 'include/utils.h'
  1962. );
  1963. expect(resolvedToHeader, 'main.cpp → include/utils.h imports edge missing').toBeDefined();
  1964. // `<vector>` should NOT produce a file edge — it's a stdlib header.
  1965. const stdlibFile = rows.find(
  1966. (r) => r.dstKind === 'file' && r.dstPath && r.dstPath.endsWith('vector')
  1967. );
  1968. expect(stdlibFile).toBeUndefined();
  1969. } finally {
  1970. fs.rmSync(tempProject, { recursive: true, force: true });
  1971. }
  1972. });
  1973. });
  1974. describe('C++ templated base-class inheritance (#1043)', () => {
  1975. // A class deriving from a TEMPLATE — `class D : public Base<int>` (or a CRTP
  1976. // `class W : public CRTPBase<W>`, or a qualified `class Q : public ns::Tpl<int>`)
  1977. // recorded its base as the full instantiation text (`Base<int>`), which never
  1978. // name-matched the template, indexed as the bare node `Base`. The `<…>` args
  1979. // are now stripped so the `extends` edge resolves end-to-end.
  1980. it('resolves an extends edge to a templated base (plain, CRTP, struct, multi-base)', async () => {
  1981. fs.writeFileSync(
  1982. path.join(tempDir, 'lib.hpp'),
  1983. `#pragma once
  1984. template<typename T> class Base { public: void foo(); };
  1985. template<typename Derived> class CRTPBase {};
  1986. class Plain {};
  1987. class Widget : public Base<int> {}; // plain template base
  1988. class App : public CRTPBase<App> {}; // CRTP (curiously-recurring)
  1989. struct Node : public Base<double> {}; // struct inheriting a template
  1990. class Both : public Base<char>, public Plain {}; // templated + plain in one clause
  1991. `
  1992. );
  1993. cg = await CodeGraph.init(tempDir, { index: true });
  1994. const db = DatabaseConnection.open(path.join(tempDir, '.codegraph', 'codegraph.db'));
  1995. const edges = db
  1996. .getDb()
  1997. .prepare(
  1998. `select src.name as fromName, dst.name as toName
  1999. from edges e
  2000. join nodes src on e.source = src.id
  2001. join nodes dst on e.target = dst.id
  2002. where e.kind = 'extends'`
  2003. )
  2004. .all() as Array<{ fromName: string; toName: string }>;
  2005. const has = (from: string, to: string) =>
  2006. edges.some((r) => r.fromName === from && r.toName === to);
  2007. // Every templated base now resolves to the bare template node.
  2008. expect(has('Widget', 'Base'), 'Widget : Base<int>').toBe(true);
  2009. expect(has('App', 'CRTPBase'), 'App : CRTPBase<App> (CRTP)').toBe(true);
  2010. expect(has('Node', 'Base'), 'struct Node : Base<double>').toBe(true);
  2011. // A mixed clause resolves BOTH the templated and the plain base.
  2012. expect(has('Both', 'Base'), 'Both : Base<char>').toBe(true);
  2013. expect(has('Both', 'Plain'), 'Both : Plain (non-templated, regression guard)').toBe(true);
  2014. });
  2015. });
  2016. describe('PHP Include Resolution', () => {
  2017. it('isPhpIncludePathRef distinguishes include paths from namespace use (#660)', () => {
  2018. const mk = (name: string, over: Partial<UnresolvedRef> = {}): UnresolvedRef => ({
  2019. fromNodeId: 'f', referenceName: name, referenceKind: 'imports',
  2020. line: 1, column: 0, filePath: 'x.php', language: 'php', ...over,
  2021. });
  2022. // include paths: contain a slash or a file extension
  2023. expect(isPhpIncludePathRef(mk('lib.php'))).toBe(true);
  2024. expect(isPhpIncludePathRef(mk('inc/db.php'))).toBe(true);
  2025. expect(isPhpIncludePathRef(mk('../config.php'))).toBe(true);
  2026. // namespace use symbols: a bare class (Closure) or FQN — never a path,
  2027. // so they must NOT be treated as includes (would mis-connect to a
  2028. // same-named Closure.php / Bar.php file).
  2029. expect(isPhpIncludePathRef(mk('Closure'))).toBe(false);
  2030. expect(isPhpIncludePathRef(mk('PDO'))).toBe(false);
  2031. expect(isPhpIncludePathRef(mk('App\\Foo\\Bar'))).toBe(false);
  2032. // scoped to PHP imports only
  2033. expect(isPhpIncludePathRef(mk('lib.php', { language: 'c' }))).toBe(false);
  2034. expect(isPhpIncludePathRef(mk('lib.php', { referenceKind: 'calls' }))).toBe(false);
  2035. });
  2036. it('resolves require_once to a file→file imports edge (#660)', async () => {
  2037. const tempProject = fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-php-e2e-'));
  2038. try {
  2039. fs.mkdirSync(path.join(tempProject, 'src'), { recursive: true });
  2040. fs.writeFileSync(
  2041. path.join(tempProject, 'src', 'lib.php'),
  2042. `<?php\nfunction greet() { return "hi"; }\n`
  2043. );
  2044. fs.writeFileSync(
  2045. path.join(tempProject, 'src', 'page.php'),
  2046. `<?php\nrequire_once("lib.php");\necho greet();\n`
  2047. );
  2048. cg = await CodeGraph.init(tempProject, { index: true });
  2049. // reporter's repro: page.php's `require_once("lib.php")` must resolve
  2050. // to the real src/lib.php file node — a file→file `imports` edge, so
  2051. // callers(lib.php) now includes page.php.
  2052. const db = DatabaseConnection.open(path.join(tempProject, '.codegraph', 'codegraph.db'));
  2053. const rows = db.getDb().prepare(`
  2054. select dst.kind as dstKind, dst.file_path as dstPath
  2055. from edges e
  2056. join nodes src on e.source = src.id
  2057. join nodes dst on e.target = dst.id
  2058. where e.kind = 'imports'
  2059. and src.kind = 'file'
  2060. and src.file_path = 'src/page.php'
  2061. `).all() as Array<{ dstKind: string; dstPath: string }>;
  2062. const resolved = rows.find(
  2063. (r) => r.dstKind === 'file' && r.dstPath === 'src/lib.php'
  2064. );
  2065. expect(resolved, 'page.php → src/lib.php imports edge missing').toBeDefined();
  2066. } finally {
  2067. fs.rmSync(tempProject, { recursive: true, force: true });
  2068. }
  2069. });
  2070. it('resolves a subdirectory include path to the correct file (#660)', async () => {
  2071. const tempProject = fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-php-subdir-'));
  2072. try {
  2073. fs.mkdirSync(path.join(tempProject, 'inc'), { recursive: true });
  2074. fs.writeFileSync(
  2075. path.join(tempProject, 'inc', 'db.php'),
  2076. `<?php\nfunction query() { return 1; }\n`
  2077. );
  2078. fs.writeFileSync(
  2079. path.join(tempProject, 'index.php'),
  2080. `<?php\nrequire "inc/db.php";\nquery();\n`
  2081. );
  2082. cg = await CodeGraph.init(tempProject, { index: true });
  2083. const db = DatabaseConnection.open(path.join(tempProject, '.codegraph', 'codegraph.db'));
  2084. const rows = db.getDb().prepare(`
  2085. select dst.kind as dstKind, dst.file_path as dstPath
  2086. from edges e
  2087. join nodes src on e.source = src.id
  2088. join nodes dst on e.target = dst.id
  2089. where e.kind = 'imports'
  2090. and src.kind = 'file'
  2091. and src.file_path = 'index.php'
  2092. `).all() as Array<{ dstKind: string; dstPath: string }>;
  2093. expect(
  2094. rows.find((r) => r.dstKind === 'file' && r.dstPath === 'inc/db.php'),
  2095. 'index.php → inc/db.php imports edge missing'
  2096. ).toBeDefined();
  2097. } finally {
  2098. fs.rmSync(tempProject, { recursive: true, force: true });
  2099. }
  2100. });
  2101. it('does not mis-connect an unresolvable include to a same-named file elsewhere (#660)', async () => {
  2102. const tempProject = fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-php-misresolve-'));
  2103. try {
  2104. // app/page.php's `require "inc/db.php"` resolves relative to app/, where
  2105. // inc/db.php does NOT exist. A same-named lib/inc/db.php exists elsewhere
  2106. // but is unrelated — no edge should be created (a wrong edge is worse
  2107. // than a missing one).
  2108. fs.mkdirSync(path.join(tempProject, 'app'), { recursive: true });
  2109. fs.mkdirSync(path.join(tempProject, 'lib', 'inc'), { recursive: true });
  2110. fs.writeFileSync(
  2111. path.join(tempProject, 'lib', 'inc', 'db.php'),
  2112. `<?php\nfunction unrelated() {}\n`
  2113. );
  2114. fs.writeFileSync(
  2115. path.join(tempProject, 'app', 'page.php'),
  2116. `<?php\nrequire "inc/db.php";\n`
  2117. );
  2118. cg = await CodeGraph.init(tempProject, { index: true });
  2119. const db = DatabaseConnection.open(path.join(tempProject, '.codegraph', 'codegraph.db'));
  2120. const rows = db.getDb().prepare(`
  2121. select dst.kind as dstKind, dst.file_path as dstPath
  2122. from edges e
  2123. join nodes src on e.source = src.id
  2124. join nodes dst on e.target = dst.id
  2125. where e.kind = 'imports'
  2126. and src.kind = 'file'
  2127. and src.file_path = 'app/page.php'
  2128. `).all() as Array<{ dstKind: string; dstPath: string }>;
  2129. expect(
  2130. rows.find((r) => r.dstKind === 'file' && r.dstPath === 'lib/inc/db.php'),
  2131. 'app/page.php must NOT mis-connect to unrelated lib/inc/db.php'
  2132. ).toBeUndefined();
  2133. } finally {
  2134. fs.rmSync(tempProject, { recursive: true, force: true });
  2135. }
  2136. });
  2137. });
  2138. describe('C++ chained-call receiver resolution (#645)', () => {
  2139. async function indexCpp(files: Record<string, string>): Promise<void> {
  2140. for (const [name, content] of Object.entries(files)) {
  2141. fs.writeFileSync(path.join(tempDir, name), content);
  2142. }
  2143. cg = await CodeGraph.init(tempDir, { index: true });
  2144. }
  2145. function callerNamesOf(qualifiedName: string): string[] {
  2146. const target = cg.getNodesByKind('method').find((n) => n.qualifiedName === qualifiedName);
  2147. if (!target) return [];
  2148. const names = cg
  2149. .getIncomingEdges(target.id)
  2150. .filter((e) => e.kind === 'calls')
  2151. .map((e) => cg.getNode(e.source)?.name)
  2152. .filter((n): n is string => !!n);
  2153. return [...new Set(names)].sort();
  2154. }
  2155. it('resolves singleton chains and auto locals to the right class, never the first-sorted one', async () => {
  2156. // Two classes share writeLog; Logger sorts first so it wins any name-only
  2157. // tie. All three call forms target Metrics.
  2158. await indexCpp({
  2159. 'logger.hpp': `#pragma once
  2160. #include <string>
  2161. class Logger { public: static Logger& instance(); void writeLog(const std::string&); };
  2162. class Metrics { public: static Metrics& instance(); void writeLog(const std::string&); };
  2163. `,
  2164. 'impl.cpp': `#include "logger.hpp"
  2165. Logger& Logger::instance() { static Logger l; return l; }
  2166. Metrics& Metrics::instance() { static Metrics m; return m; }
  2167. void Logger::writeLog(const std::string&) {}
  2168. void Metrics::writeLog(const std::string&) {}
  2169. `,
  2170. 'app.cpp': `#include "logger.hpp"
  2171. void a() { Metrics::instance().writeLog("x"); } // chained singleton
  2172. void b() { auto& m = Metrics::instance(); m.writeLog("x"); } // stored in auto
  2173. void c() { Metrics& m = Metrics::instance(); m.writeLog("x"); } // explicit type
  2174. `,
  2175. });
  2176. expect(callerNamesOf('Metrics::writeLog')).toEqual(['a', 'b', 'c']);
  2177. expect(callerNamesOf('Logger::writeLog')).toEqual([]);
  2178. });
  2179. it('resolves factories, free-function factories, and member chains via the inner call return type', async () => {
  2180. await indexCpp({
  2181. 'types.hpp': `#pragma once
  2182. #include <memory>
  2183. struct Widget { void draw(); };
  2184. struct Session { void run(); };
  2185. struct View { void render(); };
  2186. class WidgetFactory { public: static Widget create(); };
  2187. class Manager { public: View view(); };
  2188. Session* openSession();
  2189. // Decoy that sorts first and has all three methods — must never win.
  2190. struct Aaa { void draw(); void run(); void render(); };
  2191. `,
  2192. 'impl.cpp': `#include "types.hpp"
  2193. void Widget::draw() {}
  2194. void Session::run() {}
  2195. void View::render() {}
  2196. void Aaa::draw() {}
  2197. void Aaa::run() {}
  2198. void Aaa::render() {}
  2199. Widget WidgetFactory::create() { return Widget(); }
  2200. View Manager::view() { return View(); }
  2201. Session* openSession() { return nullptr; }
  2202. `,
  2203. 'app.cpp': `#include "types.hpp"
  2204. void factory() { WidgetFactory::create().draw(); } // -> Widget::draw
  2205. void freefunc() { openSession()->run(); } // -> Session::run
  2206. void member() { Manager mgr; mgr.view().render(); } // -> View::render
  2207. void makeUnique() { auto w = std::make_unique<Widget>(); w->draw(); } // -> Widget::draw
  2208. `,
  2209. });
  2210. expect(callerNamesOf('Widget::draw')).toEqual(['factory', 'makeUnique']);
  2211. expect(callerNamesOf('Session::run')).toEqual(['freefunc']);
  2212. expect(callerNamesOf('View::render')).toEqual(['member']);
  2213. // The first-sorted decoy never captures any of them.
  2214. expect(callerNamesOf('Aaa::draw')).toEqual([]);
  2215. expect(callerNamesOf('Aaa::run')).toEqual([]);
  2216. expect(callerNamesOf('Aaa::render')).toEqual([]);
  2217. });
  2218. it('creates NO edge when the inferred type lacks the method (silent miss, not a wrong edge)', async () => {
  2219. await indexCpp({
  2220. 'types.hpp': `#pragma once
  2221. struct Widget { void draw(); };
  2222. struct Other { void onlyOther(); };
  2223. class WidgetFactory { public: static Widget create(); };
  2224. `,
  2225. 'impl.cpp': `#include "types.hpp"
  2226. void Widget::draw() {}
  2227. void Other::onlyOther() {}
  2228. Widget WidgetFactory::create() { return Widget(); }
  2229. `,
  2230. 'app.cpp': `#include "types.hpp"
  2231. // Widget has no onlyOther() — must produce NO edge, never a wrong one to Other.
  2232. void wrong() { WidgetFactory::create().onlyOther(); }
  2233. `,
  2234. });
  2235. expect(callerNamesOf('Other::onlyOther')).toEqual([]);
  2236. });
  2237. });
  2238. describe('PHP chained static-factory call resolution (#608)', () => {
  2239. function callerNamesOf(qualifiedName: string): string[] {
  2240. const target = cg.getNodesByKind('method').find((n) => n.qualifiedName === qualifiedName);
  2241. if (!target) return [];
  2242. const names = cg
  2243. .getIncomingEdges(target.id)
  2244. .filter((e) => e.kind === 'calls')
  2245. .map((e) => cg.getNode(e.source)?.name)
  2246. .filter((n): n is string => !!n);
  2247. return [...new Set(names)].sort();
  2248. }
  2249. it('resolves Cls::for($x)->method() via the factory\'s `: self` return (#608)', async () => {
  2250. fs.writeFileSync(
  2251. path.join(tempDir, 'ApiClient.php'),
  2252. `<?php\nclass ApiClient {\n public static function for(string $c): self { return new self; }\n public function createOrder(array $p): array { return []; }\n}\n`
  2253. );
  2254. fs.writeFileSync(
  2255. path.join(tempDir, 'DispatchOrder.php'),
  2256. `<?php\nclass DispatchOrder {\n public function handle(): void {\n ApiClient::for('cred')->createOrder([]);\n }\n}\n`
  2257. );
  2258. cg = await CodeGraph.init(tempDir, { index: true });
  2259. // The chained call's edge attaches to the factory result's method.
  2260. expect(callerNamesOf('ApiClient::createOrder')).toContain('handle');
  2261. });
  2262. it('creates NO edge when the factory result lacks the method (#608)', async () => {
  2263. fs.writeFileSync(
  2264. path.join(tempDir, 'lib.php'),
  2265. `<?php\nclass ApiClient { public static function for(string $c): self { return new self; } }\nclass Other { public function onlyOther(): void {} }\nclass Caller { public function go(): void { ApiClient::for('x')->onlyOther(); } }\n`
  2266. );
  2267. cg = await CodeGraph.init(tempDir, { index: true });
  2268. // ApiClient has no onlyOther — must not mis-attach to the same-named Other::onlyOther.
  2269. expect(callerNamesOf('Other::onlyOther')).toEqual([]);
  2270. });
  2271. });
  2272. describe('Java chained static-factory call resolution (#645/#608 mechanism)', () => {
  2273. function callerNamesOf(qualifiedName: string): string[] {
  2274. const target = cg.getNodesByKind('method').find((n) => n.qualifiedName === qualifiedName);
  2275. if (!target) return [];
  2276. const names = cg
  2277. .getIncomingEdges(target.id)
  2278. .filter((e) => e.kind === 'calls')
  2279. .map((e) => cg.getNode(e.source)?.name)
  2280. .filter((n): n is string => !!n);
  2281. return [...new Set(names)].sort();
  2282. }
  2283. it('resolves Foo.getInstance().bar() via the factory return type, never a same-named decoy', async () => {
  2284. // Aaa sorts first and has a same-named bar() — it must never win the chain.
  2285. fs.writeFileSync(
  2286. path.join(tempDir, 'Main.java'),
  2287. `class Aaa { void bar() {} }
  2288. class Foo {
  2289. static Foo getInstance() { return new Foo(); }
  2290. void bar() {}
  2291. }
  2292. class Caller {
  2293. void run() { Foo.getInstance().bar(); }
  2294. }
  2295. `
  2296. );
  2297. cg = await CodeGraph.init(tempDir, { index: true });
  2298. expect(callerNamesOf('Foo::bar')).toEqual(['run']);
  2299. expect(callerNamesOf('Aaa::bar')).toEqual([]);
  2300. });
  2301. it('resolves a factory chain that passes arguments — Foo.create(cfg).build()', async () => {
  2302. // The factory call carries an argument; the extractor must normalize the
  2303. // receiver to empty parens (`Foo.create().build`) so the chain still splits.
  2304. fs.writeFileSync(
  2305. path.join(tempDir, 'Main.java'),
  2306. `class Config {}
  2307. class Foo {
  2308. static Foo create(Config c) { return new Foo(); }
  2309. void build() {}
  2310. }
  2311. class Caller {
  2312. void run() { Foo.create(new Config()).build(); }
  2313. }
  2314. `
  2315. );
  2316. cg = await CodeGraph.init(tempDir, { index: true });
  2317. expect(callerNamesOf('Foo::build')).toEqual(['run']);
  2318. });
  2319. it('creates NO edge when the factory return type lacks the method (silent miss, not a wrong edge)', async () => {
  2320. fs.writeFileSync(
  2321. path.join(tempDir, 'Main.java'),
  2322. `class Foo {
  2323. static Foo getInstance() { return new Foo(); }
  2324. }
  2325. class Other { void onlyOther() {} }
  2326. class Caller {
  2327. void run() { Foo.getInstance().onlyOther(); }
  2328. }
  2329. `
  2330. );
  2331. cg = await CodeGraph.init(tempDir, { index: true });
  2332. // Foo has no onlyOther() — must not mis-attach to the same-named Other::onlyOther.
  2333. expect(callerNamesOf('Other::onlyOther')).toEqual([]);
  2334. });
  2335. });
  2336. describe('Kotlin chained companion-factory call resolution (#645/#608 mechanism)', () => {
  2337. function callerNamesOf(qualifiedName: string): string[] {
  2338. const target = cg.getNodesByKind('method').find((n) => n.qualifiedName === qualifiedName);
  2339. if (!target) return [];
  2340. const names = cg
  2341. .getIncomingEdges(target.id)
  2342. .filter((e) => e.kind === 'calls')
  2343. .map((e) => cg.getNode(e.source)?.name)
  2344. .filter((n): n is string => !!n);
  2345. return [...new Set(names)].sort();
  2346. }
  2347. it('resolves Foo.getInstance().bar() via the companion return type, never a same-named decoy', async () => {
  2348. // Aaa sorts first and has a same-named bar() — without the chain fix Kotlin
  2349. // dropped the receiver to a bare `bar` and attached to Aaa (a wrong edge).
  2350. fs.writeFileSync(
  2351. path.join(tempDir, 'Main.kt'),
  2352. `class Aaa { fun bar() {} }
  2353. class Foo {
  2354. companion object {
  2355. fun getInstance(): Foo = Foo()
  2356. }
  2357. fun bar() {}
  2358. }
  2359. class Caller {
  2360. fun run() { Foo.getInstance().bar() }
  2361. }
  2362. `
  2363. );
  2364. cg = await CodeGraph.init(tempDir, { index: true });
  2365. expect(callerNamesOf('Foo::bar')).toEqual(['run']);
  2366. expect(callerNamesOf('Aaa::bar')).toEqual([]);
  2367. });
  2368. it('resolves a companion factory chain that passes arguments — Foo.create(cfg).build()', async () => {
  2369. fs.writeFileSync(
  2370. path.join(tempDir, 'Main.kt'),
  2371. `class Config
  2372. class Foo {
  2373. companion object {
  2374. fun create(c: Config): Foo = Foo()
  2375. }
  2376. fun build() {}
  2377. }
  2378. class Caller {
  2379. fun run() { Foo.create(Config()).build() }
  2380. }
  2381. `
  2382. );
  2383. cg = await CodeGraph.init(tempDir, { index: true });
  2384. expect(callerNamesOf('Foo::build')).toEqual(['run']);
  2385. });
  2386. it('creates NO edge when the companion return type lacks the method (silent miss, not a wrong edge)', async () => {
  2387. fs.writeFileSync(
  2388. path.join(tempDir, 'Main.kt'),
  2389. `class Foo {
  2390. companion object {
  2391. fun getInstance(): Foo = Foo()
  2392. }
  2393. }
  2394. class Other { fun onlyOther() {} }
  2395. class Caller {
  2396. fun run() { Foo.getInstance().onlyOther() }
  2397. }
  2398. `
  2399. );
  2400. cg = await CodeGraph.init(tempDir, { index: true });
  2401. // Foo has no onlyOther() — must not mis-attach to the same-named Other::onlyOther.
  2402. expect(callerNamesOf('Other::onlyOther')).toEqual([]);
  2403. });
  2404. });
  2405. describe('C# chained static-factory call resolution (#645/#608 mechanism)', () => {
  2406. function callerNamesOf(qualifiedName: string): string[] {
  2407. const target = cg.getNodesByKind('method').find((n) => n.qualifiedName === qualifiedName);
  2408. if (!target) return [];
  2409. const names = cg
  2410. .getIncomingEdges(target.id)
  2411. .filter((e) => e.kind === 'calls')
  2412. .map((e) => cg.getNode(e.source)?.name)
  2413. .filter((n): n is string => !!n);
  2414. return [...new Set(names)].sort();
  2415. }
  2416. it('resolves Foo.Create().Bar() via the factory return type, never a same-named decoy', async () => {
  2417. // Aaa sorts first and has a same-named Bar() — it must never win the chain.
  2418. fs.writeFileSync(
  2419. path.join(tempDir, 'Main.cs'),
  2420. `class Aaa { void Bar() {} }
  2421. class Foo {
  2422. static Foo Create() { return new Foo(); }
  2423. void Bar() {}
  2424. }
  2425. class Caller {
  2426. void Run() { Foo.Create().Bar(); }
  2427. }
  2428. `
  2429. );
  2430. cg = await CodeGraph.init(tempDir, { index: true });
  2431. expect(callerNamesOf('Foo::Bar')).toEqual(['Run']);
  2432. expect(callerNamesOf('Aaa::Bar')).toEqual([]);
  2433. });
  2434. it('resolves a factory chain that passes arguments — Foo.Make(cfg).Build()', async () => {
  2435. fs.writeFileSync(
  2436. path.join(tempDir, 'Main.cs'),
  2437. `class Config {}
  2438. class Foo {
  2439. static Foo Make(Config c) { return new Foo(); }
  2440. void Build() {}
  2441. }
  2442. class Caller {
  2443. void Run() { Foo.Make(new Config()).Build(); }
  2444. }
  2445. `
  2446. );
  2447. cg = await CodeGraph.init(tempDir, { index: true });
  2448. expect(callerNamesOf('Foo::Build')).toEqual(['Run']);
  2449. });
  2450. it('creates NO edge when the factory return type lacks the method (silent miss, not a wrong edge)', async () => {
  2451. fs.writeFileSync(
  2452. path.join(tempDir, 'Main.cs'),
  2453. `class Foo {
  2454. static Foo Create() { return new Foo(); }
  2455. }
  2456. class Other { void OnlyOther() {} }
  2457. class Caller {
  2458. void Run() { Foo.Create().OnlyOther(); }
  2459. }
  2460. `
  2461. );
  2462. cg = await CodeGraph.init(tempDir, { index: true });
  2463. // Foo has no OnlyOther() — must not mis-attach to the same-named Other::OnlyOther.
  2464. expect(callerNamesOf('Other::OnlyOther')).toEqual([]);
  2465. });
  2466. });
  2467. describe('Swift chained static-factory call resolution (#645/#608 mechanism)', () => {
  2468. function callerNamesOf(qualifiedName: string): string[] {
  2469. const target = cg.getNodesByKind('method').find((n) => n.qualifiedName === qualifiedName);
  2470. if (!target) return [];
  2471. const names = cg
  2472. .getIncomingEdges(target.id)
  2473. .filter((e) => e.kind === 'calls')
  2474. .map((e) => cg.getNode(e.source)?.name)
  2475. .filter((n): n is string => !!n);
  2476. return [...new Set(names)].sort();
  2477. }
  2478. it('resolves Foo.make().draw() via the factory return type, never a same-named decoy', async () => {
  2479. // Aaa sorts first and has a same-named draw() — without the fix Swift dropped
  2480. // the receiver to a bare `draw` and attached to Aaa (a wrong edge).
  2481. fs.writeFileSync(
  2482. path.join(tempDir, 'Main.swift'),
  2483. `class Aaa { func draw() {} }
  2484. class Foo {
  2485. static func make() -> Foo { return Foo() }
  2486. func draw() {}
  2487. }
  2488. func runCaller() { Foo.make().draw() }
  2489. `
  2490. );
  2491. cg = await CodeGraph.init(tempDir, { index: true });
  2492. expect(callerNamesOf('Foo::draw')).toEqual(['runCaller']);
  2493. expect(callerNamesOf('Aaa::draw')).toEqual([]);
  2494. });
  2495. it('resolves a constructor chain Foo().draw() and an args factory chain Foo.build(c).render()', async () => {
  2496. fs.writeFileSync(
  2497. path.join(tempDir, 'Main.swift'),
  2498. `class Config {}
  2499. class Foo {
  2500. static func build(_ c: Config) -> Foo { return Foo() }
  2501. func draw() {}
  2502. func render() {}
  2503. }
  2504. func runCaller() {
  2505. Foo().draw()
  2506. Foo.build(Config()).render()
  2507. }
  2508. `
  2509. );
  2510. cg = await CodeGraph.init(tempDir, { index: true });
  2511. expect(callerNamesOf('Foo::draw')).toEqual(['runCaller']);
  2512. expect(callerNamesOf('Foo::render')).toEqual(['runCaller']);
  2513. });
  2514. it('creates NO edge when the factory return type lacks the method (silent miss, not a wrong edge)', async () => {
  2515. fs.writeFileSync(
  2516. path.join(tempDir, 'Main.swift'),
  2517. `class Foo {
  2518. static func make() -> Foo { return Foo() }
  2519. }
  2520. class Other { func onlyOther() {} }
  2521. func runCaller() { Foo.make().onlyOther() }
  2522. `
  2523. );
  2524. cg = await CodeGraph.init(tempDir, { index: true });
  2525. // Foo has no onlyOther() — must not mis-attach to the same-named Other::onlyOther.
  2526. expect(callerNamesOf('Other::onlyOther')).toEqual([]);
  2527. });
  2528. });
  2529. describe('Chained call resolves a method on a supertype (conformance, #750)', () => {
  2530. function callerNamesOf(qualifiedName: string): string[] {
  2531. const target = cg.getNodesByKind('method').find((n) => n.qualifiedName === qualifiedName);
  2532. if (!target) return [];
  2533. const names = cg
  2534. .getIncomingEdges(target.id)
  2535. .filter((e) => e.kind === 'calls')
  2536. .map((e) => cg.getNode(e.source)?.name)
  2537. .filter((n): n is string => !!n);
  2538. return [...new Set(names)].sort();
  2539. }
  2540. it('resolves a chained method defined only on a SUPERCLASS the return type extends', async () => {
  2541. // draw() lives on Base; Widget (the factory's return type) has no draw() of
  2542. // its own. Decoy.draw must never win. Needs the conformance second pass.
  2543. fs.writeFileSync(
  2544. path.join(tempDir, 'Main.java'),
  2545. `class Base { void draw() {} }
  2546. class Widget extends Base {}
  2547. class Decoy { void draw() {} }
  2548. class Factory { static Widget create() { return new Widget(); } }
  2549. class Caller {
  2550. void run() { Factory.create().draw(); }
  2551. }
  2552. `
  2553. );
  2554. cg = await CodeGraph.init(tempDir, { index: true });
  2555. expect(callerNamesOf('Base::draw')).toEqual(['run']);
  2556. expect(callerNamesOf('Decoy::draw')).toEqual([]);
  2557. });
  2558. it('resolves a chained method defined on an INTERFACE the return type implements (default method)', async () => {
  2559. fs.writeFileSync(
  2560. path.join(tempDir, 'Main.java'),
  2561. `interface Drawable { default void draw() {} }
  2562. class Widget implements Drawable {}
  2563. class Decoy { void draw() {} }
  2564. class Factory { static Widget create() { return new Widget(); } }
  2565. class Caller {
  2566. void run() { Factory.create().draw(); }
  2567. }
  2568. `
  2569. );
  2570. cg = await CodeGraph.init(tempDir, { index: true });
  2571. expect(callerNamesOf('Drawable::draw')).toEqual(['run']);
  2572. expect(callerNamesOf('Decoy::draw')).toEqual([]);
  2573. });
  2574. it('still creates NO edge when no supertype has the method (safety preserved)', async () => {
  2575. fs.writeFileSync(
  2576. path.join(tempDir, 'Main.java'),
  2577. `class Base {}
  2578. class Widget extends Base {}
  2579. class Other { void onlyOther() {} }
  2580. class Factory { static Widget create() { return new Widget(); } }
  2581. class Caller {
  2582. void run() { Factory.create().onlyOther(); }
  2583. }
  2584. `
  2585. );
  2586. cg = await CodeGraph.init(tempDir, { index: true });
  2587. // Neither Widget nor Base has onlyOther() — must not attach to Other::onlyOther.
  2588. expect(callerNamesOf('Other::onlyOther')).toEqual([]);
  2589. });
  2590. });
  2591. describe('Rust chained associated-function call resolution (#645/#608 mechanism)', () => {
  2592. function callerNamesOf(qualifiedName: string): string[] {
  2593. const target = cg.getNodesByKind('method').find((n) => n.qualifiedName === qualifiedName);
  2594. if (!target) return [];
  2595. const names = cg
  2596. .getIncomingEdges(target.id)
  2597. .filter((e) => e.kind === 'calls')
  2598. .map((e) => cg.getNode(e.source)?.name)
  2599. .filter((n): n is string => !!n);
  2600. return [...new Set(names)].sort();
  2601. }
  2602. it('resolves Foo::new().bar() (and a Self return) via the associated fn, never a same-named decoy', async () => {
  2603. fs.writeFileSync(
  2604. path.join(tempDir, 'main.rs'),
  2605. `struct Aaa { _x: i32 }
  2606. impl Aaa { fn bar(&self) {} }
  2607. struct Foo { _x: i32 }
  2608. impl Foo {
  2609. fn new() -> Foo { Foo { _x: 0 } }
  2610. fn make() -> Self { Foo { _x: 0 } }
  2611. fn bar(&self) {}
  2612. }
  2613. fn caller() {
  2614. Foo::new().bar();
  2615. Foo::make().bar();
  2616. }
  2617. `
  2618. );
  2619. cg = await CodeGraph.init(tempDir, { index: true });
  2620. expect(callerNamesOf('Foo::bar')).toEqual(['caller']);
  2621. expect(callerNamesOf('Aaa::bar')).toEqual([]);
  2622. });
  2623. it('resolves a chain that passes arguments — Foo::with(c).build()', async () => {
  2624. fs.writeFileSync(
  2625. path.join(tempDir, 'main.rs'),
  2626. `struct Config;
  2627. struct Foo { _x: i32 }
  2628. impl Foo {
  2629. fn with(c: Config) -> Foo { Foo { _x: 0 } }
  2630. fn build(&self) {}
  2631. }
  2632. fn caller() { Foo::with(Config).build(); }
  2633. `
  2634. );
  2635. cg = await CodeGraph.init(tempDir, { index: true });
  2636. expect(callerNamesOf('Foo::build')).toEqual(['caller']);
  2637. });
  2638. it('resolves a chained method from a trait the type implements (default method, via conformance)', async () => {
  2639. fs.writeFileSync(
  2640. path.join(tempDir, 'main.rs'),
  2641. `struct Foo { _x: i32 }
  2642. impl Foo { fn new() -> Foo { Foo { _x: 0 } } }
  2643. struct Decoy { _x: i32 }
  2644. impl Decoy { fn draw(&self) {} }
  2645. trait Drawable { fn draw(&self) {} }
  2646. impl Drawable for Foo {}
  2647. fn caller() { Foo::new().draw(); }
  2648. `
  2649. );
  2650. cg = await CodeGraph.init(tempDir, { index: true });
  2651. expect(callerNamesOf('Drawable::draw')).toEqual(['caller']);
  2652. expect(callerNamesOf('Decoy::draw')).toEqual([]);
  2653. });
  2654. it('creates NO edge when neither the type nor a supertype has the method (silent miss)', async () => {
  2655. fs.writeFileSync(
  2656. path.join(tempDir, 'main.rs'),
  2657. `struct Foo { _x: i32 }
  2658. impl Foo { fn new() -> Foo { Foo { _x: 0 } } }
  2659. struct Other { _x: i32 }
  2660. impl Other { fn only_other(&self) {} }
  2661. fn caller() { Foo::new().only_other(); }
  2662. `
  2663. );
  2664. cg = await CodeGraph.init(tempDir, { index: true });
  2665. // Foo has no only_other() — must not mis-attach to the same-named Other::only_other.
  2666. expect(callerNamesOf('Other::only_other')).toEqual([]);
  2667. });
  2668. });
  2669. describe('Go chained factory-function call resolution (#645/#608 mechanism)', () => {
  2670. function callerNamesOf(qualifiedName: string): string[] {
  2671. const target = cg.getNodesByKind('method').find((n) => n.qualifiedName === qualifiedName);
  2672. if (!target) return [];
  2673. const names = cg
  2674. .getIncomingEdges(target.id)
  2675. .filter((e) => e.kind === 'calls')
  2676. .map((e) => cg.getNode(e.source)?.name)
  2677. .filter((n): n is string => !!n);
  2678. return [...new Set(names)].sort();
  2679. }
  2680. it('resolves New().Bar() via the factory return type (pointer), never a same-named decoy', async () => {
  2681. fs.writeFileSync(
  2682. path.join(tempDir, 'main.go'),
  2683. `package main
  2684. type Aaa struct{}
  2685. func (a *Aaa) Bar() {}
  2686. type Foo struct{}
  2687. func New() *Foo { return &Foo{} }
  2688. func (f *Foo) Bar() {}
  2689. func caller() { New().Bar() }
  2690. `
  2691. );
  2692. cg = await CodeGraph.init(tempDir, { index: true });
  2693. expect(callerNamesOf('Foo::Bar')).toEqual(['caller']);
  2694. expect(callerNamesOf('Aaa::Bar')).toEqual([]);
  2695. });
  2696. it('resolves an args chain and a multi-return factory — With(c).Build(), (*Foo, error)', async () => {
  2697. fs.writeFileSync(
  2698. path.join(tempDir, 'main.go'),
  2699. `package main
  2700. type Config struct{}
  2701. type Foo struct{}
  2702. func With(c Config) (*Foo, error) { return &Foo{}, nil }
  2703. func (f *Foo) Build() {}
  2704. func caller() { With(Config{}).Build() }
  2705. `
  2706. );
  2707. cg = await CodeGraph.init(tempDir, { index: true });
  2708. expect(callerNamesOf('Foo::Build')).toEqual(['caller']);
  2709. });
  2710. it('resolves a method provided by an embedded struct (via conformance)', async () => {
  2711. fs.writeFileSync(
  2712. path.join(tempDir, 'main.go'),
  2713. `package main
  2714. type Base struct{}
  2715. func (b *Base) Embedded() {}
  2716. type Decoy struct{}
  2717. func (d *Decoy) Embedded() {}
  2718. type Widget struct{ Base }
  2719. func NewWidget() *Widget { return &Widget{} }
  2720. func caller() { NewWidget().Embedded() }
  2721. `
  2722. );
  2723. cg = await CodeGraph.init(tempDir, { index: true });
  2724. expect(callerNamesOf('Base::Embedded')).toEqual(['caller']);
  2725. expect(callerNamesOf('Decoy::Embedded')).toEqual([]);
  2726. });
  2727. it('creates NO edge when neither the type nor an embedded type has the method (silent miss)', async () => {
  2728. fs.writeFileSync(
  2729. path.join(tempDir, 'main.go'),
  2730. `package main
  2731. type Foo struct{}
  2732. func New() *Foo { return &Foo{} }
  2733. type Other struct{}
  2734. func (o *Other) OnlyOther() {}
  2735. func caller() { New().OnlyOther() }
  2736. `
  2737. );
  2738. cg = await CodeGraph.init(tempDir, { index: true });
  2739. // Foo has no OnlyOther() — must not mis-attach to the same-named Other::OnlyOther.
  2740. expect(callerNamesOf('Other::OnlyOther')).toEqual([]);
  2741. });
  2742. it('falls back to bare-name resolution for a VARIABLE-inner chain without exploding the graph', async () => {
  2743. // `engine` is a package-level VARIABLE holding a func value, not a factory
  2744. // FUNCTION — so its return type can't be recovered and the chain falls back
  2745. // to bare-name resolution of the method (restoring the pre-re-encoding edge).
  2746. // Regression for the runaway this fallback originally caused: it resolved
  2747. // with a mutated `original.referenceName` (the bare `ServeHTTP`, not the
  2748. // stored `engine().ServeHTTP`), so the batched resolver's keyed delete
  2749. // no-oped, the offset-0 batch never drained, and edges inserted forever
  2750. // (5M edges / 1.4 GB on a 99-file repo). The fallback now ties the match to
  2751. // the original ref, and a non-progress guard backstops the loop.
  2752. fs.writeFileSync(
  2753. path.join(tempDir, 'main.go'),
  2754. `package main
  2755. type Server struct{}
  2756. func (s *Server) ServeHTTP() {}
  2757. var engine = func() *Server { return &Server{} }
  2758. func caller() { engine().ServeHTTP() }
  2759. `
  2760. );
  2761. cg = await CodeGraph.init(tempDir, { index: true });
  2762. // Recall: the variable-inner chain still finds the method by bare name.
  2763. expect(callerNamesOf('Server::ServeHTTP')).toEqual(['caller']);
  2764. // No runaway: a single call site yields a single edge, not millions.
  2765. const target = cg
  2766. .getNodesByKind('method')
  2767. .find((n) => n.qualifiedName === 'Server::ServeHTTP')!;
  2768. const rawCalls = cg
  2769. .getIncomingEdges(target.id)
  2770. .filter((e) => e.kind === 'calls');
  2771. expect(rawCalls.length).toBeLessThan(5);
  2772. });
  2773. });
  2774. describe('Scala chained static-factory call resolution (#645/#608 mechanism)', () => {
  2775. function callerNamesOf(qualifiedName: string): string[] {
  2776. const target = cg.getNodesByKind('method').find((n) => n.qualifiedName === qualifiedName);
  2777. if (!target) return [];
  2778. const names = cg
  2779. .getIncomingEdges(target.id)
  2780. .filter((e) => e.kind === 'calls')
  2781. .map((e) => cg.getNode(e.source)?.name)
  2782. .filter((n): n is string => !!n);
  2783. return [...new Set(names)].sort();
  2784. }
  2785. it('resolves a companion-factory chain Foo.create().doIt() to the return type, never a same-named decoy', async () => {
  2786. fs.writeFileSync(
  2787. path.join(tempDir, 'Main.scala'),
  2788. `object Foo {
  2789. def create(): Bar = new Bar()
  2790. }
  2791. class Bar {
  2792. def doIt(): Unit = {}
  2793. }
  2794. class Decoy {
  2795. def doIt(): Unit = {}
  2796. }
  2797. object Main {
  2798. def run(): Unit = { Foo.create().doIt() }
  2799. }
  2800. `
  2801. );
  2802. cg = await CodeGraph.init(tempDir, { index: true });
  2803. expect(callerNamesOf('Bar::doIt')).toEqual(['run']);
  2804. expect(callerNamesOf('Decoy::doIt')).toEqual([]);
  2805. });
  2806. it('resolves a case-class apply construction Point(x).dist() on the constructed class', async () => {
  2807. fs.writeFileSync(
  2808. path.join(tempDir, 'Main.scala'),
  2809. `class Point(x: Int) {
  2810. def dist(): Int = x
  2811. }
  2812. class Other {
  2813. def dist(): Int = 0
  2814. }
  2815. object Main {
  2816. def run(): Unit = { Point(3).dist() }
  2817. }
  2818. `
  2819. );
  2820. cg = await CodeGraph.init(tempDir, { index: true });
  2821. expect(callerNamesOf('Point::dist')).toEqual(['run']);
  2822. expect(callerNamesOf('Other::dist')).toEqual([]);
  2823. });
  2824. it('resolves a chained method provided by a trait the return type extends (via conformance)', async () => {
  2825. fs.writeFileSync(
  2826. path.join(tempDir, 'Main.scala'),
  2827. `trait Base {
  2828. def shared(): Unit = {}
  2829. }
  2830. class Widget extends Base
  2831. class Decoy {
  2832. def shared(): Unit = {}
  2833. }
  2834. object Factory {
  2835. def make(): Widget = new Widget()
  2836. }
  2837. object Main {
  2838. def run(): Unit = { Factory.make().shared() }
  2839. }
  2840. `
  2841. );
  2842. cg = await CodeGraph.init(tempDir, { index: true });
  2843. expect(callerNamesOf('Base::shared')).toEqual(['run']);
  2844. expect(callerNamesOf('Decoy::shared')).toEqual([]);
  2845. });
  2846. it('creates NO edge when neither the factory return type nor a supertype has the method (silent miss)', async () => {
  2847. fs.writeFileSync(
  2848. path.join(tempDir, 'Main.scala'),
  2849. `object Foo {
  2850. def create(): Bar = new Bar()
  2851. }
  2852. class Bar {
  2853. }
  2854. class Other {
  2855. def onlyOther(): Unit = {}
  2856. }
  2857. object Main {
  2858. def run(): Unit = { Foo.create().onlyOther() }
  2859. }
  2860. `
  2861. );
  2862. cg = await CodeGraph.init(tempDir, { index: true });
  2863. // Bar has no onlyOther() — must not mis-attach to the same-named Other::onlyOther.
  2864. expect(callerNamesOf('Other::onlyOther')).toEqual([]);
  2865. });
  2866. });
  2867. describe('Dart chained static-factory / factory-constructor call resolution (#645/#608 mechanism)', () => {
  2868. function callerNamesOf(qualifiedName: string): string[] {
  2869. const target = cg.getNodesByKind('method').find((n) => n.qualifiedName === qualifiedName);
  2870. if (!target) return [];
  2871. const names = cg
  2872. .getIncomingEdges(target.id)
  2873. .filter((e) => e.kind === 'calls')
  2874. .map((e) => cg.getNode(e.source)?.name)
  2875. .filter((n): n is string => !!n);
  2876. return [...new Set(names)].sort();
  2877. }
  2878. it('resolves a static-factory chain Foo.makeBar().doIt() to the return type, never a same-named decoy', async () => {
  2879. fs.writeFileSync(
  2880. path.join(tempDir, 'main.dart'),
  2881. `class Foo {
  2882. static Bar makeBar() => Bar();
  2883. }
  2884. class Bar {
  2885. void doIt() {}
  2886. }
  2887. class Decoy {
  2888. void doIt() {}
  2889. }
  2890. void run() {
  2891. Foo.makeBar().doIt();
  2892. }
  2893. `
  2894. );
  2895. cg = await CodeGraph.init(tempDir, { index: true });
  2896. expect(callerNamesOf('Bar::doIt')).toEqual(['run']);
  2897. expect(callerNamesOf('Decoy::doIt')).toEqual([]);
  2898. });
  2899. it('resolves a named factory-constructor chain Foo.create().ship() on the constructed class', async () => {
  2900. fs.writeFileSync(
  2901. path.join(tempDir, 'main.dart'),
  2902. `class Foo {
  2903. Foo._();
  2904. factory Foo.create() => Foo._();
  2905. void ship() {}
  2906. }
  2907. class Decoy {
  2908. void ship() {}
  2909. }
  2910. void run() {
  2911. Foo.create().ship();
  2912. }
  2913. `
  2914. );
  2915. cg = await CodeGraph.init(tempDir, { index: true });
  2916. // The factory constructor `Foo.create` is now a node whose return type is Foo,
  2917. // so `ship` resolves on Foo, not the same-named Decoy.
  2918. expect(callerNamesOf('Foo::ship')).toEqual(['run']);
  2919. expect(callerNamesOf('Decoy::ship')).toEqual([]);
  2920. });
  2921. it('resolves a constructor-receiver chain Bar().doIt() on the constructed class', async () => {
  2922. fs.writeFileSync(
  2923. path.join(tempDir, 'main.dart'),
  2924. `class Bar {
  2925. void doIt() {}
  2926. }
  2927. class Decoy {
  2928. void doIt() {}
  2929. }
  2930. void run() {
  2931. Bar().doIt();
  2932. }
  2933. `
  2934. );
  2935. cg = await CodeGraph.init(tempDir, { index: true });
  2936. expect(callerNamesOf('Bar::doIt')).toEqual(['run']);
  2937. expect(callerNamesOf('Decoy::doIt')).toEqual([]);
  2938. });
  2939. it('resolves a chained method inherited from a superclass the return type extends (via conformance)', async () => {
  2940. fs.writeFileSync(
  2941. path.join(tempDir, 'main.dart'),
  2942. `class Base {
  2943. void render() {}
  2944. }
  2945. class Widget extends Base {
  2946. static Widget make() => Widget();
  2947. }
  2948. class Decoy {
  2949. void render() {}
  2950. }
  2951. void run() {
  2952. Widget.make().render();
  2953. }
  2954. `
  2955. );
  2956. cg = await CodeGraph.init(tempDir, { index: true });
  2957. expect(callerNamesOf('Base::render')).toEqual(['run']);
  2958. expect(callerNamesOf('Decoy::render')).toEqual([]);
  2959. });
  2960. it('creates NO edge when neither the factory return type nor a supertype has the method (silent miss)', async () => {
  2961. fs.writeFileSync(
  2962. path.join(tempDir, 'main.dart'),
  2963. `class Foo {
  2964. static Bar makeBar() => Bar();
  2965. }
  2966. class Bar {
  2967. }
  2968. class Other {
  2969. void onlyOther() {}
  2970. }
  2971. void run() {
  2972. Foo.makeBar().onlyOther();
  2973. }
  2974. `
  2975. );
  2976. cg = await CodeGraph.init(tempDir, { index: true });
  2977. // Bar has no onlyOther() — must not mis-attach to the same-named Other::onlyOther.
  2978. expect(callerNamesOf('Other::onlyOther')).toEqual([]);
  2979. });
  2980. it('still extracts a method tree-sitter misparses as a constructor (@override + record return)', async () => {
  2981. // tree-sitter-dart misparses `@override (A, B) reduce()` — the annotation
  2982. // swallows the record return type, so `reduce()` looks like a single-
  2983. // identifier constructor_signature. It must NOT be skipped as an unnamed
  2984. // ctor (its name doesn't match the class); its body call must attribute to
  2985. // `reduce`, not the class.
  2986. fs.writeFileSync(
  2987. path.join(tempDir, 'main.dart'),
  2988. `class Base {}
  2989. class Action extends Base {
  2990. Action({required int x});
  2991. @override
  2992. (int, String) reduce() {
  2993. return (compute(), "y");
  2994. }
  2995. int compute() => 1;
  2996. }
  2997. `
  2998. );
  2999. cg = await CodeGraph.init(tempDir, { index: true });
  3000. // reduce must be a node and its body call must resolve to Action::compute.
  3001. expect(callerNamesOf('Action::compute')).toEqual(['reduce']);
  3002. });
  3003. it('keeps plain construction Foo() as instantiation, not a Foo::Foo method call', async () => {
  3004. // The unnamed constructor is intentionally NOT extracted as a `Foo::Foo`
  3005. // method, so `Foo(...)` resolves to the class (an `instantiates` edge),
  3006. // never hijacked into a call to a phantom constructor method.
  3007. fs.writeFileSync(
  3008. path.join(tempDir, 'main.dart'),
  3009. `class Widget {
  3010. final int x;
  3011. Widget(this.x);
  3012. }
  3013. void run() {
  3014. Widget(3);
  3015. }
  3016. `
  3017. );
  3018. cg = await CodeGraph.init(tempDir, { index: true });
  3019. // No Foo::Foo phantom method node.
  3020. expect(cg.getNodesByKind('method').some((n) => n.qualifiedName === 'Widget::Widget')).toBe(false);
  3021. // The construction resolves to the class as an `instantiates` edge.
  3022. const widget = cg.getNodesByKind('class').find((n) => n.name === 'Widget')!;
  3023. const incoming = cg.getIncomingEdges(widget.id);
  3024. expect(incoming.some((e) => e.kind === 'instantiates')).toBe(true);
  3025. });
  3026. });
  3027. describe('Objective-C chained message-send call resolution (#645/#608 mechanism)', () => {
  3028. function callerNamesOf(qualifiedName: string): string[] {
  3029. const target = cg.getNodesByKind('method').find((n) => n.qualifiedName === qualifiedName);
  3030. if (!target) return [];
  3031. const names = cg
  3032. .getIncomingEdges(target.id)
  3033. .filter((e) => e.kind === 'calls')
  3034. .map((e) => cg.getNode(e.source)?.name)
  3035. .filter((n): n is string => !!n);
  3036. return [...new Set(names)].sort();
  3037. }
  3038. it('resolves a chained message send [[Foo create] doIt] via the return type, never a same-named decoy', async () => {
  3039. fs.writeFileSync(
  3040. path.join(tempDir, 'main.m'),
  3041. `@interface Bar : NSObject
  3042. - (void)doIt;
  3043. @end
  3044. @implementation Bar
  3045. - (void)doIt {}
  3046. @end
  3047. @interface Decoy : NSObject
  3048. - (void)doIt;
  3049. @end
  3050. @implementation Decoy
  3051. - (void)doIt {}
  3052. @end
  3053. @interface Foo : NSObject
  3054. + (Bar *)create;
  3055. @end
  3056. @implementation Foo
  3057. + (Bar *)create { return nil; }
  3058. - (void)run { [[Foo create] doIt]; }
  3059. @end
  3060. `
  3061. );
  3062. cg = await CodeGraph.init(tempDir, { index: true });
  3063. expect(callerNamesOf('Bar::doIt')).toEqual(['run']);
  3064. expect(callerNamesOf('Decoy::doIt')).toEqual([]);
  3065. });
  3066. it('resolves a chained message whose method is inherited from a superclass (via conformance)', async () => {
  3067. fs.writeFileSync(
  3068. path.join(tempDir, 'main.m'),
  3069. `@interface Base : NSObject
  3070. - (void)render;
  3071. @end
  3072. @implementation Base
  3073. - (void)render {}
  3074. @end
  3075. @interface Widget : Base
  3076. @end
  3077. @implementation Widget
  3078. @end
  3079. @interface Decoy : NSObject
  3080. - (void)render;
  3081. @end
  3082. @implementation Decoy
  3083. - (void)render {}
  3084. @end
  3085. @interface Factory : NSObject
  3086. + (Widget *)make;
  3087. @end
  3088. @implementation Factory
  3089. + (Widget *)make { return nil; }
  3090. - (void)run { [[Factory make] render]; }
  3091. @end
  3092. `
  3093. );
  3094. cg = await CodeGraph.init(tempDir, { index: true });
  3095. expect(callerNamesOf('Base::render')).toEqual(['run']);
  3096. expect(callerNamesOf('Decoy::render')).toEqual([]);
  3097. });
  3098. it('creates NO edge when the factory return type lacks the method (silent miss)', async () => {
  3099. fs.writeFileSync(
  3100. path.join(tempDir, 'main.m'),
  3101. `@interface Bar : NSObject
  3102. @end
  3103. @implementation Bar
  3104. @end
  3105. @interface Other : NSObject
  3106. - (void)onlyOther;
  3107. @end
  3108. @implementation Other
  3109. - (void)onlyOther {}
  3110. @end
  3111. @interface Foo : NSObject
  3112. + (Bar *)create;
  3113. @end
  3114. @implementation Foo
  3115. + (Bar *)create { return nil; }
  3116. - (void)run { [[Foo create] onlyOther]; }
  3117. @end
  3118. `
  3119. );
  3120. cg = await CodeGraph.init(tempDir, { index: true });
  3121. // Bar has no onlyOther — must not mis-attach to the same-named Other::onlyOther.
  3122. expect(callerNamesOf('Other::onlyOther')).toEqual([]);
  3123. });
  3124. it('resolves a singleton chain [[Cache shared] clearAll] whose factory returns nonnull instancetype', async () => {
  3125. // The factory returns `nonnull instancetype` — the nullability qualifier must
  3126. // be skipped (not captured AS the type), and an instancetype class-message
  3127. // factory returns the receiver class, so clearAll resolves on Cache, never a
  3128. // same-named decoy. (Regression for both: the captured-`nonnull` bug and the
  3129. // ubiquitous `[[X alloc] init]` / singleton pattern.)
  3130. fs.writeFileSync(
  3131. path.join(tempDir, 'main.m'),
  3132. `@interface Cache : NSObject
  3133. + (nonnull instancetype)shared;
  3134. - (void)clearAll;
  3135. @end
  3136. @implementation Cache
  3137. + (nonnull instancetype)shared { return nil; }
  3138. - (void)clearAll {}
  3139. @end
  3140. @interface Decoy : NSObject
  3141. - (void)clearAll;
  3142. @end
  3143. @implementation Decoy
  3144. - (void)clearAll {}
  3145. @end
  3146. @interface Caller : NSObject
  3147. - (void)run;
  3148. @end
  3149. @implementation Caller
  3150. - (void)run { [[Cache shared] clearAll]; }
  3151. @end
  3152. `
  3153. );
  3154. cg = await CodeGraph.init(tempDir, { index: true });
  3155. expect(callerNamesOf('Cache::clearAll')).toEqual(['run']);
  3156. expect(callerNamesOf('Decoy::clearAll')).toEqual([]);
  3157. });
  3158. });
  3159. describe('Pascal/Delphi chained static-factory call resolution (#645/#608 mechanism)', () => {
  3160. function callerNamesOf(qualifiedName: string): string[] {
  3161. const target = cg.getNodesByKind('method').find((n) => n.qualifiedName === qualifiedName);
  3162. if (!target) return [];
  3163. const names = cg
  3164. .getIncomingEdges(target.id)
  3165. .filter((e) => e.kind === 'calls')
  3166. .map((e) => cg.getNode(e.source)?.name)
  3167. .filter((n): n is string => !!n);
  3168. return [...new Set(names)].sort();
  3169. }
  3170. function isCalled(qn: string): boolean {
  3171. const t = cg.getNodesByKind('method').find((n) => n.qualifiedName === qn);
  3172. return !!t && cg.getIncomingEdges(t.id).some((e) => e.kind === 'calls');
  3173. }
  3174. it('resolves a chained factory call TFoo.GetInstance().DoIt() via the return type, never a same-named decoy', async () => {
  3175. fs.writeFileSync(
  3176. path.join(tempDir, 'main.pas'),
  3177. `unit Main;
  3178. interface
  3179. type
  3180. TBar = class
  3181. procedure DoIt;
  3182. end;
  3183. TDecoy = class
  3184. procedure DoIt;
  3185. end;
  3186. TFoo = class
  3187. class function GetInstance: TBar;
  3188. end;
  3189. implementation
  3190. procedure TBar.DoIt; begin end;
  3191. procedure TDecoy.DoIt; begin end;
  3192. class function TFoo.GetInstance: TBar; begin Result := nil; end;
  3193. procedure Run;
  3194. begin
  3195. TFoo.GetInstance().DoIt();
  3196. end;
  3197. end.
  3198. `
  3199. );
  3200. cg = await CodeGraph.init(tempDir, { index: true });
  3201. expect(isCalled('TBar::DoIt')).toBe(true);
  3202. expect(isCalled('TDecoy::DoIt')).toBe(false);
  3203. });
  3204. it('resolves a constructor chain TFoo.Create().Configure() on the constructed class', async () => {
  3205. fs.writeFileSync(
  3206. path.join(tempDir, 'main.pas'),
  3207. `unit Main;
  3208. interface
  3209. type
  3210. TFoo = class
  3211. constructor Create;
  3212. procedure Configure;
  3213. end;
  3214. TDecoy = class
  3215. procedure Configure;
  3216. end;
  3217. implementation
  3218. constructor TFoo.Create; begin end;
  3219. procedure TFoo.Configure; begin end;
  3220. procedure TDecoy.Configure; begin end;
  3221. procedure Run;
  3222. begin
  3223. TFoo.Create().Configure();
  3224. end;
  3225. end.
  3226. `
  3227. );
  3228. cg = await CodeGraph.init(tempDir, { index: true });
  3229. // A constructor returns its own class (no `: TBar` annotation), so Configure
  3230. // resolves on TFoo, not the same-named decoy.
  3231. expect(isCalled('TFoo::Configure')).toBe(true);
  3232. expect(isCalled('TDecoy::Configure')).toBe(false);
  3233. });
  3234. it('resolves a typecast chain TFoo(x).DoIt() on the cast type', async () => {
  3235. fs.writeFileSync(
  3236. path.join(tempDir, 'main.pas'),
  3237. `unit Main;
  3238. interface
  3239. type
  3240. TFoo = class
  3241. procedure DoIt;
  3242. end;
  3243. TDecoy = class
  3244. procedure DoIt;
  3245. end;
  3246. implementation
  3247. procedure TFoo.DoIt; begin end;
  3248. procedure TDecoy.DoIt; begin end;
  3249. procedure Run(obj: TObject);
  3250. begin
  3251. TFoo(obj).DoIt();
  3252. end;
  3253. end.
  3254. `
  3255. );
  3256. cg = await CodeGraph.init(tempDir, { index: true });
  3257. expect(isCalled('TFoo::DoIt')).toBe(true);
  3258. expect(isCalled('TDecoy::DoIt')).toBe(false);
  3259. });
  3260. it('creates NO edge when the factory return type lacks the method (silent miss)', async () => {
  3261. fs.writeFileSync(
  3262. path.join(tempDir, 'main.pas'),
  3263. `unit Main;
  3264. interface
  3265. type
  3266. TBar = class
  3267. end;
  3268. TOther = class
  3269. procedure OnlyOther;
  3270. end;
  3271. TFoo = class
  3272. class function GetInstance: TBar;
  3273. end;
  3274. implementation
  3275. procedure TOther.OnlyOther; begin end;
  3276. class function TFoo.GetInstance: TBar; begin Result := nil; end;
  3277. procedure Run;
  3278. begin
  3279. TFoo.GetInstance().OnlyOther();
  3280. end;
  3281. end.
  3282. `
  3283. );
  3284. cg = await CodeGraph.init(tempDir, { index: true });
  3285. // TBar has no OnlyOther — must not mis-attach to the same-named TOther::OnlyOther.
  3286. expect(isCalled('TOther::OnlyOther')).toBe(false);
  3287. });
  3288. it('extracts paren-less method calls (Pascal lets a no-arg method drop its parens)', async () => {
  3289. fs.writeFileSync(
  3290. path.join(tempDir, 'main.pas'),
  3291. `unit Main;
  3292. interface
  3293. type
  3294. TFoo = class
  3295. procedure DoThing;
  3296. procedure Reset;
  3297. end;
  3298. implementation
  3299. procedure TFoo.DoThing; begin end;
  3300. procedure TFoo.Reset; begin end;
  3301. procedure Run(f: TFoo);
  3302. begin
  3303. f.DoThing;
  3304. f.Reset;
  3305. end;
  3306. end.
  3307. `
  3308. );
  3309. cg = await CodeGraph.init(tempDir, { index: true });
  3310. expect(isCalled('TFoo::DoThing')).toBe(true);
  3311. expect(isCalled('TFoo::Reset')).toBe(true);
  3312. });
  3313. it('resolves a PAREN-LESS chained factory call TFoo.GetInstance.DoIt via the return type', async () => {
  3314. fs.writeFileSync(
  3315. path.join(tempDir, 'main.pas'),
  3316. `unit Main;
  3317. interface
  3318. type
  3319. TBar = class
  3320. procedure DoIt;
  3321. end;
  3322. TDecoy = class
  3323. procedure DoIt;
  3324. end;
  3325. TFoo = class
  3326. class function GetInstance: TBar;
  3327. end;
  3328. implementation
  3329. procedure TBar.DoIt; begin end;
  3330. procedure TDecoy.DoIt; begin end;
  3331. class function TFoo.GetInstance: TBar; begin Result := nil; end;
  3332. procedure Run;
  3333. begin
  3334. TFoo.GetInstance.DoIt;
  3335. end;
  3336. end.
  3337. `
  3338. );
  3339. cg = await CodeGraph.init(tempDir, { index: true });
  3340. expect(isCalled('TBar::DoIt')).toBe(true);
  3341. expect(isCalled('TDecoy::DoIt')).toBe(false);
  3342. });
  3343. it('does NOT turn a property write/read into a call edge (only statement-level dots are calls)', async () => {
  3344. fs.writeFileSync(
  3345. path.join(tempDir, 'main.pas'),
  3346. `unit Main;
  3347. interface
  3348. type
  3349. TFoo = class
  3350. function GetValue: Integer;
  3351. procedure SetValue(v: Integer);
  3352. property Value: Integer read GetValue write SetValue;
  3353. end;
  3354. implementation
  3355. function TFoo.GetValue: Integer; begin Result := 0; end;
  3356. procedure TFoo.SetValue(v: Integer); begin end;
  3357. procedure Run(f: TFoo);
  3358. var x: Integer;
  3359. begin
  3360. f.Value := 5;
  3361. x := f.Value;
  3362. end;
  3363. end.
  3364. `
  3365. );
  3366. cg = await CodeGraph.init(tempDir, { index: true });
  3367. // A property read/write is a bare dot in assignment position, not a statement,
  3368. // so it must not be mis-extracted as a call to the property's getter/setter.
  3369. expect(isCalled('TFoo::GetValue')).toBe(false);
  3370. expect(isCalled('TFoo::SetValue')).toBe(false);
  3371. });
  3372. it('attributes an implementation-only free procedure\'s calls to the procedure, not the file', async () => {
  3373. fs.writeFileSync(
  3374. path.join(tempDir, 'main.pas'),
  3375. `unit Main;
  3376. interface
  3377. type
  3378. TTgt = class
  3379. procedure Hit;
  3380. end;
  3381. TFoo = class
  3382. procedure DoStuff;
  3383. end;
  3384. implementation
  3385. procedure TTgt.Hit; begin end;
  3386. procedure TFoo.DoStuff; var t: TTgt; begin t.Hit; end;
  3387. procedure Helper; var t: TTgt; begin t.Hit; end;
  3388. `
  3389. );
  3390. cg = await CodeGraph.init(tempDir, { index: true });
  3391. // `Helper` is implementation-only (no interface decl, not a method), but its
  3392. // body's call must attribute to `Helper`, not the file/module — alongside the
  3393. // method `DoStuff`.
  3394. expect(callerNamesOf('TTgt::Hit')).toEqual(['DoStuff', 'Helper']);
  3395. });
  3396. });
  3397. });