-
Notifications
You must be signed in to change notification settings - Fork 50
/
TreeWalkerUnitTests.cs
1333 lines (1114 loc) · 69.4 KB
/
TreeWalkerUnitTests.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
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//-----------------------------------------------------------------------
// <copyright file="TreeWalkerUnitTests.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <summary>
// Tests the TreeWalkerSession class.
// </summary>
//-----------------------------------------------------------------------
namespace Microsoft.Forge.TreeWalker.UnitTests
{
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.Scripting;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.Forge.DataContracts;
using Microsoft.Forge.TreeWalker;
using Microsoft.Forge.TreeWalker.ForgeExceptions;
using Newtonsoft.Json;
[TestClass]
public class TreeWalkerUnitTests
{
private const string TardigradeSchemaPath = "test\\ExampleSchemas\\TardigradeSchema.json";
private const string TestEvaluateInputTypeSchemaPath = "test\\ExampleSchemas\\TestEvaluateInputTypeSchema.json";
private const string LeafNodeSummarySchemaPath = "test\\ExampleSchemas\\LeafNodeSummarySchema.json";
private const string SubroutineSchemaPath = "test\\ExampleSchemas\\SubroutineSchema.json";
private Guid sessionId;
private IForgeDictionary forgeState = new ForgeDictionary(new Dictionary<string, object>(), Guid.Empty, Guid.Empty);
private ITreeWalkerCallbacksV2 callbacksV2;
private CancellationToken token;
private TreeWalkerParameters parameters;
private TreeWalkerSession session;
private Dictionary<string, ForgeTree> forgeTrees = new Dictionary<string, ForgeTree>();
private readonly ConcurrentDictionary<string, Script<object>> scriptCache = new ConcurrentDictionary<string, Script<object>>();
public void TestInitialize(string jsonSchema, string treeName = null, string currentNodeSkipActionContext = null)
{
// Initialize contexts, callbacks, and actions.
this.sessionId = Guid.NewGuid();
this.forgeState = new ForgeDictionary(new Dictionary<string, object>(), this.sessionId, this.sessionId);
this.callbacksV2 = new TreeWalkerCallbacksV2() { CurrentNodeSkipActionContext = currentNodeSkipActionContext };
this.token = new CancellationTokenSource().Token;
ForgeTree forgeTree = JsonConvert.DeserializeObject<ForgeTree>(jsonSchema);
this.parameters = new TreeWalkerParameters(
this.sessionId,
forgeTree,
this.forgeState,
this.callbacksV2,
this.token)
{
UserContext = new ForgeUserContext(),
ForgeActionsAssembly = typeof(CollectDiagnosticsAction).Assembly,
InitializeSubroutineTree = this.InitializeSubroutineTree,
TreeName = treeName,
Dependencies = new List<Type>() { typeof(FooEnum) },
ScriptCache = this.scriptCache
};
this.session = new TreeWalkerSession(this.parameters);
}
public void TestInitializeWithForgeTree(ForgeTree forgeTree, string treeName = null)
{
// Initialize contexts, callbacks, and actions.
this.sessionId = Guid.NewGuid();
this.forgeState = new ForgeDictionary(new Dictionary<string, object>(), this.sessionId, this.sessionId);
this.callbacksV2 = new TreeWalkerCallbacksV2();
this.token = new CancellationTokenSource().Token;
this.parameters = new TreeWalkerParameters(
this.sessionId,
forgeTree,
this.forgeState,
this.callbacksV2,
this.token)
{
UserContext = new ForgeUserContext(),
ForgeActionsAssembly = typeof(CollectDiagnosticsAction).Assembly,
InitializeSubroutineTree = this.InitializeSubroutineTree,
TreeName = treeName,
Dependencies = new List<Type>() { typeof(FooEnum) }
};
this.session = new TreeWalkerSession(this.parameters);
}
public void TestSubroutineInitialize(string jsonSchema, string treeName = "RootTree")
{
// Subroutine tests use a ForgeSchema file that deserializes to a Dictionary of TreeName to ForgeTree.
this.forgeTrees = JsonConvert.DeserializeObject<Dictionary<string, ForgeTree>>(jsonSchema);
ForgeTree forgeTree = this.forgeTrees[treeName];
this.TestInitializeWithForgeTree(forgeTree, treeName);
}
public void TestFromFileInitialize(string filePath, string treeName = null)
{
string jsonSchema = File.ReadAllText(Path.Combine(Environment.CurrentDirectory, filePath));
if (treeName == null)
{
this.TestInitialize(jsonSchema, treeName);
}
else
{
this.TestSubroutineInitialize(jsonSchema, treeName);
}
}
#region Initialize_WithV1Callbacks
/// <summary>
/// Helper function to test V1 ITreeWalkerCallbacks on the contructor accepting jsonSchema.
/// </summary>
/// <param name="jsonSchema">The json string content.</param>
/// <param name="treeName">The tree name.</param>
public void TestInitializeWithJsonSchema_WithV1Callbacks(string jsonSchema, string treeName = null)
{
// Initialize contexts, callbacks, and actions.
this.sessionId = Guid.NewGuid();
this.forgeState = new ForgeDictionary(new Dictionary<string, object>(), this.sessionId, this.sessionId);
TreeWalkerCallbacks treeWalkerCallbacksV1 = new TreeWalkerCallbacks();
this.token = new CancellationTokenSource().Token;
this.parameters = new TreeWalkerParameters(
this.sessionId,
jsonSchema,
this.forgeState,
treeWalkerCallbacksV1,
this.token)
{
UserContext = new ForgeUserContext(),
ForgeActionsAssembly = typeof(CollectDiagnosticsAction).Assembly,
InitializeSubroutineTree = this.InitializeSubroutineTree,
TreeName = treeName,
Dependencies = new List<Type>() { typeof(FooEnum) },
ScriptCache = this.scriptCache
};
this.session = new TreeWalkerSession(this.parameters);
}
/// <summary>
/// Helper function to test V1 ITreeWalkerCallbacks on the contructor accepting ForgeTree.
/// </summary>
/// <param name="forgeTree">The ForgeTree object.</param>
/// <param name="treeName">The tree name.</param>
public void TestInitializeWithForgeTree_WithV1Callbacks(ForgeTree forgeTree, string treeName = null)
{
// Initialize contexts, callbacks, and actions.
this.sessionId = Guid.NewGuid();
this.forgeState = new ForgeDictionary(new Dictionary<string, object>(), this.sessionId, this.sessionId);
TreeWalkerCallbacks treeWalkerCallbacksV1 = new TreeWalkerCallbacks();
this.token = new CancellationTokenSource().Token;
this.parameters = new TreeWalkerParameters(
this.sessionId,
forgeTree,
this.forgeState,
treeWalkerCallbacksV1,
this.token)
{
UserContext = new ForgeUserContext(),
ForgeActionsAssembly = typeof(CollectDiagnosticsAction).Assembly,
InitializeSubroutineTree = this.InitializeSubroutineTree,
TreeName = treeName,
Dependencies = new List<Type>() { typeof(FooEnum) }
};
this.session = new TreeWalkerSession(this.parameters);
}
#endregion Initialize_WithV1Callbacks
[TestMethod]
public void TestTreeWalkerSession_Constructor_ForgeTree()
{
string jsonSchema = File.ReadAllText(Path.Combine(Environment.CurrentDirectory, TardigradeSchemaPath));
ForgeTree forgeTree = JsonConvert.DeserializeObject<ForgeTree>(jsonSchema);
this.TestInitializeWithForgeTree(forgeTree);
// Test 1 - Verify jsonSchema was successfully deserialized in constructor.
Assert.AreEqual("Action", this.session.Schema.Tree["Tardigrade"].Type.ToString());
// Test 2 - Verify the Status is Initialized.
Assert.AreEqual("Initialized", this.session.Status, "Expected WalkTree status to be Initialized after initializing TreeWalkerSession.");
}
[TestMethod]
public void TestTreeWalkerSession_Constructor_JsonSchema()
{
this.TestFromFileInitialize(filePath: TardigradeSchemaPath);
// Test 1 - Verify jsonSchema was successfully deserialized in constructor.
Assert.AreEqual("Action", this.session.Schema.Tree["Tardigrade"].Type.ToString());
// Test 2 - Verify the Status is Initialized.
Assert.AreEqual("Initialized", this.session.Status, "Expected WalkTree status to be Initialized after initializing TreeWalkerSession.");
}
#region VisitNode
[TestMethod]
public void TestTreeWalkerSession_VisitNode_Success()
{
this.TestFromFileInitialize(filePath: TardigradeSchemaPath);
// Test - VisitNode and expect the first child to be returned.
string expected = "Tardigrade";
string actualNextTreeNodeKey = this.session.VisitNode("Container").GetAwaiter().GetResult();
Assert.AreEqual(expected, actualNextTreeNodeKey, "Expected VisitNode(Container) to return Tardigrade.");
}
[TestMethod]
public void TestTreeWalkerSession_VisitNode_LeafNode_Success()
{
this.TestFromFileInitialize(filePath: TardigradeSchemaPath);
// Test - VisitNode on node of Leaf type and confirm it does not throw.
string expected = null;
string actualNextTreeNodeKey = this.session.VisitNode("Tardigrade_Success").GetAwaiter().GetResult();
Assert.AreEqual(expected, actualNextTreeNodeKey, "Expected VisitNode(Tardigrade_Success) to return without throwing.");
}
[TestMethod]
public void TestTreeWalkerSession_VisitNode_NoTimeout_Success()
{
this.TestFromFileInitialize(filePath: TardigradeSchemaPath);
// Test - VisitNode with no Timeout and execute an Action with no Timeout set. Confirm we do not throw exceptions.
string expected = "Tardigrade_Success";
string actualNextTreeNodeKey = this.session.VisitNode("Tardigrade").GetAwaiter().GetResult();
Assert.AreEqual(expected, actualNextTreeNodeKey, "Expected VisitNode(Tardigrade) to return Tardigrade_Success without throwing exception.");
}
#endregion VisitNode
#region WalkTree
[TestMethod]
public void TestTreeWalkerSession_WalkTree_Success()
{
this.TestFromFileInitialize(filePath: TardigradeSchemaPath);
// Test - WalkTree and expect the Status to be RanToCompletion.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus, "Expected WalkTree to run to completion.");
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_Success_InitializeWithJsonSchema_WithV1Callbacks()
{
string jsonSchema = File.ReadAllText(Path.Combine(Environment.CurrentDirectory, TardigradeSchemaPath));
this.TestInitializeWithJsonSchema_WithV1Callbacks(jsonSchema);
// Test - WalkTree and expect the Status to be RanToCompletion.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus, "Expected WalkTree to run to completion.");
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_Success_InitializeWithForgeTree_WithV1Callbacks()
{
string jsonSchema = File.ReadAllText(Path.Combine(Environment.CurrentDirectory, TardigradeSchemaPath));
ForgeTree forgeTree = JsonConvert.DeserializeObject<ForgeTree>(jsonSchema);
this.TestInitializeWithForgeTree_WithV1Callbacks(forgeTree);
// Test - WalkTree and expect the Status to be RanToCompletion.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus, "Expected WalkTree to run to completion.");
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_ActionThrowsException_TimeoutOnAction()
{
// Initialize TreeWalkerSession with a schema containing Action that throws exception.
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ActionException_Fail);
// Test - WalkTree and expect the Status to be TimeoutOnAction due to unexpected exceptions thrown in action.
Assert.ThrowsException<ActionTimeoutException>(() =>
{
string temp = this.session.WalkTree("Root").GetAwaiter().GetResult();
}, "Expected WalkTree to timeout on action because the Action threw exceptions with no Continuation flags set.");
string actualStatus = this.session.Status;
Assert.AreEqual("TimeoutOnAction", actualStatus, "Expected WalkTree to timeout on action because the Action threw exceptions with no Continuation flags set.");
}
#region shouldSkipActionsInTreeNode
[TestMethod]
public void TestTreeWalkerSession_WalkTree_ActionThrowsException_TimeoutOnAction_Skip_Then_No_ChildSelector()
{
// Initialize TreeWalkerSession with a schema containing Action that throws exception.
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ActionException_Fail, currentNodeSkipActionContext: "Skipped");
// Test - WalkTree and expect the Status to be RanToCompletion, because it will skip any action including the one throwing TimeoutOnAction.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus, "Expected WalkTree to run to completion.");
string lastTreeAction = this.session.GetLastTreeAction().GetAwaiter().GetResult();
Assert.AreEqual(null, lastTreeAction, "Expected session.GetLastTreeAction().");
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_ActionThrowsException_TimeoutOnAction_Skip_Then_ChildSelector_Matched()
{
// Initialize TreeWalkerSession with a schema containing Action that throws exception.
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ActionException_ContinuationOnRetryExhaustion_And_Skip, currentNodeSkipActionContext: "Skipped");
// Test - WalkTree and expect the Status to be RanToCompletion, because it will skip any action including the one throwing TimeoutOnAction.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus, "Expected WalkTree to run to completion.");
string currentTreeNode = this.session.GetCurrentTreeNode().GetAwaiter().GetResult();
Assert.AreEqual("TestDelayExceptionAction_TreeNode", currentTreeNode,
"Expected session.GetCurrentTreeNode() to be TestDelayExceptionAction_TreeNode due to Session.CurrentNodeSkipActionContext() == Skipped.");
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_ActionThrowsException_TimeoutOnAction_Skip_Then_ChildSelector_Not_Matched()
{
// Initialize TreeWalkerSession with a schema containing Action that throws exception.
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ActionException_ContinuationOnRetryExhaustion_And_Skip, currentNodeSkipActionContext: "Sk_i_p_ped");
// Test - WalkTree and expect the Status to be RanToCompletion, because it will skip any action including the one throwing TimeoutOnAction.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus, "Expected WalkTree to run to completion.");
string currentTreeNode = this.session.GetCurrentTreeNode().GetAwaiter().GetResult();
Assert.AreEqual("ReturnSessionIdAction", currentTreeNode,
"Expected session.GetCurrentTreeNode() to be ReturnSessionIdAction due to Session.CurrentNodeSkipActionContext() is not empty and != Skipped.");
}
#endregion shouldSkipActionsInTreeNode
[TestMethod]
public void TestTreeWalkerSession_WalkTree_ActionThrowsException_ContinuationOnRetryExhaustion()
{
// Initialize TreeWalkerSession with a schema containing Action that throws exception but has ContinuationOnRetryExhaustion flag set.
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ActionException_ContinuationOnRetryExhaustion);
// Test - Expect WalkTree to be successful because the TreeAction exhausted retries but ContinuationOnRetryExhaustion flag was set.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus, "Expected WalkTree to be successful because the TreeAction exhausted retries but ContinuationOnRetryExhaustion flag was set.");
ActionResponse actionResponse = this.session.GetLastActionResponse();
Assert.AreEqual("RetryExhaustedOnAction", actionResponse.Status, "Expected WalkTree to be successful because the TreeAction exhausted retries but ContinuationOnRetryExhaustion flag was set.");
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_ActionHasDelay_TimeoutOnAction()
{
// Initialize TreeWalkerSession with a schema containing Action that will time out.
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ActionDelay_Fail);
// Test - WalkTree and expect the Status to be TimeoutOnAction due to Action timing out.
Assert.ThrowsException<ActionTimeoutException>(() =>
{
string temp = this.session.WalkTree("Root").GetAwaiter().GetResult();
}, "Expected WalkTree to timeout on action because the Action timed out with no Continuation flags set.");
string actualStatus = this.session.Status;
Assert.AreEqual("TimeoutOnAction", actualStatus, "Expected WalkTree to timeout on action because the Action timed out with no Continuation flags set.");
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_ActionHasDelay_ContinuationOnTimeout()
{
// Initialize TreeWalkerSession with a schema containing Action that will time out but has ContinuationOnTimeout flag set.
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ActionDelay_ContinuationOnTimeout);
// Test - Expect WalkTree to be successful because the TreeAction timed out but ContinuationOnTimeout flag was set.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus, "Expected WalkTree to be successful because the TreeAction timed out but ContinuationOnTimeout flag was set.");
ActionResponse actionResponse = this.session.GetLastActionResponse();
Assert.AreEqual("TimeoutOnAction", actionResponse.Status, "Expected WalkTree to be successful because the TreeAction timed out but ContinuationOnTimeout flag was set.");
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_ActionHasDelay_ContinuationOnTimeout_RetryPolicy_TimeoutInAction()
{
// Initialize TreeWalkerSession with a schema containing Action with RetryPolicy that will time out inside the Action but has ContinuationOnTimeout flag set.
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ActionDelay_ContinuationOnTimeout_RetryPolicy_TimeoutInAction);
// Test - Expect WalkTree to be successful because the TreeAction timed out but ContinuationOnTimeout flag was set.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus, "Expected WalkTree to be successful because the TreeAction timed out but ContinuationOnTimeout flag was set.");
ActionResponse actionResponse = this.session.GetLastActionResponse();
Assert.AreEqual("TimeoutOnAction", actionResponse.Status, "Expected WalkTree to be successful because the TreeAction timed out but ContinuationOnTimeout flag was set.");
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_ActionHasDelay_ContinuationOnTimeout_RetryPolicy_TimeoutBetweenRetries()
{
// Initialize TreeWalkerSession with a schema with a RetryPolicy. The action in this schema will time out between retry attempts but has ContinuationOnTimeout flag set.
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ActionDelay_ContinuationOnTimeout_RetryPolicy_TimeoutBetweenRetries);
// Test - Expect WalkTree to be successful because the TreeAction timed out but ContinuationOnTimeout flag was set.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus, "Expected WalkTree to be successful because the TreeAction timed out but ContinuationOnTimeout flag was set.");
ActionResponse actionResponse = this.session.GetLastActionResponse();
Assert.AreEqual("TimeoutOnAction", actionResponse.Status, "Expected WalkTree to be successful because the TreeAction timed out but ContinuationOnTimeout flag was set.");
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_ActionHasDelay_ContinuationOnRetryExhaustion_RetryPolicy_FixedCount()
{
// Initialize TreeWalkerSession with a schema that defines a FixedCount retry policy.
// The schema contains an Action that throws an exception but has ContinuationOnRetryExhaustion flag set.
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ActionDelay_ContinuationOnRetryExhaustion_RetryPolicy_FixedCount);
// Test - Expected WalkTree to be successful because, even though the action threw an exception, ContinuationOnRetryExhaustion flag was set.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus, "Expected WalkTree to be successful because, even though the action threw an exception, ContinuationOnRetryExhaustion flag was set.");
ActionResponse actionResponse = this.session.GetLastActionResponse();
Assert.AreEqual("RetryExhaustedOnAction", actionResponse.Status, "Expected WalkTree to be successful because, even though the action threw an exception, ContinuationOnRetryExhaustion flag was set.");
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_ActionHasDelay_ContinuationOnTimeout_RetryPolicy_FixedCount()
{
// Initialize TreeWalkerSession with a schema that defines a FixedCount retry policy.
// The schema contains an Action that timesout but has ContinuationOnTimeout flag set.
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ActionDelay_ContinuationOnTimeout_RetryPolicy_FixedCount);
// Test - Expect WalkTree to be successful because the TreeAction timed out but ContinuationOnTimeout flag was set.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus, "Expected WalkTree to be successful because the TreeAction timed out but ContinuationOnTimeout flag was set.");
ActionResponse actionResponse = this.session.GetLastActionResponse();
Assert.AreEqual("TimeoutOnAction", actionResponse.Status, "Expected WalkTree to be successful because the TreeAction timed out but ContinuationOnTimeout flag was set.");
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_CancelledBeforeExecution()
{
this.TestFromFileInitialize(filePath: TardigradeSchemaPath);
// Test - CancelWalkTree before WalkTree and expect the Status to be CancelledBeforeExecution.
this.session.CancelWalkTree();
Assert.ThrowsException<TaskCanceledException>(() =>
{
string temp = this.session.WalkTree("Root").GetAwaiter().GetResult();
}, "Expected WalkTree to throw exception after calling CancelWalkTree.");
string actualStatus = this.session.Status;
Assert.AreEqual("CancelledBeforeExecution", actualStatus, "Expected WalkTree to be cancelled before execution after calling CancelWalkTree.");
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_ActionWithDelay_CancelWalkTree()
{
// Initialize TreeWalkerSession with a schema containing Action with delay.
// This gives us time to start WalkTree before calling CancelWalkTree.
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ActionDelay_ContinuationOnTimeout_RetryPolicy_TimeoutInAction);
// Test - WalkTree then CancelWalkTree while WalkTree is running and expect the Status to be either:
// 1. CancelledBeforeExecution if TaskCanceledException is thrown from WalkTree. This happens when the ForgeAction gets canceled and honored by Forge.
// 2. Cancelled if OperationCanceledException is thrown from WalkTree. This happens when some other Task wins the race to get cancelled first, such as nodeTimeoutTask.
Task<string> task = this.session.WalkTree("Root");
Thread.Sleep(25);
this.session.CancelWalkTree();
try
{
string temp = task.GetAwaiter().GetResult();
Assert.Fail("Expected WalkTree to throw exception after calling CancelWalkTree.");
}
catch { }
string actualStatus = this.session.Status;
if (actualStatus != "Cancelled" && actualStatus != "CancelledBeforeExecution")
{
Assert.Fail($"Expected WalkTree to be Cancelled or CancelledBeforeExecution after calling CancelWalkTree, but it was {actualStatus}.");
}
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_Failed_MissingKey()
{
this.TestFromFileInitialize(filePath: TardigradeSchemaPath);
// Test - WalkTree and expect the Status to be Failed because the key does not exist which threw an exception.
Assert.ThrowsException<KeyNotFoundException>(() =>
{
string temp = this.session.WalkTree("MissingKey").GetAwaiter().GetResult();
}, "Expected WalkTree to fail because the key does not exist.");
string actualStatus = this.session.Status;
Assert.AreEqual("Failed", actualStatus, "Expected WalkTree to fail because the key does not exist.");
}
[TestMethod]
public void TestTreeWalkerSession_WalkTree_NoChildMatched()
{
this.TestInitialize(jsonSchema: ForgeSchemaHelper.NoChildMatch);
// Test - WalkTree and expect the Status to be NoChildMatched.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion_NoChildMatched", actualStatus, "Expected WalkTree to end with NoChildMatched status.");
}
[TestMethod]
public void TestReexecutingNode_WithoutRetryCurrentTreeNodeActionsFlag_Success()
{
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ReExecuteNodeSchema);
// Test - WalkTree twice without the RetryCurrentTreeNodeActions flag set.
// Expect the Action to not get re-executed since the ActionResponse already exists and we are rehydrating.
this.session.WalkTree("Root").GetAwaiter().GetResult();
int count1 = (int)session.GetLastActionResponse().Output;
this.session = new TreeWalkerSession(this.parameters);
this.session.WalkTree("Root").GetAwaiter().GetResult();
int count2 = (int)session.GetLastActionResponse().Output;
Assert.IsTrue(count1 == count2);
}
[TestMethod]
public void TestReexecutingNode_WithRetryCurrentTreeNodeActionsFlag_Success()
{
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ReExecuteNodeSchema);
this.session.Parameters.RetryCurrentTreeNodeActions = true;
// Test - WalkTree twice with the RetryCurrentTreeNodeActions flag set.
// Expect the Action to get re-executed even when the ActionResponse already exists and we are rehydrating.
this.session.WalkTree("Root").GetAwaiter().GetResult();
int count1 = (int)session.GetLastActionResponse().Output;
this.parameters.RetryCurrentTreeNodeActions = true;
this.session = new TreeWalkerSession(this.parameters);
this.session.WalkTree("Root").GetAwaiter().GetResult();
int count2 = (int)session.GetLastActionResponse().Output;
Assert.IsFalse(count1 == count2);
}
#endregion WalkTree
[TestMethod]
public void TestGetCurrentTreeNode()
{
this.TestFromFileInitialize(filePath: TardigradeSchemaPath);
// Test 1 - Confirm GetCurrentTreeNode returns null before walking tree.
Assert.AreEqual(null, this.session.GetCurrentTreeNode().GetAwaiter().GetResult(), "Expected CurrentTreeNode to be null before starting walk tree.");
// Test 2 - Confirm GetCurrentTreeNode returns last node visited after walking tree.
this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("Tardigrade_Success", this.session.GetCurrentTreeNode().GetAwaiter().GetResult(), "Expected CurrentTreeNode to equal the last node visited.");
}
[TestMethod]
public void TestGetLastTreeAction()
{
this.TestFromFileInitialize(filePath: TardigradeSchemaPath);
// Test 1 - Confirm GetLastTreeAction returns null before walking tree.
Assert.AreEqual(null, this.session.GetLastTreeAction().GetAwaiter().GetResult(), "Expected LastTreeAction to be null before starting walk tree.");
// Test 2 - Confirm GetLastTreeAction returns last tree action executed after walking tree.
this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("Tardigrade_TardigradeAction", this.session.GetLastTreeAction().GetAwaiter().GetResult(), "Expected LastTreeAction to equal the last tree action executed.");
}
[TestMethod]
public void TestGetOutput()
{
this.TestFromFileInitialize(filePath: TardigradeSchemaPath);
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus, "Expected WalkTree to run to completion.");
// Test 1 - Confirm ActionResponse can be read from GetOutputAsync.
ActionResponse actionResponse = this.session.GetOutputAsync("Container_CollectDiagnosticsAction").GetAwaiter().GetResult();
Assert.AreEqual(
"RunCollectDiagnostics.exe_Results",
actionResponse.Output,
"Expected to successfully read ActionResponse.Output.");
Assert.AreEqual(
"Success",
actionResponse.Status,
"Expected to successfully read ActionResponse.Status.");
// Test 2 - Confirm ActionResponse can be read from GetOutput.
actionResponse = this.session.GetOutput("Container_CollectDiagnosticsAction");
Assert.AreEqual(
"RunCollectDiagnostics.exe_Results",
actionResponse.Output,
"Expected to successfully read ActionResponse.Output.");
Assert.AreEqual(
"Success",
actionResponse.Status,
"Expected to successfully read ActionResponse.Status.");
// Test 3 - Confirm ActionResponse can be read from GetLastActionResponseAsync.
actionResponse = this.session.GetLastActionResponseAsync().GetAwaiter().GetResult();
Assert.AreEqual(
"Success",
actionResponse.Status,
"Expected to successfully read ActionResponse.Status.");
// Test 4 - Confirm ActionResponse can be read from GetLastActionResponse.
actionResponse = this.session.GetLastActionResponse();
Assert.AreEqual(
"Success",
actionResponse.Status,
"Expected to successfully read ActionResponse.Status.");
}
[TestMethod]
public void Test_EvaluateInputType_Success()
{
this.TestFromFileInitialize(filePath: TestEvaluateInputTypeSchemaPath);
// Test - WalkTree to execute an Action with its ActionInput type defined in the ActionDefinition.InputType.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus);
Assert.AreEqual(
true,
this.session.GetLastActionResponse().Output,
"Expected to successfully retrieve the Func output value from the action.");
}
[TestMethod]
public void Test_EvaluateInputType_UnexpectedFieldFail()
{
this.TestInitialize(jsonSchema: ForgeSchemaHelper.TestEvaluateInputType_FailOnField_Action);
// Test - WalkTree and expect the Status to be Failed_EvaluateDynamicProperty
// because ActionInput type defined in the ActionDefinition.InputType contained an unexpected public Field.
string actual;
Assert.ThrowsException<EvaluateDynamicPropertyException>(() =>
{
actual = this.session.WalkTree("Root").GetAwaiter().GetResult();
}, "Expected WalkTree to fail because ActionInput type defined in the ActionDefinition.InputType contained an unexpected public Field.");
actual = this.session.Status;
Assert.AreEqual(
"Failed_EvaluateDynamicProperty",
actual,
"Expected WalkTree to fail because ActionInput type defined in the ActionDefinition.InputType contained an unexpected public Field.");
}
[TestMethod]
public void Test_EvaluateInputType_UnexpectedPropertyFail()
{
this.TestInitialize(jsonSchema: ForgeSchemaHelper.TestEvaluateInputTypeAction_UnexpectedPropertyFail);
// Test - WalkTree and expect the Status to be Failed_EvaluateDynamicProperty
// because the schema contained a Property that does not exist in ActionDefinition.InputType.
string actual;
Assert.ThrowsException<EvaluateDynamicPropertyException>(() =>
{
actual = this.session.WalkTree("Root").GetAwaiter().GetResult();
}, "Expected WalkTree to fail because the schema contained a Property that does not exist in ActionDefinition.InputType.");
actual = this.session.Status;
Assert.AreEqual(
"Failed_EvaluateDynamicProperty",
actual,
"Expected WalkTree to fail because the schema contained a Property that does not exist in ActionDefinition.InputType.");
}
[TestMethod]
public void Test_EvaluateInputType_ParameterizedConstructorFail()
{
this.TestInitialize(jsonSchema: ForgeSchemaHelper.TestEvaluateInputType_FailOnNonEmptyCtor_Action);
// Test - WalkTree and expect the Status to be Failed_EvaluateDynamicProperty
// because its ActionDefinition.InputType did not have a parameterless constructor.
string actual;
Assert.ThrowsException<EvaluateDynamicPropertyException>(() =>
{
actual = this.session.WalkTree("Root").GetAwaiter().GetResult();
}, "Expected WalkTree to fail because its ActionDefinition.InputType did not have a parameterless constructor.");
actual = this.session.Status;
Assert.AreEqual(
"Failed_EvaluateDynamicProperty",
actual,
"Expected WalkTree to fail because its ActionDefinition.InputType did not have a parameterless constructor.");
}
[TestMethod]
public void Test_EvaluateInputType_UndefinedEnumMemberFail()
{
this.TestInitialize(jsonSchema: ForgeSchemaHelper.TestEvaluateInputTypeAction_UndefinedEnumMemberFail);
// Test - WalkTree and expect the Status to be Failed_EvaluateDynamicProperty
// because the schema contained a Property value that is not a valid FooEnum value.
string actual;
Assert.ThrowsException<EvaluateDynamicPropertyException>(() =>
{
actual = this.session.WalkTree("Root").GetAwaiter().GetResult();
}, "Expected WalkTree to fail because the schema contained a Property value that is not a valid FooEnum value.");
actual = this.session.Status;
Assert.AreEqual(
"Failed_EvaluateDynamicProperty",
actual,
"Expected WalkTree to fail because the schema contained a Property value that is not a valid FooEnum value.");
}
[TestMethod]
public void Test_LeafNodeSummaryAction_Success()
{
this.TestInitialize(jsonSchema: ForgeSchemaHelper.LeafNodeSummaryAction);
// Test - WalkTree to execute a LeafNodeSummaryAction node with its ActionInput set to ActionResponse properties.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus);
ActionResponse leafActionResponse = this.session.GetLastActionResponse();
Assert.AreEqual(
"Success",
leafActionResponse.Status,
"Expected to successfully retrieve the Func output value from the action.");
Assert.AreEqual(
1,
leafActionResponse.StatusCode,
"Expected to successfully retrieve the Func output value from the action.");
Assert.AreEqual(
"TheResult",
leafActionResponse.Output,
"Expected to successfully retrieve the Func output value from the action.");
}
[TestMethod]
public void Test_LeafNodeSummaryAction_InputAsObject_Success()
{
this.TestFromFileInitialize(filePath: LeafNodeSummarySchemaPath);
// Test - WalkTree to execute a LeafNodeSummaryAction node with its ActionInput set to ActionResponse object of the previously ran Action in the parent node.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus);
ActionResponse leafActionResponse = this.session.GetLastActionResponse();
Assert.AreEqual(
"Success",
leafActionResponse.Status,
"Expected to successfully retrieve the Func output value from the action.");
Assert.AreEqual(
"TheCommand_Results",
leafActionResponse.Output,
"Expected to successfully retrieve the Func output value from the action.");
}
[TestMethod]
public void Test_ExternalExecutors()
{
this.TestInitialize(jsonSchema: ForgeSchemaHelper.ExternalExecutors);
Dictionary<string, Func<string, CancellationToken, Task<object>>> externalExecutors = new Dictionary<string, Func<string, CancellationToken, Task<object>>>
{
{ "External|", External }
};
this.parameters.ExternalExecutors = externalExecutors;
this.session = new TreeWalkerSession(this.parameters);
// Test - WalkTree to execute an Action with an ActionInput that uses an external executor. Confirm expected results.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus);
ActionResponse leafActionResponse = this.session.GetLastActionResponse();
Assert.AreEqual(
"StatusResult_Executed",
leafActionResponse.Status,
"Expected to successfully retrieve the Func output value from the action.");
}
[TestMethod]
public void Test_SubroutineAction_ConfirmLastActionResponseGetsPersisted_Success()
{
this.TestFromFileInitialize(filePath: SubroutineSchemaPath, treeName: "ParentTree");
// Test - WalkTree to execute a SubroutineAction. Subroutine tree contains an action, defines a RootTreeNodeKey, and queries TreeInput from the schema.
// Confirm the output of the SubroutineAction is the last ActionResponse in the Subroutine tree.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus);
ActionResponse subroutineActionResponse = this.session.GetOutput("Root_Subroutine");
Assert.AreEqual(
"Success",
subroutineActionResponse.Status,
"Expected to successfully retrieve the output value from the action that matches the last action response of the subroutine tree.");
Assert.AreEqual(
10,
subroutineActionResponse.StatusCode,
"Expected to successfully retrieve the output value from the action that matches the last action response of the subroutine tree.");
}
[TestMethod]
public void Test_SubroutineAction_NoActions_Success()
{
this.TestSubroutineInitialize(jsonSchema: ForgeSchemaHelper.SubroutineAction_NoActions, treeName: "RootTree");
// Test - WalkTree to execute a SubroutineAction. Subroutine tree contains no Actions. Subroutine tree does not specify RootTreeNodeKey, so expect to visit "Root" be default.
// Confirm the output of the SubroutineAction is the Status of the Subroutine tree walker session.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus);
ActionResponse subroutineActionResponse = this.session.GetOutput("Root_Subroutine");
Assert.AreEqual(
"RanToCompletion",
subroutineActionResponse.Status,
"Expected to successfully retrieve the Status of the subroutine session, since the subroutine tree contained no Actions.");
}
[TestMethod]
public void Test_SubroutineAction_ConfirmIntermediatesUsePersistedSessionIdOnRehydration_Success()
{
this.TestSubroutineInitialize(jsonSchema: ForgeSchemaHelper.SubroutineAction_NoActions, treeName: "RootTree");
// WalkTree to execute a SubroutineAction.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus);
ActionResponse subroutineActionResponse = this.session.GetOutput("Root_Subroutine");
Assert.AreEqual(
"RanToCompletion",
subroutineActionResponse.Status,
"Expected to successfully retrieve the Status of the subroutine session, since the subroutine tree contained no Actions.");
// Cache the original subroutine SessionId to check against later.
SubroutineIntermediates subroutineIntermediates = this.forgeState.GetValue<SubroutineIntermediates>("Root_Subroutine" + TreeWalkerSession.IntermediatesSuffix).GetAwaiter().GetResult();
Guid subroutineSessionId = subroutineIntermediates.SessionId;
// Brain surgery to make it look like we failed over during SubroutineAction before the ActionResponse was persisted.
this.forgeState.Set<ActionResponse>("Root_Subroutine" + TreeWalkerSession.ActionResponseSuffix, null).GetAwaiter().GetResult();
this.session = new TreeWalkerSession(this.session.Parameters);
actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus);
// Test - Confirm the SubroutineIntermediates.SessionId is persisted and gets re-used on rehydration.
subroutineIntermediates = this.forgeState.GetValue<SubroutineIntermediates>("Root_Subroutine" + TreeWalkerSession.IntermediatesSuffix).GetAwaiter().GetResult();
Assert.AreEqual(subroutineSessionId, subroutineIntermediates.SessionId);
}
[TestMethod]
public void Test_SubroutineAction_ParallelSubroutineActions_Success()
{
this.TestSubroutineInitialize(jsonSchema: ForgeSchemaHelper.SubroutineAction_ParallelSubroutineActions, treeName: "RootTree");
// Test - WalkTree to execute a Subroutine node with 2 SubroutineActions and a regular Action in parallel.
// Confirm parallel actions execute successfully.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus);
ActionResponse subroutineActionResponse = this.session.GetOutput("Root_Subroutine_One");
Assert.AreEqual(
"TestValueOne",
subroutineActionResponse.Status,
"Expected to successfully retrieve the output value from the action that matches the last action response of the subroutine tree.");
subroutineActionResponse = this.session.GetOutput("Root_Subroutine_Two");
Assert.AreEqual(
"TestValueTwo",
subroutineActionResponse.Status,
"Expected to successfully retrieve the output value from the action that matches the last action response of the subroutine tree.");
ActionResponse actionResponse = this.session.GetOutput("Root_CollectDiagnosticsAction");
Assert.AreEqual(
"Success",
actionResponse.Status,
"Expected to successfully read ActionResponse.Status.");
}
[TestMethod]
public void Test_SubroutineAction_FailsOnActionTreeNodeType_Failure()
{
this.TestSubroutineInitialize(jsonSchema: ForgeSchemaHelper.SubroutineAction_FailsOnActionTreeNodeType, treeName: "RootTree");
// Test - WalkTree and fail to execute an Action type node containing a SubroutineAction.
string actual;
Assert.ThrowsException<ArgumentException>(() =>
{
actual = this.session.WalkTree("Root").GetAwaiter().GetResult();
}, "Expected WalkTree to fail because the schema contained a Property that does not exist in ActionDefinition.InputType.");
actual = this.session.Status;
Assert.AreEqual(
"Failed",
actual,
"Expected WalkTree to fail because the schema contained a Property that does not exist in ActionDefinition.InputType.");
}
[TestMethod]
public void Test_SubroutineAction_FailsOnNoSubroutineAction_Failure()
{
this.TestSubroutineInitialize(jsonSchema: ForgeSchemaHelper.SubroutineAction_FailsOnNoSubroutineAction, treeName: "RootTree");
// Test - WalkTree and fail to execute a Subroutine type node that does not contain at least one SubroutineAction.
string actual;
Assert.ThrowsException<ArgumentException>(() =>
{
actual = this.session.WalkTree("Root").GetAwaiter().GetResult();
}, "Expected WalkTree to fail because the schema contained a Property that does not exist in ActionDefinition.InputType.");
actual = this.session.Status;
Assert.AreEqual(
"Failed",
actual,
"Expected WalkTree to fail because the schema contained a Property that does not exist in ActionDefinition.InputType.");
}
[TestMethod]
public void Test_Cycles_Success()
{
this.TestInitialize(jsonSchema: ForgeSchemaHelper.CycleSchema);
// Test - WalkTree that revisits a node multiple times.
// Inside the Action, we confirm that GetPreviousActionResponse gets persisted and Action Intermediates get wiped.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion_NoChildMatched", actualStatus);
ActionResponse actionResponse = this.session.GetLastActionResponse();
Assert.AreEqual(
3,
(int)actionResponse.Output,
"Expected to successfully retrieve the output value from the action that matches the last action response of the subroutine tree.");
}
[TestMethod]
public void Test_Cycles_RevisitSubroutineActionUsesDifferentSessionId_Success()
{
this.TestSubroutineInitialize(jsonSchema: ForgeSchemaHelper.Cycle_SubroutineActionUsesDifferentSessionId);
// Test - WalkTree that revisits a Subroutine node multiple times.
// Confirm different SessionIds get used each time we revisit the SubroutineAction.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion_NoChildMatched", actualStatus);
string rootSessionId = this.session.Parameters.RootSessionId.ToString();
ActionResponse previousActionResponse = this.forgeState.GetValue<ActionResponse>("Root_Subroutine" + TreeWalkerSession.PreviousActionResponseSuffix).GetAwaiter().GetResult();
ActionResponse actionResponse = this.session.GetOutput("Root_Subroutine");
Assert.AreNotEqual(
previousActionResponse.Status,
actionResponse.Status,
"Expected to successfully retrieve the output value from the action that matches the last action response of the subroutine tree.");
Assert.AreNotEqual(
rootSessionId,
previousActionResponse.Status);
Assert.AreNotEqual(
rootSessionId,
actionResponse.Status);
}
[TestMethod]
public void Test_SubroutineAction_TreeInput_ObjectFromRoslyn()
{
string jsonSchema = TreeInputSchemaHelper(treeInput: @"""TreeInput"": ""C#|Session.GetLastActionResponse()""",
status: @"""Status"": ""C#|TreeInput.Status""");
this.TestSubroutineInitialize(jsonSchema: jsonSchema, treeName: "RootTree");
// Test - WalkTree to execute a SubroutineAction with the passed in TreeInput.
// Confirm the passed in Status is able to successfully read the TreeInput.
string actualStatus = this.session.WalkTree("Root").GetAwaiter().GetResult();
Assert.AreEqual("RanToCompletion", actualStatus);
ActionResponse subroutineActionResponse = this.session.GetOutput("Root_Subroutine");
Assert.AreEqual(
"Success",
subroutineActionResponse.Status,
"Expected to successfully retrieve the Status of the subroutine session.");
}
[TestMethod]
public void Test_SubroutineAction_TreeInput_CustomObjectFromRoslyn()
{
string jsonSchema = TreeInputSchemaHelper(