|
| 1 | +import { protocol } from "../../_namespaces/ts.server"; |
| 2 | +import { baselineTsserverLogs, createLoggerWithInMemoryLogs, createSession } from "../tsserver/helpers"; |
| 3 | +import { createServerHost, File } from "../virtualFileSystemWithWatch"; |
| 4 | + |
| 5 | +describe("unittests:: services:: findAllReferences", () => { |
| 6 | + it("does not try to open a file in a project that was updated and no longer has the file", () => { |
| 7 | + const files: File[] = [ |
| 8 | + { |
| 9 | + path: "/packages/babel-loader/tsconfig.json", |
| 10 | + content: |
| 11 | +` |
| 12 | +{ |
| 13 | + "compilerOptions": { |
| 14 | + "target": "ES2018", |
| 15 | + "module": "commonjs", |
| 16 | + "strict": true, |
| 17 | + "esModuleInterop": true, |
| 18 | + "composite": true, |
| 19 | + "rootDir": "src", |
| 20 | + "outDir": "dist" |
| 21 | + }, |
| 22 | + "include": ["src"], |
| 23 | + "references": [{"path": "../core"}] |
| 24 | +} |
| 25 | +` |
| 26 | + }, |
| 27 | + { |
| 28 | + path: "/packages/babel-loader/src/index.ts", |
| 29 | + content: |
| 30 | +` |
| 31 | +import type { Foo } from "../../core/src/index.js"; |
| 32 | +` |
| 33 | + }, |
| 34 | + { |
| 35 | + path: "/packages/core/tsconfig.json", |
| 36 | + content: |
| 37 | +` |
| 38 | +{ |
| 39 | + "compilerOptions": { |
| 40 | + "target": "ES2018", |
| 41 | + "module": "commonjs", |
| 42 | + "strict": true, |
| 43 | + "esModuleInterop": true, |
| 44 | + "composite": true, |
| 45 | + "rootDir": "./src", |
| 46 | + "outDir": "./dist", |
| 47 | + }, |
| 48 | + "include": ["./src"] |
| 49 | +} |
| 50 | +` |
| 51 | + }, |
| 52 | + { |
| 53 | + path: "/packages/core/src/index.ts", |
| 54 | + content: |
| 55 | +` |
| 56 | +import { Bar } from "./loading-indicator.js"; |
| 57 | +export type Foo = {}; |
| 58 | +const bar: Bar = { |
| 59 | + prop: 0 |
| 60 | +} |
| 61 | +` |
| 62 | + }, |
| 63 | + { |
| 64 | + path: "/packages/core/src/loading-indicator.ts", |
| 65 | + content: |
| 66 | +` |
| 67 | +export interface Bar { |
| 68 | + prop: number; |
| 69 | +} |
| 70 | +const bar: Bar = { |
| 71 | + prop: 1 |
| 72 | +} |
| 73 | +` |
| 74 | + }, |
| 75 | + ]; |
| 76 | + const host = createServerHost(files); |
| 77 | + const session = createSession(host, { logger: createLoggerWithInMemoryLogs(host) }); |
| 78 | + // Open files in the two configured projects |
| 79 | + session.executeCommandSeq<protocol.UpdateOpenRequest>({ |
| 80 | + command: protocol.CommandTypes.UpdateOpen, |
| 81 | + arguments: { |
| 82 | + openFiles: [ |
| 83 | + { |
| 84 | + file: files[1].path, // babel-loader/src/index.ts |
| 85 | + fileContent: files[1].content, |
| 86 | + } |
| 87 | + ] |
| 88 | + } |
| 89 | + }); |
| 90 | + session.executeCommandSeq<protocol.UpdateOpenRequest>({ |
| 91 | + command: protocol.CommandTypes.UpdateOpen, |
| 92 | + arguments: { |
| 93 | + openFiles: [ |
| 94 | + { |
| 95 | + file: files[3].path, // core/src/index.ts |
| 96 | + fileContent: files[3].content, |
| 97 | + } |
| 98 | + ] |
| 99 | + } |
| 100 | + }); |
| 101 | + // Now change `babel-loader` project to no longer import `core` project |
| 102 | + session.executeCommandSeq<protocol.UpdateOpenRequest>({ |
| 103 | + command: protocol.CommandTypes.UpdateOpen, |
| 104 | + arguments: { |
| 105 | + changedFiles: [ |
| 106 | + { |
| 107 | + fileName: files[1].path, |
| 108 | + textChanges: [ |
| 109 | + { |
| 110 | + start: { |
| 111 | + line: 1, |
| 112 | + offset: 26 |
| 113 | + }, |
| 114 | + end: { |
| 115 | + line: 1, |
| 116 | + offset: 26 |
| 117 | + }, |
| 118 | + newText: "// comment", |
| 119 | + } |
| 120 | + ] |
| 121 | + } |
| 122 | + ] |
| 123 | + } |
| 124 | + }); |
| 125 | + const loadingIndicatorScriptInfo = session.getProjectService().getScriptInfo(files[3].path)!; |
| 126 | + // At this point, we haven't updated `babel-loader` project yet, |
| 127 | + // so `babel-loader` is still a containing project of `loading-indicator` file. |
| 128 | + assert(loadingIndicatorScriptInfo.containingProjects.find(p => p.projectName === "/packages/babel-loader/tsconfig.json")); |
| 129 | + // When calling find all references, |
| 130 | + // we shouldn't crash due to using outdated information on a file's containig projects. |
| 131 | + session.executeCommandSeq<protocol.ReferencesRequest>({ |
| 132 | + command: protocol.CommandTypes.References, |
| 133 | + arguments: { |
| 134 | + file: files[3].path, // core/src/index.ts |
| 135 | + line: 5, // `prop` |
| 136 | + offset: 5, |
| 137 | + } |
| 138 | + }); |
| 139 | + baselineTsserverLogs("findAllReferences", "does not try to open a file in a project that was updated and no longer has the file", session); |
| 140 | + }); |
| 141 | +}); |
0 commit comments