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
IMethodSymbolExtensionsTests.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;
6using System.Linq;
7using System.Threading.Tasks;
9
11{
12 [TestClass]
13 public sealed class IMethodSymbolExtensionsTests
14 {
15 private const string AMethod = nameof(AMethod);
16 private const string DP_Create = nameof(DP_Create);
17 private const string DP_Fetch = nameof(DP_Fetch);
18 private const string DP_Insert = nameof(DP_Insert);
19 private const string DP_Update = nameof(DP_Update);
20 private const string DP_Delete = nameof(DP_Delete);
21 private const string DP_DeleteSelf = nameof(DP_DeleteSelf);
22 private const string DP_Execute = nameof(DP_Execute);
23 private const string C_Create = nameof(C_Create);
24 private const string C_Fetch = nameof(C_Fetch);
25 private const string C_Insert = nameof(C_Insert);
26 private const string C_Update = nameof(C_Update);
27 private const string C_DeleteSelf = nameof(C_DeleteSelf);
28 private const string C_Execute = nameof(C_Execute);
29
30 private static readonly string DataPortalOperationCode =
31$@"using Csla;
32
33namespace Csla.Analyzers.Tests.Targets.IMethodSymbolExtensionsTests
34{{
35 public class DataPortalOperations
36 {{
37 public void {AMethod} () {{ }}
38
39 public void {CslaMemberConstants.Operations.DataPortalCreate}() {{ }}
40 public void {CslaMemberConstants.Operations.DataPortalFetch}() {{ }}
41 public void {CslaMemberConstants.Operations.DataPortalInsert}() {{ }}
42 public void {CslaMemberConstants.Operations.DataPortalUpdate}() {{ }}
43 public void {CslaMemberConstants.Operations.DataPortalDelete}() {{ }}
44 public void {CslaMemberConstants.Operations.DataPortalDeleteSelf}() {{ }}
45 public void {CslaMemberConstants.Operations.DataPortalExecute}() {{ }}
46 public void {CslaMemberConstants.Operations.ChildCreate}() {{ }}
47 public void {CslaMemberConstants.Operations.ChildFetch}() {{ }}
48 public void {CslaMemberConstants.Operations.ChildInsert}() {{ }}
49 public void {CslaMemberConstants.Operations.ChildUpdate}() {{ }}
50 public void {CslaMemberConstants.Operations.ChildDeleteSelf}() {{ }}
51 public void {CslaMemberConstants.Operations.ChildExecute}() {{ }}
52
53 [Create] public void {DP_Create}() {{ }}
54 [Fetch] public void {DP_Fetch}() {{ }}
55 [Insert] public void {DP_Insert}() {{ }}
56 [Update] public void {DP_Update}() {{ }}
57 [Delete] public void {DP_Delete}() {{ }}
58 [DeleteSelf] public void {DP_DeleteSelf}() {{ }}
59 [Execute] public void {DP_Execute}() {{ }}
60 [CreateChild] public void {C_Create}() {{ }}
61 [FetchChild] public void {C_Fetch}() {{ }}
62 [InsertChild] public void {C_Insert}() {{ }}
63 [UpdateChild] public void {C_Update}() {{ }}
64 [DeleteSelfChild] public void {C_DeleteSelf}() {{ }}
65 [ExecuteChild] public void {C_Execute}() {{ }}
66 }}
67}}";
68 private const string PropertyInfoManagementCode =
69@"namespace Csla.Analyzers.Tests.Targets.IMethodSymbolExtensionsTests
70{
71 public class PropertyInfoManagementMethods
72 : BusinessBase<PropertyInfoManagementMethods>
73 {
74 public void AMethod()
75 {
76 this.GetProperty(null);
77 this.GetPropertyConvert<string, string>(null, null);
78 this.SetProperty(null, null);
79 this.SetPropertyConvert<string, string>(null, null);
80 this.LoadProperty(null, null);
81 this.LoadPropertyAsync<string>(null, null);
82 this.LoadPropertyConvert<string, string>(null, null);
83 this.LoadPropertyMarkDirty(null, null);
84 this.ReadProperty(null);
85 this.ReadPropertyConvert<string, string>(null);
86 this.LazyGetProperty<string>(null, null);
87 this.LazyGetPropertyAsync<string>(null, null);
88 this.LazyReadProperty<string>(null, null);
89 this.LazyReadPropertyAsync<string>(null, null);
90 this.Something();
91 }
92
93 private void Something() { }
94 }
95}";
96
97 [TestMethod]
99 {
100 Assert.IsFalse((null as IMethodSymbol).IsPropertyInfoManagementMethod());
101 }
102
103 [TestMethod]
105 {
106 Assert.IsFalse((await GetMethodReferenceSymbolAsync(
107 PropertyInfoManagementCode, "Something")).IsPropertyInfoManagementMethod());
108 }
109
110 [TestMethod]
112 {
113 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
114 PropertyInfoManagementCode, CslaMemberConstants.Properties.SetProperty)).IsPropertyInfoManagementMethod());
115 }
116
117 [TestMethod]
119 {
120 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
121 PropertyInfoManagementCode, CslaMemberConstants.Properties.SetPropertyConvert)).IsPropertyInfoManagementMethod());
122 }
123
124 [TestMethod]
126 {
127 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
128 PropertyInfoManagementCode, CslaMemberConstants.Properties.GetProperty)).IsPropertyInfoManagementMethod());
129
130 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
131 PropertyInfoManagementCode, CslaMemberConstants.Properties.GetProperty)).IsPropertyInfoManagementMethod());
132 }
133
134 [TestMethod]
136 {
137 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
138 PropertyInfoManagementCode, CslaMemberConstants.Properties.GetPropertyConvert)).IsPropertyInfoManagementMethod());
139
140 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
141 PropertyInfoManagementCode, CslaMemberConstants.Properties.GetPropertyConvert)).IsPropertyInfoManagementMethod());
142 }
143
144 [TestMethod]
146 {
147 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
148 PropertyInfoManagementCode, CslaMemberConstants.Properties.LazyGetProperty)).IsPropertyInfoManagementMethod());
149
150 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
151 PropertyInfoManagementCode, CslaMemberConstants.Properties.LazyGetProperty)).IsPropertyInfoManagementMethod());
152 }
153
154 [TestMethod]
156 {
157 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
158 PropertyInfoManagementCode, CslaMemberConstants.Properties.LazyGetPropertyAsync)).IsPropertyInfoManagementMethod());
159
160 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
161 PropertyInfoManagementCode, CslaMemberConstants.Properties.LazyGetPropertyAsync)).IsPropertyInfoManagementMethod());
162 }
163
164 [TestMethod]
166 {
167 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
168 PropertyInfoManagementCode, CslaMemberConstants.Properties.LazyReadProperty)).IsPropertyInfoManagementMethod());
169
170 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
171 PropertyInfoManagementCode, CslaMemberConstants.Properties.LazyReadProperty)).IsPropertyInfoManagementMethod());
172 }
173
174 [TestMethod]
176 {
177 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
178 PropertyInfoManagementCode, CslaMemberConstants.Properties.LazyReadPropertyAsync)).IsPropertyInfoManagementMethod());
179
180 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
181 PropertyInfoManagementCode, CslaMemberConstants.Properties.LazyReadPropertyAsync)).IsPropertyInfoManagementMethod());
182 }
183
184 [TestMethod]
186 {
187 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
188 PropertyInfoManagementCode, CslaMemberConstants.Properties.LoadPropertyAsync)).IsPropertyInfoManagementMethod());
189
190 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
191 PropertyInfoManagementCode, CslaMemberConstants.Properties.LoadPropertyAsync)).IsPropertyInfoManagementMethod());
192 }
193
194 [TestMethod]
196 {
197 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
198 PropertyInfoManagementCode, CslaMemberConstants.Properties.LoadPropertyMarkDirty)).IsPropertyInfoManagementMethod());
199
200 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
201 PropertyInfoManagementCode, CslaMemberConstants.Properties.LoadPropertyMarkDirty)).IsPropertyInfoManagementMethod());
202 }
203
204 [TestMethod]
206 {
207 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
208 PropertyInfoManagementCode, CslaMemberConstants.Properties.ReadProperty)).IsPropertyInfoManagementMethod());
209
210 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
211 PropertyInfoManagementCode, CslaMemberConstants.Properties.ReadProperty)).IsPropertyInfoManagementMethod());
212
213 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
214 PropertyInfoManagementCode, CslaMemberConstants.Properties.ReadProperty)).IsPropertyInfoManagementMethod());
215 }
216
217 [TestMethod]
219 {
220 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
221 PropertyInfoManagementCode, CslaMemberConstants.Properties.ReadPropertyConvert)).IsPropertyInfoManagementMethod());
222
223 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
224 PropertyInfoManagementCode, CslaMemberConstants.Properties.ReadPropertyConvert)).IsPropertyInfoManagementMethod());
225
226 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
227 PropertyInfoManagementCode, CslaMemberConstants.Properties.ReadPropertyConvert)).IsPropertyInfoManagementMethod());
228 }
229
230 [TestMethod]
232 {
233 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
234 PropertyInfoManagementCode, CslaMemberConstants.Properties.LoadProperty)).IsPropertyInfoManagementMethod());
235
236 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
237 PropertyInfoManagementCode, CslaMemberConstants.Properties.LoadProperty)).IsPropertyInfoManagementMethod());
238
239 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
240 PropertyInfoManagementCode, CslaMemberConstants.Properties.LoadProperty)).IsPropertyInfoManagementMethod());
241 }
242
243 [TestMethod]
245 {
246 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
247 PropertyInfoManagementCode, CslaMemberConstants.Properties.LoadPropertyConvert)).IsPropertyInfoManagementMethod());
248
249 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
250 PropertyInfoManagementCode, CslaMemberConstants.Properties.LoadPropertyConvert)).IsPropertyInfoManagementMethod());
251
252 Assert.IsTrue((await GetMethodReferenceSymbolAsync(
253 PropertyInfoManagementCode, CslaMemberConstants.Properties.LoadPropertyConvert)).IsPropertyInfoManagementMethod());
254 }
255
256 [TestMethod]
258 Assert.IsFalse((null as IMethodSymbol).IsDataPortalOperation());
259
260 [TestMethod]
262 Assert.IsFalse((null as IMethodSymbol).IsRootDataPortalOperation());
263
264 [TestMethod]
266 Assert.IsFalse((null as IMethodSymbol).IsChildDataPortalOperation());
267
268 [TestMethod]
270 Assert.IsFalse((await GetMethodSymbolAsync(
271 DataPortalOperationCode, AMethod)).IsDataPortalOperation());
272
273 [TestMethod]
275 Assert.IsFalse((await GetMethodSymbolAsync(
276 DataPortalOperationCode, AMethod)).IsRootDataPortalOperation());
277
278 [TestMethod]
280 Assert.IsFalse((await GetMethodSymbolAsync(
281 DataPortalOperationCode, AMethod)).IsChildDataPortalOperation());
282
283 [TestMethod]
285 Assert.IsTrue((await GetMethodSymbolAsync(
286 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalCreate)).IsDataPortalOperation());
287
288 [TestMethod]
290 Assert.IsTrue((await GetMethodSymbolAsync(
291 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalCreate)).IsRootDataPortalOperation());
292
293 [TestMethod]
295 Assert.IsFalse((await GetMethodSymbolAsync(
296 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalCreate)).IsChildDataPortalOperation());
297
298 [TestMethod]
300 Assert.IsTrue((await GetMethodSymbolAsync(
301 DataPortalOperationCode, DP_Create)).IsDataPortalOperation());
302
303 [TestMethod]
305 Assert.IsTrue((await GetMethodSymbolAsync(
306 DataPortalOperationCode, DP_Create)).IsRootDataPortalOperation());
307
308 [TestMethod]
310 Assert.IsFalse((await GetMethodSymbolAsync(
311 DataPortalOperationCode, DP_Create)).IsChildDataPortalOperation());
312
313 [TestMethod]
315 Assert.IsTrue((await GetMethodSymbolAsync(
316 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalFetch)).IsDataPortalOperation());
317
318 [TestMethod]
320 Assert.IsTrue((await GetMethodSymbolAsync(
321 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalFetch)).IsRootDataPortalOperation());
322
323 [TestMethod]
325 Assert.IsFalse((await GetMethodSymbolAsync(
326 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalFetch)).IsChildDataPortalOperation());
327
328 [TestMethod]
330 Assert.IsTrue((await GetMethodSymbolAsync(
331 DataPortalOperationCode, DP_Fetch)).IsDataPortalOperation());
332
333 [TestMethod]
335 Assert.IsTrue((await GetMethodSymbolAsync(
336 DataPortalOperationCode, DP_Fetch)).IsRootDataPortalOperation());
337
338 [TestMethod]
340 Assert.IsFalse((await GetMethodSymbolAsync(
341 DataPortalOperationCode, DP_Fetch)).IsChildDataPortalOperation());
342
343 [TestMethod]
345 Assert.IsTrue((await GetMethodSymbolAsync(
346 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalInsert)).IsDataPortalOperation());
347
348 [TestMethod]
350 Assert.IsTrue((await GetMethodSymbolAsync(
351 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalInsert)).IsRootDataPortalOperation());
352
353 [TestMethod]
355 Assert.IsFalse((await GetMethodSymbolAsync(
356 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalInsert)).IsChildDataPortalOperation());
357
358 [TestMethod]
360 Assert.IsTrue((await GetMethodSymbolAsync(
361 DataPortalOperationCode, DP_Insert)).IsDataPortalOperation());
362
363 [TestMethod]
365 Assert.IsTrue((await GetMethodSymbolAsync(
366 DataPortalOperationCode, DP_Insert)).IsRootDataPortalOperation());
367
368 [TestMethod]
370 Assert.IsFalse((await GetMethodSymbolAsync(
371 DataPortalOperationCode, DP_Insert)).IsChildDataPortalOperation());
372
373 [TestMethod]
375 Assert.IsTrue((await GetMethodSymbolAsync(
376 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalUpdate)).IsDataPortalOperation());
377
378 [TestMethod]
380 Assert.IsTrue((await GetMethodSymbolAsync(
381 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalUpdate)).IsRootDataPortalOperation());
382
383 [TestMethod]
385 Assert.IsFalse((await GetMethodSymbolAsync(
386 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalUpdate)).IsChildDataPortalOperation());
387
388 [TestMethod]
390 Assert.IsTrue((await GetMethodSymbolAsync(
391 DataPortalOperationCode, DP_Update)).IsDataPortalOperation());
392
393 [TestMethod]
395 Assert.IsTrue((await GetMethodSymbolAsync(
396 DataPortalOperationCode, DP_Update)).IsRootDataPortalOperation());
397
398 [TestMethod]
400 Assert.IsFalse((await GetMethodSymbolAsync(
401 DataPortalOperationCode, DP_Update)).IsChildDataPortalOperation());
402
403 [TestMethod]
405 Assert.IsTrue((await GetMethodSymbolAsync(
406 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalDelete)).IsDataPortalOperation());
407
408 [TestMethod]
410 Assert.IsTrue((await GetMethodSymbolAsync(
411 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalDelete)).IsRootDataPortalOperation());
412
413 [TestMethod]
415 Assert.IsFalse((await GetMethodSymbolAsync(
416 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalDelete)).IsChildDataPortalOperation());
417
418 [TestMethod]
420 Assert.IsTrue((await GetMethodSymbolAsync(
421 DataPortalOperationCode, DP_Delete)).IsDataPortalOperation());
422
423 [TestMethod]
425 Assert.IsTrue((await GetMethodSymbolAsync(
426 DataPortalOperationCode, DP_Delete)).IsRootDataPortalOperation());
427
428 [TestMethod]
430 Assert.IsFalse((await GetMethodSymbolAsync(
431 DataPortalOperationCode, DP_Delete)).IsChildDataPortalOperation());
432
433 [TestMethod]
435 Assert.IsTrue((await GetMethodSymbolAsync(
436 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalDeleteSelf)).IsDataPortalOperation());
437
438 [TestMethod]
440 Assert.IsTrue((await GetMethodSymbolAsync(
441 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalDeleteSelf)).IsRootDataPortalOperation());
442
443 [TestMethod]
445 Assert.IsFalse((await GetMethodSymbolAsync(
446 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalDeleteSelf)).IsChildDataPortalOperation());
447
448 [TestMethod]
450 Assert.IsTrue((await GetMethodSymbolAsync(
451 DataPortalOperationCode, DP_DeleteSelf)).IsDataPortalOperation());
452
453 [TestMethod]
455 Assert.IsTrue((await GetMethodSymbolAsync(
456 DataPortalOperationCode, DP_DeleteSelf)).IsRootDataPortalOperation());
457
458 [TestMethod]
460 Assert.IsFalse((await GetMethodSymbolAsync(
461 DataPortalOperationCode, DP_DeleteSelf)).IsChildDataPortalOperation());
462
463 [TestMethod]
465 Assert.IsTrue((await GetMethodSymbolAsync(
466 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalExecute)).IsDataPortalOperation());
467
468 [TestMethod]
470 Assert.IsTrue((await GetMethodSymbolAsync(
471 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalExecute)).IsRootDataPortalOperation());
472
473 [TestMethod]
475 Assert.IsFalse((await GetMethodSymbolAsync(
476 DataPortalOperationCode, CslaMemberConstants.Operations.DataPortalExecute)).IsChildDataPortalOperation());
477
478 [TestMethod]
480 Assert.IsTrue((await GetMethodSymbolAsync(
481 DataPortalOperationCode, DP_Execute)).IsDataPortalOperation());
482
483 [TestMethod]
485 Assert.IsTrue((await GetMethodSymbolAsync(
486 DataPortalOperationCode, DP_Execute)).IsRootDataPortalOperation());
487
488 [TestMethod]
490 Assert.IsFalse((await GetMethodSymbolAsync(
491 DataPortalOperationCode, DP_Execute)).IsChildDataPortalOperation());
492
493 [TestMethod]
495 Assert.IsTrue((await GetMethodSymbolAsync(
496 DataPortalOperationCode, CslaMemberConstants.Operations.ChildCreate)).IsDataPortalOperation());
497
498 [TestMethod]
500 Assert.IsFalse((await GetMethodSymbolAsync(
501 DataPortalOperationCode, CslaMemberConstants.Operations.ChildCreate)).IsRootDataPortalOperation());
502
503 [TestMethod]
505 Assert.IsTrue((await GetMethodSymbolAsync(
506 DataPortalOperationCode, CslaMemberConstants.Operations.ChildCreate)).IsChildDataPortalOperation());
507
508 [TestMethod]
510 Assert.IsTrue((await GetMethodSymbolAsync(
511 DataPortalOperationCode, C_Create)).IsDataPortalOperation());
512
513 [TestMethod]
515 Assert.IsFalse((await GetMethodSymbolAsync(
516 DataPortalOperationCode, C_Create)).IsRootDataPortalOperation());
517
518 [TestMethod]
520 Assert.IsTrue((await GetMethodSymbolAsync(
521 DataPortalOperationCode, C_Create)).IsChildDataPortalOperation());
522
523 [TestMethod]
525 Assert.IsTrue((await GetMethodSymbolAsync(
526 DataPortalOperationCode, CslaMemberConstants.Operations.ChildFetch)).IsDataPortalOperation());
527
528 [TestMethod]
530 Assert.IsFalse((await GetMethodSymbolAsync(
531 DataPortalOperationCode, CslaMemberConstants.Operations.ChildFetch)).IsRootDataPortalOperation());
532
533 [TestMethod]
535 Assert.IsTrue((await GetMethodSymbolAsync(
536 DataPortalOperationCode, CslaMemberConstants.Operations.ChildFetch)).IsChildDataPortalOperation());
537
538 [TestMethod]
540 Assert.IsTrue((await GetMethodSymbolAsync(
541 DataPortalOperationCode, C_Fetch)).IsDataPortalOperation());
542
543 [TestMethod]
545 Assert.IsFalse((await GetMethodSymbolAsync(
546 DataPortalOperationCode, C_Fetch)).IsRootDataPortalOperation());
547
548 [TestMethod]
550 Assert.IsTrue((await GetMethodSymbolAsync(
551 DataPortalOperationCode, C_Fetch)).IsChildDataPortalOperation());
552
553 [TestMethod]
555 Assert.IsTrue((await GetMethodSymbolAsync(
556 DataPortalOperationCode, CslaMemberConstants.Operations.ChildInsert)).IsDataPortalOperation());
557
558 [TestMethod]
560 Assert.IsFalse((await GetMethodSymbolAsync(
561 DataPortalOperationCode, CslaMemberConstants.Operations.ChildInsert)).IsRootDataPortalOperation());
562
563 [TestMethod]
565 Assert.IsTrue((await GetMethodSymbolAsync(
566 DataPortalOperationCode, CslaMemberConstants.Operations.ChildInsert)).IsChildDataPortalOperation());
567
568 [TestMethod]
570 Assert.IsTrue((await GetMethodSymbolAsync(
571 DataPortalOperationCode, C_Insert)).IsDataPortalOperation());
572
573 [TestMethod]
575 Assert.IsFalse((await GetMethodSymbolAsync(
576 DataPortalOperationCode, C_Insert)).IsRootDataPortalOperation());
577
578 [TestMethod]
580 Assert.IsTrue((await GetMethodSymbolAsync(
581 DataPortalOperationCode, C_Insert)).IsChildDataPortalOperation());
582
583 [TestMethod]
585 Assert.IsTrue((await GetMethodSymbolAsync(
586 DataPortalOperationCode, CslaMemberConstants.Operations.ChildUpdate)).IsDataPortalOperation());
587
588 [TestMethod]
590 Assert.IsFalse((await GetMethodSymbolAsync(
591 DataPortalOperationCode, CslaMemberConstants.Operations.ChildUpdate)).IsRootDataPortalOperation());
592
593 [TestMethod]
595 Assert.IsTrue((await GetMethodSymbolAsync(
596 DataPortalOperationCode, CslaMemberConstants.Operations.ChildUpdate)).IsChildDataPortalOperation());
597
598 [TestMethod]
600 Assert.IsTrue((await GetMethodSymbolAsync(
601 DataPortalOperationCode, C_Update)).IsDataPortalOperation());
602
603 [TestMethod]
605 Assert.IsFalse((await GetMethodSymbolAsync(
606 DataPortalOperationCode, C_Update)).IsRootDataPortalOperation());
607
608 [TestMethod]
610 Assert.IsTrue((await GetMethodSymbolAsync(
611 DataPortalOperationCode, C_Update)).IsChildDataPortalOperation());
612
613 [TestMethod]
615 Assert.IsTrue((await GetMethodSymbolAsync(
616 DataPortalOperationCode, CslaMemberConstants.Operations.ChildDeleteSelf)).IsDataPortalOperation());
617
618 [TestMethod]
620 Assert.IsFalse((await GetMethodSymbolAsync(
621 DataPortalOperationCode, CslaMemberConstants.Operations.ChildDeleteSelf)).IsRootDataPortalOperation());
622
623 [TestMethod]
625 Assert.IsTrue((await GetMethodSymbolAsync(
626 DataPortalOperationCode, CslaMemberConstants.Operations.ChildDeleteSelf)).IsChildDataPortalOperation());
627
628 [TestMethod]
630 Assert.IsTrue((await GetMethodSymbolAsync(
631 DataPortalOperationCode, CslaMemberConstants.Operations.ChildExecute)).IsDataPortalOperation());
632
633 [TestMethod]
635 Assert.IsFalse((await GetMethodSymbolAsync(
636 DataPortalOperationCode, CslaMemberConstants.Operations.ChildExecute)).IsRootDataPortalOperation());
637
638 [TestMethod]
640 Assert.IsTrue((await GetMethodSymbolAsync(
641 DataPortalOperationCode, CslaMemberConstants.Operations.ChildExecute)).IsChildDataPortalOperation());
642
643 [TestMethod]
645 Assert.IsTrue((await GetMethodSymbolAsync(
646 DataPortalOperationCode, C_Execute)).IsDataPortalOperation());
647
648 [TestMethod]
650 Assert.IsFalse((await GetMethodSymbolAsync(
651 DataPortalOperationCode, C_Execute)).IsRootDataPortalOperation());
652
653 [TestMethod]
655 Assert.IsTrue((await GetMethodSymbolAsync(
656 DataPortalOperationCode, C_Execute)).IsChildDataPortalOperation());
657
658 private static async Task<(SemanticModel, SyntaxNode)> ParseFileAsync(string code)
659 {
660 var tree = CSharpSyntaxTree.ParseText(code);
661 var compilation = CSharpCompilation.Create(
662 Guid.NewGuid().ToString("N"),
663 syntaxTrees: new[] { tree },
664 references: AssemblyReferences.GetMetadataReferences(new[]
665 {
666 typeof(object).Assembly,
667 typeof(BusinessBase<>).Assembly,
668 typeof(Attribute).Assembly
669 }));
670
671 return (compilation.GetSemanticModel(tree), await tree.GetRootAsync().ConfigureAwait(false));
672 }
673
674 private async Task<IMethodSymbol> GetMethodSymbolAsync(string code, string name)
675 {
676 var (model, root) = await ParseFileAsync(code);
677
678 foreach (var method in root.DescendantNodes().OfType<MethodDeclarationSyntax>())
679 {
680 if (model.GetDeclaredSymbol(method) is IMethodSymbol methodNode && methodNode.Name == name)
681 {
682 return methodNode;
683 }
684 }
685
686 return null;
687 }
688
689 private async Task<IMethodSymbol> GetMethodReferenceSymbolAsync(string code, string name)
690 {
691 var (model, root) = await ParseFileAsync(code);
692
693 foreach (var invocation in root.DescendantNodes().OfType<InvocationExpressionSyntax>())
694 {
695 var symbol = model.GetSymbolInfo(invocation);
696 var methodSymbol = symbol.Symbol as IMethodSymbol;
697
698 if (methodSymbol?.Name == name)
699 {
700 return methodSymbol;
701 }
702 }
703
704 return null;
705 }
706 }
707}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38