forked from PowerShell/PowerShellEditorServices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLanguageServiceTests.cs
443 lines (378 loc) · 18.1 KB
/
LanguageServiceTests.cs
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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
using Microsoft.PowerShell.EditorServices.Test.Shared.Completion;
using Microsoft.PowerShell.EditorServices.Test.Shared.Definition;
using Microsoft.PowerShell.EditorServices.Test.Shared.Occurrences;
using Microsoft.PowerShell.EditorServices.Test.Shared.ParameterHint;
using Microsoft.PowerShell.EditorServices.Test.Shared.References;
using Microsoft.PowerShell.EditorServices.Test.Shared.SymbolDetails;
using Microsoft.PowerShell.EditorServices.Test.Shared.Symbols;
using System;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Xunit;
using Microsoft.PowerShell.EditorServices.Utility;
using Microsoft.PowerShell.EditorServices.Test.Shared;
using System.Runtime.InteropServices;
namespace Microsoft.PowerShell.EditorServices.Test.Language
{
public class LanguageServiceTests : IDisposable
{
private Workspace workspace;
private LanguageService languageService;
private PowerShellContext powerShellContext;
private static readonly string s_baseSharedScriptPath =
TestUtilities.NormalizePath("../../../../PowerShellEditorServices.Test.Shared/");
public LanguageServiceTests()
{
var logger = Logging.NullLogger;
this.powerShellContext = PowerShellContextFactory.Create(logger);
this.workspace = new Workspace(this.powerShellContext.LocalPowerShellVersion.Version, logger);
this.languageService = new LanguageService(this.powerShellContext, logger);
}
public void Dispose()
{
this.powerShellContext.Dispose();
}
[Fact]
public async Task LanguageServiceCompletesCommandInFile()
{
CompletionResults completionResults =
await this.GetCompletionResults(
CompleteCommandInFile.SourceDetails);
Assert.NotEmpty(completionResults.Completions);
Assert.Equal(
CompleteCommandInFile.ExpectedCompletion,
completionResults.Completions[0]);
}
[Fact]
public async Task LanguageServiceCompletesCommandFromModule()
{
CompletionResults completionResults =
await this.GetCompletionResults(
CompleteCommandFromModule.SourceDetails);
Assert.NotEmpty(completionResults.Completions);
Assert.Equal(
CompleteCommandFromModule.ExpectedCompletion,
completionResults.Completions[0]);
}
[Fact]
public async Task LanguageServiceCompletesVariableInFile()
{
CompletionResults completionResults =
await this.GetCompletionResults(
CompleteVariableInFile.SourceDetails);
Assert.Single(completionResults.Completions);
Assert.Equal(
CompleteVariableInFile.ExpectedCompletion,
completionResults.Completions[0]);
}
[Fact]
public async Task LanguageServiceCompletesAttributeValue()
{
CompletionResults completionResults =
await this.GetCompletionResults(
CompleteAttributeValue.SourceDetails);
Assert.NotEmpty(completionResults.Completions);
Assert.Equal(
CompleteAttributeValue.ExpectedRange,
completionResults.ReplacedRange);
}
[Fact]
public async Task LanguageServiceCompletesFilePath()
{
CompletionResults completionResults =
await this.GetCompletionResults(
CompleteFilePath.SourceDetails);
Assert.NotEmpty(completionResults.Completions);
// TODO: Since this is a path completion, this test will need to be
// platform specific. Probably something like:
// - Windows: C:\Program
// - macOS: /User
// - Linux: /hom
//Assert.Equal(
// CompleteFilePath.ExpectedRange,
// completionResults.ReplacedRange);
}
[Fact]
public async Task LanguageServiceFindsParameterHintsOnCommand()
{
ParameterSetSignatures paramSignatures =
await this.GetParamSetSignatures(
FindsParameterSetsOnCommand.SourceDetails);
Assert.NotNull(paramSignatures);
Assert.Equal("Get-Process", paramSignatures.CommandName);
Assert.Equal(6, paramSignatures.Signatures.Count());
}
[Fact]
public async Task LanguageServiceFindsCommandForParamHintsWithSpaces()
{
ParameterSetSignatures paramSignatures =
await this.GetParamSetSignatures(
FindsParameterSetsOnCommandWithSpaces.SourceDetails);
Assert.NotNull(paramSignatures);
Assert.Equal("Write-Host", paramSignatures.CommandName);
Assert.Single(paramSignatures.Signatures);
}
[Fact]
public async Task LanguageServiceFindsFunctionDefinition()
{
GetDefinitionResult definitionResult =
await this.GetDefinition(
FindsFunctionDefinition.SourceDetails);
SymbolReference definition = definitionResult.FoundDefinition;
Assert.Equal(1, definition.ScriptRegion.StartLineNumber);
Assert.Equal(10, definition.ScriptRegion.StartColumnNumber);
Assert.Equal("My-Function", definition.SymbolName);
}
[Fact]
public async Task LanguageServiceFindsFunctionDefinitionInDotSourceReference()
{
GetDefinitionResult definitionResult =
await this.GetDefinition(
FindsFunctionDefinitionInDotSourceReference.SourceDetails);
SymbolReference definition = definitionResult.FoundDefinition;
Assert.True(
definitionResult.FoundDefinition.FilePath.EndsWith(
FindsFunctionDefinition.SourceDetails.File),
"Unexpected reference file: " + definitionResult.FoundDefinition.FilePath);
Assert.Equal(1, definition.ScriptRegion.StartLineNumber);
Assert.Equal(10, definition.ScriptRegion.StartColumnNumber);
Assert.Equal("My-Function", definition.SymbolName);
}
[Fact]
public async Task LanguageServiceFindsDotSourcedFile()
{
GetDefinitionResult definitionResult =
await this.GetDefinition(
FindsDotSourcedFile.SourceDetails);
SymbolReference definition = definitionResult.FoundDefinition;
Assert.True(
definitionResult.FoundDefinition.FilePath.EndsWith(
Path.Combine("References", "ReferenceFileE.ps1")),
"Unexpected reference file: " + definitionResult.FoundDefinition.FilePath);
Assert.Equal(1, definition.ScriptRegion.StartLineNumber);
Assert.Equal(1, definition.ScriptRegion.StartColumnNumber);
Assert.Equal("./ReferenceFileE.ps1", definition.SymbolName);
}
[Fact]
public async Task LanguageServiceFindsFunctionDefinitionInWorkspace()
{
var definitionResult =
await this.GetDefinition(
FindsFunctionDefinitionInWorkspace.SourceDetails,
new Workspace(this.powerShellContext.LocalPowerShellVersion.Version, Logging.NullLogger)
{
WorkspacePath = Path.Combine(s_baseSharedScriptPath, @"References")
});
var definition = definitionResult.FoundDefinition;
Assert.EndsWith("ReferenceFileE.ps1", definition.FilePath);
Assert.Equal("My-FunctionInFileE", definition.SymbolName);
}
[Fact]
public async Task LanguageServiceFindsVariableDefinition()
{
GetDefinitionResult definitionResult =
await this.GetDefinition(
FindsVariableDefinition.SourceDetails);
SymbolReference definition = definitionResult.FoundDefinition;
Assert.Equal(6, definition.ScriptRegion.StartLineNumber);
Assert.Equal(1, definition.ScriptRegion.StartColumnNumber);
Assert.Equal("$things", definition.SymbolName);
}
[Fact]
public void LanguageServiceFindsOccurrencesOnFunction()
{
FindOccurrencesResult occurrencesResult =
this.GetOccurrences(
FindsOccurrencesOnFunction.SourceDetails);
Assert.Equal(3, occurrencesResult.FoundOccurrences.Count());
Assert.Equal(10, occurrencesResult.FoundOccurrences.Last().ScriptRegion.StartLineNumber);
Assert.Equal(1, occurrencesResult.FoundOccurrences.Last().ScriptRegion.StartColumnNumber);
}
[Fact]
public void LanguageServiceFindsOccurrencesOnParameter()
{
FindOccurrencesResult occurrencesResult =
this.GetOccurrences(
FindOccurrencesOnParameter.SourceDetails);
Assert.Equal("$myInput", occurrencesResult.FoundOccurrences.Last().SymbolName);
Assert.Equal(2, occurrencesResult.FoundOccurrences.Count());
Assert.Equal(3, occurrencesResult.FoundOccurrences.Last().ScriptRegion.StartLineNumber);
}
[Fact]
public async Task LanguageServiceFindsReferencesOnCommandWithAlias()
{
FindReferencesResult refsResult =
await this.GetReferences(
FindsReferencesOnBuiltInCommandWithAlias.SourceDetails);
SymbolReference[] foundRefs = refsResult.FoundReferences.ToArray();
Assert.Equal(4, foundRefs.Length);
Assert.Equal("gci", foundRefs[1].SymbolName);
Assert.Equal("Get-ChildItem", foundRefs[foundRefs.Length - 1].SymbolName);
}
[Fact]
public async Task LanguageServiceFindsReferencesOnAlias()
{
FindReferencesResult refsResult =
await this.GetReferences(
FindsReferencesOnBuiltInCommandWithAlias.SourceDetails);
Assert.Equal(4, refsResult.FoundReferences.Count());
Assert.Equal("dir", refsResult.FoundReferences.ToArray()[2].SymbolName);
Assert.Equal("Get-ChildItem", refsResult.FoundReferences.Last().SymbolName);
}
[Fact]
public async Task LanguageServiceFindsReferencesOnFileWithReferencesFileB()
{
FindReferencesResult refsResult =
await this.GetReferences(
FindsReferencesOnFunctionMultiFileDotSourceFileB.SourceDetails);
Assert.Equal(4, refsResult.FoundReferences.Count());
}
[Fact]
public async Task LanguageServiceFindsReferencesOnFileWithReferencesFileC()
{
FindReferencesResult refsResult =
await this.GetReferences(
FindsReferencesOnFunctionMultiFileDotSourceFileC.SourceDetails);
Assert.Equal(4, refsResult.FoundReferences.Count());
}
[Fact]
public async Task LanguageServiceFindsDetailsForBuiltInCommand()
{
SymbolDetails symbolDetails =
await this.languageService.FindSymbolDetailsAtLocationAsync(
this.GetScriptFile(FindsDetailsForBuiltInCommand.SourceDetails),
FindsDetailsForBuiltInCommand.SourceDetails.StartLineNumber,
FindsDetailsForBuiltInCommand.SourceDetails.StartColumnNumber);
Assert.NotNull(symbolDetails.Documentation);
Assert.NotEqual("", symbolDetails.Documentation);
}
[Fact]
public void LanguageServiceFindsSymbolsInFile()
{
FindOccurrencesResult symbolsResult =
this.FindSymbolsInFile(
FindSymbolsInMultiSymbolFile.SourceDetails);
Assert.Equal(4, symbolsResult.FoundOccurrences.Where(symbolReference => symbolReference.SymbolType == SymbolType.Function).Count());
Assert.Equal(3, symbolsResult.FoundOccurrences.Where(symbolReference => symbolReference.SymbolType == SymbolType.Variable).Count());
Assert.Single(symbolsResult.FoundOccurrences.Where(symbolReference => symbolReference.SymbolType == SymbolType.Workflow));
SymbolReference firstFunctionSymbol = symbolsResult.FoundOccurrences.Where(r => r.SymbolType == SymbolType.Function).First();
Assert.Equal("AFunction", firstFunctionSymbol.SymbolName);
Assert.Equal(7, firstFunctionSymbol.ScriptRegion.StartLineNumber);
Assert.Equal(1, firstFunctionSymbol.ScriptRegion.StartColumnNumber);
SymbolReference lastVariableSymbol = symbolsResult.FoundOccurrences.Where(r => r.SymbolType == SymbolType.Variable).Last();
Assert.Equal("$Script:ScriptVar2", lastVariableSymbol.SymbolName);
Assert.Equal(3, lastVariableSymbol.ScriptRegion.StartLineNumber);
Assert.Equal(1, lastVariableSymbol.ScriptRegion.StartColumnNumber);
SymbolReference firstWorkflowSymbol = symbolsResult.FoundOccurrences.Where(r => r.SymbolType == SymbolType.Workflow).First();
Assert.Equal("AWorkflow", firstWorkflowSymbol.SymbolName);
Assert.Equal(23, firstWorkflowSymbol.ScriptRegion.StartLineNumber);
Assert.Equal(1, firstWorkflowSymbol.ScriptRegion.StartColumnNumber);
// TODO: Bring this back when we can use AstVisitor2 again (#276)
//Assert.Equal(1, symbolsResult.FoundOccurrences.Where(r => r.SymbolType == SymbolType.Configuration).Count());
//SymbolReference firstConfigurationSymbol = symbolsResult.FoundOccurrences.Where(r => r.SymbolType == SymbolType.Configuration).First();
//Assert.Equal("AConfiguration", firstConfigurationSymbol.SymbolName);
//Assert.Equal(25, firstConfigurationSymbol.ScriptRegion.StartLineNumber);
//Assert.Equal(1, firstConfigurationSymbol.ScriptRegion.StartColumnNumber);
}
[Fact]
public void LanguageServiceFindsSymbolsInPesterFile()
{
var symbolsResult = this.FindSymbolsInFile(FindSymbolsInPesterFile.SourceDetails);
Assert.Equal(5, symbolsResult.FoundOccurrences.Count());
}
[Fact]
public void LangServerFindsSymbolsInPSDFile()
{
var symbolsResult = this.FindSymbolsInFile(FindSymbolsInPSDFile.SourceDetails);
Assert.Equal(3, symbolsResult.FoundOccurrences.Count());
}
[Fact]
public void LanguageServiceFindsSymbolsInNoSymbolsFile()
{
FindOccurrencesResult symbolsResult =
this.FindSymbolsInFile(
FindSymbolsInNoSymbolsFile.SourceDetails);
Assert.Empty(symbolsResult.FoundOccurrences);
}
private ScriptFile GetScriptFile(ScriptRegion scriptRegion)
{
string resolvedPath =
Path.Combine(
s_baseSharedScriptPath,
scriptRegion.File);
return
this.workspace.GetFile(
resolvedPath);
}
private async Task<CompletionResults> GetCompletionResults(ScriptRegion scriptRegion)
{
// Run the completions request
return
await this.languageService.GetCompletionsInFileAsync(
GetScriptFile(scriptRegion),
scriptRegion.StartLineNumber,
scriptRegion.StartColumnNumber);
}
private async Task<ParameterSetSignatures> GetParamSetSignatures(ScriptRegion scriptRegion)
{
return
await this.languageService.FindParameterSetsInFileAsync(
GetScriptFile(scriptRegion),
scriptRegion.StartLineNumber,
scriptRegion.StartColumnNumber);
}
private async Task<GetDefinitionResult> GetDefinition(ScriptRegion scriptRegion, Workspace workspace)
{
ScriptFile scriptFile = GetScriptFile(scriptRegion);
SymbolReference symbolReference =
this.languageService.FindSymbolAtLocation(
scriptFile,
scriptRegion.StartLineNumber,
scriptRegion.StartColumnNumber);
Assert.NotNull(symbolReference);
return
await this.languageService.GetDefinitionOfSymbolAsync(
scriptFile,
symbolReference,
workspace);
}
private async Task<GetDefinitionResult> GetDefinition(ScriptRegion scriptRegion)
{
return await GetDefinition(scriptRegion, this.workspace);
}
private async Task<FindReferencesResult> GetReferences(ScriptRegion scriptRegion)
{
ScriptFile scriptFile = GetScriptFile(scriptRegion);
SymbolReference symbolReference =
this.languageService.FindSymbolAtLocation(
scriptFile,
scriptRegion.StartLineNumber,
scriptRegion.StartColumnNumber);
Assert.NotNull(symbolReference);
return
await this.languageService.FindReferencesOfSymbolAsync(
symbolReference,
this.workspace.ExpandScriptReferences(scriptFile),
this.workspace);
}
private FindOccurrencesResult GetOccurrences(ScriptRegion scriptRegion)
{
return
this.languageService.FindOccurrencesInFile(
GetScriptFile(scriptRegion),
scriptRegion.StartLineNumber,
scriptRegion.StartColumnNumber);
}
private FindOccurrencesResult FindSymbolsInFile(ScriptRegion scriptRegion)
{
return
this.languageService.FindSymbolsInFile(
GetScriptFile(scriptRegion));
}
}
}