-
Notifications
You must be signed in to change notification settings - Fork 285
Expand file tree
/
Copy pathtest_async_agent.py
More file actions
399 lines (344 loc) · 13.3 KB
/
test_async_agent.py
File metadata and controls
399 lines (344 loc) · 13.3 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
from unittest.mock import MagicMock
import pytest
from slack_sdk.web.async_client import AsyncWebClient
from slack_sdk.web.async_chat_stream import AsyncChatStream
from slack_bolt.agent.async_agent import AsyncBoltAgent
def _make_async_chat_stream_mock():
mock_stream = MagicMock(spec=AsyncChatStream)
call_tracker = MagicMock()
async def fake_chat_stream(**kwargs):
call_tracker(**kwargs)
return mock_stream
return fake_chat_stream, call_tracker, mock_stream
def _make_async_api_mock():
mock_response = MagicMock()
call_tracker = MagicMock()
async def fake_api_call(**kwargs):
call_tracker(**kwargs)
return mock_response
return fake_api_call, call_tracker, mock_response
class TestAsyncBoltAgent:
@pytest.mark.asyncio
async def test_chat_stream_uses_context_defaults(self):
"""AsyncBoltAgent.chat_stream() passes context defaults to AsyncWebClient.chat_stream()."""
client = MagicMock(spec=AsyncWebClient)
client.chat_stream, call_tracker, _ = _make_async_chat_stream_mock()
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
thread_ts="1234567890.123456",
team_id="T111",
user_id="W222",
)
stream = await agent.chat_stream()
call_tracker.assert_called_once_with(
channel="C111",
thread_ts="1234567890.123456",
recipient_team_id="T111",
recipient_user_id="W222",
)
assert stream is not None
@pytest.mark.asyncio
async def test_chat_stream_overrides_context_defaults(self):
"""Explicit kwargs to chat_stream() override context defaults."""
client = MagicMock(spec=AsyncWebClient)
client.chat_stream, call_tracker, _ = _make_async_chat_stream_mock()
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
thread_ts="1234567890.123456",
team_id="T111",
user_id="W222",
)
stream = await agent.chat_stream(
channel="C999",
thread_ts="9999999999.999999",
recipient_team_id="T999",
recipient_user_id="U999",
)
call_tracker.assert_called_once_with(
channel="C999",
thread_ts="9999999999.999999",
recipient_team_id="T999",
recipient_user_id="U999",
)
assert stream is not None
@pytest.mark.asyncio
async def test_chat_stream_rejects_partial_overrides(self):
"""Passing only some of the four context args raises ValueError."""
client = MagicMock(spec=AsyncWebClient)
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
thread_ts="1234567890.123456",
team_id="T111",
user_id="W222",
)
with pytest.raises(ValueError, match="Either provide all of"):
await agent.chat_stream(channel="C999")
@pytest.mark.asyncio
async def test_chat_stream_passes_extra_kwargs(self):
"""Extra kwargs are forwarded to AsyncWebClient.chat_stream()."""
client = MagicMock(spec=AsyncWebClient)
client.chat_stream, call_tracker, _ = _make_async_chat_stream_mock()
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
thread_ts="1234567890.123456",
team_id="T111",
user_id="W222",
)
await agent.chat_stream(buffer_size=512)
call_tracker.assert_called_once_with(
channel="C111",
thread_ts="1234567890.123456",
recipient_team_id="T111",
recipient_user_id="W222",
buffer_size=512,
)
@pytest.mark.asyncio
async def test_chat_stream_falls_back_to_ts(self):
"""When thread_ts is not set, chat_stream() falls back to ts."""
client = MagicMock(spec=AsyncWebClient)
client.chat_stream, call_tracker, _ = _make_async_chat_stream_mock()
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
team_id="T111",
ts="1111111111.111111",
user_id="W222",
)
stream = await agent.chat_stream()
call_tracker.assert_called_once_with(
channel="C111",
thread_ts="1111111111.111111",
recipient_team_id="T111",
recipient_user_id="W222",
)
assert stream is not None
@pytest.mark.asyncio
async def test_chat_stream_prefers_thread_ts_over_ts(self):
"""thread_ts takes priority over ts."""
client = MagicMock(spec=AsyncWebClient)
client.chat_stream, call_tracker, _ = _make_async_chat_stream_mock()
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
team_id="T111",
thread_ts="1234567890.123456",
ts="1111111111.111111",
user_id="W222",
)
stream = await agent.chat_stream()
call_tracker.assert_called_once_with(
channel="C111",
thread_ts="1234567890.123456",
recipient_team_id="T111",
recipient_user_id="W222",
)
assert stream is not None
@pytest.mark.asyncio
async def test_set_status_uses_context_defaults(self):
"""AsyncBoltAgent.set_status() passes context defaults to AsyncWebClient.assistant_threads_setStatus()."""
client = MagicMock(spec=AsyncWebClient)
client.assistant_threads_setStatus, call_tracker, _ = _make_async_api_mock()
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
thread_ts="1234567890.123456",
team_id="T111",
user_id="W222",
)
await agent.set_status(status="Thinking...")
call_tracker.assert_called_once_with(
channel_id="C111",
thread_ts="1234567890.123456",
status="Thinking...",
loading_messages=None,
)
@pytest.mark.asyncio
async def test_set_status_with_loading_messages(self):
"""AsyncBoltAgent.set_status() forwards loading_messages."""
client = MagicMock(spec=AsyncWebClient)
client.assistant_threads_setStatus, call_tracker, _ = _make_async_api_mock()
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
thread_ts="1234567890.123456",
team_id="T111",
user_id="W222",
)
await agent.set_status(
status="Thinking...",
loading_messages=["Sitting...", "Waiting..."],
)
call_tracker.assert_called_once_with(
channel_id="C111",
thread_ts="1234567890.123456",
status="Thinking...",
loading_messages=["Sitting...", "Waiting..."],
)
@pytest.mark.asyncio
async def test_set_status_overrides_context_defaults(self):
"""Explicit channel_id/thread_ts override context defaults."""
client = MagicMock(spec=AsyncWebClient)
client.assistant_threads_setStatus, call_tracker, _ = _make_async_api_mock()
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
thread_ts="1234567890.123456",
team_id="T111",
user_id="W222",
)
await agent.set_status(
status="Thinking...",
channel_id="C999",
thread_ts="9999999999.999999",
)
call_tracker.assert_called_once_with(
channel_id="C999",
thread_ts="9999999999.999999",
status="Thinking...",
loading_messages=None,
)
@pytest.mark.asyncio
async def test_set_status_passes_extra_kwargs(self):
"""Extra kwargs are forwarded to AsyncWebClient.assistant_threads_setStatus()."""
client = MagicMock(spec=AsyncWebClient)
client.assistant_threads_setStatus, call_tracker, _ = _make_async_api_mock()
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
thread_ts="1234567890.123456",
team_id="T111",
user_id="W222",
)
await agent.set_status(status="Thinking...", token="xoxb-override")
call_tracker.assert_called_once_with(
channel_id="C111",
thread_ts="1234567890.123456",
status="Thinking...",
loading_messages=None,
token="xoxb-override",
)
@pytest.mark.asyncio
async def test_set_status_requires_status(self):
"""set_status() raises TypeError when status is not provided."""
client = MagicMock(spec=AsyncWebClient)
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
thread_ts="1234567890.123456",
team_id="T111",
user_id="W222",
)
with pytest.raises(TypeError):
await agent.set_status()
@pytest.mark.asyncio
async def test_set_suggested_prompts_uses_context_defaults(self):
"""AsyncBoltAgent.set_suggested_prompts() passes context defaults to AsyncWebClient.assistant_threads_setSuggestedPrompts()."""
client = MagicMock(spec=AsyncWebClient)
client.assistant_threads_setSuggestedPrompts, call_tracker, _ = _make_async_api_mock()
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
thread_ts="1234567890.123456",
team_id="T111",
user_id="W222",
)
await agent.set_suggested_prompts(prompts=["What can you do?", "Help me write code"])
call_tracker.assert_called_once_with(
channel_id="C111",
thread_ts="1234567890.123456",
prompts=[
{"title": "What can you do?", "message": "What can you do?"},
{"title": "Help me write code", "message": "Help me write code"},
],
title=None,
)
@pytest.mark.asyncio
async def test_set_suggested_prompts_with_dict_prompts(self):
"""AsyncBoltAgent.set_suggested_prompts() accepts dict prompts with title and message."""
client = MagicMock(spec=AsyncWebClient)
client.assistant_threads_setSuggestedPrompts, call_tracker, _ = _make_async_api_mock()
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
thread_ts="1234567890.123456",
team_id="T111",
user_id="W222",
)
await agent.set_suggested_prompts(
prompts=[
{"title": "Short title", "message": "A much longer message for this prompt"},
],
title="Suggestions",
)
call_tracker.assert_called_once_with(
channel_id="C111",
thread_ts="1234567890.123456",
prompts=[
{"title": "Short title", "message": "A much longer message for this prompt"},
],
title="Suggestions",
)
@pytest.mark.asyncio
async def test_set_suggested_prompts_overrides_context_defaults(self):
"""Explicit channel_id/thread_ts override context defaults."""
client = MagicMock(spec=AsyncWebClient)
client.assistant_threads_setSuggestedPrompts, call_tracker, _ = _make_async_api_mock()
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
thread_ts="1234567890.123456",
team_id="T111",
user_id="W222",
)
await agent.set_suggested_prompts(
prompts=["Hello"],
channel_id="C999",
thread_ts="9999999999.999999",
)
call_tracker.assert_called_once_with(
channel_id="C999",
thread_ts="9999999999.999999",
prompts=[{"title": "Hello", "message": "Hello"}],
title=None,
)
@pytest.mark.asyncio
async def test_set_suggested_prompts_passes_extra_kwargs(self):
"""Extra kwargs are forwarded to AsyncWebClient.assistant_threads_setSuggestedPrompts()."""
client = MagicMock(spec=AsyncWebClient)
client.assistant_threads_setSuggestedPrompts, call_tracker, _ = _make_async_api_mock()
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
thread_ts="1234567890.123456",
team_id="T111",
user_id="W222",
)
await agent.set_suggested_prompts(prompts=["Hello"], token="xoxb-override")
call_tracker.assert_called_once_with(
channel_id="C111",
thread_ts="1234567890.123456",
prompts=[{"title": "Hello", "message": "Hello"}],
title=None,
token="xoxb-override",
)
@pytest.mark.asyncio
async def test_set_suggested_prompts_requires_prompts(self):
"""set_suggested_prompts() raises TypeError when prompts is not provided."""
client = MagicMock(spec=AsyncWebClient)
agent = AsyncBoltAgent(
client=client,
channel_id="C111",
thread_ts="1234567890.123456",
team_id="T111",
user_id="W222",
)
with pytest.raises(TypeError):
await agent.set_suggested_prompts()
@pytest.mark.asyncio
async def test_import_from_agent_module(self):
from slack_bolt.agent.async_agent import AsyncBoltAgent as ImportedAsyncBoltAgent
assert ImportedAsyncBoltAgent is AsyncBoltAgent