-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdismockgen_config.yml
More file actions
527 lines (481 loc) · 15.3 KB
/
dismockgen_config.yml
File metadata and controls
527 lines (481 loc) · 15.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
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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
# In this file all methods that need custom handling are listed.
#
# To add a method to this list, add an entry using the name of the method
# to the section with the corresponding file name. Methods are listed in the
# order they appear in the file.
#
# Below are the options, that can be applied to each method:
#
# exclude
#
# exclude may be set to true, in which case no mock function will be generated
# for the method.
#
# It cannot be combined with other options.
#
# infer_params
#
# infer_params is a list of parameters of the method, that can be inferred from
# struct returned by that method. Any parameter that appears in that list will
# be omitted from the mock function's signature.
#
# Each item in the list hast the following required fields:
#
# infer: The name of the parameter whose value can be inferred.
# from: The dot-separated path to the value to infer from. It will format as
# 'foo.{{from}}', so from could be the name of a Field, or even a slice
# getter expression, e.g. 'Foo.Bar[0]'.
#
# Example: For an api.Client method with the signature
# func (*Client) Foo(
# guildID discord.GuildID, channelID discord.ChannelID,
# ) (*discord.Foo, error)
# where discord.Foo is defined as
# type Foo struct {
# BarID discord.GuildID
# }
# and discord.Foo.BarID is the same id as the guildID parameter supplied to
# api.Client.Foo, one could write in this config
# Foo:
# infer_params:
# - infer: guildID
# from: BarID
# to omit the guildID parameter from the generated mock function, and instead
# infer its value from the discord.Foo struct given to the mock function.
#
# url_params
#
# url_params is a list of url query parameters that must be present in the
# request url. They can either be static, or constructed from parameters given
# to the method.
#
# Note, however, that url_params cannot be used for methods that already send
# url query parameters using a data struct.
#
# Each item in the list has the following fields:
#
# param: The name of the parameter that the query parameter's value will
# be derived from.
# name: The name (key) of the query parameter. If param is set, this will
# default to the snake_case version of param. Otherwise, name is
# required.
# type: The go type of the url parameter. It must be a go primitive,
# or a slice thereof, the only exception is complex.
# If param is set, the type will automatically be inferred from the
# parameter param corresponds to.
# omitempty: If set to true, the query parameter will be expected to be
# omitted, if empty. For the definition of empty, refer to
# github.com/gorilla/schema.
# val: A go text/template used to generate the value of the query
# parameter. Variables available via the dot-syntax are 'Param' and
# 'Var'.
# Param is the name of the parameter. Prefer this variable over a
# literal, as it takes into account inferred parameters.
# Var is the name of the go variable the query parameter will be
# stored in.
# If you don't use {{.Var}} in the template, the resolved value of
# val will be used to fill the {{.Var}}.
# If you do use {{.Var}}, you can write a full block of code in
# which you must set the variable yourself.
#
# json_body
#
# json_body is a list of json object fields that must be present in the body.
# They can either be static, or constructed from parameters given to the
# method.
#
# Note, however, that json_body cannot be used for methods that already send a
# json body using a data struct.
#
# Each item in the list has the following fields:
#
# param: The name of the parameter that the field's value will be derived
# from.
# name: The name (key) of the field. If param is set, this will default
# to the snake_case version of param. Otherwise, it is required.
# type: The go type of the field.
# If param is set, the type will automatically be inferred from
# the parameter param corresponds to.
# omitempty: If set to true, the field will be expected to be omitted, if
# empty. For the definition of empty, refer to encoding/json.
# val: A go text/template used to generate the value of the field.
# Variables available via the dot-syntax are 'Param' and 'Var'.
# Param is the name of the parameter. Prefer this variable over a
# literal, as it takes into account inferred parameters.
# Var is the name of the go variable the query parameter will be
# stored in.
# If you don't use {{.Var}} in the template, the resolved value
# of val will be used to fill the {{.Var}}.
# If you do use {{.Var}}, you can write a full block of code in
# which you must set the var yourself.
#
# wrapped_response
#
# The wrapped_response option can be used if Discord sends their response
# wrapped in a single field json object, and the arikawa source method returns
# the value of that field instead of the object itself.
#
# To use it, set it to the name of the field.
#
# It cannot be combined with json_body.
################################################################################################
######################################## application.go ########################################
################################################################################################
Command:
infer_params:
- infer: appID
from: AppID
- infer: commandID
from: ID
CreateCommand:
infer_params:
- infer: appID
from: AppID
EditCommand:
infer_params:
- infer: appID
from: AppID
- infer: commandID
from: ID
GuildCommand:
infer_params:
- infer: appID
from: AppID
- infer: guildID
from: GuildID
- infer: commandID
from: ID
CreateGuildCommand:
infer_params:
- infer: appID
from: AppID
- infer: guildID
from: GuildID
EditGuildCommand:
infer_params:
- infer: appID
from: AppID
- infer: guildID
from: GuildID
- infer: commandID
from: ID
CommandPermissions:
infer_params:
- infer: appID
from: AppID
- infer: guildID
from: GuildID
- infer: commandID
from: ID
EditCommandPermissions:
infer_params:
- infer: appID
from: AppID
- infer: guildID
from: GuildID
- infer: commandID
from: ID
json_body:
- param: permissions
########################################################################################
######################################## bot.go ########################################
########################################################################################
BotURL:
exclude: true # no mock
GatewayURL:
exclude: true # no mock
############################################################################################
######################################## channel.go ########################################
############################################################################################
CreateChannel:
infer_params:
- infer: guildID
from: GuildID
Channel:
infer_params:
- infer: channelID
from: ID
AddRecipient:
json_body:
- param: accessToken
- param: nickname
Ack:
exclude: true # custom impl
StartThreadWithMessage:
infer_params:
- infer: channelID
from: ParentID
StartThreadWithoutMessage:
infer_params:
- infer: channelID
from: ParentID
PublicArchivedThreads:
url_params:
- param: before
type: string
omitempty: true
val: |
if {{.Param}}.IsValid() {
{{.Var}} = {{.Param}}.Format(discord.TimestampFormat)
}
- param: limit
omitempty: true
PrivateArchivedThreads:
url_params:
- param: before
type: string
omitempty: true
val: |
if {{.Param}}.IsValid() {
{{.Var}} = {{.Param}}.Format(discord.TimestampFormat)
}
- param: limit
omitempty: true
JoinedPrivateArchivedThreads:
url_params:
- param: before
type: string
omitempty: true
val: |
if {{.Param}}.IsValid() {
{{.Var}} = {{.Param}}.Format(discord.TimestampFormat)
}
- param: limit
omitempty: true
PublicArchivedThreadsBefore:
exclude: true
PrivateArchivedThreadsBefore:
exclude: true
JoinedPrivateArchivedThreadsBefore:
exclude: true
##########################################################################################
######################################## emoji.go ########################################
##########################################################################################
Emoji:
infer_params:
- infer: emojiID
from: ID
##########################################################################################
######################################## guild.go ########################################
##########################################################################################
Guild:
infer_params:
- infer: id
from: ID
GuildPreview:
infer_params:
- infer: id
from: ID
GuildWithCount:
url_params:
- name: with_counts
val: true
type: bool
infer_params:
- infer: id
from: ID
Guilds:
exclude: true
GuildsBefore:
exclude: true
GuildsAfter:
exclude: true
ModifyGuild:
infer_params:
- infer: id
from: ID
AttachIntegration:
json_body:
- param: integrationType
name: type
- param: integrationID
name: id
GuildWidgetImageURL:
exclude: true # not an api action
GuildWidgetImage:
exclude: true # custom impl in meta.go
################################################################################################
######################################## interaction.go ########################################
################################################################################################
RespondInteraction:
exclude: true
CreateInteractionFollowup:
exclude: true
FollowUpInteraction:
exclude: true
###########################################################################################
######################################## invite.go ########################################
###########################################################################################
Invite:
infer_params:
- infer: code
from: Code
InviteWithCounts:
url_params:
- name: with_counts
val: true
type: bool
infer_params:
- infer: code
from: Code
JoinInvite:
infer_params:
- infer: code
from: Code
DeleteInvite:
infer_params:
- infer: code
from: Code
##########################################################################################
######################################## login.go ########################################
##########################################################################################
Login:
json_body:
- param: email
- param: password
TOTP:
json_body:
- param: code
- param: ticket
###########################################################################################
######################################## member.go ########################################
###########################################################################################
Member:
infer_params:
- infer: userID
from: User.ID
Members:
exclude: true
MembersAfter:
exclude: true
AddMember:
infer_params:
- infer: userID
from: User.ID
PruneCount:
wrapped_response: pruned
Prune:
wrapped_response: pruned
GetBan:
infer_params:
- infer: userID
from: User.ID
############################################################################################
######################################## message.go ########################################
############################################################################################
Messages:
exclude: true
MessagesAround:
exclude: true
MessagesBefore:
exclude: true
MessagesAfter:
exclude: true
Message:
infer_params:
- infer: channelID
from: ChannelID
- infer: messageID
from: ID
SendTextReply:
exclude: true
SendEmbeds:
exclude: true
SendEmbedReply:
exclude: true
SendMessage:
exclude: true
SendMessageReply:
exclude: true
EditText:
exclude: true
EditEmbeds:
exclude: true
EditMessage:
exclude: true
EditMessageComplex:
exclude: true
DeleteMessages:
exclude: true
#####################################################################################################
######################################## message_reaction.go ########################################
#####################################################################################################
Unreact:
exclude: true
Reactions:
exclude: true
ReactionsBefore:
exclude: true
ReactionsAfter:
exclude: true
DeleteUserReaction:
exclude: true
#########################################################################################
######################################## role.go ########################################
#########################################################################################
ModifyRole:
infer_params:
- infer: roleID
from: ID
#########################################################################################
################################## scheduled_events.go ##################################
#########################################################################################
ListScheduledEventUsers:
url_params:
- param: limit
omitempty: true
- param: withMember
omitempty: true
- param: before
omitempty: true
- param: after
omitempty: true
ListScheduledEvents:
url_params:
- param: withUserCount
ScheduledEvent:
url_params:
- param: withUserCount
#########################################################################################
######################################## send.go ########################################
#########################################################################################
SendMessageComplex:
exclude: true
#########################################################################################
######################################## user.go ########################################
#########################################################################################
User:
infer_params:
- infer: userID
from: ID
ModifyCurrentMember:
json_body:
- param: nick
CreatePrivateChannel:
json_body:
- param: recipientID
infer_params:
- infer: recipientID
from: DMRecipients[0].ID
SetNote:
json_body:
- param: note
SetRelationship:
json_body:
- param: t
name: type
############################################################################################
######################################## webhook.go ########################################
############################################################################################
CreateWebhook:
infer_params:
- infer: channelID
from: ChannelID
Webhook:
infer_params:
- infer: webhookID
from: ID
ModifyWebhook:
infer_params:
- infer: webhookID
from: ID