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