client_test.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701
  1. package ircclient
  2. import (
  3. "bufio"
  4. "crypto/ecdsa"
  5. "crypto/elliptic"
  6. "crypto/rand"
  7. "crypto/tls"
  8. "crypto/x509"
  9. "crypto/x509/pkix"
  10. "encoding/base64"
  11. "encoding/pem"
  12. "fmt"
  13. "log"
  14. "math/big"
  15. rnd "math/rand"
  16. "net"
  17. "strconv"
  18. "strings"
  19. "testing"
  20. "time"
  21. )
  22. func setupSocket() (listen net.Listener, addr string) {
  23. // establish network socket connection to set Comm_handle
  24. var err error
  25. var listener net.Listener
  26. var address string
  27. listener, err = net.Listen("tcp", "127.0.0.1:0")
  28. if err != nil {
  29. panic(err)
  30. }
  31. // I only need address for making the connection.
  32. // Get address of listening socket
  33. address = listener.Addr().String()
  34. return listener, address
  35. }
  36. func generateKeyPair() (keypair tls.Certificate) {
  37. // generate test certificate
  38. priv, _ := ecdsa.GenerateKey(elliptic.P521(), rand.Reader)
  39. durationBefore, _ := time.ParseDuration("-1h")
  40. notBefore := time.Now().Add(durationBefore)
  41. durationAfter, _ := time.ParseDuration("1h")
  42. notAfter := time.Now().Add(durationAfter)
  43. serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 64)
  44. serialNumber, _ := rand.Int(rand.Reader, serialNumberLimit)
  45. template := x509.Certificate{
  46. SerialNumber: serialNumber,
  47. Subject: pkix.Name{
  48. Organization: []string{"Test Certificate"},
  49. },
  50. NotBefore: notBefore,
  51. NotAfter: notAfter,
  52. KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature | x509.KeyUsageCertSign,
  53. ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
  54. BasicConstraintsValid: true,
  55. IsCA: true,
  56. }
  57. template.IPAddresses = append(template.IPAddresses, net.ParseIP("127.0.0.1"))
  58. template.IPAddresses = append(template.IPAddresses, net.ParseIP("::"))
  59. derBytes, _ := x509.CreateCertificate(rand.Reader, &template, &template, &priv.PublicKey, priv)
  60. c := pem.EncodeToMemory(&pem.Block{Type: "CERTIFICATE", Bytes: derBytes})
  61. b, _ := x509.MarshalECPrivateKey(priv)
  62. k := pem.EncodeToMemory(&pem.Block{Type: "EC PRIVATE KEY", Bytes: b})
  63. listenerKeyPair, _ := tls.X509KeyPair(c, k)
  64. return listenerKeyPair
  65. }
  66. func setupTLSSocket() (listen net.Listener, addr string) {
  67. // establish network socket connection to set Comm_handle
  68. var err error
  69. var listener net.Listener
  70. var address string
  71. var tlsconfig tls.Config
  72. var keypair tls.Certificate = generateKeyPair()
  73. tlsconfig.Certificates = make([]tls.Certificate, 0)
  74. tlsconfig.Certificates = append(tlsconfig.Certificates, keypair)
  75. listener, err = tls.Listen("tcp", "127.0.0.1:0", &tlsconfig)
  76. if err != nil {
  77. panic(err)
  78. }
  79. // I only need address for making the connection.
  80. // Get address of listening socket
  81. address = listener.Addr().String()
  82. return listener, address
  83. }
  84. func ircWrite(server net.Conn, output string, t *testing.T) {
  85. t.Logf(">> %s\n", output)
  86. server.Write([]byte(output + "\r\n"))
  87. }
  88. var abortAfter int = 150 // Milliseconds to abort part 3
  89. // mock up an irc server
  90. // part 1 : nick, user
  91. // part 2 : identify to services (if not SASL/SASL failed)
  92. // part 3 : quit after abortAfter ms
  93. func ircServer(listener net.Listener, t *testing.T, config *IRCConfig) {
  94. var server net.Conn
  95. var err error
  96. server, err = listener.Accept()
  97. if err != nil {
  98. t.Error("Failed to accept connection.")
  99. return
  100. }
  101. listener.Close()
  102. var reader *bufio.Reader = bufio.NewReader(server)
  103. var output, line, expect string
  104. var ping int64 = rnd.Int63()
  105. output = fmt.Sprintf("PING :%X", ping)
  106. ircWrite(server, output, t)
  107. var parts []string
  108. var hasNick, hasUser, hasPing, hasPass bool
  109. var capSASL, successSASL bool
  110. var part1 bool
  111. // part 1 : User, Nick, ServerPass and Ping reply
  112. for !part1 {
  113. line, err = reader.ReadString('\n')
  114. if err == nil {
  115. line = strings.Trim(line, "\r\n")
  116. // process the received line here
  117. parts = strings.Split(line, " ")
  118. t.Logf("<< %s", line)
  119. switch parts[0] {
  120. case "CAP":
  121. if config.UseTLS && config.UseSASL {
  122. if line == "CAP REQ :sasl" {
  123. // Acknowledge we support SASL
  124. ircWrite(server, ":irc.red-green.com CAP * ACK :sasl", t)
  125. capSASL = true
  126. }
  127. if line == "CAP END" {
  128. capSASL = true
  129. if successSASL {
  130. part1 = true
  131. }
  132. }
  133. }
  134. case "AUTHENTICATE":
  135. if capSASL {
  136. if line == "AUTHENTICATE PLAIN" {
  137. ircWrite(server, "AUTHENTICATE +", t)
  138. } else {
  139. // Process SASL auth message
  140. var auth64 string = parts[1]
  141. byteauth, _ := base64.StdEncoding.DecodeString(auth64)
  142. var auth string = string(byteauth)
  143. auth = strings.ReplaceAll(auth, "\x00", " ")
  144. t.Log(auth)
  145. expect = fmt.Sprintf(" %s %s", config.Nick, config.Password)
  146. if expect != auth {
  147. t.Errorf("Got %s, Expected %s", auth, expect)
  148. ircWrite(server, fmt.Sprintf(":irc.red-green.com 904 %s :SASL authentication failed",
  149. config.Nick), t)
  150. } else {
  151. // Success!
  152. ircWrite(server, fmt.Sprintf(":irc.red-green.com 900 %s %s!%[email protected] %s :You are now logged in as %s.",
  153. config.Nick, config.Nick, config.Username, config.Nick, config.Nick), t)
  154. ircWrite(server, fmt.Sprintf(":irc.red-green.com 903 %s :SASL authentication successful",
  155. config.Nick), t)
  156. successSASL = true
  157. }
  158. }
  159. }
  160. case "PASS":
  161. expect = fmt.Sprintf("PASS %s", config.ServerPassword)
  162. if expect != line {
  163. t.Errorf("Got %s, Expected %s", line, expect)
  164. } else {
  165. hasPass = true
  166. }
  167. case "NICK":
  168. expect = fmt.Sprintf("NICK %s", config.MyNick)
  169. if expect != line {
  170. t.Errorf("Got %s, Expected %s", line, expect)
  171. } else {
  172. if config.MyNick == "bad" {
  173. // throw bad nick here
  174. ircWrite(server, fmt.Sprintf(":irc.red-green.com 433 :Nick already in use."), t)
  175. }
  176. hasNick = true
  177. }
  178. case "USER":
  179. // USER meow-bot 0 * :Meooow! bugz is my owner.
  180. expect = fmt.Sprintf("USER %s 0 * :%s", config.Username, config.Realname)
  181. if expect != line {
  182. t.Errorf("Got %s, Expected %s", line, expect)
  183. } else {
  184. hasUser = true
  185. }
  186. case "PONG":
  187. expect = fmt.Sprintf("PONG %X", ping)
  188. if expect != line {
  189. t.Errorf("Got %s, Expected %s", line, expect)
  190. } else {
  191. hasPing = true
  192. }
  193. }
  194. if !part1 {
  195. if !capSASL && hasNick && hasUser && hasPing && ((config.ServerPassword == "") || hasPass) {
  196. part1 = true
  197. }
  198. }
  199. } else {
  200. t.Error("Read Error:", err)
  201. server.Close()
  202. return
  203. }
  204. }
  205. if !part1 {
  206. t.Error("Expected to pass part1 (user/nick/pong)")
  207. }
  208. // Display MOTD
  209. for _, line = range []string{":irc.red-green.com 001 %s :Welcome to the RedGreen IRC Network",
  210. ":irc.red-green.com 002 %s :Your host is irc.red-green.com, running version UnrealIRCd-5.2.0.1",
  211. ":irc.red-green.com 375 %s :- irc.red-green.com Message of the Day -",
  212. ":irc.red-green.com 372 %s :- ",
  213. ":irc.red-green.com 376 %s :End of /MOTD command.",
  214. } {
  215. output = fmt.Sprintf(line, config.Nick)
  216. ircWrite(server, output, t)
  217. }
  218. if config.UseSASL {
  219. if !successSASL {
  220. log.Println("Failed SASL Authentication.")
  221. }
  222. }
  223. // part 2: nickserv/register (if not already registered with SASL)
  224. var part2 bool
  225. if successSASL {
  226. ircWrite(server, fmt.Sprintf(":NickServ MODE %s :+r", config.Nick), t)
  227. part2 = true
  228. } else {
  229. if config.Password != "" {
  230. for _, line = range []string{":[email protected] NOTICE %s :This nickname is registered and protected. If it is your",
  231. ":[email protected] NOTICE %s :nick, type \x02/msg NickServ IDENTIFY \x1fpassword\x1f\x02. Otherwise,"} {
  232. output = fmt.Sprintf(line, config.Nick)
  233. ircWrite(server, output, t)
  234. }
  235. } else {
  236. // No password, so we can't register. Skip this part.
  237. part2 = true
  238. }
  239. }
  240. for !part2 {
  241. line, err = reader.ReadString('\n')
  242. if err == nil {
  243. line = strings.Trim(line, "\r\n")
  244. // process the received line here
  245. parts = strings.Split(line, " ")
  246. t.Logf("<< %s", line)
  247. switch parts[0] {
  248. case "NS":
  249. expect = fmt.Sprintf("NS IDENTIFY %s", config.Password)
  250. if expect != line {
  251. t.Errorf("Got %s, Expected %s", line, expect)
  252. }
  253. // ok, mark the user as registered
  254. output = fmt.Sprintf(":[email protected] NOTICE %s :Password accepted - you are now recognized.",
  255. config.Nick)
  256. ircWrite(server, output, t)
  257. output = fmt.Sprintf(":NickServ MODE %s :+r", config.Nick)
  258. ircWrite(server, output, t)
  259. part2 = true
  260. }
  261. } else {
  262. t.Error("Read Error:", err)
  263. server.Close()
  264. return
  265. }
  266. }
  267. if !part2 {
  268. t.Error("Expected to pass part2 (ns identify/+r)")
  269. }
  270. time.AfterFunc(time.Millisecond*time.Duration(abortAfter), func() { server.Close() })
  271. t.Log("Ok, Identified...")
  272. var Kicked bool
  273. for {
  274. line, err = reader.ReadString('\n')
  275. if err == nil {
  276. line = strings.Trim(line, "\r\n")
  277. // process the received line here
  278. parts = strings.Split(line, " ")
  279. t.Logf("<< %s", line)
  280. switch parts[0] {
  281. case "JOIN":
  282. for _, channel := range strings.Split(parts[1], ",") {
  283. output = fmt.Sprintf(":%s JOIN :%s", config.MyNick, channel)
  284. ircWrite(server, output, t)
  285. output = fmt.Sprintf(":irc.server 332 %s %s :Topic for (%s)", config.MyNick, channel, channel)
  286. ircWrite(server, output, t)
  287. output = fmt.Sprintf(":irc.server 333 %s %s user %d", config.MyNick, channel, time.Now().Unix())
  288. ircWrite(server, output, t)
  289. if strings.Contains(channel, "kick") {
  290. if !Kicked {
  291. Kicked = true
  292. output = fmt.Sprintf("user KICK %s %s :Get out", channel, config.MyNick)
  293. ircWrite(server, output, t)
  294. }
  295. }
  296. }
  297. }
  298. switch parts[0] {
  299. case "PRIVMSG", "NOTICE":
  300. if parts[1] == "echo" {
  301. parts[2] = parts[2][1:]
  302. // echo user, return whatever was sent back to them.
  303. output = fmt.Sprintf(":%s %s %s :%s", "echo", parts[0], config.MyNick, strings.Join(parts[2:], " "))
  304. ircWrite(server, output, t)
  305. }
  306. if strings.Contains(parts[1], "missing") {
  307. // Sending to missing user or channel.
  308. var number int
  309. if strings.Contains(parts[1], "#") {
  310. number = 404
  311. } else {
  312. number = 401
  313. }
  314. output = fmt.Sprintf(":irc.red-green.com %d %s %s :No such nick/channel", number, config.MyNick, parts[1])
  315. ircWrite(server, output, t)
  316. }
  317. }
  318. } else {
  319. t.Log("Read Error:", err)
  320. return
  321. }
  322. }
  323. }
  324. func TestConnect(t *testing.T) {
  325. var config IRCConfig = IRCConfig{Nick: "test",
  326. Username: "test",
  327. Realname: "testing",
  328. Password: "12345",
  329. ServerPassword: "allow"}
  330. var listen net.Listener
  331. var address string
  332. listen, address = setupSocket()
  333. var parts []string = strings.Split(address, ":")
  334. config.Hostname = parts[0]
  335. config.Port, _ = strconv.Atoi(parts[1])
  336. go ircServer(listen, t, &config)
  337. var FromIRC chan IRCMsg
  338. FromIRC = make(chan IRCMsg)
  339. config.ReadChannel = FromIRC
  340. config.Connect()
  341. defer config.Close()
  342. var Msg IRCMsg
  343. var motd, identify bool
  344. for Msg = range FromIRC {
  345. if Msg.Cmd == "EndMOTD" {
  346. t.Log("Got EndMOTD")
  347. motd = true
  348. }
  349. if Msg.Cmd == "Identified" {
  350. t.Log("Identified")
  351. identify = true
  352. }
  353. }
  354. if !motd {
  355. t.Error("Missing EndMOTD")
  356. }
  357. if !identify {
  358. t.Error("Missing Identified")
  359. }
  360. if config.MyNick != config.Nick {
  361. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  362. }
  363. }
  364. func TestConnectNickInUse(t *testing.T) {
  365. var config IRCConfig = IRCConfig{Nick: "bad",
  366. Username: "test",
  367. Realname: "testing",
  368. Flood_Num: 1,
  369. Flood_Delay: 20,
  370. }
  371. var listen net.Listener
  372. var address string
  373. listen, address = setupSocket()
  374. var parts []string = strings.Split(address, ":")
  375. config.Hostname = parts[0]
  376. config.Port, _ = strconv.Atoi(parts[1])
  377. go ircServer(listen, t, &config)
  378. var FromIRC chan IRCMsg
  379. FromIRC = make(chan IRCMsg)
  380. config.ReadChannel = FromIRC
  381. config.Connect()
  382. defer config.Close()
  383. var Msg IRCMsg
  384. var motd, identify bool
  385. var missing int
  386. for Msg = range FromIRC {
  387. if Msg.Cmd == "EndMOTD" {
  388. t.Log("Got EndMOTD")
  389. motd = true
  390. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  391. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  392. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  393. config.WriteTo("#missing", "PRIVMSG #missing :Missing channel")
  394. }
  395. if Msg.Cmd == "Identified" {
  396. t.Log("Identified")
  397. identify = true
  398. }
  399. if Msg.Cmd == "404" || Msg.Cmd == "401" {
  400. missing++
  401. }
  402. }
  403. if !motd {
  404. t.Error("Missing EndMOTD")
  405. }
  406. if identify {
  407. t.Error("Should not have been Identified")
  408. }
  409. if missing < 2 {
  410. t.Errorf("Missing should have been 2, was %d", missing)
  411. }
  412. if config.MyNick == config.Nick {
  413. t.Errorf("Nick should be different: Got %s, Didn't Expect %s", config.MyNick, config.Nick)
  414. }
  415. }
  416. func TestConnectTLS(t *testing.T) {
  417. var config IRCConfig = IRCConfig{Nick: "test",
  418. Username: "test",
  419. Realname: "testing",
  420. Password: "12345",
  421. UseTLS: true,
  422. UseSASL: true,
  423. Insecure: true,
  424. ServerPassword: "allow"}
  425. var listen net.Listener
  426. var address string
  427. listen, address = setupTLSSocket()
  428. var parts []string = strings.Split(address, ":")
  429. config.Hostname = parts[0]
  430. config.Port, _ = strconv.Atoi(parts[1])
  431. go ircServer(listen, t, &config)
  432. var FromIRC chan IRCMsg
  433. FromIRC = make(chan IRCMsg)
  434. config.ReadChannel = FromIRC
  435. config.Connect()
  436. defer config.Close()
  437. var Msg IRCMsg
  438. var motd, identify bool
  439. for Msg = range FromIRC {
  440. if Msg.Cmd == "EndMOTD" {
  441. t.Log("Got EndMOTD")
  442. motd = true
  443. }
  444. if Msg.Cmd == "Identified" {
  445. t.Log("Identified")
  446. identify = true
  447. }
  448. }
  449. if !motd {
  450. t.Error("Missing EndMOTD")
  451. }
  452. if !identify {
  453. t.Error("Missing Identified")
  454. }
  455. if config.MyNick != config.Nick {
  456. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  457. }
  458. }
  459. func TestConnectAutojoin(t *testing.T) {
  460. var config IRCConfig = IRCConfig{Nick: "test",
  461. Username: "test",
  462. Realname: "testing",
  463. Password: "12345",
  464. UseTLS: true,
  465. UseSASL: true,
  466. Insecure: true,
  467. AutoJoin: []string{"#chat", "#test"},
  468. Flood_Num: 2,
  469. Flood_Delay: 10,
  470. }
  471. var listen net.Listener
  472. var address string
  473. listen, address = setupTLSSocket()
  474. var parts []string = strings.Split(address, ":")
  475. config.Hostname = parts[0]
  476. config.Port, _ = strconv.Atoi(parts[1])
  477. go ircServer(listen, t, &config)
  478. var FromIRC chan IRCMsg
  479. FromIRC = make(chan IRCMsg)
  480. config.ReadChannel = FromIRC
  481. config.Connect()
  482. defer config.Close()
  483. var Msg IRCMsg
  484. var motd, identify bool
  485. var joins int
  486. var expect string
  487. var ctcpExpect []string = []string{"VERSION",
  488. "TIME",
  489. "PING 12345",
  490. }
  491. var noticeExpect []string = []string{"Testing",
  492. "VERSION red-green.com/irc-client",
  493. "TIME ",
  494. "PING 12345",
  495. }
  496. for Msg = range FromIRC {
  497. /*
  498. if (Msg.Cmd == "ACTION") || (Msg.Cmd == "NOTICE") {
  499. t.Log(Msg)
  500. }
  501. */
  502. if Msg.Cmd == "EndMOTD" {
  503. t.Log("Got EndMOTD")
  504. motd = true
  505. }
  506. if Msg.Cmd == "Identified" {
  507. t.Log("Identified")
  508. identify = true
  509. }
  510. if Msg.Cmd == "JOIN" {
  511. joins++
  512. if joins == 2 {
  513. // messages set to echo are returned to us
  514. config.WriteTo("echo", "PRIVMSG echo :\x01VERSION\x01")
  515. config.WriteTo("echo", "PRIVMSG echo :\x01TIME\x01")
  516. config.WriteTo("echo", "PRIVMSG echo :\x01PING 12345\x01")
  517. config.Action("echo", "dances.")
  518. config.Notice("echo", "Testing")
  519. config.Msg("#test", "Message 1")
  520. config.Msg("#test", "Message 2")
  521. }
  522. }
  523. if Msg.Cmd == "CTCP" {
  524. expect = ctcpExpect[0]
  525. ctcpExpect = ctcpExpect[1:]
  526. if Msg.Msg != expect {
  527. t.Errorf("CTCP Got %s, Expected %s", Msg.Msg, expect)
  528. }
  529. }
  530. if Msg.Cmd == "NOTICE" {
  531. expect = noticeExpect[0]
  532. if expect != "Testing" {
  533. expect = "\x01" + expect
  534. }
  535. noticeExpect = noticeExpect[1:]
  536. if !strings.HasPrefix(Msg.Msg, expect) {
  537. t.Errorf("NOTICE Got [%s], Expected [%s]", Msg.Msg, expect)
  538. }
  539. }
  540. if Msg.Cmd == "ACTION" {
  541. expect = "dances."
  542. if Msg.Msg != expect {
  543. t.Errorf("ACTION Got %s, Expected %s", Msg.Msg, expect)
  544. }
  545. }
  546. }
  547. if joins != 2 {
  548. t.Errorf("Expected to autojoin 2 channels, got %d", joins)
  549. }
  550. if !motd {
  551. t.Error("Missing EndMOTD")
  552. }
  553. if !identify {
  554. t.Error("Missing Identified")
  555. }
  556. if len(noticeExpect) != 0 {
  557. t.Errorf("Expected more NOTICEs (%d)", len(noticeExpect))
  558. }
  559. if len(ctcpExpect) != 0 {
  560. t.Errorf("Expected more CTCPs (%d)", len(ctcpExpect))
  561. }
  562. if config.MyNick != config.Nick {
  563. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  564. }
  565. }
  566. func TestConnectKick(t *testing.T) {
  567. var config IRCConfig = IRCConfig{Nick: "test",
  568. Username: "test",
  569. Realname: "testing",
  570. Password: "12345",
  571. UseTLS: true,
  572. UseSASL: true,
  573. Insecure: true,
  574. AutoJoin: []string{"#chat", "#test", "#kick"},
  575. RejoinDelay: 1,
  576. Flood_Num: 2,
  577. Flood_Delay: 10,
  578. }
  579. var listen net.Listener
  580. var address string
  581. listen, address = setupTLSSocket()
  582. var parts []string = strings.Split(address, ":")
  583. config.Hostname = parts[0]
  584. config.Port, _ = strconv.Atoi(parts[1])
  585. go ircServer(listen, t, &config)
  586. var FromIRC chan IRCMsg
  587. FromIRC = make(chan IRCMsg)
  588. config.ReadChannel = FromIRC
  589. config.Connect()
  590. defer config.Close()
  591. var Msg IRCMsg
  592. var motd, identify bool
  593. var joins int
  594. for Msg = range FromIRC {
  595. if Msg.Cmd == "EndMOTD" {
  596. t.Log("Got EndMOTD")
  597. motd = true
  598. }
  599. if Msg.Cmd == "Identified" {
  600. t.Log("Identified")
  601. identify = true
  602. }
  603. if Msg.Cmd == "JOIN" {
  604. joins++
  605. }
  606. }
  607. if joins != 4 {
  608. t.Errorf("Expected to join 4 times, got %d", joins)
  609. }
  610. if !motd {
  611. t.Error("Missing EndMOTD")
  612. }
  613. if !identify {
  614. t.Error("Missing Identified")
  615. }
  616. }