-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathStoreTests.cs
More file actions
2360 lines (2035 loc) · 84.5 KB
/
StoreTests.cs
File metadata and controls
2360 lines (2035 loc) · 84.5 KB
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
using System;
using System.Linq;
using System.Threading.Tasks;
using Cleipnir.ResilientFunctions.CoreRuntime.Serialization;
using Cleipnir.ResilientFunctions.Domain;
using Cleipnir.ResilientFunctions.Helpers;
using Cleipnir.ResilientFunctions.Messaging;
using Cleipnir.ResilientFunctions.Storage;
using Cleipnir.ResilientFunctions.Tests.Utils;
using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;
using Shouldly;
using static Cleipnir.ResilientFunctions.Storage.CrudOperation;
namespace Cleipnir.ResilientFunctions.Tests.TestTemplates;
public abstract class StoreTests
{
private const string PARAM = "param";
public abstract Task SunshineScenarioTest();
protected async Task SunshineScenarioTest(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var store = await storeTask;
var paramJson = PARAM.ToJson();
var storedParameter = paramJson;
var leaseExpiration = DateTime.UtcNow.Ticks;
var timestamp = leaseExpiration + 1;
await store.CreateFunction(
functionId,
"humanInstanceId",
storedParameter.ToUtf8Bytes(),
leaseExpiration,
postponeUntil: null,
timestamp,
parent: null,
owner: ReplicaId.Empty
).ShouldNotBeNullAsync();
var storedFunction = await store.GetFunction(functionId);
storedFunction.ShouldNotBeNull();
storedFunction.StoredId.ShouldBe(functionId);
storedFunction.Parameter.ShouldBe(paramJson.ToUtf8Bytes());
storedFunction.Expires.ShouldBe(leaseExpiration);
storedFunction.Timestamp.ShouldBe(timestamp);
const string result = "hello world";
var resultJson = result.ToJson();
await store.SucceedFunction(
functionId,
result: resultJson.ToUtf8Bytes(),
expectedReplica: ReplicaId.Empty,
timestamp: DateTime.UtcNow.Ticks,
effects: null,
messages: null,
storageSession: null
).ShouldBeTrueAsync();
storedFunction = await store.GetFunction(functionId);
storedFunction.ShouldNotBeNull();
var results = await store.GetResults([functionId]);
var resultBytes = results[functionId];
resultBytes.ShouldNotBeNull();
resultBytes.ToStringFromUtf8Bytes().DeserializeFromJsonTo<string>().ShouldBe(result);
}
public abstract Task NullParamScenarioTest();
protected async Task NullParamScenarioTest(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var store = await storeTask;
var leaseExpiration = DateTime.UtcNow.Ticks;
var timestamp = leaseExpiration + 1;
var session = await store.CreateFunction(
functionId,
"humanInstanceId",
param: null,
leaseExpiration,
postponeUntil: null,
timestamp,
parent: null,
owner: null
);
session.ShouldBeNull();
var sf = await store.GetFunction(functionId);
sf.ShouldNotBeNull();
sf.Parameter.ShouldBeNull();
}
public abstract Task BecomeLeaderSucceedsWhenEpochIsAsExpected();
protected async Task BecomeLeaderSucceedsWhenEpochIsAsExpected(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var store = await storeTask;
var paramJson = PARAM.ToJson();
var owner = ReplicaId.NewId();
var session = await store.CreateFunction(
functionId,
"humanInstanceId",
paramJson.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: 0,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
session.ShouldBeNull();
var leaseExpiration = DateTime.UtcNow.Ticks;
await store
.RestartExecution(
functionId,
owner
).ShouldNotBeNullAsync();
var storedFunction = await store.GetFunction(functionId);
storedFunction.ShouldNotBeNull();
storedFunction.Expires.ShouldBe(0);
storedFunction.OwnerId.ShouldBe(owner);
}
public abstract Task BecomeLeaderFailsWhenEpochIsNotAsExpected();
protected async Task BecomeLeaderFailsWhenEpochIsNotAsExpected(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var store = await storeTask;
var paramJson = PARAM.ToJson();
var owner = Guid.NewGuid().ToReplicaId();
var leaseExpiration = DateTime.UtcNow.Ticks;
await store.CreateFunction(
functionId,
"humanInstanceId",
paramJson.ToUtf8Bytes(),
leaseExpiration,
postponeUntil: 0,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner
).ShouldNotBeNullAsync();
await store
.RestartExecution(
functionId,
owner: ReplicaId.NewId()
).ShouldBeNullAsync();
var storedFunction = await store.GetFunction(functionId);
storedFunction.ShouldNotBeNull();
storedFunction.Expires.ShouldBe(0);
storedFunction.OwnerId.ShouldBe(owner);
}
public abstract Task CreatingTheSameFunctionTwiceReturnsFalse();
protected async Task CreatingTheSameFunctionTwiceReturnsFalse(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var store = await storeTask;
var paramJson = PARAM.ToJson();
var session = await store.CreateFunction(
functionId,
"humanInstanceId",
paramJson.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
session.ShouldBeNull();
await store.CreateFunction(
functionId,
"humanInstanceId",
paramJson.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
).ShouldBeNullAsync();
}
public abstract Task FunctionCreatedWithSendResultToReturnsSendResultToInStoredFunction();
protected async Task FunctionCreatedWithSendResultToReturnsSendResultToInStoredFunction(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var sendResultToFunctionId = TestFlowId.Create();
var store = await storeTask;
var paramJson = PARAM.ToJson();
var session = await store.CreateFunction(
functionId,
"humanInstanceId",
paramJson.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
session.ShouldBeNull();
var sf = await store.GetFunction(functionId);
sf.ShouldNotBeNull();
}
public abstract Task FunctionPostponedUntilAfterExpiresBeforeIsFilteredOut();
protected async Task FunctionPostponedUntilAfterExpiresBeforeIsFilteredOut(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var store = await storeTask;
var paramJson = PARAM.ToJson();
var nowTicks = DateTime.UtcNow.Ticks;
var storedParameter = paramJson;
await store.CreateFunction(
functionId,
"humanInstanceId",
storedParameter.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: ReplicaId.Empty
).ShouldNotBeNullAsync();
await store.PostponeFunction(
functionId,
postponeUntil: nowTicks,
timestamp: DateTime.UtcNow.Ticks,
expectedReplica: ReplicaId.Empty,
effects: null,
messages: null,
storageSession: null
).ShouldBeTrueAsync();
var postponedFunctions = await store.GetExpiredFunctions(expiresBefore: nowTicks - 100);
postponedFunctions.ShouldBeEmpty();
}
public abstract Task FunctionPostponedUntilBeforeExpiresIsNotFilteredOut();
protected async Task FunctionPostponedUntilBeforeExpiresIsNotFilteredOut(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var store = await storeTask;
var paramJson = PARAM.ToJson();
var paramType = PARAM.GetType().SimpleQualifiedName();
var nowTicks = DateTime.UtcNow.Ticks;
var storedParameter = paramJson;
await store.CreateFunction(
functionId,
"humanInstanceId",
storedParameter.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: ReplicaId.Empty
).ShouldNotBeNullAsync();
await store.PostponeFunction(
functionId,
postponeUntil: nowTicks,
timestamp: DateTime.UtcNow.Ticks,
expectedReplica: ReplicaId.Empty,
effects: null,
messages: null,
storageSession: null
).ShouldBeTrueAsync();
var postponedFunctions = await store.GetExpiredFunctions(expiresBefore: nowTicks + 100);
postponedFunctions.Count().ShouldBe(1);
}
public abstract Task PostponeFunctionFailsWhenEpochIsNotAsExpected();
protected async Task PostponeFunctionFailsWhenEpochIsNotAsExpected(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var store = await storeTask;
var paramJson = PARAM.ToJson();
var paramType = PARAM.GetType().SimpleQualifiedName();
var nowTicks = DateTime.UtcNow.Ticks;
var storedParameter = paramJson;
await store.CreateFunction(
functionId,
"humanInstanceId",
storedParameter.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: ReplicaId.Empty
).ShouldNotBeNullAsync();
await store.PostponeFunction(
functionId,
postponeUntil: nowTicks,
timestamp: DateTime.UtcNow.Ticks,
expectedReplica: ReplicaId.NewId(),
effects: null,
messages: null,
storageSession: null
).ShouldBeFalseAsync();
var sf = await store.GetFunction(functionId);
sf.ShouldNotBeNull();
sf.Status.ShouldBe(Status.Executing);
((string)DefaultSerializer.Instance
.Deserialize(sf.Parameter!, typeof(string)))
.ShouldBe(PARAM);
}
public abstract Task InitializeCanBeInvokedMultipleTimesSuccessfully();
protected async Task InitializeCanBeInvokedMultipleTimesSuccessfully(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
await store.Initialize();
await store.Initialize();
}
public abstract Task OnlyEligibleCrashedFunctionsAreReturnedFromStore();
protected async Task OnlyEligibleCrashedFunctionsAreReturnedFromStore(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
var function1Id = TestStoredId.Create();
var function2Id = StoredId.Create(function1Id.Type, Guid.NewGuid().ToString("N"));
await store.CreateFunction(
function1Id,
"humanInstanceId",
"hello world".ToJson().ToUtf8Bytes(),
leaseExpiration: 0,
postponeUntil: 0,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
await store.CreateFunction(
function2Id,
"humanInstanceId",
"hello world".ToJson().ToUtf8Bytes(),
leaseExpiration: 2,
postponeUntil: 2,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
var storedFunctions = await store.GetExpiredFunctions(expiresBefore: 1);
storedFunctions.Count.ShouldBe(1);
var flowId = storedFunctions[0];
flowId.ShouldBe(function1Id);
}
public abstract Task IncrementEpochSucceedsWhenEpochIsAsExpected();
protected async Task IncrementEpochSucceedsWhenEpochIsAsExpected(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
var functionId = TestStoredId.Create();
var session = await store.CreateFunction(
functionId,
"humanInstanceId",
"hello world".ToJson().ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
session.ShouldBeNull();
await store.RestartExecution(functionId, owner: ReplicaId.NewId()).ShouldNotBeNullAsync();
var sf = await store.GetFunction(functionId);
sf.ShouldNotBeNull();
}
public abstract Task IncrementEpochFailsWhenEpochIsNotAsExpected();
protected async Task IncrementEpochFailsWhenEpochIsNotAsExpected(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
var functionId = TestStoredId.Create();
await store.CreateFunction(
functionId,
"humanInstanceId",
"hello world".ToJson().ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: Guid.NewGuid().ToReplicaId()
).ShouldNotBeNullAsync();
await store.RestartExecution(functionId, owner: ReplicaId.NewId()).ShouldBeNullAsync();
var sf = await store.GetFunction(functionId);
sf.ShouldNotBeNull();
}
public abstract Task DeletingExistingFunctionSucceeds();
public async Task DeletingExistingFunctionSucceeds(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
var functionId = TestStoredId.Create();
var storedParameter = "hello world".ToJson();
var session = await store.CreateFunction(
functionId,
"humanInstanceId",
storedParameter.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
session.ShouldBeNull();
await BusyWait.Until(() => store.GetFunction(functionId).SelectAsync(sf => sf != null));
var success = await store.DeleteFunction(functionId);
success.ShouldBeTrue();
var sf = await store.GetFunction(functionId);
sf.ShouldBeNull();
success = await store.DeleteFunction(functionId);
success.ShouldBeFalse();
}
public abstract Task FailFunctionSucceedsWhenEpochIsAsExpected();
public async Task FailFunctionSucceedsWhenEpochIsAsExpected(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
var flowId = TestFlowId.Create();
var storedId = flowId.ToStoredId(new StoredType(1));
var storedParameter = "hello world".ToJson();
await store.CreateFunction(
storedId,
"humanInstanceId",
storedParameter.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: ReplicaId.Empty
).ShouldNotBeNullAsync();
var storedException = new StoredException(
ExceptionMessage: "Something went wrong",
ExceptionStackTrace: "StackTrace",
ExceptionType: typeof(Exception).SimpleQualifiedName()
);
await store.FailFunction(
storedId,
storedException,
timestamp: DateTime.UtcNow.Ticks,
expectedReplica: ReplicaId.Empty,
effects: null,
messages: null,
storageSession: null
);
await BusyWait.Until(() => store.GetFunction(storedId).SelectAsync(sf => sf != null));
var sf = await store.GetFunction(storedId);
sf.ShouldNotBeNull();
sf.Status.ShouldBe(Status.Failed);
sf.Exception.ShouldNotBeNull();
var fatalWorkflowException = FatalWorkflowException.Create(flowId, sf.Exception);
fatalWorkflowException.FlowErrorMessage.ShouldBe(storedException.ExceptionMessage);
fatalWorkflowException.FlowStackTrace.ShouldBe(storedException.ExceptionStackTrace);
fatalWorkflowException.ErrorType.ShouldBe(typeof(Exception));
}
public abstract Task SetFunctionStateSucceedsWhenEpochIsAsExpected();
public async Task SetFunctionStateSucceedsWhenEpochIsAsExpected(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
var functionId = TestStoredId.Create();
var storedParameter = "hello world".ToJson().ToUtf8Bytes();
var session = await store.CreateFunction(
functionId,
"humanInstanceId",
storedParameter,
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
session.ShouldBeNull();
await store.SetFunctionState(
functionId,
Status.Succeeded,
storedParameter,
"completed".ToJson().ToUtf8Bytes(),
storedException: null,
expires: DateTime.UtcNow.Ticks,
expectedReplica: null
).ShouldBeTrueAsync();
await BusyWait.Until(() => store.GetFunction(functionId).SelectAsync(sf => sf != null));
var sf = await store.GetFunction(functionId);
sf.ShouldNotBeNull();
sf.Status.ShouldBe(Status.Succeeded);
sf.Exception.ShouldBeNull();
}
public abstract Task SetFunctionStateSucceedsWithMessagesWhenEpochIsAsExpected();
public async Task SetFunctionStateSucceedsWithMessagesWhenEpochIsAsExpected(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
var messages = store.MessageStore;
var functionId = TestStoredId.Create();
var storedParameter = "hello world".ToJson();
var session = await store.CreateFunction(
functionId,
"humanInstanceId",
storedParameter.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
session.ShouldBeNull();
var message1 = new StoredMessage(
"hello everyone".ToJson().ToUtf8Bytes(),
MessageType: typeof(string).SimpleQualifiedName().ToUtf8Bytes(),
Position: 0,
IdempotencyKey: "idempotency_key_1"
);
await messages.AppendMessage(functionId, message1);
await store.SetFunctionState(
functionId,
Status.Succeeded,
storedParameter.ToUtf8Bytes(),
"completed".ToJson().ToUtf8Bytes(),
storedException: null,
expires: DateTime.Now.Ticks,
expectedReplica: null
).ShouldBeTrueAsync();
await BusyWait.Until(() => store.GetFunction(functionId).SelectAsync(sf => sf != null));
var sf = await store.GetFunction(functionId);
sf.ShouldNotBeNull();
sf.Status.ShouldBe(Status.Succeeded);
sf.Exception.ShouldBeNull();
var storedMessages = await store.MessageStore.GetMessages(functionId);
storedMessages.Count.ShouldBe(1);
var deserializedMessage = (string) DefaultSerializer.Instance.Deserialize(storedMessages[0].MessageContent, DefaultSerializer.Instance.ResolveType(storedMessages[0].MessageType)!);
deserializedMessage.ShouldBe("hello everyone");
}
public abstract Task ExecutingFunctionCanBeSuspendedSuccessfully();
public async Task ExecutingFunctionCanBeSuspendedSuccessfully(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
var functionId = TestStoredId.Create();
var storedParameter = "hello world".ToJson();
await store.CreateFunction(
functionId,
"humanInstanceId",
storedParameter.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: ReplicaId.Empty
).ShouldNotBeNullAsync();
await store.SuspendFunction(
functionId,
timestamp: DateTime.UtcNow.Ticks,
expectedReplica: ReplicaId.Empty,
effects: null,
messages: null,
storageSession: null
).ShouldBeAsync(true);
var sf = await store.GetFunction(functionId);
sf.ShouldNotBeNull();
sf.Status.ShouldBe(Status.Suspended);
sf.Parameter.ShouldBe(storedParameter.ToUtf8Bytes());
var messages = await store.MessageStore.GetMessages(functionId);
messages.ShouldBeEmpty();
await Task.Delay(500);
await store.MessageStore.AppendMessage(
functionId,
new StoredMessage("hello world".ToJson().ToUtf8Bytes(), MessageType: typeof(string).SimpleQualifiedName().ToUtf8Bytes(), Position: 0)
);
}
public abstract Task FunctionStatusForNonExistingFunctionIsNull();
public async Task FunctionStatusForNonExistingFunctionIsNull(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
var functionId = TestStoredId.Create();
await store.MessageStore.AppendMessage(
functionId,
new StoredMessage("hello world".ToJson().ToUtf8Bytes(), MessageType: typeof(string).SimpleQualifiedName().ToUtf8Bytes(), Position: 0)
);
}
public abstract Task RestartingExecutionShouldFailWhenExpectedEpochDoesNotMatch();
public async Task RestartingExecutionShouldFailWhenExpectedEpochDoesNotMatch(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
var functionId = TestStoredId.Create();
var storedParameter = "hello world".ToJson();
var session = await store.CreateFunction(
functionId,
"humanInstanceId",
storedParameter.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
session.ShouldBeNull();
await store.RestartExecution(
functionId,
owner: ReplicaId.NewId()
).ShouldNotBeNullAsync();
await store.RestartExecution(
functionId,
owner: ReplicaId.NewId()
).ShouldBeNullAsync();
}
public abstract Task RestartingFunctionShouldSetInterruptedToFalse();
public async Task RestartingFunctionShouldSetInterruptedToFalse(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
var functionId = TestStoredId.Create();
var storedParameter = "hello world".ToJson();
var session = await store.CreateFunction(
functionId,
"humanInstanceId",
storedParameter.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
session.ShouldBeNull();
await store.Interrupt(functionId).ShouldBeTrueAsync();
(await store.GetInterruptedFunctions()).Any(id => id == functionId).ShouldBeTrue();
await store.RestartExecution(
functionId,
owner: ReplicaId.NewId()
).ShouldNotBeNullAsync();
(await store.GetInterruptedFunctions()).Any(id => id == functionId).ShouldBeFalse();
}
public abstract Task ResetInterruptedClearsInterruptedFlag();
protected async Task ResetInterruptedClearsInterruptedFlag(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
var functionId1 = TestStoredId.Create();
var functionId2 = StoredId.Create(functionId1.Type, Guid.NewGuid().ToString());
await store.CreateFunction(
functionId1,
"humanInstanceId1",
param: Test.SimpleStoredParameter,
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
await store.CreateFunction(
functionId2,
"humanInstanceId2",
param: Test.SimpleStoredParameter,
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
await store.Interrupt(functionId1).ShouldBeTrueAsync();
await store.Interrupt(functionId2).ShouldBeTrueAsync();
(await store.GetInterruptedFunctions()).Count.ShouldBe(2);
await store.ResetInterrupted([functionId1]);
var interrupted = await store.GetInterruptedFunctions();
interrupted.Count.ShouldBe(1);
interrupted.Any(id => id == functionId2).ShouldBeTrue();
interrupted.Any(id => id == functionId1).ShouldBeFalse();
}
public abstract Task MessagesCanBeFetchedAfterFunctionWithInitialMessagesHasBeenCreated();
public async Task MessagesCanBeFetchedAfterFunctionWithInitialMessagesHasBeenCreated(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
var functionId = TestStoredId.Create();
var storedParameter = "hello world".ToJson();
var session = await store.CreateFunction(
functionId,
"humanInstanceId",
storedParameter.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
session.ShouldBeNull();
await store.MessageStore.AppendMessage(functionId, new StoredMessage("Hello".ToJson().ToUtf8Bytes(), MessageType: typeof(string).SimpleQualifiedName().ToUtf8Bytes(), Position: 0));
await store.MessageStore.AppendMessage(functionId, new StoredMessage("World".ToJson().ToUtf8Bytes(), MessageType: typeof(string).SimpleQualifiedName().ToUtf8Bytes(), Position: 0));
var messages = await store.MessageStore.GetMessages(functionId);
messages.Count.ShouldBe(2);
messages[0].DefaultDeserialize().ShouldBe("Hello");
messages[1].DefaultDeserialize().ShouldBe("World");
}
public abstract Task FunctionStatusAndEpochCanBeSuccessfullyFetched();
public async Task FunctionStatusAndEpochCanBeSuccessfullyFetched(Task<IFunctionStore> storeTask)
{
var store = await storeTask;
var functionId = TestStoredId.Create();
var storedParameter = "hello world".ToJson();
var session = await store.CreateFunction(
functionId,
"humanInstanceId",
storedParameter.ToUtf8Bytes(),
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: null
);
session.ShouldBeNull();
await store.SetFunctionState(
functionId,
Status.Succeeded,
storedParameter.ToUtf8Bytes(),
"completed".ToJson().ToUtf8Bytes(),
storedException: null,
expires: DateTime.Now.Ticks,
expectedReplica: null
).ShouldBeTrueAsync();
await BusyWait.Until(() => store.GetFunction(functionId).SelectAsync(sf => sf != null));
var status = await store.GetFunctionStatus(functionId);
status.ShouldBe(Status.Succeeded);
}
public abstract Task EpochIsNotIncrementedOnCompletion();
protected async Task EpochIsNotIncrementedOnCompletion(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var store = await storeTask;
await store.CreateFunction(
functionId,
"humanInstanceId",
param: Test.SimpleStoredParameter,
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: ReplicaId.Empty
).ShouldNotBeNullAsync();
await store.SucceedFunction(
functionId,
result: null,
DateTime.UtcNow.Ticks,
expectedReplica: ReplicaId.Empty,
effects: null,
messages: null,
storageSession: null
);
var storedFunction = await store.GetFunction(functionId);
storedFunction.ShouldNotBeNull();
}
public abstract Task EpochIsNotIncrementedOnPostponed();
protected async Task EpochIsNotIncrementedOnPostponed(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var store = await storeTask;
await store.CreateFunction(
functionId,
"humanInstanceId",
param: Test.SimpleStoredParameter,
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: ReplicaId.Empty
).ShouldNotBeNullAsync();
await store.PostponeFunction(
functionId,
postponeUntil: DateTime.UtcNow.Ticks,
timestamp: DateTime.UtcNow.Ticks,
expectedReplica: ReplicaId.Empty,
effects: null,
messages: null,
storageSession: null
);
var storedFunction = await store.GetFunction(functionId);
storedFunction.ShouldNotBeNull();
}
public abstract Task EpochIsNotIncrementedOnFailure();
protected async Task EpochIsNotIncrementedOnFailure(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var store = await storeTask;
await store.CreateFunction(
functionId,
"humanInstanceId",
param: Test.SimpleStoredParameter,
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: ReplicaId.Empty
).ShouldNotBeNullAsync();
await store.FailFunction(
functionId,
new StoredException("ExceptionMessage", ExceptionStackTrace: null, typeof(Exception).SimpleQualifiedName()),
timestamp: DateTime.UtcNow.Ticks,
expectedReplica: ReplicaId.Empty,
effects: null,
messages: null,
storageSession: null
);
var storedFunction = await store.GetFunction(functionId);
storedFunction.ShouldNotBeNull();
}
public abstract Task EpochIsNotIncrementedOnSuspension();
protected async Task EpochIsNotIncrementedOnSuspension(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var store = await storeTask;
await store.CreateFunction(
functionId,
"humanInstanceId",
param: Test.SimpleStoredParameter,
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: ReplicaId.Empty
).ShouldNotBeNullAsync();
await store.SuspendFunction(
functionId,
timestamp: DateTime.UtcNow.Ticks,
expectedReplica: ReplicaId.Empty,
effects: null,
messages: null,
storageSession: null
);
var storedFunction = await store.GetFunction(functionId);
storedFunction.ShouldNotBeNull();
}
public abstract Task SuspensionDoesNotSucceedOnExpectedMessagesCountMismatchButPostponesFunction();
protected async Task SuspensionDoesNotSucceedOnExpectedMessagesCountMismatchButPostponesFunction(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var store = await storeTask;
await store.CreateFunction(
functionId,
"humanInstanceId",
param: Test.SimpleStoredParameter,
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: ReplicaId.Empty
).ShouldNotBeNullAsync();
await store.MessageStore.AppendMessage(
functionId,
new StoredMessage("some message".ToJson().ToUtf8Bytes(), typeof(string).SimpleQualifiedName().ToUtf8Bytes(), Position: 0)
);
await store.Interrupt(functionId);
await store.SuspendFunction(
functionId,
timestamp: DateTime.UtcNow.Ticks,
expectedReplica: ReplicaId.Empty,
effects: null,
messages: null,
storageSession: null
).ShouldBeTrueAsync();
var storedFunction = await store.GetFunction(functionId);
storedFunction.ShouldNotBeNull();
storedFunction.Status.ShouldBe(Status.Postponed);
storedFunction.Expires.ShouldBe(0);
}
public abstract Task FunctionIsStillExecutingOnSuspensionAndInterruptCountMismatch();
protected async Task FunctionIsStillExecutingOnSuspensionAndInterruptCountMismatch(Task<IFunctionStore> storeTask)
{
var functionId = TestStoredId.Create();
var store = await storeTask;
await store.CreateFunction(
functionId,
"humanInstanceId",
param: Test.SimpleStoredParameter,
leaseExpiration: DateTime.UtcNow.Ticks,
postponeUntil: null,
timestamp: DateTime.UtcNow.Ticks,
parent: null,
owner: ReplicaId.Empty
).ShouldNotBeNullAsync();
await store.MessageStore.AppendMessage(
functionId,
new StoredMessage("hello world".ToJson().ToUtf8Bytes(), typeof(string).SimpleQualifiedName().ToUtf8Bytes(), Position: 0)
);
await store.Interrupt(functionId);
var success = await store.SuspendFunction(
functionId,
timestamp: DateTime.UtcNow.Ticks,
expectedReplica: ReplicaId.Empty,
effects: null,
messages: null,
storageSession: null
);