forked from lrstanley/girc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
state_test.go
247 lines (202 loc) · 7.03 KB
/
state_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
// Copyright (c) Liam Stanley <[email protected]>. All rights reserved. Use
// of this source code is governed by the MIT license that can be found in
// the LICENSE file.
package girc
import (
"reflect"
"testing"
"time"
)
func debounce(delay time.Duration, done chan bool, f func()) {
var init bool
for {
select {
case <-done:
init = true
case <-time.After(delay):
if init {
f()
return
}
}
}
}
const dummyStartState = `:dummy.int NOTICE * :*** Looking up your hostname...
:dummy.int NOTICE * :*** Checking Ident
:dummy.int NOTICE * :*** Found your hostname
:dummy.int NOTICE * :*** No Ident response
:dummy.int 001 nick :Welcome to the DUMMY Internet Relay Chat Network nick
:dummy.int 005 nick NETWORK=DummyIRC NICKLEN=20 :are supported by this server
:dummy.int 375 nick :- dummy.int Message of the Day -
:dummy.int 372 nick :example motd
:dummy.int 376 nick :End of /MOTD command.
:[email protected] JOIN #channel * :realname
:dummy.int 332 nick #channel :example topic
:dummy.int 353 nick = #channel :[email protected] @[email protected]
:dummy.int 366 nick #channel :End of /NAMES list.
:dummy.int 354 nick 1 #channel ~user local.int nick 0 :realname
:dummy.int 354 nick 1 #channel nick2 other.int nick2 nick2 :realname2
:dummy.int 315 nick #channel :End of /WHO list.
:[email protected] JOIN #channel2 * :realname
:dummy.int 332 nick #channel2 :example topic
:dummy.int 353 nick = #channel2 :[email protected] @[email protected]
:dummy.int 366 nick #channel2 :End of /NAMES list.
:dummy.int 354 nick 1 #channel2 ~user local.int nick 0 :realname
:dummy.int 354 nick 1 #channel2 nick2 other.int nick2 nick2 :realname2
:dummy.int 315 nick #channel2 :End of /WHO list.
`
const dummyEndState = `:[email protected] QUIT :example reason
:[email protected] PART #channel2 :example reason
:[email protected] NICK newnick
`
func TestState(t *testing.T) {
c, conn, server := genMockConn()
defer c.Close()
go mockReadBuffer(conn)
go func() {
err := c.MockConnect(server)
if err != nil {
panic(err)
}
}()
bounceStart := make(chan bool, 1)
finishStart := make(chan bool, 1)
go debounce(250*time.Millisecond, bounceStart, func() {
if motd := c.ServerMOTD(); motd != "example motd" {
t.Fatalf("Client.ServerMOTD() returned invalid MOTD: %q", motd)
}
if network := c.NetworkName(); network != "DummyIRC" {
t.Fatalf("Client.NetworkName() returned invalid network name: %q", network)
}
if caseExample, ok := c.GetServerOption("NICKLEN"); !ok || caseExample != "20" {
t.Fatalf("Client.GetServerOptions returned invalid ISUPPORT variable")
}
users := c.Users()
channels := c.Channels()
if !reflect.DeepEqual(users, []string{"nick", "nick2"}) {
// This could fail too, if sorting isn't occurring.
t.Fatalf("got state users %#v, wanted: %#v", users, []string{"nick", "nick2"})
}
if !reflect.DeepEqual(channels, []string{"#channel", "#channel2"}) {
// This could fail too, if sorting isn't occurring.
t.Fatalf("got state channels %#v, wanted: %#v", channels, []string{"#channel", "#channel2"})
}
ch := c.LookupChannel("#channel")
if ch == nil {
t.Fatal("Client.LookupChannel returned nil on existing channel")
}
adm := ch.Admins(c)
admList := []string{}
for i := 0; i < len(adm); i++ {
admList = append(admList, adm[i].Nick)
}
trusted := ch.Trusted(c)
trustedList := []string{}
for i := 0; i < len(trusted); i++ {
trustedList = append(trustedList, trusted[i].Nick)
}
if !reflect.DeepEqual(admList, []string{"nick2"}) {
t.Fatalf("got Channel.Admins() == %#v, wanted %#v", admList, []string{"nick2"})
}
if !reflect.DeepEqual(trustedList, []string{"nick2"}) {
t.Fatalf("got Channel.Trusted() == %#v, wanted %#v", trustedList, []string{"nick2"})
}
if topic := ch.Topic; topic != "example topic" {
t.Fatalf("Channel.Topic == %q, want \"example topic\"", topic)
}
if in := ch.UserIn("nick"); !in {
t.Fatalf("Channel.UserIn == %t, want %t", in, true)
}
if users := ch.Users(c); len(users) != 2 {
t.Fatalf("Channel.Users == %#v, wanted length of 2", users)
}
if h := c.GetHost(); h != "local.int" {
t.Fatalf("Client.GetHost() == %q, want local.int", h)
}
if nick := c.GetNick(); nick != "nick" {
t.Fatalf("Client.GetNick() == %q, want nick", nick)
}
if ident := c.GetIdent(); ident != "~user" {
t.Fatalf("Client.GetIdent() == %q, want ~user", ident)
}
user := c.LookupUser("nick")
if user == nil {
t.Fatal("Client.LookupUser() returned nil on existing user")
}
if !reflect.DeepEqual(user.ChannelList, []string{"#channel", "#channel2"}) {
t.Fatalf("User.ChannelList == %#v, wanted %#v", user.ChannelList, []string{"#channel", "#channel2"})
}
if count := len(user.Channels(c)); count != 2 {
t.Fatalf("len(User.Channels) == %d, want 2", count)
}
if user.Nick != "nick" {
t.Fatalf("User.Nick == %q, wanted \"nick\"", user.Nick)
}
if user.Extras.Name != "realname" {
t.Fatalf("User.Extras.Name == %q, wanted \"realname\"", user.Extras.Name)
}
if user.Host != "local.int" {
t.Fatalf("User.Host == %q, wanted \"local.int\"", user.Host)
}
if user.Ident != "~user" {
t.Fatalf("User.Ident == %q, wanted \"~user\"", user.Ident)
}
if !user.InChannel("#channel2") {
t.Fatal("User.InChannel() returned false for existing channel")
}
finishStart <- true
})
cuid := c.Handlers.AddBg(UPDATE_STATE, func(c *Client, e Event) {
bounceStart <- true
})
conn.SetDeadline(time.Now().Add(5 * time.Second))
_, err := conn.Write([]byte(dummyStartState))
if err != nil {
panic(err)
}
select {
case <-finishStart:
case <-time.After(5 * time.Second):
t.Fatal("timed out while waiting for state update start")
}
c.Handlers.Remove(cuid)
bounceEnd := make(chan bool, 1)
finishEnd := make(chan bool, 1)
go debounce(250*time.Millisecond, bounceEnd, func() {
if !reflect.DeepEqual(c.Channels(), []string{"#channel"}) {
t.Fatalf("Client.Channels() == %#v, wanted %#v", c.Channels(), []string{"#channel"})
}
if !reflect.DeepEqual(c.Users(), []string{"newnick"}) {
t.Fatalf("Client.Users() == %#v, wanted %#v", c.Users(), []string{"newnick"})
}
user := c.LookupUser("newnick")
if user == nil {
t.Fatal("Client.LookupUser() returned nil for existing user")
}
if !reflect.DeepEqual(user.ChannelList, []string{"#channel"}) {
t.Fatalf("user.ChannelList == %q, wanted %q", user.ChannelList, []string{"#channel"})
}
channel := c.LookupChannel("#channel")
if channel == nil {
t.Fatal("Client.LookupChannel() returned nil for existing channel")
}
if !reflect.DeepEqual(channel.UserList, []string{"newnick"}) {
t.Fatalf("channel.UserList == %q, wanted %q", channel.UserList, []string{"newnick"})
}
finishEnd <- true
})
cuid = c.Handlers.AddBg(UPDATE_STATE, func(c *Client, e Event) {
bounceEnd <- true
})
conn.SetDeadline(time.Now().Add(5 * time.Second))
_, err = conn.Write([]byte(dummyEndState))
if err != nil {
panic(err)
}
select {
case <-finishEnd:
case <-time.After(5 * time.Second):
t.Fatal("timed out while waiting for state update end")
}
c.Handlers.Remove(cuid)
}