-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtest_questions_bot.py
229 lines (174 loc) · 6.81 KB
/
test_questions_bot.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
import asyncio
import os
import pytest
import pytest_asyncio
# Prevent Utils from importing dev_secrets by default
os.environ["ENV"] = "test"
from forest.core import Message, run_bot, Response
from forest import core
from tests.mockbot import MockBot, Tree, QuestionBot
# Sample bot number alice
BOT_NUMBER = "+11111111111"
USER_NUMBER = "+22222222222"
# class TestBot(QuestionBot):
class TestBot(MockBot):
"""Bot that has tests for every type of question"""
# async def do_test_ask_multiple(self, message:Message) -> None:
async def do_test_ask_yesno_question(self, message: Message) -> Response:
"""Asks a sample Yes or No question"""
if await self.ask_yesno_question(
(message.uuid, message.group), "Do you like faeries?"
):
return "That's cool, me too!"
return "Aww :c"
async def do_test_multiple_choice_list_no_confirm(
self, message: Message
) -> Response:
"""Asks a Sample Multiple Choice question with list and no confirmation"""
question_text = "What is your favourite forest creature?"
options = ["Deer", "Foxes", "Faeries", "Crows"]
choice = await self.ask_multiple_choice_question(
(message.uuid, message.group),
question_text,
options,
require_confirmation=False,
)
if choice and choice == "Faeries":
return "Faeries are my favourite too c:"
if choice:
return f"I think {choice} are super neat too!"
return "oops, sorry"
async def do_test_multiple_choice_list_with_confirm(
self, message: Message
) -> Response:
"""Asks a Sample Multiple Choice question with list and confirmation"""
question_text = "What is your favourite forest creature?"
options = ["Deer", "Foxes", "Faeries", "Crows"]
choice = await self.ask_multiple_choice_question(
(message.uuid, message.group), question_text, options
)
if choice and choice == "Faeries":
return "Faeries are my favourite too c:"
if choice:
return f"I think {choice} are super neat too!"
return "oops, sorry"
async def do_test_multiple_choice_dict_with_confirm(
self, message: Message
) -> Response:
"""Asks a Sample Multiple Choice question with dict and confirmation"""
question_text = "What is your favourite forest creature?"
options = {"A": "Deer", "B": "Foxes", "⛧": "Faeries", "D": "Crows"}
choice = await self.ask_multiple_choice_question(
(message.uuid, message.group),
question_text,
options,
require_confirmation=True,
)
if choice and choice == "Faeries":
return "Faeries are my favourite too c:"
if choice:
return f"I think {choice} are super neat too!"
return "oops, sorry"
async def do_test_multiple_choice_dict_no_confirm(
self, message: Message
) -> Response:
"""Asks a Sample Multiple Choice question with a dict and no confirmation"""
question_text = "What is your favourite forest creature?"
options = {"A": "Deer", "B": "Foxes", "⛧": "Faeries", "D": "Crows"}
choice = await self.ask_multiple_choice_question(
(message.uuid, message.group),
question_text,
options,
require_confirmation=False,
)
if choice and choice == "Faeries":
return "Faeries are my favourite too c:"
if choice:
return f"I think {choice} are super neat too!"
return "oops, sorry"
async def do_test_multiple_choice_dict_emptyval(self, message: Message) -> Response:
"""Asks a Sample Multiple Choice question with a dict with empty values"""
question_text = "What is your tshirt size?"
options = {"S": "", "M": "", "L": "", "XL": "", "XXL": ""}
choice = await self.ask_multiple_choice_question(
(message.uuid, message.group),
question_text,
options,
require_confirmation=True,
)
if choice:
return choice
return "oops, sorry"
async def do_test_multiple_choice_dict_mostly_emptyval(
self, message: Message
) -> Response:
"""Asks a Sample Multiple Choice question with a dict with mostly empty values"""
question_text = "What is your tshirt size?"
options = {"S": "", "M": "M", "L": "", "XL": "", "XXL": ""}
choice = await self.ask_multiple_choice_question(
(message.uuid, message.group),
question_text,
options,
require_confirmation=True,
)
if choice:
return choice
return "oops, sorry"
async def do_test_address_question_no_confirmation(
self, message: Message
) -> Response:
"""Asks a sample address question"""
address = await self.ask_address_question((message.uuid, message.group))
if address:
return address
return "oops, sorry"
async def do_test_address_question_with_confirmation(
self, message: Message
) -> Response:
"""Asks a sample address question"""
address = await self.ask_address_question(
(message.uuid, message.group), require_confirmation=True
)
if address:
return address
return "oops, sorry"
async def do_test_ask_freeform_question(self, message: Message) -> Response:
"""Asks a sample freeform question"""
answer = await self.ask_freeform_question(
(message.uuid, message.group), "What's your favourite tree?"
)
if answer:
return f"No way! I love {answer} too!!"
return "oops, sorry"
@pytest_asyncio.fixture()
async def bot():
"""Bot Fixture allows for exiting gracefully"""
bot = TestBot(BOT_NUMBER)
yield bot
bot.sigints += 1
bot.exiting = True
bot.handle_messages_task.cancel()
await bot.client_session.close()
await core.pghelp.pool.close()
@pytest.mark.asyncio
async def test_dialog(bot) -> None:
"""Tests the bot by running a dialogue"""
dialogue = [
["test_ask_yesno_question", "Do you like faeries?"],
["yes", "That's cool, me too!"],
]
for line in dialogue:
assert await bot.get_cmd_output(line[0]) == line[1]
@pytest.mark.asyncio
async def test_yesno_tree(bot) -> None:
"""Tests the bot by running a tree"""
tree = Tree(
["test_ask_yesno_question", "Do you like faeries?"],
[Tree(["yes", "That's cool, me too!"]), Tree(["no", "Aww :c"])],
)
tests = tree.get_all_paths()
for test in tests:
for subtest in test:
assert await bot.get_cmd_output(subtest[0]) == subtest[1]
if __name__ == "__main__":
run_bot(TestBot)