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
SyntaxNodeExtensionsTests.cs
Go to the documentation of this file.
1using Microsoft.CodeAnalysis;
2using Microsoft.CodeAnalysis.CSharp;
3using Microsoft.CodeAnalysis.CSharp.Syntax;
4using Microsoft.VisualStudio.TestTools.UnitTesting;
5using System.Linq;
6using System.Threading.Tasks;
8
10{
11 [TestClass]
12 public sealed class SyntaxNodeExtensionsTests
13 {
14 [TestMethod]
15 public void HasUsingWhenSymbolIsNull() => Assert.IsFalse((null as SyntaxNode).HasUsing("System"));
16
17 [TestMethod]
19 {
20 var code =
21@"using System.Collections.Generic;
22
23public class A { }";
24 Assert.IsTrue((await GetRootAsync(code)).HasUsing("System.Collections.Generic"));
25 }
26
27 [TestMethod]
29 {
30 var code = "public class HasUsingWhenNodeDoesNotHaveUsingStatememt { }";
31 Assert.IsFalse((await GetRootAsync(code)).HasUsing("System.Collections.Generic"));
32 }
33
34 [TestMethod]
36 {
37 var code =
38@"using System;
39
40public class A
41{
42 public Guid NewGuid() => Guid.NewGuid();
43}";
44 var rootNode = await GetRootAsync(code);
45 var invocationNode = rootNode.DescendantNodes(_ => true)
46 .Where(_ => _.IsKind(SyntaxKind.InvocationExpression)).First();
47
48 Assert.IsNotNull(invocationNode.FindParent<ArrowExpressionClauseSyntax>());
49 }
50
51 [TestMethod]
53 {
54 var code =
55@"using System;
56
57public class A
58{
59 public Guid NewGuid() => Guid.NewGuid();
60}";
61 var rootNode = await GetRootAsync(code);
62 var invocationNode = rootNode.DescendantNodes(_ => true)
63 .Where(_ => _.IsKind(SyntaxKind.InvocationExpression)).First();
64
65 Assert.IsNull(invocationNode.FindParent<AwaitExpressionSyntax>());
66 }
67
68 [TestMethod]
69 public async Task FindParentWhenParentIsNull()
70 {
71 var code = "public class A { }";
72 var rootNode = await GetRootAsync(code);
73 Assert.IsNull(rootNode.FindParent<AwaitExpressionSyntax>());
74 }
75
76 private async Task<SyntaxNode> GetRootAsync(string code)
77 {
78 return await CSharpSyntaxTree.ParseText(code).GetRootAsync();
79 }
80 }
81}