client_test.go 16 KB

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