This repository was archived by the owner on Dec 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 221
/
Copy pathDefaultVisualStudioRazorParserIntegrationTest.cs
697 lines (567 loc) · 27.3 KB
/
DefaultVisualStudioRazorParserIntegrationTest.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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc.Razor.Extensions;
using Microsoft.AspNetCore.Razor.Language;
using Microsoft.AspNetCore.Razor.Language.Legacy;
using Microsoft.AspNetCore.Razor.Language.Syntax;
using Microsoft.CodeAnalysis.Razor;
using Microsoft.CodeAnalysis.Razor.ProjectSystem;
using Microsoft.VisualStudio.Test;
using Microsoft.VisualStudio.Text;
using Microsoft.VisualStudio.Text.Editor;
using Moq;
using Xunit;
namespace Microsoft.VisualStudio.Editor.Razor
{
public class DefaultVisualStudioRazorParserIntegrationTest : ForegroundDispatcherTestBase
{
private const string TestLinePragmaFileName = "C:\\This\\Path\\Is\\Just\\For\\Line\\Pragmas.cshtml";
private const string TestProjectPath = "C:\\This\\Path\\Is\\Just\\For\\Project.csproj";
public DefaultVisualStudioRazorParserIntegrationTest()
{
Workspace = CodeAnalysis.TestWorkspace.Create();
ProjectSnapshot = new EphemeralProjectSnapshot(Workspace.Services, TestProjectPath);
}
private ProjectSnapshot ProjectSnapshot { get; }
private CodeAnalysis.Workspace Workspace { get; }
[ForegroundFact]
public async Task BufferChangeStartsFullReparseIfChangeOverlapsMultipleSpans()
{
// Arrange
var original = new StringTextSnapshot("Foo @bar Baz");
var testBuffer = new TestTextBuffer(original);
var documentTracker = CreateDocumentTracker(testBuffer);
using (var manager = CreateParserManager(original))
{
var changed = new StringTextSnapshot("Foo @bap Daz");
var edit = new TestEdit(7, 3, original, 3, changed, "p D");
await manager.InitializeWithDocumentAsync(edit.OldSnapshot);
// Act - 1
await manager.ApplyEditAndWaitForParseAsync(edit);
// Assert - 1
Assert.Equal(2, manager.ParseCount);
// Act - 2
await manager.ApplyEditAndWaitForParseAsync(edit);
// Assert - 2
Assert.Equal(3, manager.ParseCount);
}
}
[ForegroundFact]
public async Task AwaitPeriodInsertionAcceptedProvisionally()
{
// Arrange
var original = new StringTextSnapshot("foo @await Html baz");
using (var manager = CreateParserManager(original))
{
var changed = new StringTextSnapshot("foo @await Html. baz");
var edit = new TestEdit(15, 0, original, 1, changed, ".");
await manager.InitializeWithDocumentAsync(edit.OldSnapshot);
// Act
await manager.ApplyEditAndWaitForReparseAsync(edit);
// Assert
Assert.Equal(2, manager.ParseCount);
VerifyCurrentSyntaxTree(manager);
}
}
[ForegroundFact]
public async Task ImpExprAcceptsDCIInStmtBlkAfterIdentifiers()
{
// ImplicitExpressionAcceptsDotlessCommitInsertionsInStatementBlockAfterIdentifiers
var changed = new StringTextSnapshot("@{" + Environment.NewLine
+ " @DateTime." + Environment.NewLine
+ "}");
var original = new StringTextSnapshot("@{" + Environment.NewLine
+ " @DateTime" + Environment.NewLine
+ "}");
var edit = new TestEdit(15 + Environment.NewLine.Length, 0, original, 1, changed, ".");
using (var manager = CreateParserManager(original))
{
void ApplyAndVerifyPartialChange(TestEdit testEdit, string expectedCode)
{
manager.ApplyEdit(testEdit);
Assert.Equal(1, manager.ParseCount);
VerifyPartialParseTree(manager, changed.GetText(), expectedCode);
};
await manager.InitializeWithDocumentAsync(edit.OldSnapshot);
// This is the process of a dotless commit when doing "." insertions to commit intellisense changes.
ApplyAndVerifyPartialChange(edit, "DateTime.");
original = changed;
changed = new StringTextSnapshot("@{" + Environment.NewLine
+ " @DateTime.." + Environment.NewLine
+ "}");
edit = new TestEdit(16 + Environment.NewLine.Length, 0, original, 1, changed, ".");
ApplyAndVerifyPartialChange(edit, "DateTime..");
original = changed;
changed = new StringTextSnapshot("@{" + Environment.NewLine
+ " @DateTime.Now." + Environment.NewLine
+ "}");
edit = new TestEdit(16 + Environment.NewLine.Length, 0, original, 3, changed, "Now");
ApplyAndVerifyPartialChange(edit, "DateTime.Now.");
}
}
[ForegroundFact]
public async Task ImpExprAcceptsDCIInStatementBlock()
{
// ImpExprAcceptsDotlessCommitInsertionsInStatementBlock
var changed = new StringTextSnapshot("@{" + Environment.NewLine
+ " @DateT." + Environment.NewLine
+ "}");
var original = new StringTextSnapshot("@{" + Environment.NewLine
+ " @DateT" + Environment.NewLine
+ "}");
var edit = new TestEdit(12 + Environment.NewLine.Length, 0, original, 1, changed, ".");
using (var manager = CreateParserManager(original))
{
void ApplyAndVerifyPartialChange(TestEdit testEdit, string expectedCode)
{
manager.ApplyEdit(testEdit);
Assert.Equal(1, manager.ParseCount);
VerifyPartialParseTree(manager, changed.GetText(), expectedCode);
};
await manager.InitializeWithDocumentAsync(edit.OldSnapshot);
// This is the process of a dotless commit when doing "." insertions to commit intellisense changes.
ApplyAndVerifyPartialChange(edit, "DateT.");
original = changed;
changed = new StringTextSnapshot("@{" + Environment.NewLine
+ " @DateTime." + Environment.NewLine
+ "}");
edit = new TestEdit(12 + Environment.NewLine.Length, 0, original, 3, changed, "ime");
ApplyAndVerifyPartialChange(edit, "DateTime.");
}
}
[ForegroundFact]
public async Task ImpExprProvisionallyAcceptsDCI()
{
// ImpExprProvisionallyAcceptsDotlessCommitInsertions
var changed = new StringTextSnapshot("foo @DateT. baz");
var original = new StringTextSnapshot("foo @DateT baz");
var edit = new TestEdit(10, 0, original, 1, changed, ".");
using (var manager = CreateParserManager(original))
{
void ApplyAndVerifyPartialChange(TestEdit testEdit, string expectedCode)
{
manager.ApplyEdit(testEdit);
Assert.Equal(1, manager.ParseCount);
VerifyPartialParseTree(manager, testEdit.NewSnapshot.GetText(), expectedCode);
};
await manager.InitializeWithDocumentAsync(edit.OldSnapshot);
// This is the process of a dotless commit when doing "." insertions to commit intellisense changes.
ApplyAndVerifyPartialChange(edit, "DateT.");
original = changed;
changed = new StringTextSnapshot("foo @DateTime. baz");
edit = new TestEdit(10, 0, original, 3, changed, "ime");
ApplyAndVerifyPartialChange(edit, "DateTime.");
// Verify the reparse finally comes
await manager.WaitForReparseAsync();
Assert.Equal(2, manager.ParseCount);
VerifyCurrentSyntaxTree(manager);
}
}
[ForegroundFact]
public async Task ImpExprProvisionallyAcceptsDCIAfterIdentifiers()
{
// ImplicitExpressionProvisionallyAcceptsDotlessCommitInsertionsAfterIdentifiers
var changed = new StringTextSnapshot("foo @DateTime. baz");
var original = new StringTextSnapshot("foo @DateTime baz");
var edit = new TestEdit(13, 0, original, 1, changed, ".");
using (var manager = CreateParserManager(original))
{
void ApplyAndVerifyPartialChange(TestEdit testEdit, string expectedCode)
{
manager.ApplyEdit(testEdit);
Assert.Equal(1, manager.ParseCount);
VerifyPartialParseTree(manager, testEdit.NewSnapshot.GetText(), expectedCode);
};
await manager.InitializeWithDocumentAsync(edit.OldSnapshot);
// This is the process of a dotless commit when doing "." insertions to commit intellisense changes.
ApplyAndVerifyPartialChange(edit, "DateTime.");
original = changed;
changed = new StringTextSnapshot("foo @DateTime.. baz");
edit = new TestEdit(14, 0, original, 1, changed, ".");
ApplyAndVerifyPartialChange(edit, "DateTime..");
original = changed;
changed = new StringTextSnapshot("foo @DateTime.Now. baz");
edit = new TestEdit(14, 0, original, 3, changed, "Now");
ApplyAndVerifyPartialChange(edit, "DateTime.Now.");
// Verify the reparse eventually happens
await manager.WaitForReparseAsync();
Assert.Equal(2, manager.ParseCount);
VerifyCurrentSyntaxTree(manager);
}
}
[ForegroundFact]
public async Task ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration()
{
// ImplicitExpressionProvisionallyAcceptsCaseInsensitiveDotlessCommitInsertions_NewRoslynIntegration
var original = new StringTextSnapshot("foo @date baz");
var changed = new StringTextSnapshot("foo @date. baz");
var edit = new TestEdit(9, 0, original, 1, changed, ".");
using (var manager = CreateParserManager(original))
{
void ApplyAndVerifyPartialChange(Action applyEdit, string expectedCode)
{
applyEdit();
Assert.Equal(1, manager.ParseCount);
VerifyPartialParseTree(manager, changed.GetText(), expectedCode);
};
await manager.InitializeWithDocumentAsync(edit.OldSnapshot);
// This is the process of a dotless commit when doing "." insertions to commit intellisense changes.
// @date => @date.
ApplyAndVerifyPartialChange(() => manager.ApplyEdit(edit), "date.");
original = changed;
changed = new StringTextSnapshot("foo @date baz");
edit = new TestEdit(9, 1, original, 0, changed, "");
// @date. => @date
ApplyAndVerifyPartialChange(() => manager.ApplyEdit(edit), "date");
original = changed;
changed = new StringTextSnapshot("foo @DateTime baz");
edit = new TestEdit(5, 4, original, 8, changed, "DateTime");
// @date => @DateTime
ApplyAndVerifyPartialChange(() => manager.ApplyEdit(edit), "DateTime");
original = changed;
changed = new StringTextSnapshot("foo @DateTime. baz");
edit = new TestEdit(13, 0, original, 1, changed, ".");
// @DateTime => @DateTime.
ApplyAndVerifyPartialChange(() => manager.ApplyEdit(edit), "DateTime.");
// Verify the reparse eventually happens
await manager.WaitForReparseAsync();
Assert.Equal(2, manager.ParseCount);
VerifyCurrentSyntaxTree(manager);
}
}
[ForegroundFact]
public async Task ImpExprRejectsAcceptableChangeIfPrevWasProvisionallyAccepted()
{
// ImplicitExpressionRejectsChangeWhichWouldHaveBeenAcceptedIfLastChangeWasProvisionallyAcceptedOnDifferentSpan
// Arrange
var dotTyped = new TestEdit(8, 0, new StringTextSnapshot("foo @foo @bar"), 1, new StringTextSnapshot("foo @foo. @bar"), ".");
var charTyped = new TestEdit(14, 0, new StringTextSnapshot("foo @foo. @bar"), 1, new StringTextSnapshot("foo @foo. @barb"), "b");
using (var manager = CreateParserManager(dotTyped.OldSnapshot))
{
await manager.InitializeWithDocumentAsync(dotTyped.OldSnapshot);
// Apply the dot change
await manager.ApplyEditAndWaitForReparseAsync(dotTyped);
// Act (apply the identifier start char change)
await manager.ApplyEditAndWaitForParseAsync(charTyped);
// Assert
Assert.Equal(2, manager.ParseCount);
VerifyPartialParseTree(manager, charTyped.NewSnapshot.GetText());
}
}
[ForegroundFact]
public async Task ImpExprAcceptsIdentifierTypedAfterDotIfLastChangeProvisional()
{
// ImplicitExpressionAcceptsIdentifierTypedAfterDotIfLastChangeWasProvisionalAcceptanceOfDot
// Arrange
var dotTyped = new TestEdit(8, 0, new StringTextSnapshot("foo @foo bar"), 1, new StringTextSnapshot("foo @foo. bar"), ".");
var charTyped = new TestEdit(9, 0, new StringTextSnapshot("foo @foo. bar"), 1, new StringTextSnapshot("foo @foo.b bar"), "b");
using (var manager = CreateParserManager(dotTyped.OldSnapshot))
{
await manager.InitializeWithDocumentAsync(dotTyped.OldSnapshot);
// Apply the dot change
manager.ApplyEdit(dotTyped);
// Act (apply the identifier start char change)
manager.ApplyEdit(charTyped);
// Assert
Assert.Equal(1, manager.ParseCount);
VerifyPartialParseTree(manager, charTyped.NewSnapshot.GetText());
}
}
[ForegroundFact]
public async Task ImpExpr_AcceptsParenthesisAtEnd_SingleEdit()
{
// Arrange
var edit = new TestEdit(8, 0, new StringTextSnapshot("foo @foo bar"), 2, new StringTextSnapshot("foo @foo() bar"), "()");
using (var manager = CreateParserManager(edit.OldSnapshot))
{
await manager.InitializeWithDocumentAsync(edit.OldSnapshot);
// Apply the () edit
manager.ApplyEdit(edit);
// Assert
Assert.Equal(1, manager.ParseCount);
VerifyPartialParseTree(manager, edit.NewSnapshot.GetText());
}
}
[ForegroundFact]
public async Task ImpExpr_AcceptsParenthesisAtEnd_TwoEdits()
{
// Arrange
var edit1 = new TestEdit(8, 0, new StringTextSnapshot("foo @foo bar"), 1, new StringTextSnapshot("foo @foo( bar"), "(");
var edit2 = new TestEdit(9, 0, new StringTextSnapshot("foo @foo( bar"), 1, new StringTextSnapshot("foo @foo() bar"), ")");
using (var manager = CreateParserManager(edit1.OldSnapshot))
{
await manager.InitializeWithDocumentAsync(edit1.OldSnapshot);
// Apply the ( edit
manager.ApplyEdit(edit1);
// Apply the ) edit
manager.ApplyEdit(edit2);
// Assert
Assert.Equal(1, manager.ParseCount);
VerifyPartialParseTree(manager, edit2.NewSnapshot.GetText());
}
}
[ForegroundFact]
public async Task ImpExprCorrectlyTriggersReparseIfIfKeywordTyped()
{
await RunTypeKeywordTestAsync("if");
}
[ForegroundFact]
public async Task ImpExprCorrectlyTriggersReparseIfDoKeywordTyped()
{
await RunTypeKeywordTestAsync("do");
}
[ForegroundFact]
public async Task ImpExprCorrectlyTriggersReparseIfTryKeywordTyped()
{
await RunTypeKeywordTestAsync("try");
}
[ForegroundFact]
public async Task ImplicitExpressionCorrectlyTriggersReparseIfForKeywordTyped()
{
await RunTypeKeywordTestAsync("for");
}
[ForegroundFact]
public async Task ImpExprCorrectlyTriggersReparseIfForEachKeywordTyped()
{
await RunTypeKeywordTestAsync("foreach");
}
[ForegroundFact]
public async Task ImpExprCorrectlyTriggersReparseIfWhileKeywordTyped()
{
await RunTypeKeywordTestAsync("while");
}
[ForegroundFact]
public async Task ImpExprCorrectlyTriggersReparseIfSwitchKeywordTyped()
{
await RunTypeKeywordTestAsync("switch");
}
[ForegroundFact]
public async Task ImpExprCorrectlyTriggersReparseIfLockKeywordTyped()
{
await RunTypeKeywordTestAsync("lock");
}
[ForegroundFact]
public async Task ImpExprCorrectlyTriggersReparseIfUsingKeywordTyped()
{
await RunTypeKeywordTestAsync("using");
}
[ForegroundFact]
public async Task ImpExprCorrectlyTriggersReparseIfSectionKeywordTyped()
{
await RunTypeKeywordTestAsync("section");
}
[ForegroundFact]
public async Task ImpExprCorrectlyTriggersReparseIfInheritsKeywordTyped()
{
await RunTypeKeywordTestAsync("inherits");
}
[ForegroundFact]
public async Task ImpExprCorrectlyTriggersReparseIfFunctionsKeywordTyped()
{
await RunTypeKeywordTestAsync("functions");
}
[ForegroundFact]
public async Task ImpExprCorrectlyTriggersReparseIfNamespaceKeywordTyped()
{
await RunTypeKeywordTestAsync("namespace");
}
[ForegroundFact]
public async Task ImpExprCorrectlyTriggersReparseIfClassKeywordTyped()
{
await RunTypeKeywordTestAsync("class");
}
private void VerifyPartialParseTree(TestParserManager manager, string content, string expectedCode = null)
{
if (expectedCode != null)
{
// Verify if the syntax tree represents the expected input.
var syntaxTreeContent = manager.PartialParsingSyntaxTreeRoot.ToFullString();
Assert.Contains(expectedCode, syntaxTreeContent);
}
var sourceDocument = TestRazorSourceDocument.Create(content);
var syntaxTree = RazorSyntaxTree.Create(manager.PartialParsingSyntaxTreeRoot, sourceDocument, manager.CurrentSyntaxTree.Diagnostics, manager.CurrentSyntaxTree.Options);
BaselineTest(syntaxTree);
}
private void VerifyCurrentSyntaxTree(TestParserManager manager)
{
BaselineTest(manager.CurrentSyntaxTree);
}
private TestParserManager CreateParserManager(ITextSnapshot originalSnapshot)
{
var textBuffer = new TestTextBuffer(originalSnapshot);
var documentTracker = CreateDocumentTracker(textBuffer);
var templateEngineFactory = CreateProjectEngineFactory();
var parser = new DefaultVisualStudioRazorParser(
Dispatcher,
documentTracker,
templateEngineFactory,
new DefaultErrorReporter(),
new TestCompletionBroker())
{
// We block idle work with the below reset events. Therefore, make tests fast and have the idle timer fire as soon as possible.
IdleDelay = TimeSpan.FromMilliseconds(1),
NotifyForegroundIdleStart = new ManualResetEventSlim(),
BlockBackgroundIdleWork = new ManualResetEventSlim(),
};
parser.StartParser();
return new TestParserManager(parser);
}
private static ProjectSnapshotProjectEngineFactory CreateProjectEngineFactory(
string path = TestLinePragmaFileName,
IEnumerable<TagHelperDescriptor> tagHelpers = null)
{
var fileSystem = new TestRazorProjectFileSystem();
var projectEngine = RazorProjectEngine.Create(RazorConfiguration.Default, fileSystem, builder =>
{
RazorExtensions.Register(builder);
builder.AddDefaultImports("@addTagHelper *, Test");
if (tagHelpers != null)
{
builder.AddTagHelpers(tagHelpers);
}
});
return new TestProjectSnapshotProjectEngineFactory()
{
Engine = projectEngine,
};
}
private async Task RunTypeKeywordTestAsync(string keyword)
{
// Arrange
var before = "@" + keyword.Substring(0, keyword.Length - 1);
var after = "@" + keyword;
var changed = new StringTextSnapshot(after);
var old = new StringTextSnapshot(before);
var change = new SourceChange(keyword.Length, 0, keyword[keyword.Length - 1].ToString());
var edit = new TestEdit(change, old, changed);
using (var manager = CreateParserManager(old))
{
await manager.InitializeWithDocumentAsync(edit.OldSnapshot);
// Act
await manager.ApplyEditAndWaitForParseAsync(edit);
// Assert
Assert.Equal(2, manager.ParseCount);
}
}
private static void DoWithTimeoutIfNotDebugging(Func<int, bool> withTimeout)
{
#if DEBUG
if (Debugger.IsAttached)
{
withTimeout(Timeout.Infinite);
}
else
{
#endif
Assert.True(withTimeout((int)TimeSpan.FromSeconds(5).TotalMilliseconds), "Timeout expired!");
#if DEBUG
}
#endif
}
private VisualStudioDocumentTracker CreateDocumentTracker(Text.ITextBuffer textBuffer)
{
var focusedTextView = Mock.Of<ITextView>(textView => textView.HasAggregateFocus == true);
var documentTracker = Mock.Of<VisualStudioDocumentTracker>(tracker =>
tracker.TextBuffer == textBuffer &&
tracker.TextViews == new[] { focusedTextView } &&
tracker.FilePath == TestLinePragmaFileName &&
tracker.ProjectPath == TestProjectPath &&
tracker.ProjectSnapshot == ProjectSnapshot &&
tracker.IsSupportedProject == true);
textBuffer.Properties.AddProperty(typeof(VisualStudioDocumentTracker), documentTracker);
return documentTracker;
}
private class TestParserManager : IDisposable
{
public int ParseCount;
private readonly ManualResetEventSlim _parserComplete;
private readonly ManualResetEventSlim _reparseComplete;
private readonly TestTextBuffer _testBuffer;
private readonly DefaultVisualStudioRazorParser _parser;
public TestParserManager(DefaultVisualStudioRazorParser parser)
{
_parserComplete = new ManualResetEventSlim();
_reparseComplete = new ManualResetEventSlim();
_testBuffer = (TestTextBuffer)parser.TextBuffer;
ParseCount = 0;
_parser = parser;
parser.DocumentStructureChanged += (sender, args) =>
{
CurrentSyntaxTree = args.CodeDocument.GetSyntaxTree();
Interlocked.Increment(ref ParseCount);
if (args.SourceChange == null)
{
// Reparse occurred
_reparseComplete.Set();
}
_parserComplete.Set();
};
}
public RazorSyntaxTree CurrentSyntaxTree { get; private set; }
public SyntaxNode PartialParsingSyntaxTreeRoot => _parser._partialParser.ModifiedSyntaxTreeRoot;
public async Task InitializeWithDocumentAsync(ITextSnapshot snapshot)
{
var old = new StringTextSnapshot(string.Empty);
var initialChange = new SourceChange(0, 0, snapshot.GetText());
var edit = new TestEdit(initialChange, old, snapshot);
await ApplyEditAndWaitForParseAsync(edit);
}
public void ApplyEdit(TestEdit edit)
{
_testBuffer.ApplyEdit(edit);
}
public async Task ApplyEditAndWaitForParseAsync(TestEdit edit)
{
ApplyEdit(edit);
await WaitForParseAsync();
}
public async Task ApplyEditAndWaitForReparseAsync(TestEdit edit)
{
ApplyEdit(edit);
await WaitForReparseAsync();
}
public async Task WaitForParseAsync()
{
// Get off of the foreground thread so we can wait for the document structure changed event to fire
await Task.Run(() =>
{
DoWithTimeoutIfNotDebugging(_parserComplete.Wait);
});
_parserComplete.Reset();
}
public async Task WaitForReparseAsync()
{
Assert.True(_parser._idleTimer != null);
// Allow background idle work to continue
_parser.BlockBackgroundIdleWork.Set();
// Get off of the foreground thread so we can wait for the idle timer to fire
await Task.Run(() =>
{
DoWithTimeoutIfNotDebugging(_parser.NotifyForegroundIdleStart.Wait);
});
Assert.Null(_parser._idleTimer);
// Get off of the foreground thread so we can wait for the document structure changed event to fire for reparse
await Task.Run(() =>
{
DoWithTimeoutIfNotDebugging(_reparseComplete.Wait);
});
_reparseComplete.Reset();
_parser.BlockBackgroundIdleWork.Reset();
_parser.NotifyForegroundIdleStart.Reset();
}
public void Dispose()
{
_parser.Dispose();
}
}
private class TestCompletionBroker : VisualStudioCompletionBroker
{
public override bool IsCompletionActive(ITextView textView) => false;
}
}
}