client_test.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
  1. package ircclient
  2. import (
  3. "fmt"
  4. "net"
  5. "reflect"
  6. "strconv"
  7. "strings"
  8. "syscall"
  9. "testing"
  10. )
  11. func TestParse(t *testing.T) {
  12. var Msg IRCMsg
  13. var Expect map[string]IRCMsg = map[string]IRCMsg{
  14. "PING :78629A0F5F3F164F": IRCMsg{
  15. Cmd: "PING", Msg: "78629A0F5F3F164F", MsgParts: []string{"PING"}},
  16. ":irc.red-green.com 001 test :Welcome to the RedGreen IRC Network": IRCMsg{
  17. From: "irc.red-green.com", Cmd: "001", To: "test",
  18. Msg: "Welcome to the RedGreen IRC Network",
  19. MsgParts: []string{":irc.red-green.com", "001", "test"}},
  20. ":irc.red-green.com 375 test :- irc.red-green.com Message of the Day -": IRCMsg{
  21. From: "irc.red-green.com", Cmd: "375", To: "test",
  22. Msg: "- irc.red-green.com Message of the Day -",
  23. MsgParts: []string{":irc.red-green.com", "375", "test"}},
  24. ":irc.red-green.com 433 :Nick already in use": IRCMsg{
  25. From: "irc.red-green.com", Cmd: "433",
  26. Msg: "Nick already in use",
  27. MsgParts: []string{":irc.red-green.com", "433"}},
  28. ":[email protected] NOTICE test :Password accepted - you are now recognized.": IRCMsg{
  29. From: "NickServ", Cmd: "NOTICE", To: "test",
  30. Msg: "Password accepted - you are now recognized.",
  31. MsgParts: []string{":[email protected]",
  32. "NOTICE", "test"}},
  33. ":irc.red-green.com 005 meow-bot HCN INVEX KICKLEN=307 KNOCK MAP MAXCHANNELS=10 MAXLIST=b:60,e:60,I:60 MAXNICKLEN=30 MINNICKLEN=0 MODES=12 NAMESX NETWORK=RedGreen :are supported by this server": IRCMsg{
  34. From: "irc.red-green.com", Cmd: "005", To: "meow-bot",
  35. Msg: "are supported by this server",
  36. MsgParts: []string{":irc.red-green.com", "005", "meow-bot", "HCN", "INVEX",
  37. "KICKLEN=307", "KNOCK", "MAP", "MAXCHANNELS=10", "MAXLIST=b:60,e:60,I:60",
  38. "MAXNICKLEN=30", "MINNICKLEN=0", "MODES=12", "NAMESX", "NETWORK=RedGreen"}},
  39. ":irc.red-green.com 353 meow-bot = #backstage :meow-bot performer5 performer4 performer3 performer1 performer2 Stage_Manager Apollo ~bugz": IRCMsg{
  40. From: "irc.red-green.com", Cmd: "353", To: "meow-bot",
  41. Msg: "meow-bot performer5 performer4 performer3 performer1 performer2 Stage_Manager Apollo ~bugz",
  42. MsgParts: []string{":irc.red-green.com", "353", "meow-bot", "=", "#backstage"}},
  43. }
  44. for line, msgout := range Expect {
  45. Msg = IRCParse(line)
  46. var fields []string = []string{"To", "From", "Cmd", "Msg"}
  47. msg_value := reflect.ValueOf(Msg)
  48. msgout_value := reflect.ValueOf(msgout)
  49. for _, field := range fields {
  50. var got string
  51. var expect string
  52. got = msg_value.FieldByName(field).String()
  53. expect = msgout_value.FieldByName(field).String()
  54. if got != expect {
  55. t.Errorf("%s %s: got %s, expected %s", line, field, got, expect)
  56. }
  57. }
  58. /*
  59. if Msg.To != msgout.To {
  60. t.Errorf("%s To: got %s, expected %s", line, Msg.To, msgout.To)
  61. }
  62. if Msg.From != msgout.From {
  63. t.Errorf("%s From: got %s, expected %s", line, Msg.From, msgout.From)
  64. }
  65. if Msg.Cmd != msgout.Cmd {
  66. t.Errorf("%s Cmd: got %s, expected %s", line, Msg.Cmd, msgout.Cmd)
  67. }
  68. if Msg.Msg != msgout.Msg {
  69. t.Errorf("%s Msg: got %s, expected %s", line, Msg.Msg, msgout.Msg)
  70. }
  71. */
  72. if len(Msg.MsgParts) != len(msgout.MsgParts) {
  73. t.Errorf("%s MsgParts got len %d, expected len %d", line, len(Msg.MsgParts), len(msgout.MsgParts))
  74. // Length didn't match, don't need to compare each part.
  75. } else {
  76. // Length matches, compare each part
  77. for idx := range Msg.MsgParts {
  78. if Msg.MsgParts[idx] != msgout.MsgParts[idx] {
  79. t.Errorf("%s MsgParts[%d] %s, expected %s", line, idx, Msg.MsgParts[idx], msgout.MsgParts[idx])
  80. }
  81. }
  82. }
  83. }
  84. }
  85. func TestConnect(t *testing.T) {
  86. var config IRCConfig = IRCConfig{Nick: "test",
  87. Username: "test",
  88. Realname: "testing",
  89. Password: "12345",
  90. ServerPassword: "allow"}
  91. var listen net.Listener
  92. var address string
  93. listen, address = setupSocket()
  94. var parts []string = strings.Split(address, ":")
  95. config.Hostname = parts[0]
  96. config.Port, _ = strconv.Atoi(parts[1])
  97. go ircServer(listen, t, &config)
  98. var FromIRC chan IRCMsg
  99. FromIRC = make(chan IRCMsg)
  100. config.ReadChannel = FromIRC
  101. config.Connect()
  102. defer config.Close()
  103. var Msg IRCMsg
  104. var motd, identify, support bool
  105. var isupport map[string]string = map[string]string{
  106. "AWAYLEN": "307", "BOT": "B", "CASEMAPPING": "ascii",
  107. "CHANLIMIT": "#:10", "CHANMODES": "beI,kLf,lH,psmntirzMQNRTOVKDdGPZSCc",
  108. "CHANNELLEN": "32", "CHANTYPES": "#", "CLIENTTAGDENY": "*,-draft/typing,-typing",
  109. "DEAF": "d", "ELIST": "MNUCT", "EXCEPTS": "", "EXTBAN": "~,GptmTSOcarnqjf",
  110. "HCN": "", "INVEX": "", "KICKLEN": "307", "KNOCK": "", "MAP": "", "MAXCHANNELS": "10",
  111. "MAXLIST": "b:60,e:60,I:60", "MAXNICKLEN": "30", "MINNICKLEN": "0", "MODES": "12",
  112. "NAMESX": "", "NETWORK": "RedGreen", "NICKLEN": "30", "PREFIX": "(qaohv)~&@%+",
  113. "QUITLEN": "307", "SAFELIST": "", "SILENCE": "15", "STATUSMSG": "~&@%+",
  114. "TARGMAX": "DCCALLOW:,ISON:,JOIN:,KICK:4,KILL:,LIST:,NAMES:1,NOTICE:1,PART:,PRIVMSG:4,SAJOIN:,SAPART:,TAGMSG:1,USERHOST:,USERIP:,WATCH:,WHOIS:1,WHOWAS:1",
  115. "TOPICLEN": "360", "UHNAMES": "", "USERIP": "", "WALLCHOPS": "", "WATCH": "128",
  116. "WATCHOPTS": "A", "WHOX": "",
  117. }
  118. for Msg = range FromIRC {
  119. if Msg.Cmd == "EndMOTD" {
  120. t.Log("Got EndMOTD")
  121. motd = true
  122. support = true
  123. // Verify we parsed 005 ISupport:
  124. for key, value := range isupport {
  125. var got string
  126. var has bool
  127. got, has = config.ISupport[key]
  128. if !has {
  129. t.Errorf("Missing ISUPPORT[%s] expected (%s)", key, value)
  130. support = false
  131. } else {
  132. if got != value {
  133. t.Errorf("ISUPPORT[%s] got %s, expected %s", key, got, value)
  134. support = false
  135. }
  136. }
  137. }
  138. }
  139. if Msg.Cmd == "Identified" {
  140. t.Log("Identified")
  141. identify = true
  142. }
  143. }
  144. if !motd {
  145. t.Error("Missing EndMOTD")
  146. }
  147. if !identify {
  148. t.Error("Missing Identified")
  149. }
  150. if !support {
  151. t.Error("Missing ISupport")
  152. }
  153. if config.MyNick != config.Nick {
  154. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  155. }
  156. }
  157. func TestConnectNickInUse(t *testing.T) {
  158. var config IRCConfig = IRCConfig{Nick: "bad",
  159. Username: "test",
  160. Realname: "testing",
  161. Flood_Num: 1,
  162. Flood_Delay: 20,
  163. }
  164. var listen net.Listener
  165. var address string
  166. listen, address = setupSocket()
  167. var parts []string = strings.Split(address, ":")
  168. config.Hostname = parts[0]
  169. config.Port, _ = strconv.Atoi(parts[1])
  170. go ircServer(listen, t, &config)
  171. var FromIRC chan IRCMsg
  172. FromIRC = make(chan IRCMsg)
  173. config.ReadChannel = FromIRC
  174. config.Connect()
  175. defer config.Close()
  176. var Msg IRCMsg
  177. var motd, identify bool
  178. var missing int
  179. for Msg = range FromIRC {
  180. if Msg.Cmd == "EndMOTD" {
  181. t.Log("Got EndMOTD")
  182. motd = true
  183. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  184. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  185. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  186. config.WriteTo("#missing", "PRIVMSG #missing :Missing channel")
  187. }
  188. if Msg.Cmd == "Identified" {
  189. t.Log("Identified")
  190. identify = true
  191. }
  192. if Msg.Cmd == "404" || Msg.Cmd == "401" {
  193. missing++
  194. }
  195. }
  196. if !motd {
  197. t.Error("Missing EndMOTD")
  198. }
  199. if identify {
  200. t.Error("Should not have been Identified")
  201. }
  202. if missing < 2 {
  203. t.Errorf("Missing should have been 2, was %d", missing)
  204. }
  205. if config.MyNick == config.Nick {
  206. t.Errorf("Nick should be different: Got %s, Didn't Expect %s", config.MyNick, config.Nick)
  207. }
  208. }
  209. func TestConnectTLS(t *testing.T) {
  210. var config IRCConfig = IRCConfig{Nick: "test",
  211. Username: "test",
  212. Realname: "testing",
  213. Password: "12345",
  214. UseTLS: true,
  215. UseSASL: true,
  216. Insecure: true,
  217. ServerPassword: "allow"}
  218. var listen net.Listener
  219. var address string
  220. listen, address = setupTLSSocket()
  221. var parts []string = strings.Split(address, ":")
  222. config.Hostname = parts[0]
  223. config.Port, _ = strconv.Atoi(parts[1])
  224. go ircServer(listen, t, &config)
  225. var FromIRC chan IRCMsg
  226. FromIRC = make(chan IRCMsg)
  227. config.ReadChannel = FromIRC
  228. config.Connect()
  229. defer config.Close()
  230. var Msg IRCMsg
  231. var motd, identify bool
  232. for Msg = range FromIRC {
  233. if Msg.Cmd == "EndMOTD" {
  234. t.Log("Got EndMOTD")
  235. motd = true
  236. }
  237. if Msg.Cmd == "Identified" {
  238. t.Log("Identified")
  239. identify = true
  240. }
  241. }
  242. if !motd {
  243. t.Error("Missing EndMOTD")
  244. }
  245. if !identify {
  246. t.Error("Missing Identified")
  247. }
  248. if config.MyNick != config.Nick {
  249. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  250. }
  251. }
  252. func TestConnectAutojoin(t *testing.T) {
  253. var config IRCConfig = IRCConfig{Nick: "test",
  254. Username: "test",
  255. Realname: "testing",
  256. Password: "12345",
  257. UseTLS: true,
  258. UseSASL: true,
  259. Insecure: true,
  260. AutoJoin: []string{"#chat", "#test"},
  261. Flood_Num: 2,
  262. Flood_Delay: 10,
  263. Version: "Test",
  264. }
  265. var listen net.Listener
  266. var address string
  267. listen, address = setupTLSSocket()
  268. var parts []string = strings.Split(address, ":")
  269. config.Hostname = parts[0]
  270. config.Port, _ = strconv.Atoi(parts[1])
  271. go ircServer(listen, t, &config)
  272. var FromIRC chan IRCMsg
  273. FromIRC = make(chan IRCMsg)
  274. config.ReadChannel = FromIRC
  275. config.Connect()
  276. defer config.Close()
  277. var Msg IRCMsg
  278. var motd, identify bool
  279. var joins int
  280. var expect string
  281. var ctcpExpect []string = []string{"VERSION",
  282. "TIME",
  283. "PING 12345",
  284. }
  285. var noticeExpect []string = []string{"Testing",
  286. fmt.Sprintf("VERSION %s red-green.com/irc-client", config.Version),
  287. "TIME ",
  288. "PING 12345",
  289. }
  290. for Msg = range FromIRC {
  291. /*
  292. if (Msg.Cmd == "ACTION") || (Msg.Cmd == "NOTICE") {
  293. t.Log(Msg)
  294. }
  295. */
  296. if Msg.Cmd == "EndMOTD" {
  297. t.Log("Got EndMOTD")
  298. motd = true
  299. }
  300. if Msg.Cmd == "Identified" {
  301. t.Log("Identified")
  302. identify = true
  303. }
  304. if Msg.Cmd == "JOIN" {
  305. joins++
  306. if joins == 2 {
  307. // messages set to echo are returned to us
  308. config.WriteTo("echo", "PRIVMSG echo :\x01VERSION\x01")
  309. config.WriteTo("echo", "PRIVMSG echo :\x01TIME\x01")
  310. config.WriteTo("echo", "PRIVMSG echo :\x01PING 12345\x01")
  311. config.Action("echo", "dances.")
  312. config.Notice("echo", "Testing")
  313. config.Msg("#test", "Message 1")
  314. config.Msg("#test", "Message 2")
  315. config.PriorityWrite("PRIVMSG #test :Message")
  316. }
  317. }
  318. if Msg.Cmd == "CTCP" {
  319. expect = ctcpExpect[0]
  320. ctcpExpect = ctcpExpect[1:]
  321. if Msg.Msg != expect {
  322. t.Errorf("CTCP Got %s, Expected %s", Msg.Msg, expect)
  323. }
  324. }
  325. if Msg.Cmd == "NOTICE" {
  326. expect = noticeExpect[0]
  327. if expect != "Testing" {
  328. expect = "\x01" + expect
  329. }
  330. noticeExpect = noticeExpect[1:]
  331. if !strings.HasPrefix(Msg.Msg, expect) {
  332. t.Errorf("NOTICE Got [%s], Expected [%s]", Msg.Msg, expect)
  333. }
  334. }
  335. if Msg.Cmd == "ACTION" {
  336. expect = "dances."
  337. if Msg.Msg != expect {
  338. t.Errorf("ACTION Got %s, Expected %s", Msg.Msg, expect)
  339. }
  340. }
  341. }
  342. if joins != 2 {
  343. t.Errorf("Expected to autojoin 2 channels, got %d", joins)
  344. }
  345. if !motd {
  346. t.Error("Missing EndMOTD")
  347. }
  348. if !identify {
  349. t.Error("Missing Identified")
  350. }
  351. if len(noticeExpect) != 0 {
  352. t.Errorf("Expected more NOTICEs (%d)", len(noticeExpect))
  353. }
  354. if len(ctcpExpect) != 0 {
  355. t.Errorf("Expected more CTCPs (%d)", len(ctcpExpect))
  356. }
  357. if config.MyNick != config.Nick {
  358. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  359. }
  360. }
  361. func TestConnectKick(t *testing.T) {
  362. var config IRCConfig = IRCConfig{Nick: "test",
  363. Username: "test",
  364. Realname: "testing",
  365. Password: "12345",
  366. UseTLS: true,
  367. UseSASL: true,
  368. Insecure: true,
  369. AutoJoin: []string{"#chat", "#test", "#kick"},
  370. RejoinDelay: 1,
  371. Flood_Num: 2,
  372. Flood_Delay: 10,
  373. }
  374. var listen net.Listener
  375. var address string
  376. listen, address = setupTLSSocket()
  377. var parts []string = strings.Split(address, ":")
  378. config.Hostname = parts[0]
  379. config.Port, _ = strconv.Atoi(parts[1])
  380. // Save and Restore abortAfter
  381. var abortPrev = abortAfter
  382. defer func() { abortAfter = abortPrev }()
  383. abortAfter = 500
  384. go ircServer(listen, t, &config)
  385. var FromIRC chan IRCMsg
  386. FromIRC = make(chan IRCMsg)
  387. config.ReadChannel = FromIRC
  388. config.Connect()
  389. defer config.Close()
  390. var Msg IRCMsg
  391. var motd, identify bool
  392. var joins int
  393. for Msg = range FromIRC {
  394. if Msg.Cmd == "EndMOTD" {
  395. t.Log("Got EndMOTD")
  396. motd = true
  397. }
  398. if Msg.Cmd == "Identified" {
  399. t.Log("Identified")
  400. identify = true
  401. }
  402. if Msg.Cmd == "JOIN" {
  403. joins++
  404. if joins == 4 {
  405. config.PriorityWrite("NICK something")
  406. }
  407. }
  408. }
  409. // 3 channels joined, 1 kick, +1 join=4.
  410. if joins != 4 {
  411. t.Errorf("Expected to join 4 times, got %d", joins)
  412. }
  413. if !motd {
  414. t.Error("Missing EndMOTD")
  415. }
  416. if !identify {
  417. t.Error("Missing Identified")
  418. }
  419. if config.MyNick != "something" {
  420. t.Errorf("Expected nick to be something, not %s", config.MyNick)
  421. }
  422. }
  423. func TestConnectSignal(t *testing.T) {
  424. var exit bool
  425. var onexit func() = func() { exit = true }
  426. var config IRCConfig = IRCConfig{Nick: "test",
  427. Username: "test",
  428. Realname: "testing",
  429. Password: "12345",
  430. UseTLS: true,
  431. UseSASL: true,
  432. Insecure: true,
  433. AutoJoin: []string{"#chat"},
  434. Flood_Num: 2,
  435. Flood_Delay: 10,
  436. OnExit: onexit,
  437. }
  438. var listen net.Listener
  439. var address string
  440. listen, address = setupTLSSocket()
  441. var parts []string = strings.Split(address, ":")
  442. config.Hostname = parts[0]
  443. config.Port, _ = strconv.Atoi(parts[1])
  444. go ircServer(listen, t, &config)
  445. var FromIRC chan IRCMsg
  446. FromIRC = make(chan IRCMsg)
  447. config.ReadChannel = FromIRC
  448. config.Connect()
  449. // defer config.Close()
  450. var Msg IRCMsg
  451. var motd, identify bool
  452. for Msg = range FromIRC {
  453. if Msg.Cmd == "EndMOTD" {
  454. t.Log("Got EndMOTD")
  455. motd = true
  456. // config.PriorityWrite("NICK something")
  457. }
  458. if Msg.Cmd == "Identified" {
  459. t.Log("Identified")
  460. identify = true
  461. }
  462. if Msg.Cmd == "JOIN" {
  463. // Ok, we've joined. Test the signal
  464. e := syscall.Kill(syscall.Getpid(), syscall.SIGTERM)
  465. t.Log("Kill:", e)
  466. }
  467. }
  468. if !motd {
  469. t.Error("Missing EndMOTD")
  470. }
  471. if !identify {
  472. t.Error("Missing Identified")
  473. }
  474. config.Close()
  475. if !exit {
  476. t.Error("AtExit wasn't called.")
  477. }
  478. }
  479. func TestMatch(t *testing.T) {
  480. var testdata map[string]string = map[string]string{"TEST": "test",
  481. "TEst": "teST", "[bugz]": "{BUGZ}"}
  482. for nick1, nick2 := range testdata {
  483. if !Match(nick1, nick2) {
  484. t.Errorf("Match %s [%s] != %s [%s] Failed match!", nick1, NameLower(nick1), nick2, NameLower(nick2))
  485. }
  486. }
  487. }