Skip to content

Commit c240a2d

Browse files
committed
generalize snapshottability, fix hover
1 parent 55094d6 commit c240a2d

File tree

2 files changed

+15
-18
lines changed

2 files changed

+15
-18
lines changed

packages/core/__tests__/language-server/hover.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ describe('Language Server: Hover', () => {
221221
"contents": {
222222
"kind": "markdown",
223223
"value": "\`\`\`typescript
224-
module "/Users/machty/code/glint/test-packages/ephemeral/edd73813ba473/foo"
224+
module "/path/to/EPHEMERAL_TEST_PROJECT/foo"
225225
\`\`\`",
226226
},
227227
"range": {

test-packages/test-utils/src/project.ts

+14-17
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const dirname = path.dirname(fileURLToPath(import.meta.url));
1818
const pathToTemplatePackage = pathUtils.normalizeFilePath(
1919
path.resolve(dirname, '../../../packages/template')
2020
);
21-
const fileUriToTemplatePckage = pathUtils.filePathToUri(pathToTemplatePackage);
21+
const fileUriToTemplatePackage = pathUtils.filePathToUri(pathToTemplatePackage);
2222
const ROOT = pathUtils.normalizeFilePath(path.resolve(dirname, '../../ephemeral'));
2323

2424
// You'd think this would exist, but... no? Accordingly, supply a minimal
@@ -93,24 +93,20 @@ export class Project {
9393
throw e;
9494
});
9595

96+
const wrapForSnapshottability = (serviceMethodName: keyof typeof languageServerHandle) => {
97+
return async (uri: string, ...rest: any[]) => {
98+
// @ts-expect-error not sure how to type this
99+
const value = await languageServerHandle[serviceMethodName](uri, ...rest);
100+
return this.normalizeForSnapshotting(uri, value);
101+
}
102+
}
103+
96104
return {
97105
...this.languageServerHandle,
98106

99-
sendDocumentDiagnosticRequest: async (uri: string) => {
100-
const value = (await languageServerHandle.sendDocumentDiagnosticRequest(
101-
uri
102-
)) as FullDocumentDiagnosticReport;
103-
104-
return this.normalizeForSnapshotting(uri, value.items) as Diagnostic[];
105-
},
106-
107-
sendDefinitionRequest: async (uri: string, position: Position) => {
108-
const value = await languageServerHandle.sendDefinitionRequest(uri, position);
109-
110-
return this.normalizeForSnapshotting(uri, value) as Awaited<
111-
ReturnType<typeof languageServerHandle.sendDefinitionRequest>
112-
>;
113-
},
107+
sendDocumentDiagnosticRequest: wrapForSnapshottability('sendDocumentDiagnosticRequest'),
108+
sendDefinitionRequest: wrapForSnapshottability('sendDefinitionRequest'),
109+
sendHoverRequest: wrapForSnapshottability('sendHoverRequest'),
114110

115111
/**
116112
* Helper fn that makes it easier to replace the whole contents of a file,
@@ -155,8 +151,9 @@ export class Project {
155151
volarEmbeddedContentUri.toString(),
156152
`volar-embedded-content://URI_ENCODED_PATH_TO/FILE`
157153
)
154+
.replaceAll(this.filePath('.'), '/path/to/EPHEMERAL_TEST_PROJECT')
158155
.replaceAll(this.fileURI('.'), 'file:///PATH_TO_EPHEMERAL_TEST_PROJECT')
159-
.replaceAll(fileUriToTemplatePckage, 'file:///PATH_TO_MODULE/@glint/template');
156+
.replaceAll(fileUriToTemplatePackage, 'file:///PATH_TO_MODULE/@glint/template');
160157

161158
return JSON.parse(normalized);
162159
}

0 commit comments

Comments
 (0)