Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8538100

Browse files
committedOct 6, 2023
Add test for resolution reuse from different folder
1 parent fe7f068 commit 8538100

File tree

4 files changed

+398
-0
lines changed

4 files changed

+398
-0
lines changed
 

‎src/testRunner/unittests/tsserver/auxiliaryProject.ts

+59
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,63 @@ describe("unittests:: tsserver:: auxiliaryProject::", () => {
125125
});
126126
baselineTsserverLogs("auxiliaryProject", "file is added later through finding definition", session);
127127
});
128+
129+
it("resolution is reused from different folder", () => {
130+
const indexFile: File = {
131+
path: "/user/users/projects/myproject/some/index.ts",
132+
content: dedent`
133+
import { random } from "../folder/random";
134+
import { command } from "yargs";
135+
command("foo", yargs => {
136+
yargs.positional();
137+
});
138+
`,
139+
};
140+
const host = createServerHost({
141+
"/user/users/projects/myproject/node_modules/@types/yargs/package.json": JSON.stringify(
142+
{
143+
name: "@types/yargs",
144+
version: "1.0.0",
145+
types: "./index.d.ts",
146+
},
147+
undefined,
148+
" ",
149+
),
150+
"/user/users/projects/myproject/node_modules/@types/yargs/callback.d.ts": dedent`
151+
export declare class Yargs { positional(): Yargs; }
152+
`,
153+
"/user/users/projects/myproject/node_modules/@types/yargs/index.d.ts": dedent`
154+
import { Yargs } from "./callback";
155+
export declare function command(command: string, cb: (yargs: Yargs) => void): void;
156+
`,
157+
"/user/users/projects/myproject/node_modules/yargs/package.json": JSON.stringify(
158+
{
159+
name: "yargs",
160+
version: "1.0.0",
161+
main: "index.js",
162+
},
163+
undefined,
164+
" ",
165+
),
166+
"/user/users/projects/myproject/node_modules/yargs/callback.js": dedent`
167+
export class Yargs { positional() { } }
168+
`,
169+
"/user/users/projects/myproject/node_modules/yargs/index.js": dedent`
170+
// Specifically didnt have ./callback import to ensure that resolving module sepcifier adds the file to project at later stage
171+
export function command(cmd, cb) { cb(Yargs) }
172+
`,
173+
"/user/users/projects/myproject/folder/random.ts": dedent`
174+
import { Yargs } from "yargs/callback";
175+
`,
176+
[indexFile.path]: indexFile.content,
177+
[libFile.path]: libFile.content,
178+
});
179+
const session = createSession(host, { logger: createLoggerWithInMemoryLogs(host) });
180+
openFilesForSession([indexFile], session);
181+
session.executeCommandSeq<ts.server.protocol.FindSourceDefinitionRequest>({
182+
command: ts.server.protocol.CommandTypes.FindSourceDefinition,
183+
arguments: protocolFileLocationFromSubstring(indexFile, "positional"),
184+
});
185+
baselineTsserverLogs("auxiliaryProject", "resolution is reused from different folder", session);
186+
});
128187
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// === goToSourceDefinition ===
2+
// === /node_modules/yargs/callback.js ===
3+
// export class Yargs { [|positional|]() { } }
4+
5+
// === /some/index.ts ===
6+
// import { random } from "../folder/random";
7+
// import { command } from "yargs";
8+
// command("foo", yargs => {
9+
// yargs./*GOTO SOURCE DEF*/positional();
10+
// });
11+
12+
// === Details ===
13+
[
14+
{
15+
"containerKind": "",
16+
"containerName": "",
17+
"kind": "",
18+
"name": "",
19+
"unverified": true
20+
}
21+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,272 @@
1+
currentDirectory:: / useCaseSensitiveFileNames: false
2+
Info seq [hh:mm:ss:mss] Provided types map file "/a/lib/typesMap.json" doesn't exist
3+
Before request
4+
//// [/user/users/projects/myproject/node_modules/@types/yargs/package.json]
5+
{
6+
"name": "@types/yargs",
7+
"version": "1.0.0",
8+
"types": "./index.d.ts"
9+
}
10+
11+
//// [/user/users/projects/myproject/node_modules/@types/yargs/callback.d.ts]
12+
export declare class Yargs { positional(): Yargs; }
13+
14+
15+
//// [/user/users/projects/myproject/node_modules/@types/yargs/index.d.ts]
16+
17+
import { Yargs } from "./callback";
18+
export declare function command(command: string, cb: (yargs: Yargs) => void): void;
19+
20+
21+
//// [/user/users/projects/myproject/node_modules/yargs/package.json]
22+
{
23+
"name": "yargs",
24+
"version": "1.0.0",
25+
"main": "index.js"
26+
}
27+
28+
//// [/user/users/projects/myproject/node_modules/yargs/callback.js]
29+
export class Yargs { positional() { } }
30+
31+
32+
//// [/user/users/projects/myproject/node_modules/yargs/index.js]
33+
// Specifically didnt have ./callback import to ensure that resolving module sepcifier adds the file to project at later stage
34+
export function command(cmd, cb) { cb(Yargs) }
35+
36+
37+
//// [/user/users/projects/myproject/folder/random.ts]
38+
import { Yargs } from "yargs/callback";
39+
40+
41+
//// [/user/users/projects/myproject/some/index.ts]
42+
import { random } from "../folder/random";
43+
import { command } from "yargs";
44+
command("foo", yargs => {
45+
yargs.positional();
46+
});
47+
48+
49+
//// [/a/lib/lib.d.ts]
50+
/// <reference no-default-lib="true"/>
51+
interface Boolean {}
52+
interface Function {}
53+
interface CallableFunction {}
54+
interface NewableFunction {}
55+
interface IArguments {}
56+
interface Number { toExponential: any; }
57+
interface Object {}
58+
interface RegExp {}
59+
interface String { charAt: any; }
60+
interface Array<T> { length: number; [n: number]: T; }
61+
62+
63+
Info seq [hh:mm:ss:mss] request:
64+
{
65+
"command": "open",
66+
"arguments": {
67+
"file": "/user/users/projects/myproject/some/index.ts"
68+
},
69+
"seq": 1,
70+
"type": "request"
71+
}
72+
Info seq [hh:mm:ss:mss] Search path: /user/users/projects/myproject/some
73+
Info seq [hh:mm:ss:mss] For info: /user/users/projects/myproject/some/index.ts :: No config files found.
74+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/some/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root
75+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/some/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root
76+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root
77+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root
78+
Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1*
79+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/folder/random.ts 500 undefined WatchType: Closed Script info
80+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
81+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
82+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
83+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
84+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/@types/yargs/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution
85+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/some/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
86+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/some/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
87+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info
88+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/yargs/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution
89+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/folder/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
90+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/folder/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
91+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/some/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
92+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/some/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
93+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
94+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
95+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
96+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
97+
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms
98+
Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred)
99+
Info seq [hh:mm:ss:mss] Files (5)
100+
/a/lib/lib.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
101+
/user/users/projects/myproject/node_modules/@types/yargs/callback.d.ts Text-1 "export declare class Yargs { positional(): Yargs; }\n"
102+
/user/users/projects/myproject/folder/random.ts Text-1 "import { Yargs } from \"yargs/callback\";\n"
103+
/user/users/projects/myproject/node_modules/@types/yargs/index.d.ts Text-1 "\nimport { Yargs } from \"./callback\";\nexport declare function command(command: string, cb: (yargs: Yargs) => void): void;\n"
104+
/user/users/projects/myproject/some/index.ts SVC-1-0 "import { random } from \"../folder/random\";\nimport { command } from \"yargs\";\ncommand(\"foo\", yargs => {\n yargs.positional();\n});\n"
105+
106+
107+
../../../../../a/lib/lib.d.ts
108+
Default library for target 'es5'
109+
../node_modules/@types/yargs/callback.d.ts
110+
Imported via "yargs/callback" from file '../folder/random.ts' with packageId '@types/yargs/callback.d.ts@1.0.0'
111+
Imported via "./callback" from file '../node_modules/@types/yargs/index.d.ts' with packageId '@types/yargs/callback.d.ts@1.0.0'
112+
../folder/random.ts
113+
Imported via "../folder/random" from file 'index.ts'
114+
../node_modules/@types/yargs/index.d.ts
115+
Imported via "yargs" from file 'index.ts' with packageId '@types/yargs/index.d.ts@1.0.0'
116+
Entry point for implicit type library 'yargs' with packageId '@types/yargs/index.d.ts@1.0.0'
117+
index.ts
118+
Root file specified for compilation
119+
120+
Info seq [hh:mm:ss:mss] -----------------------------------------------
121+
Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred)
122+
Info seq [hh:mm:ss:mss] Files (5)
123+
124+
Info seq [hh:mm:ss:mss] -----------------------------------------------
125+
Info seq [hh:mm:ss:mss] Open files:
126+
Info seq [hh:mm:ss:mss] FileName: /user/users/projects/myproject/some/index.ts ProjectRootPath: undefined
127+
Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject1*
128+
Info seq [hh:mm:ss:mss] response:
129+
{
130+
"responseRequired": false
131+
}
132+
After request
133+
134+
PolledWatches::
135+
/user/users/projects/myproject/folder/node_modules: *new*
136+
{"pollingInterval":500}
137+
/user/users/projects/myproject/jsconfig.json: *new*
138+
{"pollingInterval":2000}
139+
/user/users/projects/myproject/some/jsconfig.json: *new*
140+
{"pollingInterval":2000}
141+
/user/users/projects/myproject/some/node_modules: *new*
142+
{"pollingInterval":500}
143+
/user/users/projects/myproject/some/node_modules/@types: *new*
144+
{"pollingInterval":500}
145+
/user/users/projects/myproject/some/tsconfig.json: *new*
146+
{"pollingInterval":2000}
147+
/user/users/projects/myproject/tsconfig.json: *new*
148+
{"pollingInterval":2000}
149+
/user/users/projects/node_modules/@types: *new*
150+
{"pollingInterval":500}
151+
152+
FsWatches::
153+
/a/lib/lib.d.ts: *new*
154+
{}
155+
/user/users/projects/myproject/folder/random.ts: *new*
156+
{}
157+
/user/users/projects/myproject/node_modules/@types/yargs/package.json: *new*
158+
{}
159+
/user/users/projects/myproject/node_modules/yargs/package.json: *new*
160+
{}
161+
162+
FsWatchesRecursive::
163+
/user/users/projects/myproject/node_modules: *new*
164+
{}
165+
/user/users/projects/myproject/node_modules/@types: *new*
166+
{}
167+
168+
Before request
169+
170+
Info seq [hh:mm:ss:mss] request:
171+
{
172+
"command": "findSourceDefinition",
173+
"arguments": {
174+
"file": "/user/users/projects/myproject/some/index.ts",
175+
"line": 4,
176+
"offset": 11
177+
},
178+
"seq": 2,
179+
"type": "request"
180+
}
181+
Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1*
182+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/some/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations
183+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/some/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations
184+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations
185+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations
186+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations
187+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations
188+
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/yargs/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution
189+
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/folder/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations
190+
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/folder/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations
191+
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms
192+
Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary)
193+
Info seq [hh:mm:ss:mss] Files (4)
194+
/user/users/projects/myproject/node_modules/yargs/callback.js Text-1 "export class Yargs { positional() { } }\n"
195+
/user/users/projects/myproject/folder/random.ts Text-1 "import { Yargs } from \"yargs/callback\";\n"
196+
/user/users/projects/myproject/node_modules/yargs/index.js Text-1 "// Specifically didnt have ./callback import to ensure that resolving module sepcifier adds the file to project at later stage\nexport function command(cmd, cb) { cb(Yargs) }\n"
197+
/user/users/projects/myproject/some/index.ts SVC-1-0 "import { random } from \"../folder/random\";\nimport { command } from \"yargs\";\ncommand(\"foo\", yargs => {\n yargs.positional();\n});\n"
198+
199+
200+
../node_modules/yargs/callback.js
201+
Imported via "yargs/callback" from file '../folder/random.ts' with packageId 'yargs/callback.js@1.0.0'
202+
../folder/random.ts
203+
Imported via "../folder/random" from file 'index.ts'
204+
../node_modules/yargs/index.js
205+
Imported via "yargs" from file 'index.ts' with packageId 'yargs/index.js@1.0.0'
206+
index.ts
207+
Root file specified for compilation
208+
209+
Info seq [hh:mm:ss:mss] -----------------------------------------------
210+
Info seq [hh:mm:ss:mss] response:
211+
{
212+
"response": [
213+
{
214+
"file": "/user/users/projects/myproject/node_modules/yargs/callback.js",
215+
"start": {
216+
"line": 1,
217+
"offset": 22
218+
},
219+
"end": {
220+
"line": 1,
221+
"offset": 32
222+
},
223+
"contextStart": {
224+
"line": 1,
225+
"offset": 22
226+
},
227+
"contextEnd": {
228+
"line": 1,
229+
"offset": 38
230+
},
231+
"unverified": true
232+
}
233+
],
234+
"responseRequired": true
235+
}
236+
After request
237+
238+
PolledWatches::
239+
/user/users/projects/myproject/folder/node_modules:
240+
{"pollingInterval":500}
241+
/user/users/projects/myproject/jsconfig.json:
242+
{"pollingInterval":2000}
243+
/user/users/projects/myproject/some/jsconfig.json:
244+
{"pollingInterval":2000}
245+
/user/users/projects/myproject/some/node_modules:
246+
{"pollingInterval":500}
247+
/user/users/projects/myproject/some/node_modules/@types:
248+
{"pollingInterval":500}
249+
/user/users/projects/myproject/some/tsconfig.json:
250+
{"pollingInterval":2000}
251+
/user/users/projects/myproject/tsconfig.json:
252+
{"pollingInterval":2000}
253+
/user/users/projects/node_modules: *new*
254+
{"pollingInterval":500}
255+
/user/users/projects/node_modules/@types:
256+
{"pollingInterval":500}
257+
258+
FsWatches::
259+
/a/lib/lib.d.ts:
260+
{}
261+
/user/users/projects/myproject/folder/random.ts:
262+
{}
263+
/user/users/projects/myproject/node_modules/@types/yargs/package.json:
264+
{}
265+
/user/users/projects/myproject/node_modules/yargs/package.json:
266+
{}
267+
268+
FsWatchesRecursive::
269+
/user/users/projects/myproject/node_modules:
270+
{}
271+
/user/users/projects/myproject/node_modules/@types:
272+
{}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/// <reference path="../fourslash.ts" />
2+
3+
// @moduleResolution: node
4+
5+
// This is just made up repro where the js file will be added to auxillary project because its not already part of the project
6+
// Where in js file doesnt already have import to the corresponding js file hence will be added to project at later on stage
7+
8+
// @Filename: /node_modules/@types/yargs/package.json
9+
//// {
10+
//// "name": "@types/yargs",
11+
//// "version": "1.0.0",
12+
//// "types": "./index.d.ts"
13+
//// }
14+
15+
// @Filename: /node_modules/@types/yargs/callback.d.ts
16+
//// export declare class Yargs { positional(): Yargs; }
17+
18+
// @Filename: /node_modules/@types/yargs/index.d.ts
19+
//// import { Yargs } from "./callback";
20+
//// export declare function command(command: string, cb: (yargs: Yargs) => void): void;
21+
22+
// @Filename: /node_modules/yargs/package.json
23+
//// {
24+
//// "name": "yargs",
25+
//// "version": "1.0.0",
26+
//// "main": "index.js"
27+
//// }
28+
29+
// @Filename: /node_modules/yargs/callback.js
30+
//// export class Yargs { positional() { } }
31+
32+
// @Filename: /node_modules/yargs/index.js
33+
//// // Specifically didnt have ./callback import to ensure that resolving module sepcifier adds the file to project at later stage
34+
//// export function command(cmd, cb) { cb(Yargs) }
35+
36+
// @Filename: /folder/random.ts
37+
//// import { Yargs } from "yargs/callback";
38+
39+
// @Filename: /some/index.ts
40+
//// import { random } from "../folder/random";
41+
//// import { command } from "yargs";
42+
//// command("foo", yargs => {
43+
//// yargs.[|/*start*/positional|]();
44+
//// });
45+
46+
verify.baselineGoToSourceDefinition("start");

0 commit comments

Comments
 (0)
Please sign in to comment.