client_test.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  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 = make(chan IRCMsg)
  99. config.ReadChannel = FromIRC
  100. config.Connect()
  101. defer config.Close()
  102. var Msg IRCMsg
  103. var motd, identify, support bool
  104. var isupport map[string]string = map[string]string{
  105. "AWAYLEN": "307", "BOT": "B", "CASEMAPPING": "ascii",
  106. "CHANLIMIT": "#:10", "CHANMODES": "beI,kLf,lH,psmntirzMQNRTOVKDdGPZSCc",
  107. "CHANNELLEN": "32", "CHANTYPES": "#", "CLIENTTAGDENY": "*,-draft/typing,-typing",
  108. "DEAF": "d", "ELIST": "MNUCT", "EXCEPTS": "", "EXTBAN": "~,GptmTSOcarnqjf",
  109. "HCN": "", "INVEX": "", "KICKLEN": "307", "KNOCK": "", "MAP": "", "MAXCHANNELS": "10",
  110. "MAXLIST": "b:60,e:60,I:60", "MAXNICKLEN": "30", "MINNICKLEN": "0", "MODES": "12",
  111. "NAMESX": "", "NETWORK": "RedGreen", "NICKLEN": "30", "PREFIX": "(qaohv)~&@%+",
  112. "QUITLEN": "307", "SAFELIST": "", "SILENCE": "15", "STATUSMSG": "~&@%+",
  113. "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",
  114. "TOPICLEN": "360", "UHNAMES": "", "USERIP": "", "WALLCHOPS": "", "WATCH": "128",
  115. "WATCHOPTS": "A", "WHOX": "",
  116. }
  117. for Msg = range FromIRC {
  118. if Msg.Cmd == "EndMOTD" {
  119. t.Log("Got EndMOTD")
  120. motd = true
  121. support = true
  122. // Verify we parsed 005 ISupport:
  123. for key, value := range isupport {
  124. var got string
  125. var has bool
  126. got, has = config.ISupport[key]
  127. if !has {
  128. t.Errorf("Missing ISUPPORT[%s] expected (%s)", key, value)
  129. support = false
  130. } else {
  131. if got != value {
  132. t.Errorf("ISUPPORT[%s] got %s, expected %s", key, got, value)
  133. support = false
  134. }
  135. }
  136. }
  137. }
  138. if Msg.Cmd == "Identified" {
  139. t.Log("Identified")
  140. identify = true
  141. }
  142. }
  143. if !motd {
  144. t.Error("Missing EndMOTD")
  145. }
  146. if !identify {
  147. t.Error("Missing Identified")
  148. }
  149. if !support {
  150. t.Error("Missing ISupport")
  151. }
  152. if config.MyNick != config.Nick {
  153. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  154. }
  155. }
  156. func TestConnectNickInUse(t *testing.T) {
  157. var config IRCConfig = IRCConfig{Nick: "bad",
  158. Username: "test",
  159. Realname: "testing",
  160. Flood_Num: 1,
  161. Flood_Delay: 20,
  162. }
  163. var listen net.Listener
  164. var address string
  165. listen, address = setupSocket()
  166. var parts []string = strings.Split(address, ":")
  167. config.Hostname = parts[0]
  168. config.Port, _ = strconv.Atoi(parts[1])
  169. go ircServer(listen, t, &config)
  170. var FromIRC chan IRCMsg = make(chan IRCMsg)
  171. config.ReadChannel = FromIRC
  172. config.Connect()
  173. defer config.Close()
  174. var Msg IRCMsg
  175. var motd, identify bool
  176. var missing int
  177. for Msg = range FromIRC {
  178. if Msg.Cmd == "EndMOTD" {
  179. t.Log("Got EndMOTD")
  180. motd = true
  181. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  182. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  183. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  184. config.WriteTo("#missing", "PRIVMSG #missing :Missing channel")
  185. }
  186. if Msg.Cmd == "Identified" {
  187. t.Log("Identified")
  188. identify = true
  189. }
  190. if Msg.Cmd == "404" || Msg.Cmd == "401" {
  191. missing++
  192. }
  193. }
  194. if !motd {
  195. t.Error("Missing EndMOTD")
  196. }
  197. if identify {
  198. t.Error("Should not have been Identified")
  199. }
  200. if missing < 2 {
  201. t.Errorf("Missing should have been 2, was %d", missing)
  202. }
  203. if config.MyNick == config.Nick {
  204. t.Errorf("Nick should be different: Got %s, Didn't Expect %s", config.MyNick, config.Nick)
  205. }
  206. }
  207. func TestConnectTLS(t *testing.T) {
  208. var config IRCConfig = IRCConfig{Nick: "test",
  209. Username: "test",
  210. Realname: "testing",
  211. Password: "12345",
  212. UseTLS: true,
  213. UseSASL: true,
  214. Insecure: true,
  215. ServerPassword: "allow"}
  216. var listen net.Listener
  217. var address string
  218. listen, address = setupTLSSocket()
  219. var parts []string = strings.Split(address, ":")
  220. config.Hostname = parts[0]
  221. config.Port, _ = strconv.Atoi(parts[1])
  222. go ircServer(listen, t, &config)
  223. var FromIRC chan IRCMsg = make(chan IRCMsg)
  224. config.ReadChannel = FromIRC
  225. config.Connect()
  226. defer config.Close()
  227. var Msg IRCMsg
  228. var motd, identify bool
  229. for Msg = range FromIRC {
  230. if Msg.Cmd == "EndMOTD" {
  231. t.Log("Got EndMOTD")
  232. motd = true
  233. }
  234. if Msg.Cmd == "Identified" {
  235. t.Log("Identified")
  236. identify = true
  237. }
  238. }
  239. if !motd {
  240. t.Error("Missing EndMOTD")
  241. }
  242. if !identify {
  243. t.Error("Missing Identified")
  244. }
  245. if config.MyNick != config.Nick {
  246. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  247. }
  248. }
  249. func TestConnectAutojoin(t *testing.T) {
  250. var config IRCConfig = IRCConfig{Nick: "test",
  251. Username: "test",
  252. Realname: "testing",
  253. Password: "12345",
  254. UseTLS: true,
  255. UseSASL: true,
  256. Insecure: true,
  257. AutoJoin: []string{"#chat", "#test"},
  258. Flood_Num: 2,
  259. Flood_Delay: 10,
  260. Version: "Test",
  261. }
  262. var listen net.Listener
  263. var address string
  264. listen, address = setupTLSSocket()
  265. var parts []string = strings.Split(address, ":")
  266. config.Hostname = parts[0]
  267. config.Port, _ = strconv.Atoi(parts[1])
  268. go ircServer(listen, t, &config)
  269. var FromIRC chan IRCMsg = make(chan IRCMsg)
  270. config.ReadChannel = FromIRC
  271. config.Connect()
  272. defer config.Close()
  273. var Msg IRCMsg
  274. var motd, identify bool
  275. var joins int
  276. var expect string
  277. var ctcpExpect []string = []string{"VERSION",
  278. "TIME",
  279. "PING 12345",
  280. }
  281. var noticeExpect []string = []string{"Testing",
  282. fmt.Sprintf("VERSION %s red-green.com/irc-client", config.Version),
  283. "TIME ",
  284. "PING 12345",
  285. }
  286. for Msg = range FromIRC {
  287. /*
  288. if (Msg.Cmd == "ACTION") || (Msg.Cmd == "NOTICE") {
  289. t.Log(Msg)
  290. }
  291. */
  292. if Msg.Cmd == "EndMOTD" {
  293. t.Log("Got EndMOTD")
  294. motd = true
  295. }
  296. if Msg.Cmd == "Identified" {
  297. t.Log("Identified")
  298. identify = true
  299. }
  300. if Msg.Cmd == "JOIN" {
  301. joins++
  302. if joins == 2 {
  303. // messages set to echo are returned to us
  304. config.WriteTo("echo", "PRIVMSG echo :\x01VERSION\x01")
  305. config.WriteTo("echo", "PRIVMSG echo :\x01TIME\x01")
  306. config.WriteTo("echo", "PRIVMSG echo :\x01PING 12345\x01")
  307. config.Action("echo", "dances.")
  308. config.Notice("echo", "Testing")
  309. config.Msg("#test", "Message 1")
  310. config.Msg("#test", "Message 2")
  311. config.PriorityWrite("PRIVMSG #test :Message")
  312. }
  313. }
  314. if Msg.Cmd == "CTCP" {
  315. expect = ctcpExpect[0]
  316. ctcpExpect = ctcpExpect[1:]
  317. if Msg.Msg != expect {
  318. t.Errorf("CTCP Got %s, Expected %s", Msg.Msg, expect)
  319. }
  320. }
  321. if Msg.Cmd == "NOTICE" {
  322. expect = noticeExpect[0]
  323. if expect != "Testing" {
  324. expect = "\x01" + expect
  325. }
  326. noticeExpect = noticeExpect[1:]
  327. if !strings.HasPrefix(Msg.Msg, expect) {
  328. t.Errorf("NOTICE Got [%s], Expected [%s]", Msg.Msg, expect)
  329. }
  330. }
  331. if Msg.Cmd == "ACTION" {
  332. expect = "dances."
  333. if Msg.Msg != expect {
  334. t.Errorf("ACTION Got %s, Expected %s", Msg.Msg, expect)
  335. }
  336. }
  337. }
  338. if joins != 2 {
  339. t.Errorf("Expected to autojoin 2 channels, got %d", joins)
  340. }
  341. if !motd {
  342. t.Error("Missing EndMOTD")
  343. }
  344. if !identify {
  345. t.Error("Missing Identified")
  346. }
  347. if len(noticeExpect) != 0 {
  348. t.Errorf("Expected more NOTICEs (%d)", len(noticeExpect))
  349. }
  350. if len(ctcpExpect) != 0 {
  351. t.Errorf("Expected more CTCPs (%d)", len(ctcpExpect))
  352. }
  353. if config.MyNick != config.Nick {
  354. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  355. }
  356. }
  357. func TestConnectKick(t *testing.T) {
  358. var config IRCConfig = IRCConfig{Nick: "test",
  359. Username: "test",
  360. Realname: "testing",
  361. Password: "12345",
  362. UseTLS: true,
  363. UseSASL: true,
  364. Insecure: true,
  365. AutoJoin: []string{"#chat", "#test", "#kick"},
  366. RejoinDelay: 1,
  367. Flood_Num: 2,
  368. Flood_Delay: 10,
  369. }
  370. var listen net.Listener
  371. var address string
  372. listen, address = setupTLSSocket()
  373. var parts []string = strings.Split(address, ":")
  374. config.Hostname = parts[0]
  375. config.Port, _ = strconv.Atoi(parts[1])
  376. // Save and Restore abortAfter
  377. var abortPrev = abortAfter
  378. defer func() { abortAfter = abortPrev }()
  379. abortAfter = 500
  380. go ircServer(listen, t, &config)
  381. var FromIRC chan IRCMsg = make(chan IRCMsg)
  382. config.ReadChannel = FromIRC
  383. config.Connect()
  384. defer config.Close()
  385. var Msg IRCMsg
  386. var motd, identify bool
  387. var joins int
  388. for Msg = range FromIRC {
  389. if Msg.Cmd == "EndMOTD" {
  390. t.Log("Got EndMOTD")
  391. motd = true
  392. }
  393. if Msg.Cmd == "Identified" {
  394. t.Log("Identified")
  395. identify = true
  396. }
  397. if Msg.Cmd == "JOIN" {
  398. joins++
  399. if joins == 4 {
  400. config.PriorityWrite("NICK something")
  401. }
  402. }
  403. }
  404. // 3 channels joined, 1 kick, +1 join=4.
  405. if joins != 4 {
  406. t.Errorf("Expected to join 4 times, got %d", joins)
  407. }
  408. if !motd {
  409. t.Error("Missing EndMOTD")
  410. }
  411. if !identify {
  412. t.Error("Missing Identified")
  413. }
  414. if config.MyNick != "something" {
  415. t.Errorf("Expected nick to be something, not %s", config.MyNick)
  416. }
  417. }
  418. func TestConnectSignal(t *testing.T) {
  419. var exit bool
  420. var onexit func() = func() { exit = true }
  421. var config IRCConfig = IRCConfig{Nick: "test",
  422. Username: "test",
  423. Realname: "testing",
  424. Password: "12345",
  425. UseTLS: true,
  426. UseSASL: true,
  427. Insecure: true,
  428. AutoJoin: []string{"#chat"},
  429. Flood_Num: 2,
  430. Flood_Delay: 10,
  431. OnExit: onexit,
  432. }
  433. var listen net.Listener
  434. var address string
  435. listen, address = setupTLSSocket()
  436. var parts []string = strings.Split(address, ":")
  437. config.Hostname = parts[0]
  438. config.Port, _ = strconv.Atoi(parts[1])
  439. go ircServer(listen, t, &config)
  440. var FromIRC chan IRCMsg = make(chan IRCMsg)
  441. config.ReadChannel = FromIRC
  442. config.Connect()
  443. // defer config.Close()
  444. var Msg IRCMsg
  445. var motd, identify bool
  446. for Msg = range FromIRC {
  447. if Msg.Cmd == "EndMOTD" {
  448. t.Log("Got EndMOTD")
  449. motd = true
  450. // config.PriorityWrite("NICK something")
  451. }
  452. if Msg.Cmd == "Identified" {
  453. t.Log("Identified")
  454. identify = true
  455. }
  456. if Msg.Cmd == "JOIN" {
  457. // Ok, we've joined. Test the signal
  458. e := syscall.Kill(syscall.Getpid(), syscall.SIGTERM)
  459. t.Log("Kill:", e)
  460. }
  461. }
  462. if !motd {
  463. t.Error("Missing EndMOTD")
  464. }
  465. if !identify {
  466. t.Error("Missing Identified")
  467. }
  468. config.Close()
  469. if !exit {
  470. t.Error("AtExit wasn't called.")
  471. }
  472. }
  473. func TestMatch(t *testing.T) {
  474. var testdata map[string]string = map[string]string{"TEST": "test",
  475. "TEst": "teST", "[bugz]": "{BUGZ}"}
  476. for nick1, nick2 := range testdata {
  477. if !Match(nick1, nick2) {
  478. t.Errorf("Match %s [%s] != %s [%s] Failed match!", nick1, NameLower(nick1), nick2, NameLower(nick2))
  479. }
  480. }
  481. }