-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathtest_workflow.py
6148 lines (5254 loc) · 215 KB
/
test_workflow.py
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
from __future__ import annotations
import asyncio
import dataclasses
import json
import logging
import logging.handlers
import queue
import sys
import threading
import typing
import uuid
from abc import ABC, abstractmethod
from contextlib import contextmanager
from dataclasses import dataclass
from datetime import datetime, timedelta, timezone
from enum import IntEnum
from functools import partial
from typing import (
Any,
Awaitable,
Callable,
Dict,
List,
Mapping,
NoReturn,
Optional,
Sequence,
Tuple,
Type,
Union,
cast,
)
from urllib.request import urlopen
import pytest
from google.protobuf.timestamp_pb2 import Timestamp
from typing_extensions import Literal, Protocol, runtime_checkable
import temporalio.worker
from temporalio import activity, workflow
from temporalio.api.common.v1 import Payload, Payloads, WorkflowExecution
from temporalio.api.enums.v1 import EventType
from temporalio.api.failure.v1 import Failure
from temporalio.api.sdk.v1 import EnhancedStackTrace
from temporalio.api.workflowservice.v1 import (
GetWorkflowExecutionHistoryRequest,
ResetStickyTaskQueueRequest,
)
from temporalio.bridge.proto.workflow_activation import WorkflowActivation
from temporalio.bridge.proto.workflow_completion import WorkflowActivationCompletion
from temporalio.client import (
Client,
RPCError,
RPCStatusCode,
WorkflowExecutionStatus,
WorkflowFailureError,
WorkflowHandle,
WorkflowQueryFailedError,
WorkflowUpdateFailedError,
WorkflowUpdateHandle,
WorkflowUpdateRPCTimeoutOrCancelledError,
WorkflowUpdateStage,
)
from temporalio.common import (
RawValue,
RetryPolicy,
SearchAttributeKey,
SearchAttributePair,
SearchAttributes,
SearchAttributeValues,
TypedSearchAttributes,
WorkflowIDConflictPolicy,
)
from temporalio.converter import (
DataConverter,
DefaultFailureConverterWithEncodedAttributes,
DefaultPayloadConverter,
PayloadCodec,
PayloadConverter,
)
from temporalio.exceptions import (
ActivityError,
ApplicationError,
CancelledError,
ChildWorkflowError,
TemporalError,
TimeoutError,
WorkflowAlreadyStartedError,
)
from temporalio.runtime import (
BUFFERED_METRIC_KIND_COUNTER,
BUFFERED_METRIC_KIND_HISTOGRAM,
MetricBuffer,
MetricBufferDurationFormat,
PrometheusConfig,
Runtime,
TelemetryConfig,
)
from temporalio.service import RPCError, RPCStatusCode, __version__
from temporalio.testing import WorkflowEnvironment
from temporalio.worker import (
UnsandboxedWorkflowRunner,
Worker,
WorkflowInstance,
WorkflowInstanceDetails,
WorkflowRunner,
)
from tests.helpers import (
assert_eq_eventually,
ensure_search_attributes_present,
find_free_port,
new_worker,
workflow_update_exists,
)
from tests.helpers.external_stack_trace import (
ExternalStackTraceWorkflow,
external_wait_cancel,
)
@workflow.defn
class HelloWorkflow:
@workflow.run
async def run(self, name: str) -> str:
return f"Hello, {name}!"
async def test_workflow_hello(client: Client):
async with new_worker(client, HelloWorkflow) as worker:
result = await client.execute_workflow(
HelloWorkflow.run,
"Temporal",
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
)
assert result == "Hello, Temporal!"
async def test_workflow_hello_eager(client: Client):
async with new_worker(client, HelloWorkflow) as worker:
handle = await client.start_workflow(
HelloWorkflow.run,
"Temporal",
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
request_eager_start=True,
task_timeout=timedelta(hours=1), # hang if retry needed
)
assert handle.__temporal_eagerly_started
result = await handle.result()
assert result == "Hello, Temporal!"
@activity.defn
async def multi_param_activity(param1: int, param2: str) -> str:
return f"param1: {param1}, param2: {param2}"
@workflow.defn
class MultiParamWorkflow:
@workflow.run
async def run(self, param1: int, param2: str) -> str:
return await workflow.execute_activity(
multi_param_activity,
args=[param1, param2],
schedule_to_close_timeout=timedelta(seconds=30),
)
async def test_workflow_multi_param(client: Client):
# This test is mostly just here to confirm MyPy type checks the multi-param
# overload approach properly
async with new_worker(
client, MultiParamWorkflow, activities=[multi_param_activity]
) as worker:
result = await client.execute_workflow(
MultiParamWorkflow.run,
args=[123, "val1"],
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
)
assert result == "param1: 123, param2: val1"
@workflow.defn
class InfoWorkflow:
@workflow.run
async def run(self) -> Dict:
# Convert to JSON and back so it'll stringify un-JSON-able pieces
ret = dataclasses.asdict(workflow.info())
return json.loads(json.dumps(ret, default=str))
async def test_workflow_info(client: Client, env: WorkflowEnvironment):
# TODO(cretz): Fix
if env.supports_time_skipping:
pytest.skip(
"Java test server: https://github.com/temporalio/sdk-java/issues/1426"
)
async with new_worker(client, InfoWorkflow) as worker:
workflow_id = f"workflow-{uuid.uuid4()}"
retry_policy = RetryPolicy(
initial_interval=timedelta(seconds=3),
backoff_coefficient=4.0,
maximum_interval=timedelta(seconds=5),
maximum_attempts=6,
)
info = await client.execute_workflow(
InfoWorkflow.run,
id=workflow_id,
task_queue=worker.task_queue,
retry_policy=retry_policy,
)
assert info["attempt"] == 1
assert info["cron_schedule"] is None
assert info["execution_timeout"] is None
assert info["namespace"] == client.namespace
assert info["retry_policy"] == json.loads(
json.dumps(dataclasses.asdict(retry_policy), default=str)
)
assert uuid.UUID(info["run_id"]).version == 4
assert info["run_timeout"] is None
datetime.fromisoformat(info["start_time"])
assert info["task_queue"] == worker.task_queue
assert info["task_timeout"] == "0:00:10"
assert info["workflow_id"] == workflow_id
assert info["workflow_type"] == "InfoWorkflow"
@dataclass
class HistoryInfo:
history_length: int
history_size: int
continue_as_new_suggested: bool
@workflow.defn
class HistoryInfoWorkflow:
@workflow.run
async def run(self) -> None:
# Just wait forever
await workflow.wait_condition(lambda: False)
@workflow.signal
async def bunch_of_events(self, count: int) -> None:
# Create a lot of one-day timers
for _ in range(count):
asyncio.create_task(asyncio.sleep(60 * 60 * 24))
@workflow.query
def get_history_info(self) -> HistoryInfo:
return HistoryInfo(
history_length=workflow.info().get_current_history_length(),
history_size=workflow.info().get_current_history_size(),
continue_as_new_suggested=workflow.info().is_continue_as_new_suggested(),
)
async def test_workflow_history_info(
client: Client, env: WorkflowEnvironment, continue_as_new_suggest_history_count: int
):
if env.supports_time_skipping:
pytest.skip("Java test server does not support should continue as new")
async with new_worker(client, HistoryInfoWorkflow) as worker:
handle = await client.start_workflow(
HistoryInfoWorkflow.run,
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
)
# Issue query before anything else, which should mean only a history
# size of 3, at least 100 bytes of history, and no continue as new
# suggestion
orig_info = await handle.query(HistoryInfoWorkflow.get_history_info)
assert orig_info.history_length == 3
assert orig_info.history_size > 100
assert not orig_info.continue_as_new_suggested
# Now send a lot of events
await handle.signal(
HistoryInfoWorkflow.bunch_of_events, continue_as_new_suggest_history_count
)
# Send one more event to trigger the WFT update. We have to do this
# because just a query will have a stale representation of history
# counts, but signal forces a new WFT.
await handle.signal(HistoryInfoWorkflow.bunch_of_events, 1)
new_info = await handle.query(HistoryInfoWorkflow.get_history_info)
assert new_info.history_length > continue_as_new_suggest_history_count
assert new_info.history_size > orig_info.history_size
assert new_info.continue_as_new_suggested
@workflow.defn
class SignalAndQueryWorkflow:
def __init__(self) -> None:
self._last_event: Optional[str] = None
@workflow.run
async def run(self) -> None:
# Wait forever
await asyncio.Future()
@workflow.signal
def signal1(self, arg: str) -> None:
self._last_event = f"signal1: {arg}"
@workflow.signal(dynamic=True)
def signal_dynamic(self, name: str, args: Sequence[RawValue]) -> None:
arg = workflow.payload_converter().from_payload(args[0].payload, str)
self._last_event = f"signal_dynamic {name}: {arg}"
@workflow.signal(name="Custom Name")
def signal_custom(self, arg: str) -> None:
self._last_event = f"signal_custom: {arg}"
@workflow.query
def last_event(self) -> str:
return self._last_event or "<no event>"
@workflow.query(dynamic=True)
def query_dynamic(self, name: str, args: Sequence[RawValue]) -> str:
arg = workflow.payload_converter().from_payload(args[0].payload, str)
return f"query_dynamic {name}: {arg}"
@workflow.query(name="Custom Name")
def query_custom(self, arg: str) -> str:
return f"query_custom: {arg}"
async def test_workflow_signal_and_query(client: Client):
async with new_worker(client, SignalAndQueryWorkflow) as worker:
handle = await client.start_workflow(
SignalAndQueryWorkflow.run,
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
)
# Simple signals and queries
await handle.signal(SignalAndQueryWorkflow.signal1, "some arg")
assert "signal1: some arg" == await handle.query(
SignalAndQueryWorkflow.last_event
)
# Dynamic signals and queries (old form)
await handle.signal("signal2", "dyn arg")
assert "signal_dynamic signal2: dyn arg" == await handle.query(
SignalAndQueryWorkflow.last_event
)
assert "query_dynamic query2: dyn arg" == await handle.query(
"query2", "dyn arg"
)
# Custom named signals and queries
await handle.signal("Custom Name", "custom arg1")
assert "signal_custom: custom arg1" == await handle.query(
SignalAndQueryWorkflow.last_event
)
await handle.signal(SignalAndQueryWorkflow.signal_custom, "custom arg2")
assert "signal_custom: custom arg2" == await handle.query(
SignalAndQueryWorkflow.last_event
)
assert "query_custom: custom arg1" == await handle.query(
"Custom Name", "custom arg1"
)
assert "query_custom: custom arg1" == await handle.query(
SignalAndQueryWorkflow.query_custom, "custom arg1"
)
@workflow.defn
class SignalAndQueryHandlersWorkflow:
def __init__(self) -> None:
self._last_event: Optional[str] = None
@workflow.run
async def run(self) -> None:
# Wait forever
await asyncio.Future()
@workflow.query
def last_event(self) -> str:
return self._last_event or "<no event>"
@workflow.signal
def set_signal_handler(self, signal_name: str) -> None:
def new_handler(arg: str) -> None:
self._last_event = f"signal {signal_name}: {arg}"
workflow.set_signal_handler(signal_name, new_handler)
@workflow.signal
def set_query_handler(self, query_name: str) -> None:
def new_handler(arg: str) -> str:
return f"query {query_name}: {arg}"
workflow.set_query_handler(query_name, new_handler)
@workflow.signal
def set_dynamic_signal_handler(self) -> None:
def new_handler(name: str, args: Sequence[RawValue]) -> None:
arg = workflow.payload_converter().from_payload(args[0].payload, str)
self._last_event = f"signal dynamic {name}: {arg}"
workflow.set_dynamic_signal_handler(new_handler)
@workflow.signal
def set_dynamic_query_handler(self) -> None:
def new_handler(name: str, args: Sequence[RawValue]) -> str:
arg = workflow.payload_converter().from_payload(args[0].payload, str)
return f"query dynamic {name}: {arg}"
workflow.set_dynamic_query_handler(new_handler)
async def test_workflow_signal_and_query_handlers(client: Client):
async with new_worker(client, SignalAndQueryHandlersWorkflow) as worker:
handle = await client.start_workflow(
SignalAndQueryHandlersWorkflow.run,
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
)
# Confirm signals buffered when not found
await handle.signal("unknown_signal1", "val1")
await handle.signal(
SignalAndQueryHandlersWorkflow.set_signal_handler, "unknown_signal1"
)
assert "signal unknown_signal1: val1" == await handle.query(
SignalAndQueryHandlersWorkflow.last_event
)
# Normal signal handling
await handle.signal("unknown_signal1", "val2")
assert "signal unknown_signal1: val2" == await handle.query(
SignalAndQueryHandlersWorkflow.last_event
)
# Dynamic signal handling buffered and new
await handle.signal("unknown_signal2", "val3")
await handle.signal(SignalAndQueryHandlersWorkflow.set_dynamic_signal_handler)
assert "signal dynamic unknown_signal2: val3" == await handle.query(
SignalAndQueryHandlersWorkflow.last_event
)
await handle.signal("unknown_signal3", "val4")
assert "signal dynamic unknown_signal3: val4" == await handle.query(
SignalAndQueryHandlersWorkflow.last_event
)
# Normal query handling
await handle.signal(
SignalAndQueryHandlersWorkflow.set_query_handler, "unknown_query1"
)
assert "query unknown_query1: val5" == await handle.query(
"unknown_query1", "val5"
)
# Dynamic query handling
await handle.signal(SignalAndQueryHandlersWorkflow.set_dynamic_query_handler)
assert "query dynamic unknown_query2: val6" == await handle.query(
"unknown_query2", "val6"
)
@workflow.defn
class SignalAndQueryErrorsWorkflow:
@workflow.run
async def run(self) -> None:
# Wait forever
await asyncio.Future()
@workflow.signal
def bad_signal(self) -> NoReturn:
raise ApplicationError("signal fail", 123)
@workflow.query
def bad_query(self) -> NoReturn:
raise ApplicationError("query fail", 456)
@workflow.query
def other_query(self) -> str:
raise NotImplementedError
async def test_workflow_signal_and_query_errors(client: Client):
async with new_worker(client, SignalAndQueryErrorsWorkflow) as worker:
handle = await client.start_workflow(
SignalAndQueryErrorsWorkflow.run,
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
)
# Send bad signal
await handle.signal(SignalAndQueryErrorsWorkflow.bad_signal)
# Wait on workflow
with pytest.raises(WorkflowFailureError) as err:
await handle.result()
assert isinstance(err.value.cause, ApplicationError)
assert list(err.value.cause.details) == [123]
# Fail query (no details on query failure)
with pytest.raises(WorkflowQueryFailedError) as rpc_err:
await handle.query(SignalAndQueryErrorsWorkflow.bad_query)
assert str(rpc_err.value) == "query fail"
# Unrecognized query
with pytest.raises(WorkflowQueryFailedError) as rpc_err:
await handle.query("non-existent query")
assert str(rpc_err.value) == (
"Query handler for 'non-existent query' expected but not found,"
" known queries: [__enhanced_stack_trace __stack_trace bad_query other_query]"
)
@workflow.defn
class SignalAndQueryOldDynamicStyleWorkflow:
def __init__(self) -> None:
self._last_event: Optional[str] = None
@workflow.run
async def run(self) -> None:
# Wait forever
await asyncio.Future()
@workflow.signal(dynamic=True)
def signal_dynamic(self, name: str, *args: Any) -> None:
self._last_event = f"signal_dynamic {name}: {args[0]}"
@workflow.query
def last_event(self) -> str:
return self._last_event or "<no event>"
@workflow.query(dynamic=True)
def query_dynamic(self, name: str, *args: Any) -> str:
return f"query_dynamic {name}: {args[0]}"
async def test_workflow_signal_and_query_old_dynamic_style(client: Client):
async with new_worker(client, SignalAndQueryOldDynamicStyleWorkflow) as worker:
handle = await client.start_workflow(
SignalAndQueryOldDynamicStyleWorkflow.run,
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
)
# Dynamic signals and queries
await handle.signal("signal1", "dyn arg")
assert "signal_dynamic signal1: dyn arg" == await handle.query(
SignalAndQueryOldDynamicStyleWorkflow.last_event
)
assert "query_dynamic query1: dyn arg" == await handle.query(
"query1", "dyn arg"
)
@workflow.defn
class SignalAndQueryHandlersOldDynamicStyleWorkflow:
def __init__(self) -> None:
self._last_event: Optional[str] = None
@workflow.run
async def run(self) -> None:
# Wait forever
await asyncio.Future()
@workflow.query
def last_event(self) -> str:
return self._last_event or "<no event>"
@workflow.signal
def set_dynamic_signal_handler(self) -> None:
def new_handler(name: str, *args: Any) -> None:
self._last_event = f"signal dynamic {name}: {args[0]}"
workflow.set_dynamic_signal_handler(new_handler)
@workflow.signal
def set_dynamic_query_handler(self) -> None:
def new_handler(name: str, *args: Any) -> str:
return f"query dynamic {name}: {args[0]}"
workflow.set_dynamic_query_handler(new_handler)
async def test_workflow_signal_qnd_query_handlers_old_dynamic_style(client: Client):
async with new_worker(
client, SignalAndQueryHandlersOldDynamicStyleWorkflow
) as worker:
handle = await client.start_workflow(
SignalAndQueryHandlersOldDynamicStyleWorkflow.run,
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
)
# Dynamic signal handling buffered and new
await handle.signal("unknown_signal1", "val1")
await handle.signal(
SignalAndQueryHandlersOldDynamicStyleWorkflow.set_dynamic_signal_handler
)
assert "signal dynamic unknown_signal1: val1" == await handle.query(
SignalAndQueryHandlersOldDynamicStyleWorkflow.last_event
)
await handle.signal("unknown_signal2", "val2")
assert "signal dynamic unknown_signal2: val2" == await handle.query(
SignalAndQueryHandlersOldDynamicStyleWorkflow.last_event
)
# Dynamic query handling
await handle.signal(
SignalAndQueryHandlersOldDynamicStyleWorkflow.set_dynamic_query_handler
)
assert "query dynamic unknown_query1: val3" == await handle.query(
"unknown_query1", "val3"
)
@dataclass
class BadSignalParam:
some_str: str
@workflow.defn
class BadSignalParamWorkflow:
def __init__(self) -> None:
self._signals: List[BadSignalParam] = []
@workflow.run
async def run(self) -> List[BadSignalParam]:
await workflow.wait_condition(
lambda: bool(self._signals) and self._signals[-1].some_str == "finish"
)
return self._signals
@workflow.signal
async def some_signal(self, param: BadSignalParam) -> None:
self._signals.append(param)
async def test_workflow_bad_signal_param(client: Client):
async with new_worker(client, BadSignalParamWorkflow) as worker:
handle = await client.start_workflow(
BadSignalParamWorkflow.run,
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
)
# Send 4 signals, first and third are bad
await handle.signal("some_signal", "bad")
await handle.signal("some_signal", BadSignalParam(some_str="good"))
await handle.signal("some_signal", 123)
await handle.signal("some_signal", BadSignalParam(some_str="finish"))
assert [
BadSignalParam(some_str="good"),
BadSignalParam(some_str="finish"),
] == await handle.result()
@workflow.defn
class AsyncUtilWorkflow:
def __init__(self) -> None:
self._status = "starting"
self._wait_event1 = asyncio.Event()
self._received_event2 = False
@workflow.run
async def run(self) -> Dict:
# Record start times
ret = {
# "now" timestamp and current event loop monotonic time
"start": str(workflow.now()),
"start_time": workflow.time(),
"start_time_ns": workflow.time_ns(),
"event_loop_start": asyncio.get_running_loop().time(),
}
# Sleep for a small amount of time (we accept that it may take longer on
# the server)
await asyncio.sleep(0.1)
# Wait for event 1
self._status = "waiting for event1"
await self._wait_event1.wait()
# Wait for event 2
self._status = "waiting for event2"
await workflow.wait_condition(lambda: self._received_event2)
# Record completion times
self._status = "done"
ret["end_time_ns"] = workflow.time_ns()
return ret
@workflow.signal
def event1(self) -> None:
self._wait_event1.set()
@workflow.signal
def event2(self) -> None:
self._received_event2 = True
@workflow.query
def status(self) -> str:
return self._status
async def test_workflow_async_utils(client: Client):
async with new_worker(client, AsyncUtilWorkflow) as worker:
# Start workflow and wait until status is waiting for event 1
handle = await client.start_workflow(
AsyncUtilWorkflow.run,
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
)
async def status() -> str:
return await handle.query(AsyncUtilWorkflow.status)
await assert_eq_eventually("waiting for event1", status)
# Set event 1 and confirm waiting on event 2
await handle.signal(AsyncUtilWorkflow.event1)
await assert_eq_eventually("waiting for event2", status)
# Set event 2 and get the result and confirm query still works
await handle.signal(AsyncUtilWorkflow.event2)
result = await handle.result()
assert "done" == await status()
# Get the actual start time out of history
resp = await client.workflow_service.get_workflow_execution_history(
GetWorkflowExecutionHistoryRequest(
namespace=client.namespace,
execution=WorkflowExecution(workflow_id=handle.id),
)
)
first_timestamp: Optional[Timestamp] = None
last_timestamp: Optional[Timestamp] = None
for event in resp.history.events:
# Get timestamp from first workflow task started
if event.event_type is EventType.EVENT_TYPE_WORKFLOW_TASK_STARTED:
if not first_timestamp:
first_timestamp = event.event_time
last_timestamp = event.event_time
assert first_timestamp and last_timestamp
# Check the times. We have to ignore type here because typeshed has
# wrong type for Protobuf ToDatetime.
first_timestamp_datetime = first_timestamp.ToDatetime(tzinfo=timezone.utc) # type: ignore
# We take off subsecond because Protobuf rounds nanos
# differently than we do (they round toward zero, we use
# utcfromtimestamp which suffers float precision issues).
assert datetime.fromisoformat(result["start"]).replace(
microsecond=0
) == first_timestamp_datetime.replace(microsecond=0)
assert result["start_time"] == first_timestamp.ToNanoseconds() / 1e9
assert result["start_time_ns"] == first_timestamp.ToNanoseconds()
assert result["event_loop_start"] == result["start_time"]
assert result["start_time_ns"] < result["end_time_ns"]
assert result["end_time_ns"] == last_timestamp.ToNanoseconds()
@activity.defn
async def say_hello(name: str) -> str:
return f"Hello, {name}!"
@workflow.defn
class SimpleActivityWorkflow:
@workflow.run
async def run(self, name: str) -> str:
return await workflow.execute_activity(
say_hello, name, schedule_to_close_timeout=timedelta(seconds=5)
)
async def test_workflow_simple_activity(client: Client):
async with new_worker(
client, SimpleActivityWorkflow, activities=[say_hello]
) as worker:
result = await client.execute_workflow(
SimpleActivityWorkflow.run,
"Temporal",
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
)
assert result == "Hello, Temporal!"
@workflow.defn
class SimpleLocalActivityWorkflow:
@workflow.run
async def run(self, name: str) -> str:
return await workflow.execute_local_activity(
say_hello, name, schedule_to_close_timeout=timedelta(seconds=5)
)
async def test_workflow_simple_local_activity(client: Client):
async with new_worker(
client, SimpleLocalActivityWorkflow, activities=[say_hello]
) as worker:
result = await client.execute_workflow(
SimpleLocalActivityWorkflow.run,
"Temporal",
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
)
assert result == "Hello, Temporal!"
@activity.defn
async def wait_cancel() -> str:
try:
if activity.info().is_local:
await asyncio.sleep(1000)
else:
while True:
await asyncio.sleep(0.3)
activity.heartbeat()
return "Manually stopped"
except asyncio.CancelledError:
return "Got cancelled error, cancelled? " + str(activity.is_cancelled())
class ActivityWaitCancelNotify:
def __init__(self) -> None:
self.wait_cancel_complete = asyncio.Event()
@activity.defn
async def wait_cancel(self) -> str:
self.wait_cancel_complete.clear()
try:
if activity.info().is_local:
await asyncio.sleep(1000)
else:
while True:
await asyncio.sleep(0.3)
activity.heartbeat()
return "Manually stopped"
except asyncio.CancelledError:
return "Got cancelled error, cancelled? " + str(activity.is_cancelled())
finally:
self.wait_cancel_complete.set()
@dataclass
class CancelActivityWorkflowParams:
cancellation_type: str
local: bool
@workflow.defn
class CancelActivityWorkflow:
def __init__(self) -> None:
self._activity_result = "<none>"
@workflow.run
async def run(self, params: CancelActivityWorkflowParams) -> None:
if params.local:
handle = workflow.start_local_activity_method(
ActivityWaitCancelNotify.wait_cancel,
schedule_to_close_timeout=timedelta(seconds=5),
cancellation_type=workflow.ActivityCancellationType[
params.cancellation_type
],
)
else:
handle = workflow.start_activity_method(
ActivityWaitCancelNotify.wait_cancel,
schedule_to_close_timeout=timedelta(seconds=5),
heartbeat_timeout=timedelta(seconds=1),
cancellation_type=workflow.ActivityCancellationType[
params.cancellation_type
],
)
await asyncio.sleep(0.01)
try:
handle.cancel()
self._activity_result = await handle
except ActivityError as err:
self._activity_result = f"Error: {err.cause.__class__.__name__}"
# TODO(cretz): Remove when https://github.com/temporalio/sdk-core/issues/323 is fixed
except CancelledError as err:
self._activity_result = f"Error: {err.__class__.__name__}"
# Wait forever
await asyncio.Future()
@workflow.query
def activity_result(self) -> str:
return self._activity_result
@pytest.mark.parametrize("local", [True, False])
async def test_workflow_cancel_activity(client: Client, local: bool):
# Need short task timeout to timeout LA task and longer assert timeout
# so the task can timeout
task_timeout = timedelta(seconds=1)
assert_timeout = timedelta(seconds=10)
activity_inst = ActivityWaitCancelNotify()
async with new_worker(
client, CancelActivityWorkflow, activities=[activity_inst.wait_cancel]
) as worker:
# Try cancel - confirm error and activity was sent the cancel
handle = await client.start_workflow(
CancelActivityWorkflow.run,
CancelActivityWorkflowParams(
cancellation_type=workflow.ActivityCancellationType.TRY_CANCEL.name,
local=local,
),
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
task_timeout=task_timeout,
)
async def activity_result() -> str:
return await handle.query(CancelActivityWorkflow.activity_result)
await assert_eq_eventually(
"Error: CancelledError", activity_result, timeout=assert_timeout
)
await activity_inst.wait_cancel_complete.wait()
await handle.cancel()
# Wait cancel - confirm no error due to graceful cancel handling
handle = await client.start_workflow(
CancelActivityWorkflow.run,
CancelActivityWorkflowParams(
cancellation_type=workflow.ActivityCancellationType.WAIT_CANCELLATION_COMPLETED.name,
local=local,
),
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
task_timeout=task_timeout,
)
await assert_eq_eventually(
"Got cancelled error, cancelled? True",
activity_result,
timeout=assert_timeout,
)
await activity_inst.wait_cancel_complete.wait()
await handle.cancel()
# Abandon - confirm error and that activity stays running
handle = await client.start_workflow(
CancelActivityWorkflow.run,
CancelActivityWorkflowParams(
cancellation_type=workflow.ActivityCancellationType.ABANDON.name,
local=local,
),
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
task_timeout=task_timeout,
)
await assert_eq_eventually(
"Error: CancelledError", activity_result, timeout=assert_timeout
)
await asyncio.sleep(0.5)
assert not activity_inst.wait_cancel_complete.is_set()
await handle.cancel()
await activity_inst.wait_cancel_complete.wait()
@workflow.defn
class SimpleChildWorkflow:
@workflow.run
async def run(self, name: str) -> str:
return await workflow.execute_child_workflow(HelloWorkflow.run, name)
async def test_workflow_simple_child(client: Client):
async with new_worker(client, SimpleChildWorkflow, HelloWorkflow) as worker:
result = await client.execute_workflow(
SimpleChildWorkflow.run,
"Temporal",
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
)
assert result == "Hello, Temporal!"
@workflow.defn
class LongSleepWorkflow:
@workflow.run
async def run(self) -> None:
self._started = True
await asyncio.sleep(1000)
@workflow.query
def started(self) -> bool:
return self._started
async def test_workflow_simple_cancel(client: Client):
async with new_worker(client, LongSleepWorkflow) as worker:
handle = await client.start_workflow(
LongSleepWorkflow.run,
id=f"workflow-{uuid.uuid4()}",
task_queue=worker.task_queue,
)
async def started() -> bool:
return await handle.query(LongSleepWorkflow.started)
await assert_eq_eventually(True, started)