-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathharmony_test.go
297 lines (246 loc) · 8.6 KB
/
harmony_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
package harmony_test
import (
"context"
"fmt"
"os"
"testing"
"time"
"github.com/skwair/harmony"
"github.com/skwair/harmony/discord"
)
func TestHarmony(t *testing.T) {
token := os.Getenv("HARMONY_TEST_BOT_TOKEN")
if token == "" {
t.Fatal("environment variable HARMONY_TEST_BOT_TOKEN not set")
}
guildID := os.Getenv("HARMONY_TEST_GUILD_ID")
if guildID == "" {
t.Fatal("environment variable HARMONY_TEST_GUILD_ID not set")
}
client, err := harmony.NewClient(token)
if err != nil {
t.Fatalf("could not create harmony client: %v", err)
}
if err = client.Connect(context.TODO()); err != nil {
t.Fatalf("could not connect to gateway: %v", err)
}
defer client.Disconnect()
// Purge existing channels.
chs, err := client.Guild(guildID).Channels(context.TODO())
if err != nil {
t.Fatalf("could not get guild channels: %v", err)
}
for _, ch := range chs {
if _, err = client.Channel(ch.ID).Delete(context.TODO()); err != nil {
t.Fatalf("could not delete channel %q: %v", ch.Name, err)
}
}
var txtCh *discord.Channel
t.Run("create channels", func(t *testing.T) {
// Create a new channel category.
settings := discord.NewChannelSettings(
discord.WithChannelName("test-category"),
discord.WithChannelType(discord.ChannelTypeGuildCategory),
)
cat, err := client.Guild(guildID).NewChannel(context.TODO(), settings)
if err != nil {
t.Fatalf("could not create channel category: %v", err)
}
// Create a new text channel in this category.
settings = discord.NewChannelSettings(
discord.WithChannelName("test-text-channel"),
discord.WithChannelType(discord.ChannelTypeGuildText),
discord.WithChannelParent(cat.ID),
)
txtCh, err = client.Guild(guildID).NewChannel(context.TODO(), settings)
if err != nil {
t.Fatalf("could not create text channel: %v", err)
}
})
t.Run("create and delete a channel invite", func(t *testing.T) {
settings := discord.NewInviteSettings(
discord.WithInviteMaxUses(1),
discord.WithInviteMaxAge(time.Hour),
)
i, err := client.Channel(txtCh.ID).NewInvite(context.TODO(), settings)
if err != nil {
t.Fatalf("could not create new invitation: %v", err)
}
if i.MaxUses != 1 {
t.Fatalf("expected new invite to have %d max uses; got %d", 1, i.MaxUses)
}
if i.MaxAge != 3600 {
t.Fatalf("expacted new invite to have a max age of %d; got %d", 3600, i.MaxAge)
}
if _, err = client.Invite(i.Code).Delete(context.TODO()); err != nil {
t.Fatalf("could not delete invitation: %v", err)
}
})
var (
firstMsgIDs []string
lastMsgID string
)
t.Run("send messages", func(t *testing.T) {
for i := 0; i < 5; i++ {
content := fmt.Sprintf("foobar %d", i)
msg, err := client.Channel(txtCh.ID).SendMessage(context.TODO(), content)
if err != nil {
t.Fatalf("could not send message (%d): %v", i, err)
}
if i == 4 {
lastMsgID = msg.ID
} else {
firstMsgIDs = append(firstMsgIDs, msg.ID)
}
}
})
t.Run("get messages", func(t *testing.T) {
msgs, err := client.Channel(txtCh.ID).Messages(context.TODO(), "<"+lastMsgID, 0)
if err != nil {
t.Fatalf("could not retrieve text channel messages: %v", err)
}
if len(msgs) != 4 {
t.Fatalf("expected to retrieve %d messages; got %d", 4, len(msgs))
}
})
t.Run("edit message", func(t *testing.T) {
if _, err = client.Channel(txtCh.ID).EditMessage(context.TODO(), lastMsgID, "foobar edited"); err != nil {
t.Fatalf("could not edit message: %v", err)
}
})
t.Run("get single message", func(t *testing.T) {
msg, err := client.Channel(txtCh.ID).Message(context.TODO(), lastMsgID)
if err != nil {
t.Fatalf("coult not get single message: %v", err)
}
if msg.Content != "foobar edited" {
t.Fatalf("expected message content to be %q; got %q", "foobar edited", msg.Content)
}
})
t.Run("add reactions", func(t *testing.T) {
if err = client.Channel(txtCh.ID).AddReaction(context.TODO(), lastMsgID, "👍"); err != nil {
t.Fatalf("could not add reaction to last message: %v", err)
}
if err = client.Channel(txtCh.ID).AddReaction(context.TODO(), lastMsgID, "👎"); err != nil {
t.Fatalf("could not add reaction to last message: %v", err)
}
if err = client.Channel(txtCh.ID).AddReaction(context.TODO(), lastMsgID, "🖐️"); err != nil {
t.Fatalf("could not add reaction to last message: %v", err)
}
})
t.Run("remove reaction", func(t *testing.T) {
if err = client.Channel(txtCh.ID).RemoveReaction(context.TODO(), lastMsgID, "👎"); err != nil {
t.Fatalf("could not remove reaction to last message: %v", err)
}
})
t.Run("remove all reactions for emoji", func(t *testing.T) {
if err = client.Channel(txtCh.ID).RemoveAllReactionsForEmoji(context.TODO(), lastMsgID, "🖐"); err != nil {
t.Fatalf("could not remove all reactions for emoji: %v", err)
}
})
currentUserID := client.State.Me().ID
t.Run("get reactions", func(t *testing.T) {
users, err := client.Channel(txtCh.ID).Reactions(context.TODO(), lastMsgID, "👍", 0, "", "")
if err != nil {
t.Fatalf("could not get reactions to last message: %v", err)
}
if len(users) != 1 {
t.Fatalf("expected to have %d user with this reaction; got %d", 1, len(users))
}
if users[0].ID != currentUserID {
t.Fatalf("expected the ID of the user to be %s; got %s", currentUserID, users[0].ID)
}
users, err = client.Channel(txtCh.ID).Reactions(context.TODO(), lastMsgID, "👎", 0, "", "")
if err != nil {
t.Fatalf("could not get reactions to last message: %v", err)
}
if len(users) != 0 {
t.Fatalf("expected to have %d user with this reaction; got %d", 0, len(users))
}
})
t.Run("remove all reactions", func(t *testing.T) {
if err = client.Channel(txtCh.ID).RemoveAllReactions(context.TODO(), lastMsgID); err != nil {
t.Fatalf("could not remove all reactions to last message: %v", err)
}
})
t.Run("pin message", func(t *testing.T) {
if err = client.Channel(txtCh.ID).PinMessage(context.TODO(), lastMsgID); err != nil {
t.Fatalf("could not pin last message: %v", err)
}
})
t.Run("get pins", func(t *testing.T) {
pins, err := client.Channel(txtCh.ID).Pins(context.TODO())
if err != nil {
t.Fatalf("could not pin last message: %v", err)
}
if len(pins) != 1 {
t.Fatalf("expected to have %d pins; got %d", 1, len(pins))
}
if pins[0].ID != lastMsgID {
t.Fatalf("expected pinned message ID to be %s; got %s", lastMsgID, pins[0].ID)
}
})
t.Run("remove pin", func(t *testing.T) {
if err = client.Channel(txtCh.ID).UnpinMessage(context.TODO(), lastMsgID); err != nil {
t.Fatalf("could not unpin last message: %v", err)
}
})
t.Run("delete single message", func(t *testing.T) {
if err = client.Channel(txtCh.ID).DeleteMessage(context.TODO(), lastMsgID); err != nil {
t.Fatalf("could not delete single message: %v", err)
}
})
t.Run("delete messages", func(t *testing.T) {
if err = client.Channel(txtCh.ID).DeleteMessageBulk(context.TODO(), firstMsgIDs); err != nil {
t.Fatalf("could not delete messages: %v", err)
}
})
var testRole *discord.Role
t.Run("new role", func(t *testing.T) {
perms := discord.PermissionReadMessageHistory | discord.PermissionSendMessages
settings := discord.NewRoleSettings(
discord.WithRoleName("test-role"),
discord.WithRoleColor(0x336677),
discord.WithRoleHoist(true),
discord.WithRoleMentionable(true),
discord.WithRolePermissions(perms),
)
testRole, err = client.Guild(guildID).NewRole(context.TODO(), settings)
if err != nil {
t.Fatalf("could not create new role: %v", err)
}
})
t.Run("add role", func(t *testing.T) {
if err = client.Guild(guildID).AddMemberRole(context.TODO(), currentUserID, testRole.ID); err != nil {
t.Fatalf("could not add new role to user: %v", err)
}
})
t.Run("get guild member#01", func(t *testing.T) {
member, err := client.Guild(guildID).Member(context.TODO(), currentUserID)
if err != nil {
t.Fatalf("could not get guild member: %v", err)
}
if !member.HasRole(testRole.ID) {
t.Fatal("guild member should have test role")
}
})
t.Run("remove role", func(t *testing.T) {
if err = client.Guild(guildID).RemoveMemberRole(context.TODO(), currentUserID, testRole.ID); err != nil {
t.Fatalf("could not remove role from user: %v", err)
}
})
t.Run("get guild member#02", func(t *testing.T) {
member, err := client.Guild(guildID).Member(context.TODO(), currentUserID)
if err != nil {
t.Fatalf("could not get guild member: %v", err)
}
if member.HasRole(testRole.ID) {
t.Fatal("guild member should not have test role anymore")
}
})
t.Run("delete role", func(t *testing.T) {
if err = client.Guild(guildID).DeleteRole(context.TODO(), testRole.ID); err != nil {
t.Fatalf("could not delete test role: %v", err)
}
})
}