-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathtest_dts_function_based_entities_e2e.py
More file actions
388 lines (308 loc) · 16.8 KB
/
test_dts_function_based_entities_e2e.py
File metadata and controls
388 lines (308 loc) · 16.8 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
from datetime import datetime, timezone
import os
import time
import pytest
from durabletask import client, entities, task
from durabletask.azuremanaged.client import DurableTaskSchedulerClient
from durabletask.azuremanaged.worker import DurableTaskSchedulerWorker
# NOTE: These tests assume a sidecar process is running. Example command:
# docker run -i -p 8080:8080 -p 8082:8082 -d mcr.microsoft.com/dts/dts-emulator:latest
pytestmark = pytest.mark.dts
# Read the environment variables
taskhub_name = os.getenv("TASKHUB", "default")
endpoint = os.getenv("ENDPOINT", "http://localhost:8080")
def test_client_signal_entity_and_custom_name():
invoked = False
def empty_entity(ctx: entities.EntityContext, _):
nonlocal invoked # don't do this in a real app!
if ctx.operation == "do_nothing":
invoked = True
# Start a worker, which will connect to the sidecar in a background thread
with DurableTaskSchedulerWorker(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None) as w:
w.add_entity(empty_entity, name="EntityNameCustom")
w.start()
c = DurableTaskSchedulerClient(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None)
entity_id = entities.EntityInstanceId("EntityNameCustom", "testEntity")
c.signal_entity(entity_id, "do_nothing")
time.sleep(2) # wait for the signal to be processed
assert invoked
def test_client_get_entity():
invoked = False
def empty_entity(ctx: entities.EntityContext, _):
nonlocal invoked # don't do this in a real app!
if ctx.operation == "do_nothing":
invoked = True
ctx.set_state(1)
# Start a worker, which will connect to the sidecar in a background thread
with DurableTaskSchedulerWorker(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None) as w:
w.add_entity(empty_entity)
w.start()
c = DurableTaskSchedulerClient(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None)
entity_id = entities.EntityInstanceId("empty_entity", "testEntity")
c.signal_entity(entity_id, "do_nothing")
time.sleep(2) # wait for the signal to be processed
state = c.get_entity(entity_id)
assert state is not None
assert state.id == entity_id
assert state.get_locked_by() is None
assert state.last_modified < datetime.now(timezone.utc)
assert state.get_state(int) == 1
assert invoked
def test_orchestration_signal_entity_and_custom_name():
invoked = False
def empty_entity(ctx: entities.EntityContext, _):
if ctx.operation == "do_nothing":
nonlocal invoked # don't do this in a real app!
invoked = True
def empty_orchestrator(ctx: task.OrchestrationContext, _):
entity_id = entities.EntityInstanceId("EntityNameCustom", f"{ctx.instance_id}_testEntity")
ctx.signal_entity(entity_id, "do_nothing")
# Start a worker, which will connect to the sidecar in a background thread
with DurableTaskSchedulerWorker(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None) as w:
w.add_orchestrator(empty_orchestrator)
w.add_entity(empty_entity, name="EntityNameCustom")
w.start()
c = DurableTaskSchedulerClient(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None)
id = c.schedule_new_orchestration(empty_orchestrator)
state = c.wait_for_orchestration_completion(id, timeout=30)
time.sleep(2) # wait for the signal to be processed - signals cannot be awaited from inside the orchestrator
assert invoked
assert state is not None
assert state.name == task.get_name(empty_orchestrator)
assert state.instance_id == id
assert state.failure_details is None
assert state.runtime_status == client.OrchestrationStatus.COMPLETED
assert state.serialized_input is None
assert state.serialized_output is None
assert state.serialized_custom_status is None
def test_orchestration_call_entity():
invoked = False
def empty_entity(ctx: entities.EntityContext, _):
if ctx.operation == "do_nothing":
nonlocal invoked # don't do this in a real app!
invoked = True
def empty_orchestrator(ctx: task.OrchestrationContext, _):
entity_id = entities.EntityInstanceId("empty_entity", f"{ctx.instance_id}_testEntity")
yield ctx.call_entity(entity_id, "do_nothing")
# Start a worker, which will connect to the sidecar in a background thread
with DurableTaskSchedulerWorker(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None) as w:
w.add_orchestrator(empty_orchestrator)
w.add_entity(empty_entity)
w.start()
c = DurableTaskSchedulerClient(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None)
id = c.schedule_new_orchestration(empty_orchestrator)
state = c.wait_for_orchestration_completion(id, timeout=30)
assert invoked
assert state is not None
assert state.name == task.get_name(empty_orchestrator)
assert state.instance_id == id
assert state.failure_details is None
assert state.runtime_status == client.OrchestrationStatus.COMPLETED
assert state.serialized_input is None
assert state.serialized_output is None
assert state.serialized_custom_status is None
def test_orchestration_call_entity_with_lock():
invoked = False
def empty_entity(ctx: entities.EntityContext, _):
if ctx.operation == "do_nothing":
nonlocal invoked # don't do this in a real app!
invoked = True
def empty_orchestrator(ctx: task.OrchestrationContext, _):
entity_id = entities.EntityInstanceId("empty_entity", f"{ctx.instance_id}_testEntity")
with (yield ctx.lock_entities([entity_id])):
yield ctx.call_entity(entity_id, "do_nothing")
# Start a worker, which will connect to the sidecar in a background thread
with DurableTaskSchedulerWorker(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None) as w:
w.add_orchestrator(empty_orchestrator)
w.add_entity(empty_entity)
w.start()
c = DurableTaskSchedulerClient(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None)
id = c.schedule_new_orchestration(empty_orchestrator)
state = c.wait_for_orchestration_completion(id, timeout=30)
# Call this a second time to ensure the entity is still responsive after being locked and unlocked
id_2 = c.schedule_new_orchestration(empty_orchestrator)
state_2 = c.wait_for_orchestration_completion(id_2, timeout=30)
assert invoked
assert state is not None
assert state.name == task.get_name(empty_orchestrator)
assert state.instance_id == id
assert state.failure_details is None
assert state.runtime_status == client.OrchestrationStatus.COMPLETED
assert state.serialized_input is None
assert state.serialized_output is None
assert state.serialized_custom_status is None
assert state_2 is not None
assert state_2.name == task.get_name(empty_orchestrator)
assert state_2.instance_id == id_2
assert state_2.failure_details is None
assert state_2.runtime_status == client.OrchestrationStatus.COMPLETED
assert state_2.serialized_input is None
assert state_2.serialized_output is None
assert state_2.serialized_custom_status is None
def test_orchestration_entity_signals_entity():
invoked = False
def empty_entity(ctx: entities.EntityContext, _):
if ctx.operation == "do_nothing":
nonlocal invoked # don't do this in a real app!
invoked = True
elif ctx.operation == "signal_other":
entity_id = entities.EntityInstanceId("empty_entity",
ctx.entity_id.key.replace("_testEntity", "_otherEntity"))
ctx.signal_entity(entity_id, "do_nothing")
def empty_orchestrator(ctx: task.OrchestrationContext, _):
entity_id = entities.EntityInstanceId("empty_entity", f"{ctx.instance_id}_testEntity")
yield ctx.call_entity(entity_id, "signal_other")
# Start a worker, which will connect to the sidecar in a background thread
with DurableTaskSchedulerWorker(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None) as w:
w.add_orchestrator(empty_orchestrator)
w.add_entity(empty_entity)
w.start()
c = DurableTaskSchedulerClient(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None)
id = c.schedule_new_orchestration(empty_orchestrator)
state = c.wait_for_orchestration_completion(id, timeout=30)
assert invoked
assert state is not None
assert state.name == task.get_name(empty_orchestrator)
assert state.instance_id == id
assert state.failure_details is None
assert state.runtime_status == client.OrchestrationStatus.COMPLETED
assert state.serialized_input is None
assert state.serialized_output is None
assert state.serialized_custom_status is None
def test_entity_starts_orchestration():
invoked = False
def empty_entity(ctx: entities.EntityContext, _):
if ctx.operation == "start_orchestration":
ctx.schedule_new_orchestration("empty_orchestrator")
def empty_orchestrator(ctx: task.OrchestrationContext, _):
nonlocal invoked # don't do this in a real app!
invoked = True
# Start a worker, which will connect to the sidecar in a background thread
with DurableTaskSchedulerWorker(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None) as w:
w.add_orchestrator(empty_orchestrator)
w.add_entity(empty_entity)
w.start()
c = DurableTaskSchedulerClient(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None)
c.signal_entity(entities.EntityInstanceId("empty_entity", "testEntity"), "start_orchestration")
time.sleep(2) # wait for the signal and orchestration to be processed
assert invoked
def test_entity_locking_behavior():
def empty_entity(ctx: entities.EntityContext, _):
pass
def empty_orchestrator(ctx: task.OrchestrationContext, _):
entity_id = entities.EntityInstanceId("empty_entity", f"{ctx.instance_id}_testEntity")
with (yield ctx.lock_entities([entity_id])):
# Cannot signal entities that have been locked
assert pytest.raises(Exception, ctx.signal_entity, entity_id, "do_nothing")
entity_call_task = ctx.call_entity(entity_id, "do_nothing")
# Cannot call entities that have been locked and already called, but not yet returned a result
assert pytest.raises(Exception, ctx.call_entity, entity_id, "do_nothing")
yield entity_call_task
# Start a worker, which will connect to the sidecar in a background thread
with DurableTaskSchedulerWorker(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None) as w:
w.add_orchestrator(empty_orchestrator)
w.add_entity(empty_entity)
w.start()
c = DurableTaskSchedulerClient(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None)
id = c.schedule_new_orchestration(empty_orchestrator)
state = c.wait_for_orchestration_completion(id, timeout=30)
assert state is not None
assert state.name == task.get_name(empty_orchestrator)
assert state.instance_id == id
assert state.failure_details is None
assert state.runtime_status == client.OrchestrationStatus.COMPLETED
assert state.serialized_input is None
assert state.serialized_output is None
assert state.serialized_custom_status is None
def test_entity_unlocks_when_user_code_throws():
invoke_count = 0
def empty_entity(ctx: entities.EntityContext, _):
nonlocal invoke_count # don't do this in a real app!
invoke_count += 1
def empty_orchestrator(ctx: task.OrchestrationContext, _):
entity_id = entities.EntityInstanceId("empty_entity", f"{ctx.instance_id}_testEntity")
with (yield ctx.lock_entities([entity_id])):
yield ctx.call_entity(entity_id, "do_nothing")
raise Exception("Simulated exception")
# Start a worker, which will connect to the sidecar in a background thread
with DurableTaskSchedulerWorker(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None) as w:
w.add_orchestrator(empty_orchestrator)
w.add_entity(empty_entity)
w.start()
c = DurableTaskSchedulerClient(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None)
time.sleep(2) # wait for the signal and orchestration to be processed
id = c.schedule_new_orchestration(empty_orchestrator)
c.wait_for_orchestration_completion(id, timeout=30)
id = c.schedule_new_orchestration(empty_orchestrator)
c.wait_for_orchestration_completion(id, timeout=30)
assert invoke_count == 2
def test_entity_unlocks_when_user_mishandles_lock():
invoke_count = 0
def empty_entity(ctx: entities.EntityContext, _):
nonlocal invoke_count # don't do this in a real app!
invoke_count += 1
def empty_orchestrator(ctx: task.OrchestrationContext, _):
entity_id = entities.EntityInstanceId("empty_entity", f"{ctx.instance_id}_testEntity")
yield ctx.lock_entities([entity_id])
yield ctx.call_entity(entity_id, "do_nothing")
# Start a worker, which will connect to the sidecar in a background thread
with DurableTaskSchedulerWorker(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None) as w:
w.add_orchestrator(empty_orchestrator)
w.add_entity(empty_entity)
w.start()
c = DurableTaskSchedulerClient(host_address=endpoint, secure_channel=True,
taskhub=taskhub_name, token_credential=None)
time.sleep(2) # wait for the signal and orchestration to be processed
id = c.schedule_new_orchestration(empty_orchestrator)
c.wait_for_orchestration_completion(id, timeout=30)
id = c.schedule_new_orchestration(empty_orchestrator)
c.wait_for_orchestration_completion(id, timeout=30)
assert invoke_count == 2
# TODO: Uncomment this test
# Will not pass until https://msazure.visualstudio.com/One/_git/AAPT-DTMB/pullrequest/13610881 is merged and
# deployed to the docker image
# def test_entity_unlocks_when_user_calls_continue_as_new():
# invoke_count = 0
# def empty_entity(ctx: entities.EntityContext, _):
# nonlocal invoke_count # don't do this in a real app!
# invoke_count += 1
# def empty_orchestrator(ctx: task.OrchestrationContext, entity_call_count: int):
# entity_id = entities.EntityInstanceId("empty_entity", "testEntity")
# nonlocal invoke_count
# if not ctx.is_replaying:
# invoke_count += 1
# with (yield ctx.lock_entities([entity_id])):
# yield ctx.call_entity(entity_id, "do_nothing")
# if entity_call_count > 0:
# ctx.continue_as_new(entity_call_count - 1, save_events=True)
# # Start a worker, which will connect to the sidecar in a background thread
# with DurableTaskSchedulerWorker(host_address=endpoint, secure_channel=True,
# taskhub=taskhub_name, token_credential=None) as w:
# w.add_orchestrator(empty_orchestrator)
# w.add_entity(empty_entity)
# w.start()
# c = DurableTaskSchedulerClient(host_address=endpoint, secure_channel=True,
# taskhub=taskhub_name, token_credential=None)
# time.sleep(2) # wait for the signal and orchestration to be processed
# id = c.schedule_new_orchestration(empty_orchestrator, input=2)
# c.wait_for_orchestration_completion(id, timeout=30)
# assert invoke_count == 6