This repository was archived by the owner on Jan 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcmd_test.go
258 lines (197 loc) · 6.87 KB
/
cmd_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
package bot
import (
"errors"
"fmt"
. "github.com/smartystreets/goconvey/convey"
"testing"
)
type ircConnectionMock struct {
Channel string
Messages []string
Nick string
Joined string
Parted string
}
func (m *ircConnectionMock) Privmsg(target, message string) {
m.Channel = target
m.Messages = append(m.Messages, message)
}
func (m ircConnectionMock) GetNick() string {
return m.Nick
}
func (m *ircConnectionMock) Join(target string) {
m.Joined = target
}
func (m *ircConnectionMock) Part(target string) {
m.Parted = target
}
func TestMessageReceived(t *testing.T) {
Convey("Given a new message in the channel", t, func() {
commands = make(map[string]*customCommand)
conn := &ircConnectionMock{}
Convey("When the command is join", func() {
Reset(func() {
conn.Messages = []string{}
})
Convey("if the channel is not specified", func() {
messageReceived("#go-bot", "!join ", "user", conn)
So(conn.Messages, ShouldResemble, []string{joinUsage})
})
Convey("if the channel is specified", func() {
messageReceived("#go-bot", "!join #channel pass", "user", conn)
So(conn.Joined, ShouldEqual, "#channel pass")
So(conn.Channel, ShouldEqual, "#channel")
So(conn.Messages, ShouldResemble,
[]string{fmt.Sprintf(joinMessage, "user")})
})
})
Convey("When the command is part", func() {
config = &Config{
Channels: []string{"#go-bot", "#safechan passwd", ""},
}
Reset(func() {
conn.Parted = ""
conn.Messages = []string{}
})
Convey("it should part the channel", func() {
messageReceived("#mychannel", "!part ", "user", conn)
So(conn.Parted, ShouldEqual, "#mychannel")
So(conn.Messages, ShouldResemble, []string{partMessage})
})
Convey("if the channel is in the config", func() {
messageReceived("#Go-Bot", "!part ", "user", conn)
So(conn.Parted, ShouldEqual, "")
So(conn.Messages, ShouldResemble, []string{partNotAllowed})
})
Convey("if the channel is in the config and has a password", func() {
messageReceived("#safechan", "!part", "user", conn)
So(conn.Parted, ShouldEqual, "")
So(conn.Messages, ShouldResemble, []string{partNotAllowed})
})
})
Convey("When the command is not registered", func() {
conn = &ircConnectionMock{}
Convey("It should not post to the channel", func() {
messageReceived("#go-bot", "!not_a_cmd", "user", conn)
So(conn.Messages, ShouldBeEmpty)
})
})
Convey("The command can return an error", func() {
conn = &ircConnectionMock{}
Convey("it sould send the message with the error to the channel", func() {
cmdError := errors.New("error")
RegisterCommand("cmd", "", "",
func(c *Cmd) (string, error) {
return "", cmdError
})
messageReceived("#go-bot", "!cmd", "user", conn)
So(conn.Channel, ShouldEqual, "#go-bot")
So(conn.Messages, ShouldResemble,
[]string{fmt.Sprintf(errorExecutingCommand, "cmd", cmdError.Error())})
})
})
Convey("When the command is valid and registered", func() {
conn = &ircConnectionMock{}
commands = make(map[string]*customCommand)
expectedMsg := "msg"
cmd := "cmd"
cmdDescription := "Command description"
cmdExampleArgs := "arg1 arg2"
RegisterCommand(cmd, cmdDescription, cmdExampleArgs,
func(c *Cmd) (string, error) {
return expectedMsg, nil
})
Convey("If it is called in the channel, reply on the channel", func() {
messageReceived("#go-bot", "!cmd", "user", conn)
So(conn.Channel, ShouldEqual, "#go-bot")
So(conn.Messages, ShouldResemble, []string{expectedMsg})
})
Convey("If it is a private message, reply to the user", func() {
conn.Nick = "go-bot"
messageReceived("go-bot", "!cmd", "sender-nick", conn)
So(conn.Channel, ShouldEqual, "sender-nick")
})
Convey("When the command is help", func() {
Convey("Display the available commands in the channel", func() {
messageReceived("#go-bot", "!help", "user", conn)
So(conn.Channel, ShouldEqual, "#go-bot")
So(conn.Messages, ShouldResemble, []string{
fmt.Sprintf(helpAboutCommand, CmdPrefix),
fmt.Sprintf(availableCommands, "cmd"),
})
})
Convey("If the command exists send a message to the channel", func() {
messageReceived("#go-bot", "!help cmd", "user", conn)
So(conn.Channel, ShouldEqual, "#go-bot")
So(conn.Messages, ShouldResemble, []string{
fmt.Sprintf(helpDescripton, cmdDescription),
fmt.Sprintf(helpUsage, CmdPrefix, cmd, cmdExampleArgs),
})
})
Convey("If the command does not exists, display the generic help", func() {
messageReceived("#go-bot", "!help not_a_command", "user", conn)
So(conn.Channel, ShouldEqual, "#go-bot")
So(conn.Messages, ShouldResemble, []string{
fmt.Sprintf(helpAboutCommand, CmdPrefix),
fmt.Sprintf(availableCommands, "cmd"),
})
})
})
})
Convey("When the command is V2", func() {
conn = &ircConnectionMock{}
Convey("it should send the message with the error to the channel", func() {
RegisterCommandV2("cmd", "", "",
func(c *Cmd) (CmdResult, error) {
return CmdResult{
Channel: "#channel",
Message: "message"}, nil
})
messageReceived("#go-bot", "!cmd", "user", conn)
So(conn.Channel, ShouldEqual, "#channel")
So(conn.Messages, ShouldResemble, []string{"message"})
})
Convey("it should reply to the current channel if the command does not specify one", func() {
RegisterCommandV2("cmd", "", "",
func(c *Cmd) (CmdResult, error) {
return CmdResult{
Message: "message"}, nil
})
messageReceived("#go-bot", "!cmd", "user", conn)
So(conn.Channel, ShouldEqual, "#go-bot")
So(conn.Messages, ShouldResemble, []string{"message"})
})
})
Convey("When the command is passive", func() {
conn = &ircConnectionMock{}
passiveCommands = make(map[string]passiveCmdFunc)
echo := func(cmd *PassiveCmd) (string, error) {
return cmd.Raw, nil
}
ping := func(cmd *PassiveCmd) (string, error) {
return "pong", nil
}
errored := func(cmd *PassiveCmd) (string, error) {
return "", errors.New("error")
}
RegisterPassiveCommand("echo", echo)
RegisterPassiveCommand("ping", ping)
RegisterPassiveCommand("errored", errored)
Convey("If it is called in the channel, reply on the channel", func() {
messageReceived("#go-bot", "test", "user", conn)
So(conn.Channel, ShouldEqual, "#go-bot")
So(len(conn.Messages), ShouldEqual, 2)
So(conn.Messages, ShouldContain, "test")
So(conn.Messages, ShouldContain, "pong")
})
Convey("If it is a private message, reply to the user", func() {
conn.Nick = "go-bot"
messageReceived("go-bot", "test", "sender-nick", conn)
So(conn.Channel, ShouldEqual, "sender-nick")
So(len(conn.Messages), ShouldEqual, 2)
So(conn.Messages, ShouldContain, "test")
So(conn.Messages, ShouldContain, "pong")
})
})
})
}