@@ -91,8 +91,6 @@ func startGrpcListener(t *testing.T, r *task.TaskRegistry) context.CancelFunc {
91
91
}
92
92
93
93
func Test_Grpc_WaitForInstanceStart_Timeout (t * testing.T ) {
94
- t .Skip ("TODO: @joshvanl: re-enable after sqlite implementation of new backend funcs" )
95
-
96
94
r := task .NewTaskRegistry ()
97
95
r .AddOrchestratorN ("WaitForInstanceStartThrowsException" , func (ctx * task.OrchestrationContext ) (any , error ) {
98
96
// sleep 5 seconds
@@ -114,8 +112,6 @@ func Test_Grpc_WaitForInstanceStart_Timeout(t *testing.T) {
114
112
}
115
113
116
114
func Test_Grpc_WaitForInstanceStart_ConnectionResume (t * testing.T ) {
117
- t .Skip ("TODO: @joshvanl: re-enable after sqlite implementation of new backend funcs" )
118
-
119
115
r := task .NewTaskRegistry ()
120
116
r .AddOrchestratorN ("WaitForInstanceStartThrowsException" , func (ctx * task.OrchestrationContext ) (any , error ) {
121
117
// sleep 5 seconds
@@ -150,8 +146,6 @@ func Test_Grpc_WaitForInstanceStart_ConnectionResume(t *testing.T) {
150
146
}
151
147
152
148
func Test_Grpc_HelloOrchestration (t * testing.T ) {
153
- t .Skip ("TODO: @joshvanl: re-enable after sqlite implementation of new backend funcs" )
154
-
155
149
r := task .NewTaskRegistry ()
156
150
r .AddOrchestratorN ("SingleActivity" , func (ctx * task.OrchestrationContext ) (any , error ) {
157
151
var input string
@@ -191,8 +185,6 @@ func Test_Grpc_HelloOrchestration(t *testing.T) {
191
185
}
192
186
193
187
func Test_Grpc_SuspendResume (t * testing.T ) {
194
- t .Skip ("TODO: @joshvanl: re-enable after sqlite implementation of new backend funcs" )
195
-
196
188
const eventCount = 10
197
189
198
190
r := task .NewTaskRegistry ()
@@ -245,8 +237,6 @@ func Test_Grpc_SuspendResume(t *testing.T) {
245
237
}
246
238
247
239
func Test_Grpc_Terminate_Recursive (t * testing.T ) {
248
- t .Skip ("TODO: @joshvanl: re-enable after sqlite implementation of new backend funcs" )
249
-
250
240
delayTime := 4 * time .Second
251
241
executedActivity := false
252
242
r := task .NewTaskRegistry ()
@@ -308,8 +298,6 @@ func Test_Grpc_Terminate_Recursive(t *testing.T) {
308
298
}
309
299
310
300
func Test_Grpc_ReuseInstanceIDIgnore (t * testing.T ) {
311
- t .Skip ("TODO: @joshvanl: re-enable after sqlite implementation of new backend funcs" )
312
-
313
301
delayTime := 2 * time .Second
314
302
r := task .NewTaskRegistry ()
315
303
r .AddOrchestratorN ("SingleActivity" , func (ctx * task.OrchestrationContext ) (any , error ) {
@@ -358,8 +346,6 @@ func Test_Grpc_ReuseInstanceIDIgnore(t *testing.T) {
358
346
}
359
347
360
348
func Test_Grpc_ReuseInstanceIDTerminate (t * testing.T ) {
361
- t .Skip ("TODO: @joshvanl: re-enable after sqlite implementation of new backend funcs" )
362
-
363
349
delayTime := 2 * time .Second
364
350
r := task .NewTaskRegistry ()
365
351
r .AddOrchestratorN ("SingleActivity" , func (ctx * task.OrchestrationContext ) (any , error ) {
@@ -408,8 +394,6 @@ func Test_Grpc_ReuseInstanceIDTerminate(t *testing.T) {
408
394
}
409
395
410
396
func Test_Grpc_ReuseInstanceIDError (t * testing.T ) {
411
- t .Skip ("TODO: @joshvanl: re-enable after sqlite implementation of new backend funcs" )
412
-
413
397
delayTime := 4 * time .Second
414
398
r := task .NewTaskRegistry ()
415
399
r .AddOrchestratorN ("SingleActivity" , func (ctx * task.OrchestrationContext ) (any , error ) {
@@ -443,8 +427,6 @@ func Test_Grpc_ReuseInstanceIDError(t *testing.T) {
443
427
}
444
428
445
429
func Test_Grpc_ActivityRetries (t * testing.T ) {
446
- t .Skip ("TODO: @joshvanl: re-enable after sqlite implementation of new backend funcs" )
447
-
448
430
r := task .NewTaskRegistry ()
449
431
r .AddOrchestratorN ("ActivityRetries" , func (ctx * task.OrchestrationContext ) (any , error ) {
450
432
if err := ctx .CallActivity ("FailActivity" , task .WithActivityRetryPolicy (& task.RetryPolicy {
@@ -476,8 +458,6 @@ func Test_Grpc_ActivityRetries(t *testing.T) {
476
458
}
477
459
478
460
func Test_Grpc_SubOrchestratorRetries (t * testing.T ) {
479
- t .Skip ("TODO: @joshvanl: re-enable after sqlite implementation of new backend funcs" )
480
-
481
461
r := task .NewTaskRegistry ()
482
462
r .AddOrchestratorN ("Parent" , func (ctx * task.OrchestrationContext ) (any , error ) {
483
463
err := ctx .CallSubOrchestrator (
0 commit comments