6using Microsoft.VisualStudio.TestTools.UnitTesting;
8using System.Collections.Generic;
9using System.Collections.Immutable;
11using System.Threading;
12using System.Threading.Tasks;
16 internal static class TestHelpers
18 internal static async Task VerifyChangesAsync(List<CodeAction> actions,
string title, Document document,
19 Action<SemanticModel, SyntaxNode> handleChanges)
21 var action = actions.Where(_ => _.Title == title).First();
22 var operations = (await action.GetOperationsAsync(
23 new CancellationToken(
false))).ToArray();
24 var operation = operations[0] as ApplyChangesOperation;
25 var newDoc = operation.ChangedSolution.GetDocument(document.Id);
26 var newTree = await newDoc.GetSyntaxTreeAsync();
28 handleChanges(await newDoc.GetSemanticModelAsync(), await newTree.GetRootAsync());
31 internal static async Task RunAnalysisAsync<T>(
string code,
string[] diagnosticIds,
32 Action<List<Diagnostic>> diagnosticInspector =
null)
33 where T : DiagnosticAnalyzer, new()
35 var diagnostics = await GetDiagnosticsAsync(code,
new T());
36 Assert.AreEqual(diagnosticIds.Length, diagnostics.Count, nameof(diagnostics.Count));
38 foreach (var diagnosticId
in diagnosticIds)
40 Assert.IsTrue(diagnostics.Any(_ => _.Id == diagnosticId), diagnosticId);
43 diagnosticInspector?.Invoke(diagnostics);
46 internal static async Task<List<Diagnostic>> GetDiagnosticsAsync(
string code, DiagnosticAnalyzer analyzer)
48 var document =
Create(code);
49 var compilation = (await document.Project.GetCompilationAsync())
50 .WithAnalyzers(ImmutableArray.Create(analyzer));
51 return (await compilation.GetAnalyzerDiagnosticsAsync()).ToList();
54 internal static Document
Create(
string code)
56 var projectName =
"Test";
57 var projectId = ProjectId.CreateNewId(projectName);
59 using (var workspace =
new AdhocWorkspace())
61 var solution = workspace.CurrentSolution
62 .AddProject(projectId, projectName, projectName, LanguageNames.CSharp)
63 .WithProjectCompilationOptions(projectId,
new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary))
64 .AddMetadataReferences(projectId, AssemblyReferences.GetMetadataReferences(
new[]
66 typeof(object).Assembly,
67 typeof(Enumerable).Assembly,
68 typeof(CSharpCompilation).Assembly,
69 typeof(Compilation).Assembly,
70 typeof(Attribute).Assembly,
71 typeof(Task<>).Assembly,
72 typeof(BusinessBase<>).Assembly
75 var documentId = DocumentId.CreateNewId(projectId);
76 solution = solution.AddDocument(documentId,
"Test.cs", SourceText.From(code));
78 return solution.GetProject(projectId).Documents.First();
@ Create
Create operation.