This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
guild_test.go
308 lines (261 loc) · 6.36 KB
/
guild_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
//go:build !integration
// +build !integration
package disgord
import (
"strconv"
"testing"
"github.com/andersfylling/disgord/json"
)
// NewGuild ...
func NewGuild() *Guild {
return &Guild{
Roles: []*Role{},
Emojis: []*Emoji{},
Features: []string{},
VoiceStates: []*VoiceState{},
Members: []*Member{},
Channels: []*Channel{},
Presences: []*UserPresence{},
}
}
func TestGuild_ChannelSorting(t *testing.T) {
g := &Guild{}
total := 103
for i := total; i > 0; i-- {
s := Snowflake(i)
c := &Channel{ID: s}
g.AddChannel(c)
}
chans := g.Channels
for i := 1; i <= total; i++ {
if chans[i-1].ID != Snowflake(i) {
t.Error("wrong order")
break
}
}
}
// --------
func TestGuildWidget(t *testing.T) {
res := []byte(`{"enabled":true,"channel_id":"41771983444115456"}`)
expects := []byte(`{"enabled":true,"channel_id":"41771983444115456"}`)
// convert to struct
guildWidget := GuildWidget{}
if err := json.Unmarshal(res, &guildWidget); err != nil {
t.Error(err)
}
// back to json
data, err := json.Marshal(&guildWidget)
if err != nil {
t.Error(err)
}
// match
if string(expects) != string(data) {
t.Errorf("json data differs. Got %s, wants %s", string(data), string(expects))
}
}
// -------------
func TestGuild_sortChannels(t *testing.T) {
snowflakes := []Snowflake{
6,
65,
324,
5435,
63453,
111111111,
}
guild := NewGuild()
for i := range snowflakes {
channel := &Channel{}
channel.ID = snowflakes[len(snowflakes)-1-i] // reverse
guild.Channels = append(guild.Channels, channel)
}
guild.sortChannels()
for i, c := range guild.Channels {
if snowflakes[i] != c.ID {
t.Error("Channels in guild did not sort correctly")
}
}
}
func TestGuild_AddChannel(t *testing.T) {
snowflakes := []Snowflake{
Snowflake(6),
Snowflake(65),
Snowflake(324),
Snowflake(5435),
Snowflake(63453),
Snowflake(111111111),
}
guild := NewGuild()
for i := range snowflakes {
channel := &Channel{}
channel.ID = snowflakes[len(snowflakes)-1-i] // reverse
guild.AddChannel(channel)
}
for i, c := range guild.Channels {
if snowflakes[i] != c.ID {
t.Error("Channels in guild did not sort correctly")
}
}
}
func TestGuild_DeleteChannel(t *testing.T) {
snowflakes := []Snowflake{
Snowflake(6),
Snowflake(65),
Snowflake(324),
Snowflake(5435),
Snowflake(63453),
Snowflake(111111111),
}
guild := NewGuild()
for i := range snowflakes {
channel := &Channel{}
channel.ID = snowflakes[len(snowflakes)-1-i] // reverse
guild.AddChannel(channel)
}
id := snowflakes[3]
channel := &Channel{}
channel.ID = id
guild.DeleteChannel(channel)
_, err := guild.Channel(id)
if err == nil {
t.Error("no error given when requesting a deleted channel")
}
}
func TestGuild_DeleteRoleByID(t *testing.T) {
snowflakes := []Snowflake{
Snowflake(6),
Snowflake(65),
Snowflake(324),
Snowflake(5435),
Snowflake(63453),
Snowflake(111111111),
}
guild := NewGuild()
for _, id := range snowflakes {
if err := guild.AddRole(&Role{ID: id}); err != nil {
t.Fatal("unable to add role")
}
if _, err := guild.Role(id); err != nil {
t.Fatal("role does not exist")
}
}
id := snowflakes[3]
if _, err := guild.Role(id); err != nil {
t.Fatal("role does not exist")
}
guild.DeleteRoleByID(id)
if _, err := guild.Role(id); err == nil {
t.Error("unable to delete role that exists")
}
// make sure everything can be deleted
for _, id := range snowflakes {
guild.DeleteRoleByID(id)
}
if len(guild.Roles) != 0 {
t.Error("unable to delete all roles")
}
}
func TestPermissionBit(t *testing.T) {
t.Run("contains", func(t *testing.T) {
testBits := PermissionSendMessages | PermissionReadMessages
if testBits.Contains(PermissionAdministrator) {
t.Fatal("does not have administrator")
}
if !testBits.Contains(PermissionSendMessages) {
t.Fatal("does have send messages")
}
if !testBits.Contains(PermissionReadMessages) {
t.Fatal("does have read messages")
}
})
t.Run("unmarshal", func(t *testing.T) {
t.Run("single", func(t *testing.T) {
container := struct {
Permission PermissionBit `json:"permission"`
}{PermissionSendMessages | PermissionReadMessages}
b, err := json.Marshal(&container)
if err != nil {
t.Fatal(err)
}
tmp := container
tmp.Permission = 0
if err := json.Unmarshal(b, &tmp); err != nil {
t.Fatal(err)
}
if tmp.Permission != container.Permission {
t.Fatalf("unmarshaled value was unexpected. Got %d, wants %d", tmp.Permission, container.Permission)
}
})
t.Run("array", func(t *testing.T) {
perms := []PermissionBit{
PermissionSendMessages | PermissionReadMessages,
PermissionAddReactions,
PermissionBanMembers,
}
container := struct {
Permissions []PermissionBit `json:"permissions"`
}{perms}
contains := func(v PermissionBit) bool {
for _, p := range container.Permissions {
if p == v {
return true
}
}
return false
}
b, err := json.Marshal(&container)
if err != nil {
t.Fatal(err)
}
tmp := container
tmp.Permissions = nil
if err := json.Unmarshal(b, &tmp); err != nil {
t.Fatal(err)
}
for i := range perms {
if !contains(tmp.Permissions[i]) {
t.Errorf("unmarshaled value was not found in original. Got %d", tmp.Permissions[i])
}
}
})
t.Run("array-extra", func(t *testing.T) {
b := []byte(`{"permissions":["123", "4567"]}`)
container := struct {
Permissions []PermissionBit `json:"permissions"`
}{}
contains := func(v PermissionBit) bool {
for _, p := range container.Permissions {
if p == v {
return true
}
}
return false
}
if err := json.Unmarshal(b, &container); err != nil {
t.Fatal(err)
}
if !contains(123) {
t.Error("missing permission value 123")
}
if !contains(4567) {
t.Error("missing permission value 4567")
}
})
})
t.Run("marshal", func(t *testing.T) {
expects := PermissionBit(123456789)
data := []byte(`{"permission":"` + strconv.FormatUint(uint64(expects), 10) + `"}`)
container := struct {
Permission PermissionBit `json:"permission"`
}{}
if container.Permission != 0 {
t.Fatal("expected 0")
}
if err := json.Unmarshal(data, &container); err != nil {
t.Fatal(err)
}
if container.Permission != expects {
t.Fatalf("unmarshaled value was unexpected. Got %d, wants %d", container.Permission, expects)
}
})
}