-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
Copy pathtest_generator.py
443 lines (364 loc) · 11.1 KB
/
test_generator.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
import textwrap
from typing import Text
import pytest
from rasa.core.nlg.generator import ResponseVariationFilter
from rasa.shared.core.domain import Domain
from rasa.shared.core.events import UserUttered
from rasa.shared.core.slots import TextSlot
from rasa.shared.core.trackers import DialogueStateTracker
def test_response_variation_filter_get_response_variation_id_interpolated_crv() -> None:
"""Test that the correct response variation id is retrieved.
The test uses a conditional response variation with an interpolated slot value.
"""
# Arrange
utter_action = "utter_greet"
name_slot = TextSlot(
name="name", mappings=[{}], initial_value="Bob", influence_conversation=False
)
logged_in_slot = TextSlot(
name="logged_in",
mappings=[{}],
initial_value=True,
influence_conversation=False,
)
tracker = DialogueStateTracker.from_events(
sender_id="interpolated_crv",
evts=[UserUttered("Hello")],
slots=[name_slot, logged_in_slot],
)
output_channel = "default"
domain = Domain.load("data/test_nlg/domain_with_response_ids.yml")
response_variation_filter = ResponseVariationFilter(domain.responses)
# Act
response_variation_id = response_variation_filter.get_response_variation_id(
utter_action, tracker, output_channel
)
# Assert
assert response_variation_id == "ID_2"
def test_response_variation_filter_get_response_id_default_variation() -> None:
# Arrange
utter_action = "utter_greet"
tracker = DialogueStateTracker.from_events(
sender_id="default_variation", evts=[UserUttered("Hello")], slots=[]
)
output_channel = "default"
domain = Domain.load("data/test_nlg/domain_with_response_ids.yml")
response_variation_filter = ResponseVariationFilter(domain.responses)
# Act
response_variation_id = response_variation_filter.get_response_variation_id(
utter_action, tracker, output_channel
)
# Assert
assert response_variation_id == "ID_1"
def test_response_variation_filter_get_response_id_multiple_conditions() -> None:
"""Test that the first response variation id is retrieved if multiple conditions are met.""" # noqa: E501
# Arrange
utter_action = "utter_greet"
membership_slot = TextSlot(
name="membership",
mappings=[{}],
initial_value="gold",
influence_conversation=False,
)
logged_in_slot = TextSlot(
name="logged_in",
mappings=[{}],
initial_value=True,
influence_conversation=False,
)
tracker = DialogueStateTracker.from_events(
sender_id="multiple_conditions",
evts=[UserUttered("Hello")],
slots=[membership_slot, logged_in_slot],
)
output_channel = "default"
domain_yaml = textwrap.dedent(
"""
version: "3.1"
intents:
- greet
slots:
membership:
type: text
mappings:
- type: custom
logged_in:
type: bool
influence_conversation: false
mappings:
- type: custom
responses:
utter_greet:
- text: "Hello"
id: "ID_0"
- text: "Hello valued customer!"
id: "ID_1"
condition:
- type: slot
name: membership
value: gold
- text: "Welcome back!"
id: "ID_2"
condition:
- type: slot
name: logged_in
value: true
"""
)
domain = Domain.from_yaml(domain_yaml)
response_variation_filter = ResponseVariationFilter(domain.responses)
# Act
response_variation_id = response_variation_filter.get_response_variation_id(
utter_action, tracker, output_channel
)
# Assert
assert response_variation_id == "ID_1"
def test_response_variation_filter_get_response_id_chained_conditions() -> None:
# Arrange
utter_action = "utter_greet"
membership_slot = TextSlot(
name="membership",
mappings=[{}],
initial_value="gold",
influence_conversation=False,
)
logged_in_slot = TextSlot(
name="logged_in",
mappings=[{}],
initial_value=True,
influence_conversation=False,
)
tracker = DialogueStateTracker.from_events(
sender_id="chained_conditions",
evts=[UserUttered("Hello")],
slots=[membership_slot, logged_in_slot],
)
output_channel = "default"
domain_yaml = textwrap.dedent(
"""
version: "3.1"
intents:
- greet
slots:
membership:
type: text
mappings:
- type: custom
logged_in:
type: bool
influence_conversation: false
mappings:
- type: custom
responses:
utter_greet:
- text: "Hello"
id: "ID_0"
- text: "Welcome back!"
id: "ID_1"
condition:
- type: slot
name: logged_in
value: true
- type: slot
name: membership
value: gold
"""
)
domain = Domain.from_yaml(domain_yaml)
response_variation_filter = ResponseVariationFilter(domain.responses)
# Act
response_variation_id = response_variation_filter.get_response_variation_id(
utter_action, tracker, output_channel
)
# Assert
assert response_variation_id == "ID_1"
def test_response_variation_filter_get_response_id_with_channels() -> None:
# Arrange
utter_action = "utter_greet"
membership_slot = TextSlot(
name="membership",
mappings=[{}],
initial_value="gold",
influence_conversation=False,
)
tracker = DialogueStateTracker.from_events(
sender_id="crv_channel", evts=[UserUttered("Hello")], slots=[membership_slot]
)
domain_yaml = textwrap.dedent(
"""
version: "3.1"
intents:
- greet
slots:
membership:
type: text
mappings:
- type: custom
logged_in:
type: bool
influence_conversation: false
mappings:
- type: custom
responses:
utter_greet:
- text: "How can I help you today?"
id: "ID_0"
- text: ""
id: "ID_1"
condition:
- type: slot
name: membership
value: gold
channel: app
- text: ""
id: "ID_2"
condition:
- type: slot
name: membership
value: gold
channel: web
"""
)
domain = Domain.from_yaml(domain_yaml)
response_variation_filter = ResponseVariationFilter(domain.responses)
# Act
response_variation_id = response_variation_filter.get_response_variation_id(
utter_action, tracker, output_channel="app"
)
# Assert
assert response_variation_id == "ID_1"
# Act
response_variation_id = response_variation_filter.get_response_variation_id(
utter_action, tracker, output_channel="web"
)
# Assert
assert response_variation_id == "ID_2"
# Act
response_variation_id = response_variation_filter.get_response_variation_id(
utter_action, tracker, output_channel="default"
)
# Assert
assert response_variation_id == "ID_0"
@pytest.mark.parametrize(
"initial_value, output_channel, expected_id",
[
("gold", "app", "ID_1"),
("silver", "app", "ID_2"),
("bronze", "default", "ID_3"),
("gold", "default", "ID_4"),
],
)
def test_response_variation_filter_get_response_id_edge_cases(
initial_value: Text, output_channel: Text, expected_id: Text
) -> None:
# Arrange
utter_action = "utter_greet"
membership_slot = TextSlot(
name="membership",
mappings=[{}],
initial_value=initial_value,
influence_conversation=False,
)
tracker = DialogueStateTracker.from_events(
sender_id="edge_cases", evts=[UserUttered("Hello")], slots=[membership_slot]
)
domain_yaml = textwrap.dedent(
"""
version: "3.1"
intents:
- greet
slots:
membership:
type: text
mappings:
- type: custom
logged_in:
type: bool
influence_conversation: false
mappings:
- type: custom
responses:
utter_greet:
- text: "How can I help you today?"
id: "ID_0"
- text: ""
id: "ID_1"
condition:
- type: slot
name: membership
value: gold
channel: app
- text: ""
id: "ID_2"
condition:
- type: slot
name: membership
value: silver
channel: app
- text: ""
id: "ID_3"
condition:
- type: slot
name: membership
value: bronze
- text: ""
id: "ID_4"
condition:
- type: slot
name: membership
value: gold
"""
)
domain = Domain.from_yaml(domain_yaml)
response_variation_filter = ResponseVariationFilter(domain.responses)
# Act
response_variation_id = response_variation_filter.get_response_variation_id(
utter_action, tracker, output_channel=output_channel
)
# Assert
assert response_variation_id == expected_id
def test_response_variation_filter_raises_exception_duplicate_ids() -> None:
# Arrange
utter_action = "utter_greet"
membership_slot = TextSlot(
name="membership",
mappings=[{}],
initial_value="gold",
influence_conversation=False,
)
tracker = DialogueStateTracker.from_events(
sender_id="duplicate_ids", evts=[UserUttered("Hello")], slots=[membership_slot]
)
domain_yaml = textwrap.dedent(
"""
version: "3.1"
intents:
- greet
slots:
membership:
type: text
mappings:
- type: custom
logged_in:
type: bool
influence_conversation: false
mappings:
- type: custom
responses:
utter_greet:
- text: "How can I help you today?"
id: "ID_0"
- text: ""
id: "ID_1"
- text: ""
id: "ID_1"
"""
)
domain = Domain.from_yaml(domain_yaml)
response_variation_filter = ResponseVariationFilter(domain.responses)
expected_message = "Duplicate response id 'ID_1' defined in the domain."
with pytest.warns(UserWarning, match=expected_message):
result = response_variation_filter.get_response_variation_id(
utter_action, tracker, output_channel="app"
)
assert result is None