-
Notifications
You must be signed in to change notification settings - Fork 0
/
response_builder_test.go
818 lines (744 loc) · 24.9 KB
/
response_builder_test.go
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
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
package router
import (
"bytes"
"context"
"testing"
"github.com/stretchr/testify/require"
"github.com/Postcord/objects"
"github.com/stretchr/testify/assert"
)
func Test_responseBuilder_ResponseData(t *testing.T) {
tests := []struct {
name string
data *objects.InteractionApplicationCommandCallbackData
}{
{
name: "nil data",
},
{
name: "not nil data",
data: &objects.InteractionApplicationCommandCallbackData{TTS: true},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
b := responseBuilder{dataPtr: tt.data}
respData := b.ResponseData()
if tt.data == nil {
assert.Equal(t, &objects.InteractionApplicationCommandCallbackData{}, respData)
} else {
assert.Equal(t, tt.data, respData)
}
})
}
}
func Test_responseBuilder_buildResponse(t *testing.T) {
tests := []struct {
name string
respType objects.ResponseType
data *objects.InteractionApplicationCommandCallbackData
component bool
globalAllowedMentions *objects.AllowedMentions
wantErr string
wantResponse *objects.InteractionResponse
}{
{
name: "no command response",
component: false,
wantErr: "expected data for command response",
},
{
name: "no component response",
component: true,
globalAllowedMentions: &objects.AllowedMentions{},
wantResponse: &objects.InteractionResponse{Type: objects.ResponseDeferredMessageUpdate},
},
{
name: "default command data",
component: false,
data: &objects.InteractionApplicationCommandCallbackData{},
globalAllowedMentions: &objects.AllowedMentions{},
wantResponse: &objects.InteractionResponse{
Type: objects.ResponseChannelMessageWithSource,
Data: &objects.InteractionApplicationCommandCallbackData{
AllowedMentions: &objects.AllowedMentions{},
},
},
},
{
name: "default component data",
component: true,
data: &objects.InteractionApplicationCommandCallbackData{},
globalAllowedMentions: &objects.AllowedMentions{},
wantResponse: &objects.InteractionResponse{
Type: objects.ResponseUpdateMessage,
Data: &objects.InteractionApplicationCommandCallbackData{
AllowedMentions: &objects.AllowedMentions{},
},
},
},
{
name: "override command type guess",
component: false,
respType: 69,
data: &objects.InteractionApplicationCommandCallbackData{},
wantResponse: &objects.InteractionResponse{
Type: 69,
Data: &objects.InteractionApplicationCommandCallbackData{},
},
},
{
name: "override component type guess",
component: true,
respType: 69,
data: &objects.InteractionApplicationCommandCallbackData{},
wantResponse: &objects.InteractionResponse{
Type: 69,
Data: &objects.InteractionApplicationCommandCallbackData{},
},
},
{
name: "full command",
component: false,
data: &objects.InteractionApplicationCommandCallbackData{
TTS: true,
Content: "testing testing 123",
Embeds: []*objects.Embed{
{
Title: "hello world",
},
},
AllowedMentions: &objects.AllowedMentions{
Parse: []string{"1"},
Roles: []objects.Snowflake{2},
Users: []objects.Snowflake{3},
RepliedUser: true,
},
Components: []*objects.Component{
{
Label: "test",
},
},
},
wantResponse: &objects.InteractionResponse{
Type: objects.ResponseChannelMessageWithSource,
Data: &objects.InteractionApplicationCommandCallbackData{
TTS: true,
Content: "testing testing 123",
Embeds: []*objects.Embed{
{
Title: "hello world",
},
},
AllowedMentions: &objects.AllowedMentions{
Parse: []string{"1"},
Roles: []objects.Snowflake{2},
Users: []objects.Snowflake{3},
RepliedUser: true,
},
Components: []*objects.Component{
{
Label: "test",
},
},
},
},
},
{
name: "full component",
component: true,
data: &objects.InteractionApplicationCommandCallbackData{
TTS: true,
Content: "testing testing 123",
Embeds: []*objects.Embed{
{
Title: "hello world",
},
},
AllowedMentions: &objects.AllowedMentions{
Parse: []string{"1"},
Roles: []objects.Snowflake{2},
Users: []objects.Snowflake{3},
RepliedUser: true,
},
Components: []*objects.Component{
{
Label: "test",
},
},
},
wantResponse: &objects.InteractionResponse{
Type: objects.ResponseUpdateMessage,
Data: &objects.InteractionApplicationCommandCallbackData{
TTS: true,
Content: "testing testing 123",
Embeds: []*objects.Embed{
{
Title: "hello world",
},
},
AllowedMentions: &objects.AllowedMentions{
Parse: []string{"1"},
Roles: []objects.Snowflake{2},
Users: []objects.Snowflake{3},
RepliedUser: true,
},
Components: []*objects.Component{
{
Label: "test",
},
},
},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Handle the error setter.
var err error
setError := func(e error) *objects.InteractionResponse {
// Set the error.
err = e
// Return nil because we will not care about the response here.
return nil
}
// Create the response builder and call the builder.
b := responseBuilder{respType: tt.respType, dataPtr: tt.data}
response := b.buildResponse(tt.component, setError, tt.globalAllowedMentions)
if tt.wantErr != "" {
assert.EqualError(t, err, tt.wantErr)
return
}
assert.NoError(t, err)
assert.Equal(t, tt.wantResponse, response)
})
}
}
func Test_responseBuilder_editEmbed(t *testing.T) {
tests := []struct {
name string
initEmbeds []*objects.Embed
embed *objects.Embed
append bool
expected []*objects.Embed
}{
{
name: "all nil",
expected: ([]*objects.Embed)(nil),
},
{
name: "non append",
initEmbeds: []*objects.Embed{{}},
embed: &objects.Embed{Description: "a"},
append: false,
expected: []*objects.Embed{{Description: "a"}},
},
{
name: "append",
initEmbeds: []*objects.Embed{{}},
embed: &objects.Embed{Description: "a"},
append: true,
expected: []*objects.Embed{{}, {Description: "a"}},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
b := responseBuilder{}
if tt.initEmbeds != nil {
b.ResponseData().Embeds = tt.initEmbeds
}
b.editEmbed(tt.embed, tt.append)
assert.Equal(t, tt.expected, b.ResponseData().Embeds)
})
}
}
func Test_responseBuilder_editComponent(t *testing.T) {
tests := []struct {
name string
initComponents []*objects.Component
component *objects.Component
append bool
expected []*objects.Component
}{
{
name: "all nil",
expected: ([]*objects.Component)(nil),
},
{
name: "non append",
initComponents: []*objects.Component{{}},
component: &objects.Component{Placeholder: "test"},
append: false,
expected: []*objects.Component{{Placeholder: "test"}},
},
{
name: "append",
initComponents: []*objects.Component{{}},
component: &objects.Component{Placeholder: "a"},
append: true,
expected: []*objects.Component{{}, {Placeholder: "a"}},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
b := responseBuilder{}
if tt.initComponents != nil {
b.ResponseData().Components = tt.initComponents
}
b.editComponent(tt.component, tt.append)
assert.Equal(t, tt.expected, b.ResponseData().Components)
})
}
}
func TestComponentRouterCtx_SetEmbed(t *testing.T) {
x := &ComponentRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetEmbed", &objects.Embed{Title: "a"}))
assert.Equal(t, x.responseBuilder.ResponseData().Embeds, []*objects.Embed{{Title: "a"}})
}
func TestCommandRouterCtx_SetEmbed(t *testing.T) {
x := &CommandRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetEmbed", &objects.Embed{Title: "a"}))
assert.Equal(t, x.responseBuilder.ResponseData().Embeds, []*objects.Embed{{Title: "a"}})
}
func TestModalRouterCtx_SetEmbed(t *testing.T) {
x := &ModalRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetEmbed", &objects.Embed{Title: "a"}))
assert.Equal(t, x.responseBuilder.ResponseData().Embeds, []*objects.Embed{{Title: "a"}})
}
func TestComponentRouterCtx_AddEmbed(t *testing.T) {
x := &ComponentRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AddEmbed", &objects.Embed{Title: "a"}))
assert.Equal(t, x.responseBuilder.ResponseData().Embeds, []*objects.Embed{{Title: "a"}})
}
func TestCommandRouterCtx_AddEmbed(t *testing.T) {
x := &CommandRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AddEmbed", &objects.Embed{Title: "a"}))
assert.Equal(t, x.responseBuilder.ResponseData().Embeds, []*objects.Embed{{Title: "a"}})
}
func TestModalRouterCtx_AddEmbed(t *testing.T) {
x := &ModalRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AddEmbed", &objects.Embed{Title: "a"}))
assert.Equal(t, x.responseBuilder.ResponseData().Embeds, []*objects.Embed{{Title: "a"}})
}
var multipleComponentRowsRaw = []*objects.Component{
{Type: objects.ComponentTypeActionRow, Components: []*objects.Component{{Label: "a"}}},
{Type: objects.ComponentTypeActionRow, Components: []*objects.Component{{Label: "b"}}},
}
func TestComponentRouterCtx_AddComponentRow(t *testing.T) {
x := &ComponentRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AddComponentRow", []*objects.Component{{Label: "a"}}))
assert.NoError(t, callBuilderFunction(t, x, false, "AddComponentRow", []*objects.Component{{Label: "b"}}))
assert.Equal(t, x.responseBuilder.ResponseData().Components, multipleComponentRowsRaw)
}
func TestCommandRouterCtx_AddComponentRow(t *testing.T) {
x := &CommandRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AddComponentRow", []*objects.Component{{Label: "a"}}))
assert.NoError(t, callBuilderFunction(t, x, false, "AddComponentRow", []*objects.Component{{Label: "b"}}))
assert.Equal(t, x.responseBuilder.ResponseData().Components, multipleComponentRowsRaw)
}
func TestModalRouterCtx_AddComponentRow(t *testing.T) {
x := &ModalRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AddComponentRow", []*objects.Component{{Label: "a"}}))
assert.NoError(t, callBuilderFunction(t, x, false, "AddComponentRow", []*objects.Component{{Label: "b"}}))
assert.Equal(t, x.responseBuilder.ResponseData().Components, multipleComponentRowsRaw)
}
var multipleComponentRows = [][]*objects.Component{
{{Label: "a"}},
{{Label: "b"}},
}
func TestComponentRouterCtx_SetComponentRows(t *testing.T) {
x := &ComponentRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AddComponentRow", []*objects.Component{{Label: "c"}}))
assert.NoError(t, callBuilderFunction(t, x, false, "SetComponentRows", multipleComponentRows))
assert.Equal(t, x.responseBuilder.ResponseData().Components, multipleComponentRowsRaw)
}
func TestCommandRouterCtx_SetComponentRows(t *testing.T) {
x := &CommandRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AddComponentRow", []*objects.Component{{Label: "c"}}))
assert.NoError(t, callBuilderFunction(t, x, false, "SetComponentRows", multipleComponentRows))
assert.Equal(t, x.responseBuilder.ResponseData().Components, multipleComponentRowsRaw)
}
func TestModalRouterCtx_SetComponentRows(t *testing.T) {
x := &ModalRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AddComponentRow", []*objects.Component{{Label: "c"}}))
assert.NoError(t, callBuilderFunction(t, x, false, "SetComponentRows", multipleComponentRows))
assert.Equal(t, x.responseBuilder.ResponseData().Components, multipleComponentRowsRaw)
}
func TestCommandRouterCtx_ClearComponents(t *testing.T) {
x := &CommandRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AddComponentRow", []*objects.Component{{Label: "a"}}))
assert.NoError(t, callBuilderFunction(t, x, false, "ClearComponents"))
assert.Equal(t, x.responseBuilder.ResponseData().Components, []*objects.Component{})
}
func TestComponentRouterCtx_ClearComponents(t *testing.T) {
x := &ComponentRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AddComponentRow", []*objects.Component{{Label: "a"}}))
assert.NoError(t, callBuilderFunction(t, x, false, "ClearComponents"))
assert.Equal(t, x.responseBuilder.ResponseData().Components, []*objects.Component{})
}
func TestModalRouterCtx_ClearComponents(t *testing.T) {
x := &ModalRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AddComponentRow", []*objects.Component{{Label: "a"}}))
assert.NoError(t, callBuilderFunction(t, x, false, "ClearComponents"))
assert.Equal(t, x.responseBuilder.ResponseData().Components, []*objects.Component{})
}
func TestCommandRouterCtx_SetContent(t *testing.T) {
x := &CommandRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetContent", "a"))
assert.Equal(t, x.responseBuilder.ResponseData().Content, "a")
}
func TestComponentRouterCtx_SetContent(t *testing.T) {
x := &ComponentRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetContent", "a"))
assert.Equal(t, x.responseBuilder.ResponseData().Content, "a")
}
func TestModalRouterCtx_SetContent(t *testing.T) {
x := &ModalRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetContent", "a"))
assert.Equal(t, x.responseBuilder.ResponseData().Content, "a")
}
func TestCommandRouterCtx_SetContentf(t *testing.T) {
x := &CommandRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetContentf", "hello %s", "world"))
assert.Equal(t, x.responseBuilder.ResponseData().Content, "hello world")
}
func TestComponentRouterCtx_SetContentf(t *testing.T) {
x := &ComponentRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetContentf", "hello %s", "world"))
assert.Equal(t, x.responseBuilder.ResponseData().Content, "hello world")
}
func TestModalRouterCtx_SetContentf(t *testing.T) {
x := &ModalRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetContentf", "hello %s", "world"))
assert.Equal(t, x.responseBuilder.ResponseData().Content, "hello world")
}
func TestCommandRouterCtx_SetAllowedMentions(t *testing.T) {
x := &CommandRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetAllowedMentions", &objects.AllowedMentions{Parse: []string{"a"}}))
assert.Equal(t, x.responseBuilder.ResponseData().AllowedMentions, &objects.AllowedMentions{Parse: []string{"a"}})
}
func TestComponentRouterCtx_SetAllowedMentions(t *testing.T) {
x := &ComponentRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetAllowedMentions", &objects.AllowedMentions{Parse: []string{"a"}}))
assert.Equal(t, x.responseBuilder.ResponseData().AllowedMentions, &objects.AllowedMentions{Parse: []string{"a"}})
}
func TestModalRouterCtx_SetAllowedMentions(t *testing.T) {
x := &ModalRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetAllowedMentions", &objects.AllowedMentions{Parse: []string{"a"}}))
assert.Equal(t, x.responseBuilder.ResponseData().AllowedMentions, &objects.AllowedMentions{Parse: []string{"a"}})
}
func TestCommandRouterCtx_SetTTS(t *testing.T) {
x := &CommandRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetTTS", true))
assert.Equal(t, x.responseBuilder.ResponseData().TTS, true)
}
func TestComponentRouterCtx_SetTTS(t *testing.T) {
x := &ComponentRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetTTS", true))
assert.Equal(t, x.responseBuilder.ResponseData().TTS, true)
}
func TestModalRouterCtx_SetTTS(t *testing.T) {
x := &ModalRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "SetTTS", true))
assert.Equal(t, x.responseBuilder.ResponseData().TTS, true)
}
func TestCommandRouterCtx_Ephemeral(t *testing.T) {
x := &CommandRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "Ephemeral"))
assert.Equal(t, (objects.MessageFlag)(64), x.responseBuilder.ResponseData().Flags)
}
func TestComponentRouterCtx_Ephemeral(t *testing.T) {
x := &ComponentRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "Ephemeral"))
assert.Equal(t, (objects.MessageFlag)(64), x.responseBuilder.ResponseData().Flags)
}
func TestModalRouterCtx_Ephemeral(t *testing.T) {
x := &ModalRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "Ephemeral"))
assert.Equal(t, (objects.MessageFlag)(64), x.responseBuilder.ResponseData().Flags)
}
func TestCommandRouterCtx_AttachBytes(t *testing.T) {
x := &CommandRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AttachBytes", []byte("a"), "file.txt", ""))
assert.Equal(t, "file.txt", x.responseBuilder.ResponseData().Files[0].Filename)
}
func TestCommandRouterCtx_AttachFile(t *testing.T) {
x := &CommandRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AttachFile", &objects.DiscordFile{
Buffer: bytes.NewBuffer([]byte("a")),
Filename: "file.txt",
}))
assert.Equal(t, "file.txt", x.responseBuilder.ResponseData().Files[0].Filename)
}
func TestComponentRouterCtx_AttachBytes(t *testing.T) {
x := &ComponentRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AttachBytes", []byte("a"), "file.txt", ""))
assert.Equal(t, "file.txt", x.responseBuilder.ResponseData().Files[0].Filename)
}
func TestComponentRouterCtx_AttachFile(t *testing.T) {
x := &ComponentRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "AttachFile", &objects.DiscordFile{
Buffer: bytes.NewBuffer([]byte("a")),
Filename: "file.txt",
}))
assert.Equal(t, "file.txt", x.responseBuilder.ResponseData().Files[0].Filename)
}
func TestCommandRouterCtx_ChannelMessageWithSource(t *testing.T) {
x := &CommandRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "ChannelMessageWithSource"))
assert.Equal(t, x.respType, objects.ResponseChannelMessageWithSource)
}
func TestComponentRouterCtx_ChannelMessageWithSource(t *testing.T) {
x := &ComponentRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "ChannelMessageWithSource"))
assert.Equal(t, x.respType, objects.ResponseChannelMessageWithSource)
}
func TestModalRouterCtx_ChannelMessageWithSource(t *testing.T) {
x := &ModalRouterCtx{}
assert.NoError(t, callBuilderFunction(t, x, false, "ChannelMessageWithSource"))
assert.Equal(t, x.respType, objects.ResponseChannelMessageWithSource)
}
func buildWithModalRouter(r any, mount bool, setError func(e error) *objects.InteractionResponse, app HandlerAccepter) {
modalRouter := &ModalRouter{}
modalRouter.AddModal(&ModalContent{
Path: "/test/:content",
Contents: func(ctx *ModalGenerationCtx) (name string, contents []ModalContentItem) {
return ctx.Path, []ModalContentItem{
{
Label: "test",
},
}
},
Function: func(ctx *ModalRouterCtx) error {
panic("this should not be called!")
},
})
rb := RouterLoader().ErrorHandler(setError)
if mount {
rb.ModalRouter(modalRouter)
}
switch x := r.(type) {
case *CommandRouter:
rb.CommandRouter(x)
case *ComponentRouter:
rb.ComponentRouter(x)
}
rb.Build(app)
}
func TestComponentRouterCtx_WithModalPath(t *testing.T) {
tests := []struct {
name string
path string
mountModalHandler bool
selectMenu bool
expectsErr string
expects *objects.InteractionResponse
}{
// Button
{
name: "button no modal router",
expectsErr: "modal router is unset",
},
{
name: "button unknown path",
path: "/unknown",
expectsErr: "modal path not found",
mountModalHandler: true,
},
{
name: "button valid path",
path: "/test/test",
mountModalHandler: true,
expects: &objects.InteractionResponse{
Type: objects.ResponseModal,
Data: &objects.InteractionApplicationCommandCallbackData{
Components: []*objects.Component{
{
Type: objects.ComponentTypeActionRow,
Components: []*objects.Component{
{
Type: objects.ComponentTypeInputText,
Label: "test",
Style: objects.ButtonStyle(objects.TextStyleParagraph),
},
},
},
},
CustomID: "/test/test",
Title: "/test/test",
},
},
},
// Select menu
{
name: "select menu no modal router",
expectsErr: "modal router is unset",
selectMenu: true,
},
{
name: "select menu unknown path",
path: "/unknown",
expectsErr: "modal path not found",
mountModalHandler: true,
selectMenu: true,
},
{
name: "select menu valid path",
path: "/test/test",
mountModalHandler: true,
selectMenu: true,
expects: &objects.InteractionResponse{
Type: objects.ResponseModal,
Data: &objects.InteractionApplicationCommandCallbackData{
Components: []*objects.Component{
{
Type: objects.ComponentTypeActionRow,
Components: []*objects.Component{
{
Type: objects.ComponentTypeInputText,
Label: "test",
Style: objects.ButtonStyle(objects.TextStyleParagraph),
},
},
},
},
CustomID: "/test/test",
Title: "/test/test",
},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Handle the error setter.
var err error
setError := func(e error) *objects.InteractionResponse {
// Set the error.
err = e
// Return nil because we will not care about the response here.
return nil
}
// Create the router and mock route.
r := &ComponentRouter{}
if tt.selectMenu {
r.RegisterSelectMenu("/test", func(ctx *ComponentRouterCtx, _ []string) error {
t.Helper()
return ctx.WithModalPath(tt.path)
})
} else {
r.RegisterButton("/test", func(ctx *ComponentRouterCtx) error {
t.Helper()
return ctx.WithModalPath(tt.path)
})
}
// Build the router.
f := &fakeBuildHandlerAccepter{}
buildWithModalRouter(r, tt.mountModalHandler, setError, f)
require.NotNil(t, f.componentHandler)
// Call the component handler.
x := objects.ComponentTypeButton
if tt.selectMenu {
x = objects.ComponentTypeSelectMenu
}
resp := f.componentHandler(context.Background(), &objects.Interaction{
Data: jsonify(t, objects.ApplicationComponentInteractionData{
CustomID: "/test",
ComponentType: x,
}),
})
// Verify the error.
if tt.expectsErr == "" {
assert.NoError(t, err)
} else {
assert.EqualError(t, err, tt.expectsErr)
return
}
assert.Equal(t, tt.expects, resp)
})
}
}
func TestCommandRouterCtx_WithModalPath(t *testing.T) {
tests := []struct {
name string
path string
mountModalHandler bool
expectsErr string
expects *objects.InteractionResponse
}{
{
name: "no modal router",
expectsErr: "modal router is unset",
},
{
name: "unknown path",
path: "/unknown",
expectsErr: "modal path not found",
mountModalHandler: true,
},
{
name: "valid path",
path: "/test/test",
mountModalHandler: true,
expects: &objects.InteractionResponse{
Type: objects.ResponseModal,
Data: &objects.InteractionApplicationCommandCallbackData{
Components: []*objects.Component{
{
Type: objects.ComponentTypeActionRow,
Components: []*objects.Component{
{
Type: objects.ComponentTypeInputText,
Label: "test",
Style: objects.ButtonStyle(objects.TextStyleParagraph),
},
},
},
},
CustomID: "/test/test",
Title: "/test/test",
},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Handle the error setter.
var err error
setError := func(e error) *objects.InteractionResponse {
// Set the error.
err = e
// Return nil because we will not care about the response here.
return nil
}
// Create the router and mock command.
r := &CommandRouter{}
_, err = r.NewCommandBuilder("test").Handler(func(ctx *CommandRouterCtx) error {
t.Helper()
return ctx.WithModalPath(tt.path)
}).Build()
require.NoError(t, err)
// Build the router.
f := &fakeBuildHandlerAccepter{}
buildWithModalRouter(r, tt.mountModalHandler, setError, f)
require.NotNil(t, f.commandHandler)
// Call the command handler.
resp := f.commandHandler(context.Background(), &objects.Interaction{
Data: jsonify(t, objects.ApplicationCommandInteractionData{
DiscordBaseObject: objects.DiscordBaseObject{ID: 1234},
Name: "test",
Type: objects.CommandTypeChatInput,
Version: 1,
Resolved: objects.ApplicationCommandInteractionDataResolved{},
}),
})
// Verify the error.
if tt.expectsErr == "" {
assert.NoError(t, err)
} else {
assert.EqualError(t, err, tt.expectsErr)
return
}
assert.Equal(t, tt.expects, resp)
})
}
}