-
Notifications
You must be signed in to change notification settings - Fork 697
/
Copy pathfakes.ts
349 lines (324 loc) · 11.3 KB
/
fakes.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as vscode from '../src/vscodeAdapter';
import * as protocol from '../src/omnisharp/protocol';
import { ITelemetryReporter } from '../src/shared/telemetryReporter';
import {
OmnisharpServerMsBuildProjectDiagnostics,
OmnisharpServerOnError,
OmnisharpServerUnresolvedDependencies,
WorkspaceInformationUpdated,
} from '../src/omnisharp/omnisharpLoggingEvents';
export const getNullChannel = (): vscode.OutputChannel => {
const returnChannel: vscode.OutputChannel = {
name: '',
append: (_value: string) => {
/** empty */
},
appendLine: (_value: string) => {
/** empty */
},
clear: () => {
/** empty */
},
show: (_preserveFocusOrColumn?: boolean | vscode.ViewColumn, _preserveFocus?: boolean) => {
/** empty */
},
hide: () => {
/** empty */
},
dispose: () => {
/** empty */
},
};
return returnChannel;
};
export const getNullTelemetryReporter = (): ITelemetryReporter => {
const reporter: ITelemetryReporter = {
sendTelemetryEvent: (
_eventName: string,
_properties?: { [key: string]: string },
_measures?: { [key: string]: number }
) => {
/** empty */
},
sendTelemetryErrorEvent: (
_eventName: string,
_properties?: { [key: string]: string },
_measures?: { [key: string]: number },
_errorProps?: string[]
) => {
/** empty */
},
};
return reporter;
};
export const getWorkspaceConfiguration = (): vscode.WorkspaceConfiguration => {
const values: { [key: string]: { globalValue: any; workspaceValue: any; workspaceFolderValue: any } } = {};
const configuration: vscode.WorkspaceConfiguration = {
get<T>(section: string, defaultValue?: T): T | undefined {
const result = values[section];
if (result?.globalValue !== undefined) {
return result.globalValue;
} else if (result?.workspaceValue !== undefined) {
return result.workspaceValue;
} else if (result?.workspaceFolderValue !== undefined) {
return result.workspaceFolderValue;
} else {
return defaultValue;
}
},
has: (section: string) => {
return values[section] !== undefined;
},
inspect<T>(
section: string
):
| { key: string; defaultValue?: T; globalValue?: T; workspaceValue?: T; workspaceFolderValue?: T }
| undefined {
const result = values[section];
if (!result) {
return undefined;
}
return {
key: section,
globalValue: result.globalValue,
defaultValue: undefined,
workspaceValue: result.workspaceValue,
workspaceFolderValue: result.workspaceFolderValue,
};
},
update: async (section: string, value: any, _configurationTarget?: vscode.ConfigurationTarget | boolean) => {
const existing = values[section] ?? {
globalValue: undefined,
workspaceValue: undefined,
workspaceFolderValue: undefined,
};
switch (_configurationTarget) {
case vscode.ConfigurationTarget.Global:
existing.globalValue = value;
break;
case vscode.ConfigurationTarget.Workspace:
existing.workspaceValue = value;
break;
case vscode.ConfigurationTarget.WorkspaceFolder:
existing.workspaceFolderValue = value;
break;
case undefined:
existing.globalValue = value;
break;
}
values[section] = existing;
return Promise.resolve();
},
};
return configuration;
};
export function getOmnisharpMSBuildProjectDiagnosticsEvent(
fileName: string,
warnings: protocol.MSBuildDiagnosticsMessage[],
errors: protocol.MSBuildDiagnosticsMessage[]
): OmnisharpServerMsBuildProjectDiagnostics {
return new OmnisharpServerMsBuildProjectDiagnostics({
FileName: fileName,
Warnings: warnings,
Errors: errors,
});
}
export function getMSBuildDiagnosticsMessage(
logLevel: string,
fileName: string,
text: string,
startLine: number,
startColumn: number,
endLine: number,
endColumn: number
): protocol.MSBuildDiagnosticsMessage {
return {
LogLevel: logLevel,
FileName: fileName,
Text: text,
StartLine: startLine,
StartColumn: startColumn,
EndLine: endLine,
EndColumn: endColumn,
};
}
export function getOmnisharpServerOnErrorEvent(
text: string,
fileName: string,
line: number,
column: number
): OmnisharpServerOnError {
return new OmnisharpServerOnError({
Text: text,
FileName: fileName,
Line: line,
Column: column,
});
}
export function getUnresolvedDependenices(fileName: string): OmnisharpServerUnresolvedDependencies {
return new OmnisharpServerUnresolvedDependencies({
UnresolvedDependencies: [],
FileName: fileName,
});
}
export function getFakeVsCode(): vscode.vscode {
return {
commands: {
executeCommand: <_T>(_command: string, ..._rest: any[]) => {
throw new Error('Not Implemented');
},
},
languages: {
match: (_selector: vscode.DocumentSelector, _document: vscode.TextDocument) => {
throw new Error('Not Implemented');
},
},
window: {
activeTextEditor: undefined,
showInformationMessage: <T extends vscode.MessageItem>(_message: string, ..._items: T[]) => {
throw new Error('Not Implemented');
},
showWarningMessage: <T extends vscode.MessageItem>(_message: string, ..._items: T[]) => {
throw new Error('Not Implemented');
},
showErrorMessage: <T extends vscode.MessageItem>(_message: string, ..._items: T[]) => {
throw new Error('Not Implemented');
},
},
workspace: {
workspaceFolders: undefined,
getConfiguration: (_section?: string, _resource?: vscode.Uri) => {
throw new Error('Not Implemented');
},
asRelativePath: (_pathOrUri: string | vscode.Uri, _includeWorkspaceFolder?: boolean) => {
throw new Error('Not Implemented');
},
createFileSystemWatcher: (
_globPattern: vscode.GlobPattern,
_ignoreCreateEvents?: boolean,
_ignoreChangeEvents?: boolean,
_ignoreDeleteEvents?: boolean
) => {
throw new Error('Not Implemented');
},
onDidChangeConfiguration: (
_listener: (e: vscode.ConfigurationChangeEvent) => any,
_thisArgs?: any,
_disposables?: vscode.Disposable[]
): vscode.Disposable => {
throw new Error('Not Implemented');
},
},
extensions: {
all: [],
},
Uri: {
parse: () => {
throw new Error('Not Implemented');
},
file: (f: string): vscode.Uri => {
return {
path: f,
fsPath: f,
} as unknown as vscode.Uri;
},
},
version: 'myVersion',
env: {
appName: '',
appRoot: '',
language: '',
clipboard: {
writeText: () => {
throw new Error('Not Implemented');
},
readText: () => {
throw new Error('Not Implemented');
},
},
machineId: '',
sessionId: '',
openExternal: () => {
throw new Error('Not Implemented');
},
},
l10n: {
t: (
options:
| string
| {
message: string;
args?: Array<string | number | boolean> | Record<string, any>;
comment: string | string[];
},
...args: (string | number | boolean)[] | Record<string, any>[]
) => {
let message = '';
let actualArgs:
| (string | number | boolean)[]
| Record<string, any>[]
| Record<string, any>
| undefined = args;
if (typeof options === 'string') {
message = options;
} else {
message = options.message;
actualArgs = options.args;
}
if (!Array.isArray(actualArgs)) {
throw new Error('Non-array l10n args not implemented');
}
const strArgs: string[] = [];
actualArgs.forEach((arg) => {
if (typeof arg !== 'string') {
throw new Error('Non-string l10n args not implemented');
}
strArgs.push(arg);
});
const formatted = message.replace(/{(\d+)}/g, function (match, number) {
return typeof args[number] != 'undefined' ? strArgs[number] : match;
});
return formatted;
},
bundle: undefined,
uri: undefined,
},
};
}
export function getMSBuildWorkspaceInformation(
msBuildSolutionPath: string,
msBuildProjects: protocol.MSBuildProject[]
): protocol.MsBuildWorkspaceInformation {
return {
SolutionPath: msBuildSolutionPath,
Projects: msBuildProjects,
};
}
export function getWorkspaceInformationUpdated(
MsBuild: protocol.MsBuildWorkspaceInformation | undefined
): WorkspaceInformationUpdated {
return new WorkspaceInformationUpdated({
MsBuild,
});
}
export function getVSCodeWithConfig(vscodeAdapter: vscode.vscode = getFakeVsCode()) {
const _vscodeAdapterConfig = getWorkspaceConfiguration();
vscodeAdapter.workspace.getConfiguration = (_section, _resource) => {
return _vscodeAdapterConfig;
};
return vscodeAdapter;
}
export async function updateConfig(
vscode: vscode.vscode,
section: string | undefined,
config: string,
value: any
): Promise<void> {
const workspaceConfig = vscode.workspace.getConfiguration(section);
const configEntry = section ? `${section}.${config}` : config;
await workspaceConfig.update(configEntry, value);
}