CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
TestHelpers.cs
Go to the documentation of this file.
1using Microsoft.CodeAnalysis;
2using Microsoft.CodeAnalysis.CodeActions;
3using Microsoft.CodeAnalysis.CSharp;
4using Microsoft.CodeAnalysis.Diagnostics;
5using Microsoft.CodeAnalysis.Text;
6using Microsoft.VisualStudio.TestTools.UnitTesting;
7using System;
8using System.Collections.Generic;
9using System.Collections.Immutable;
10using System.Linq;
11using System.Threading;
12using System.Threading.Tasks;
13
15{
16 internal static class TestHelpers
17 {
18 internal static async Task VerifyChangesAsync(List<CodeAction> actions, string title, Document document,
19 Action<SemanticModel, SyntaxNode> handleChanges)
20 {
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();
27
28 handleChanges(await newDoc.GetSemanticModelAsync(), await newTree.GetRootAsync());
29 }
30
31 internal static async Task RunAnalysisAsync<T>(string code, string[] diagnosticIds,
32 Action<List<Diagnostic>> diagnosticInspector = null)
33 where T : DiagnosticAnalyzer, new()
34 {
35 var diagnostics = await GetDiagnosticsAsync(code, new T());
36 Assert.AreEqual(diagnosticIds.Length, diagnostics.Count, nameof(diagnostics.Count));
37
38 foreach (var diagnosticId in diagnosticIds)
39 {
40 Assert.IsTrue(diagnostics.Any(_ => _.Id == diagnosticId), diagnosticId);
41 }
42
43 diagnosticInspector?.Invoke(diagnostics);
44 }
45
46 internal static async Task<List<Diagnostic>> GetDiagnosticsAsync(string code, DiagnosticAnalyzer analyzer)
47 {
48 var document = Create(code);
49 var compilation = (await document.Project.GetCompilationAsync())
50 .WithAnalyzers(ImmutableArray.Create(analyzer));
51 return (await compilation.GetAnalyzerDiagnosticsAsync()).ToList();
52 }
53
54 internal static Document Create(string code)
55 {
56 var projectName = "Test";
57 var projectId = ProjectId.CreateNewId(projectName);
58
59 using (var workspace = new AdhocWorkspace())
60 {
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[]
65 {
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
73 }));
74
75 var documentId = DocumentId.CreateNewId(projectId);
76 solution = solution.AddDocument(documentId, "Test.cs", SourceText.From(code));
77
78 return solution.GetProject(projectId).Documents.First();
79 }
80 }
81 }
82}
@ Create
Create operation.