-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommand_test.go
More file actions
224 lines (222 loc) · 3.83 KB
/
command_test.go
File metadata and controls
224 lines (222 loc) · 3.83 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
package irc
import "testing"
func TestCommand(t *testing.T) {
out := make(chan string)
conn := &Conn{out: out}
// Raw
func() {
go func() {
conn.Raw("PING str")
}()
ret := <-out
expect(t, ret, "PING str")
}()
// Pass
func() {
go func() {
conn.Pass("password")
}()
ret := <-out
expect(t, ret, "PASS password")
}()
// Nick
func() {
go func() {
conn.Nick("nickname")
}()
ret := <-out
expect(t, ret, "NICK nickname")
}()
// Join
func() {
go func() {
conn.Join("#channel")
}()
ret := <-out
expect(t, ret, "JOIN #channel")
}()
// Part
func() {
go func() {
conn.Part("#channel")
}()
ret := <-out
expect(t, ret, "PART #channel")
go func() {
conn.Part("#channel", "message1", "message2")
}()
ret = <-out
expect(t, ret, "PART #channel :message1 message2")
}()
// Kick
func() {
go func() {
conn.Kick("#channel", "mix3")
}()
ret := <-out
expect(t, ret, "KICK #channel mix3")
go func() {
conn.Kick("#channel", "mix3", "message1", "message2")
}()
ret = <-out
expect(t, ret, "KICK #channel mix3 :message1 message2")
}()
// Quit
func() {
go func() {
conn.Quit()
}()
ret := <-out
expect(t, ret, "QUIT :GoBye!")
go func() {
conn.Quit("message1", "message2")
}()
ret = <-out
expect(t, ret, "QUIT :message1 message2")
}()
// Whois
func() {
go func() {
conn.Whois("mix3")
}()
ret := <-out
expect(t, ret, "WHOIS mix3")
}()
// Who
func() {
go func() {
conn.Who("mix3")
}()
ret := <-out
expect(t, ret, "WHO mix3")
}()
// Privmsg
func() {
go func() {
conn.Privmsg("#channel", "message")
}()
ret := <-out
expect(t, ret, "PRIVMSG #channel :message")
}()
// Notice
func() {
go func() {
conn.Notice("#channel", "message")
}()
ret := <-out
expect(t, ret, "NOTICE #channel :message")
}()
// Ctcp
func() {
go func() {
conn.Ctcp("#channel", "ACTION")
}()
ret := <-out
expect(t, ret, "PRIVMSG #channel :\001ACTION\001")
go func() {
conn.Ctcp("#channel", "ACTION", "arg1", "arg2")
}()
ret = <-out
expect(t, ret, "PRIVMSG #channel :\001ACTION arg1 arg2\001")
}()
// CtcpReply
func() {
go func() {
conn.CtcpReply("#channel", "ACTION")
}()
ret := <-out
expect(t, ret, "NOTICE #channel :\001ACTION\001")
go func() {
conn.CtcpReply("#channel", "ACTION", "arg1", "arg2")
}()
ret = <-out
expect(t, ret, "NOTICE #channel :\001ACTION arg1 arg2\001")
}()
// Version
func() {
go func() {
conn.Version("#channel")
}()
ret := <-out
expect(t, ret, "PRIVMSG #channel :\001VERSION\001")
}()
// Action
func() {
go func() {
conn.Action("#channel", "msg")
}()
ret := <-out
expect(t, ret, "PRIVMSG #channel :\001ACTION msg\001")
}()
// Topic
func() {
go func() {
conn.Topic("#channel")
}()
ret := <-out
expect(t, ret, "TOPIC #channel")
go func() {
conn.Topic("#channel", "arg1", "arg2")
}()
ret = <-out
expect(t, ret, "TOPIC #channel :arg1 arg2")
}()
// Mode
func() {
go func() {
conn.Mode("#channel")
}()
ret := <-out
expect(t, ret, "MODE #channel")
go func() {
conn.Mode("#channel", "arg1", "arg2")
}()
ret = <-out
expect(t, ret, "MODE #channel arg1 arg2")
}()
// Away
func() {
go func() {
conn.Away()
}()
ret := <-out
expect(t, ret, "AWAY")
go func() {
conn.Away("arg1", "arg2")
}()
ret = <-out
expect(t, ret, "AWAY :arg1 arg2")
}()
// Invite
func() {
go func() {
conn.Invite("nick", "channel")
}()
ret := <-out
expect(t, ret, "INVITE nick channel")
}()
// Oper
func() {
go func() {
conn.Oper("nick", "channel")
}()
ret := <-out
expect(t, ret, "OPER nick channel")
}()
// Ping
func() {
go func() {
conn.Ping("message")
}()
ret := <-out
expect(t, ret, "PING :message")
}()
// Pong
func() {
go func() {
conn.Pong("message")
}()
ret := <-out
expect(t, ret, "PONG :message")
}()
}