-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_api.py
More file actions
284 lines (273 loc) · 11 KB
/
test_api.py
File metadata and controls
284 lines (273 loc) · 11 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
import unittest
from polyapi.api import render_api_function
from polyapi.utils import to_func_namespace
ACCUWEATHER = {
"id": "f7588018-2364-4586-b60d",
"name": "accuweatherGetlocation",
"context": "",
"description": "",
"type": "apiFunction",
"function": {
"arguments": [
{
"name": "locationId",
"description": "",
"type": {"kind": "primitive", "type": "integer"},
"required": True,
},
{
"name": "AAPIKey",
"description": "",
"type": {"kind": "primitive", "type": "string"},
"required": True,
},
],
"returnType": {"kind": "void"},
},
}
ZILLOW = {
"id": "1231234",
"name": "zillowGetLocation",
"context": "",
"description": "",
"type": "apiFunction",
"function": {
"arguments": [
{
"name": "locationId",
"description": "",
"type": {"kind": "primitive", "type": "integer"},
"required": True,
},
{
"name": "AAPIKey",
"description": "",
"type": {"kind": "primitive", "type": "string"},
"required": True,
},
],
"returnType": {"kind": "primitive", "type": "string"},
},
}
TWILIO = {
"id": "1203t8j342",
"type": "apiFunction",
"context": "twilio.conversations.messages",
"name": "get",
"description": "This API call retrieves messages from a specific conversation in Twilio. The messages are returned in descending order. The response includes message details such as body, author, date updated, and more. For more details: https://www.twilio.com/docs/conversations/api/conversation-message-resource#list-all-conversation-messages",
"function": {
"arguments": [
{
"name": "conversationSID",
"description": "This is a string that represents the unique identifier of the specific conversation from which messages are to be retrieved.",
"required": True,
"type": {"kind": "primitive", "type": "string"},
},
{
"name": "authToken",
"description": "",
"required": True,
"type": {"kind": "primitive", "type": "string"},
},
],
"returnType": {
"kind": "object",
"schema": {
"$schema": "http://json-schema.org/draft-06/schema#",
"definitions": {
"Message": {
"type": "object",
"additionalProperties": False,
"properties": {
"index": {"type": "integer"},
"date_updated": {
"type": "string",
"format": "date-time",
},
"media": {"type": "null"},
"participant_sid": {"type": "null"},
"delivery": {"type": "null"},
"url": {
"type": "string",
"format": "uri",
"qt-uri-protocols": ["https"],
},
"date_created": {
"type": "string",
"format": "date-time",
},
"content_sid": {
"anyOf": [{"type": "null"}, {"type": "string"}]
},
"sid": {"type": "string"},
"Attributes": {
"type": "string",
"enum": ["{'key':'value'}", "{}"],
"title": "Attributes",
},
},
}
},
"type": "object",
"properties": {
"messages": {
"type": "array",
"items": {"$ref": "#/definitions/Message"},
}
},
"required": ["messages"],
"title": "ResponseType",
},
},
},
}
TWILIO_GET_DETAILS = {
"id": "123abcde",
"type": "apiFunction",
"context": "OOB.twilio.messages",
"name": "getDetails",
"description": "Retrieves a message from a specific Twilio account. The API call includes parameters for the 'to' and 'from' phone numbers, and the date the message was sent. For more details: https://www.twilio.com/docs/sms/api/message-resource#fetch-a-message-resource",
"function": {
"arguments": [
{
"name": "accountSID",
"description": "This is a unique identifier for the Twilio account from which the message is to be retrieved. It is a string that acts as an authentication token, ensuring that the user has the necessary permissions to access the desired information.",
"required": True,
"type": {"kind": "primitive", "type": "string"},
},
{
"name": "messageSID",
"description": "This is a unique identifier for the specific message that is to be retrieved. It is a string that Twilio uses to track and manage every individual message that is sent or received through their platform.",
"required": True,
"type": {"kind": "primitive", "type": "string"},
},
{
"name": "authToken",
"description": "",
"required": True,
"type": {"kind": "primitive", "type": "string"},
},
],
"returnType": {
"kind": "object",
"schema": {
"$schema": "http://json-schema.org/draft-06/schema#",
"definitions": {
"SubresourceUris": {
"type": "object",
"additionalProperties": False,
"properties": {
"media": {"type": "string"},
"feedback": {"type": "string"},
},
"required": ["feedback", "media"],
"title": "SubresourceUris",
}
},
"type": "object",
"additionalProperties": False,
"properties": {
"body": {"type": "string"},
"num_segments": {"type": "string", "format": "integer"},
"direction": {"type": "string"},
"from": {"type": "string"},
"date_updated": {"type": "string"},
"price": {"type": "string"},
"error_message": {"type": "null"},
"uri": {"type": "string"},
"account_sid": {"type": "string"},
"num_media": {"type": "string", "format": "integer"},
"to": {"type": "string"},
"date_created": {"type": "string"},
"status": {"type": "string"},
"sid": {"type": "string"},
"date_sent": {"type": "string"},
"messaging_service_sid": {"type": "null"},
"error_code": {"type": "null"},
"price_unit": {"type": "string"},
"api_version": {"type": "string", "format": "date"},
"subresource_uris": {"$ref": "#/definitions/SubresourceUris"},
},
"required": [
"account_sid",
"api_version",
"body",
"date_created",
"date_sent",
"date_updated",
"direction",
"error_code",
"error_message",
"from",
"messaging_service_sid",
"num_media",
"num_segments",
"price",
"price_unit",
"sid",
"status",
"subresource_uris",
"to",
"uri",
],
"title": "ResponseType",
},
},
},
}
class T(unittest.TestCase):
def test_render_function_accuweather(self):
name = ACCUWEATHER["name"]
func_str, _ = render_api_function(
ACCUWEATHER["type"],
name,
ACCUWEATHER["id"],
ACCUWEATHER["description"],
ACCUWEATHER["function"]["arguments"],
ACCUWEATHER["function"]["returnType"],
)
self.assertIn(ACCUWEATHER["id"], func_str)
self.assertIn("locationId: int,", func_str)
self.assertIn(f"-> {to_func_namespace(name)}.{name}Response", func_str)
def test_render_function_zillow(self):
name = ZILLOW["name"]
func_str, _ = render_api_function(
ZILLOW["type"],
name,
ZILLOW["id"],
ZILLOW["description"],
ZILLOW["function"]["arguments"],
ZILLOW["function"]["returnType"],
)
self.assertIn(ZILLOW["id"], func_str)
self.assertIn("locationId: int,", func_str)
self.assertIn(f"-> {to_func_namespace(name)}.{name}Response", func_str)
def test_render_function_twilio_api(self):
name = TWILIO["name"]
func_str, _ = render_api_function(
TWILIO["type"],
TWILIO["name"],
TWILIO["id"],
TWILIO["description"],
TWILIO["function"]["arguments"],
TWILIO["function"]["returnType"],
)
self.assertIn(TWILIO["id"], func_str)
self.assertIn("conversationSID: str", func_str)
self.assertIn("authToken: str", func_str)
self.assertIn(f"-> {to_func_namespace(name)}.{name}Response", func_str)
def test_render_function_twilio_get_details(self):
# same test but try it as a serverFunction rather than an apiFunction
name = TWILIO_GET_DETAILS["name"]
func_str, func_type_defs = render_api_function(
TWILIO_GET_DETAILS["type"],
TWILIO_GET_DETAILS["name"],
TWILIO_GET_DETAILS["id"],
TWILIO_GET_DETAILS["description"],
TWILIO_GET_DETAILS["function"]["arguments"],
TWILIO_GET_DETAILS["function"]["returnType"],
)
self.assertIn(TWILIO_GET_DETAILS["id"], func_str)
self.assertIn(f"-> {to_func_namespace(name)}.{name}Response", func_str)
self.assertIn("class SubresourceUris", func_type_defs)
# self.assertIn('Required["SubresourceUris"]', func_type_defs)