client_test.go 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. package ircclient
  2. import (
  3. "net"
  4. "strconv"
  5. "strings"
  6. "syscall"
  7. "testing"
  8. )
  9. func TestConnect(t *testing.T) {
  10. var config IRCConfig = IRCConfig{Nick: "test",
  11. Username: "test",
  12. Realname: "testing",
  13. Password: "12345",
  14. ServerPassword: "allow"}
  15. var listen net.Listener
  16. var address string
  17. listen, address = setupSocket()
  18. var parts []string = strings.Split(address, ":")
  19. config.Hostname = parts[0]
  20. config.Port, _ = strconv.Atoi(parts[1])
  21. go ircServer(listen, t, &config)
  22. var FromIRC chan IRCMsg
  23. FromIRC = make(chan IRCMsg)
  24. config.ReadChannel = FromIRC
  25. config.Connect()
  26. defer config.Close()
  27. var Msg IRCMsg
  28. var motd, identify bool
  29. for Msg = range FromIRC {
  30. if Msg.Cmd == "EndMOTD" {
  31. t.Log("Got EndMOTD")
  32. motd = true
  33. }
  34. if Msg.Cmd == "Identified" {
  35. t.Log("Identified")
  36. identify = true
  37. }
  38. }
  39. if !motd {
  40. t.Error("Missing EndMOTD")
  41. }
  42. if !identify {
  43. t.Error("Missing Identified")
  44. }
  45. if config.MyNick != config.Nick {
  46. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  47. }
  48. }
  49. func TestConnectNickInUse(t *testing.T) {
  50. var config IRCConfig = IRCConfig{Nick: "bad",
  51. Username: "test",
  52. Realname: "testing",
  53. Flood_Num: 1,
  54. Flood_Delay: 20,
  55. }
  56. var listen net.Listener
  57. var address string
  58. listen, address = setupSocket()
  59. var parts []string = strings.Split(address, ":")
  60. config.Hostname = parts[0]
  61. config.Port, _ = strconv.Atoi(parts[1])
  62. go ircServer(listen, t, &config)
  63. var FromIRC chan IRCMsg
  64. FromIRC = make(chan IRCMsg)
  65. config.ReadChannel = FromIRC
  66. config.Connect()
  67. defer config.Close()
  68. var Msg IRCMsg
  69. var motd, identify bool
  70. var missing int
  71. for Msg = range FromIRC {
  72. if Msg.Cmd == "EndMOTD" {
  73. t.Log("Got EndMOTD")
  74. motd = true
  75. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  76. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  77. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  78. config.WriteTo("#missing", "PRIVMSG #missing :Missing channel")
  79. }
  80. if Msg.Cmd == "Identified" {
  81. t.Log("Identified")
  82. identify = true
  83. }
  84. if Msg.Cmd == "404" || Msg.Cmd == "401" {
  85. missing++
  86. }
  87. }
  88. if !motd {
  89. t.Error("Missing EndMOTD")
  90. }
  91. if identify {
  92. t.Error("Should not have been Identified")
  93. }
  94. if missing < 2 {
  95. t.Errorf("Missing should have been 2, was %d", missing)
  96. }
  97. if config.MyNick == config.Nick {
  98. t.Errorf("Nick should be different: Got %s, Didn't Expect %s", config.MyNick, config.Nick)
  99. }
  100. }
  101. func TestConnectTLS(t *testing.T) {
  102. var config IRCConfig = IRCConfig{Nick: "test",
  103. Username: "test",
  104. Realname: "testing",
  105. Password: "12345",
  106. UseTLS: true,
  107. UseSASL: true,
  108. Insecure: true,
  109. ServerPassword: "allow"}
  110. var listen net.Listener
  111. var address string
  112. listen, address = setupTLSSocket()
  113. var parts []string = strings.Split(address, ":")
  114. config.Hostname = parts[0]
  115. config.Port, _ = strconv.Atoi(parts[1])
  116. go ircServer(listen, t, &config)
  117. var FromIRC chan IRCMsg
  118. FromIRC = make(chan IRCMsg)
  119. config.ReadChannel = FromIRC
  120. config.Connect()
  121. defer config.Close()
  122. var Msg IRCMsg
  123. var motd, identify bool
  124. for Msg = range FromIRC {
  125. if Msg.Cmd == "EndMOTD" {
  126. t.Log("Got EndMOTD")
  127. motd = true
  128. }
  129. if Msg.Cmd == "Identified" {
  130. t.Log("Identified")
  131. identify = true
  132. }
  133. }
  134. if !motd {
  135. t.Error("Missing EndMOTD")
  136. }
  137. if !identify {
  138. t.Error("Missing Identified")
  139. }
  140. if config.MyNick != config.Nick {
  141. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  142. }
  143. }
  144. func TestConnectAutojoin(t *testing.T) {
  145. var config IRCConfig = IRCConfig{Nick: "test",
  146. Username: "test",
  147. Realname: "testing",
  148. Password: "12345",
  149. UseTLS: true,
  150. UseSASL: true,
  151. Insecure: true,
  152. AutoJoin: []string{"#chat", "#test"},
  153. Flood_Num: 2,
  154. Flood_Delay: 10,
  155. }
  156. var listen net.Listener
  157. var address string
  158. listen, address = setupTLSSocket()
  159. var parts []string = strings.Split(address, ":")
  160. config.Hostname = parts[0]
  161. config.Port, _ = strconv.Atoi(parts[1])
  162. go ircServer(listen, t, &config)
  163. var FromIRC chan IRCMsg
  164. FromIRC = make(chan IRCMsg)
  165. config.ReadChannel = FromIRC
  166. config.Connect()
  167. defer config.Close()
  168. var Msg IRCMsg
  169. var motd, identify bool
  170. var joins int
  171. var expect string
  172. var ctcpExpect []string = []string{"VERSION",
  173. "TIME",
  174. "PING 12345",
  175. }
  176. var noticeExpect []string = []string{"Testing",
  177. "VERSION red-green.com/irc-client",
  178. "TIME ",
  179. "PING 12345",
  180. }
  181. for Msg = range FromIRC {
  182. /*
  183. if (Msg.Cmd == "ACTION") || (Msg.Cmd == "NOTICE") {
  184. t.Log(Msg)
  185. }
  186. */
  187. if Msg.Cmd == "EndMOTD" {
  188. t.Log("Got EndMOTD")
  189. motd = true
  190. }
  191. if Msg.Cmd == "Identified" {
  192. t.Log("Identified")
  193. identify = true
  194. }
  195. if Msg.Cmd == "JOIN" {
  196. joins++
  197. if joins == 2 {
  198. // messages set to echo are returned to us
  199. config.WriteTo("echo", "PRIVMSG echo :\x01VERSION\x01")
  200. config.WriteTo("echo", "PRIVMSG echo :\x01TIME\x01")
  201. config.WriteTo("echo", "PRIVMSG echo :\x01PING 12345\x01")
  202. config.Action("echo", "dances.")
  203. config.Notice("echo", "Testing")
  204. config.Msg("#test", "Message 1")
  205. config.Msg("#test", "Message 2")
  206. config.PriorityWrite("PRIVMSG #test :Message")
  207. }
  208. }
  209. if Msg.Cmd == "CTCP" {
  210. expect = ctcpExpect[0]
  211. ctcpExpect = ctcpExpect[1:]
  212. if Msg.Msg != expect {
  213. t.Errorf("CTCP Got %s, Expected %s", Msg.Msg, expect)
  214. }
  215. }
  216. if Msg.Cmd == "NOTICE" {
  217. expect = noticeExpect[0]
  218. if expect != "Testing" {
  219. expect = "\x01" + expect
  220. }
  221. noticeExpect = noticeExpect[1:]
  222. if !strings.HasPrefix(Msg.Msg, expect) {
  223. t.Errorf("NOTICE Got [%s], Expected [%s]", Msg.Msg, expect)
  224. }
  225. }
  226. if Msg.Cmd == "ACTION" {
  227. expect = "dances."
  228. if Msg.Msg != expect {
  229. t.Errorf("ACTION Got %s, Expected %s", Msg.Msg, expect)
  230. }
  231. }
  232. }
  233. if joins != 2 {
  234. t.Errorf("Expected to autojoin 2 channels, got %d", joins)
  235. }
  236. if !motd {
  237. t.Error("Missing EndMOTD")
  238. }
  239. if !identify {
  240. t.Error("Missing Identified")
  241. }
  242. if len(noticeExpect) != 0 {
  243. t.Errorf("Expected more NOTICEs (%d)", len(noticeExpect))
  244. }
  245. if len(ctcpExpect) != 0 {
  246. t.Errorf("Expected more CTCPs (%d)", len(ctcpExpect))
  247. }
  248. if config.MyNick != config.Nick {
  249. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  250. }
  251. }
  252. func TestConnectKick(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", "#kick"},
  261. RejoinDelay: 1,
  262. Flood_Num: 2,
  263. Flood_Delay: 10,
  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. // Save and Restore abortAfter
  272. var abortPrev = abortAfter
  273. defer func() { abortAfter = abortPrev }()
  274. abortAfter = 500
  275. go ircServer(listen, t, &config)
  276. var FromIRC chan IRCMsg
  277. FromIRC = make(chan IRCMsg)
  278. config.ReadChannel = FromIRC
  279. config.Connect()
  280. defer config.Close()
  281. var Msg IRCMsg
  282. var motd, identify bool
  283. var joins int
  284. for Msg = range FromIRC {
  285. if Msg.Cmd == "EndMOTD" {
  286. t.Log("Got EndMOTD")
  287. motd = true
  288. }
  289. if Msg.Cmd == "Identified" {
  290. t.Log("Identified")
  291. identify = true
  292. }
  293. if Msg.Cmd == "JOIN" {
  294. joins++
  295. if joins == 4 {
  296. config.PriorityWrite("NICK something")
  297. }
  298. }
  299. }
  300. // 3 channels joined, 1 kick, +1 join=4.
  301. if joins != 4 {
  302. t.Errorf("Expected to join 4 times, got %d", joins)
  303. }
  304. if !motd {
  305. t.Error("Missing EndMOTD")
  306. }
  307. if !identify {
  308. t.Error("Missing Identified")
  309. }
  310. if config.MyNick != "something" {
  311. t.Errorf("Expected nick to be something, not %s", config.MyNick)
  312. }
  313. }
  314. func TestConnectSignal(t *testing.T) {
  315. var exit bool
  316. var onexit func() = func() { exit = true }
  317. var config IRCConfig = IRCConfig{Nick: "test",
  318. Username: "test",
  319. Realname: "testing",
  320. Password: "12345",
  321. UseTLS: true,
  322. UseSASL: true,
  323. Insecure: true,
  324. AutoJoin: []string{"#chat"},
  325. Flood_Num: 2,
  326. Flood_Delay: 10,
  327. OnExit: onexit,
  328. }
  329. var listen net.Listener
  330. var address string
  331. listen, address = setupTLSSocket()
  332. var parts []string = strings.Split(address, ":")
  333. config.Hostname = parts[0]
  334. config.Port, _ = strconv.Atoi(parts[1])
  335. go ircServer(listen, t, &config)
  336. var FromIRC chan IRCMsg
  337. FromIRC = make(chan IRCMsg)
  338. config.ReadChannel = FromIRC
  339. config.Connect()
  340. defer config.Close()
  341. var Msg IRCMsg
  342. var motd, identify bool
  343. for Msg = range FromIRC {
  344. if Msg.Cmd == "EndMOTD" {
  345. t.Log("Got EndMOTD")
  346. motd = true
  347. // config.PriorityWrite("NICK something")
  348. }
  349. if Msg.Cmd == "Identified" {
  350. t.Log("Identified")
  351. identify = true
  352. }
  353. if Msg.Cmd == "JOIN" {
  354. // Ok, we've joined. Test the signal
  355. e := syscall.Kill(syscall.Getpid(), syscall.SIGTERM)
  356. t.Log("Kill:", e)
  357. }
  358. }
  359. if !motd {
  360. t.Error("Missing EndMOTD")
  361. }
  362. if !identify {
  363. t.Error("Missing Identified")
  364. }
  365. if !exit {
  366. t.Error("AtExit wasn't called.")
  367. }
  368. }