client_test.go 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. package ircclient
  2. import (
  3. "net"
  4. "strconv"
  5. "strings"
  6. "testing"
  7. )
  8. func TestConnect(t *testing.T) {
  9. var config IRCConfig = IRCConfig{Nick: "test",
  10. Username: "test",
  11. Realname: "testing",
  12. Password: "12345",
  13. ServerPassword: "allow"}
  14. var listen net.Listener
  15. var address string
  16. listen, address = setupSocket()
  17. var parts []string = strings.Split(address, ":")
  18. config.Hostname = parts[0]
  19. config.Port, _ = strconv.Atoi(parts[1])
  20. go ircServer(listen, t, &config)
  21. var FromIRC chan IRCMsg
  22. FromIRC = make(chan IRCMsg)
  23. config.ReadChannel = FromIRC
  24. config.Connect()
  25. defer config.Close()
  26. var Msg IRCMsg
  27. var motd, identify bool
  28. for Msg = range FromIRC {
  29. if Msg.Cmd == "EndMOTD" {
  30. t.Log("Got EndMOTD")
  31. motd = true
  32. }
  33. if Msg.Cmd == "Identified" {
  34. t.Log("Identified")
  35. identify = true
  36. }
  37. }
  38. if !motd {
  39. t.Error("Missing EndMOTD")
  40. }
  41. if !identify {
  42. t.Error("Missing Identified")
  43. }
  44. if config.MyNick != config.Nick {
  45. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  46. }
  47. }
  48. func TestConnectNickInUse(t *testing.T) {
  49. var config IRCConfig = IRCConfig{Nick: "bad",
  50. Username: "test",
  51. Realname: "testing",
  52. Flood_Num: 1,
  53. Flood_Delay: 20,
  54. }
  55. var listen net.Listener
  56. var address string
  57. listen, address = setupSocket()
  58. var parts []string = strings.Split(address, ":")
  59. config.Hostname = parts[0]
  60. config.Port, _ = strconv.Atoi(parts[1])
  61. go ircServer(listen, t, &config)
  62. var FromIRC chan IRCMsg
  63. FromIRC = make(chan IRCMsg)
  64. config.ReadChannel = FromIRC
  65. config.Connect()
  66. defer config.Close()
  67. var Msg IRCMsg
  68. var motd, identify bool
  69. var missing int
  70. for Msg = range FromIRC {
  71. if Msg.Cmd == "EndMOTD" {
  72. t.Log("Got EndMOTD")
  73. motd = true
  74. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  75. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  76. config.WriteTo("missing", "PRIVMSG missing :Missing user")
  77. config.WriteTo("#missing", "PRIVMSG #missing :Missing channel")
  78. }
  79. if Msg.Cmd == "Identified" {
  80. t.Log("Identified")
  81. identify = true
  82. }
  83. if Msg.Cmd == "404" || Msg.Cmd == "401" {
  84. missing++
  85. }
  86. }
  87. if !motd {
  88. t.Error("Missing EndMOTD")
  89. }
  90. if identify {
  91. t.Error("Should not have been Identified")
  92. }
  93. if missing < 2 {
  94. t.Errorf("Missing should have been 2, was %d", missing)
  95. }
  96. if config.MyNick == config.Nick {
  97. t.Errorf("Nick should be different: Got %s, Didn't Expect %s", config.MyNick, config.Nick)
  98. }
  99. }
  100. func TestConnectTLS(t *testing.T) {
  101. var config IRCConfig = IRCConfig{Nick: "test",
  102. Username: "test",
  103. Realname: "testing",
  104. Password: "12345",
  105. UseTLS: true,
  106. UseSASL: true,
  107. Insecure: true,
  108. ServerPassword: "allow"}
  109. var listen net.Listener
  110. var address string
  111. listen, address = setupTLSSocket()
  112. var parts []string = strings.Split(address, ":")
  113. config.Hostname = parts[0]
  114. config.Port, _ = strconv.Atoi(parts[1])
  115. go ircServer(listen, t, &config)
  116. var FromIRC chan IRCMsg
  117. FromIRC = make(chan IRCMsg)
  118. config.ReadChannel = FromIRC
  119. config.Connect()
  120. defer config.Close()
  121. var Msg IRCMsg
  122. var motd, identify bool
  123. for Msg = range FromIRC {
  124. if Msg.Cmd == "EndMOTD" {
  125. t.Log("Got EndMOTD")
  126. motd = true
  127. }
  128. if Msg.Cmd == "Identified" {
  129. t.Log("Identified")
  130. identify = true
  131. }
  132. }
  133. if !motd {
  134. t.Error("Missing EndMOTD")
  135. }
  136. if !identify {
  137. t.Error("Missing Identified")
  138. }
  139. if config.MyNick != config.Nick {
  140. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  141. }
  142. }
  143. func TestConnectAutojoin(t *testing.T) {
  144. var config IRCConfig = IRCConfig{Nick: "test",
  145. Username: "test",
  146. Realname: "testing",
  147. Password: "12345",
  148. UseTLS: true,
  149. UseSASL: true,
  150. Insecure: true,
  151. AutoJoin: []string{"#chat", "#test"},
  152. Flood_Num: 2,
  153. Flood_Delay: 10,
  154. }
  155. var listen net.Listener
  156. var address string
  157. listen, address = setupTLSSocket()
  158. var parts []string = strings.Split(address, ":")
  159. config.Hostname = parts[0]
  160. config.Port, _ = strconv.Atoi(parts[1])
  161. go ircServer(listen, t, &config)
  162. var FromIRC chan IRCMsg
  163. FromIRC = make(chan IRCMsg)
  164. config.ReadChannel = FromIRC
  165. config.Connect()
  166. defer config.Close()
  167. var Msg IRCMsg
  168. var motd, identify bool
  169. var joins int
  170. var expect string
  171. var ctcpExpect []string = []string{"VERSION",
  172. "TIME",
  173. "PING 12345",
  174. }
  175. var noticeExpect []string = []string{"Testing",
  176. "VERSION red-green.com/irc-client",
  177. "TIME ",
  178. "PING 12345",
  179. }
  180. for Msg = range FromIRC {
  181. /*
  182. if (Msg.Cmd == "ACTION") || (Msg.Cmd == "NOTICE") {
  183. t.Log(Msg)
  184. }
  185. */
  186. if Msg.Cmd == "EndMOTD" {
  187. t.Log("Got EndMOTD")
  188. motd = true
  189. }
  190. if Msg.Cmd == "Identified" {
  191. t.Log("Identified")
  192. identify = true
  193. }
  194. if Msg.Cmd == "JOIN" {
  195. joins++
  196. if joins == 2 {
  197. // messages set to echo are returned to us
  198. config.WriteTo("echo", "PRIVMSG echo :\x01VERSION\x01")
  199. config.WriteTo("echo", "PRIVMSG echo :\x01TIME\x01")
  200. config.WriteTo("echo", "PRIVMSG echo :\x01PING 12345\x01")
  201. config.Action("echo", "dances.")
  202. config.Notice("echo", "Testing")
  203. config.Msg("#test", "Message 1")
  204. config.Msg("#test", "Message 2")
  205. }
  206. }
  207. if Msg.Cmd == "CTCP" {
  208. expect = ctcpExpect[0]
  209. ctcpExpect = ctcpExpect[1:]
  210. if Msg.Msg != expect {
  211. t.Errorf("CTCP Got %s, Expected %s", Msg.Msg, expect)
  212. }
  213. }
  214. if Msg.Cmd == "NOTICE" {
  215. expect = noticeExpect[0]
  216. if expect != "Testing" {
  217. expect = "\x01" + expect
  218. }
  219. noticeExpect = noticeExpect[1:]
  220. if !strings.HasPrefix(Msg.Msg, expect) {
  221. t.Errorf("NOTICE Got [%s], Expected [%s]", Msg.Msg, expect)
  222. }
  223. }
  224. if Msg.Cmd == "ACTION" {
  225. expect = "dances."
  226. if Msg.Msg != expect {
  227. t.Errorf("ACTION Got %s, Expected %s", Msg.Msg, expect)
  228. }
  229. }
  230. }
  231. if joins != 2 {
  232. t.Errorf("Expected to autojoin 2 channels, got %d", joins)
  233. }
  234. if !motd {
  235. t.Error("Missing EndMOTD")
  236. }
  237. if !identify {
  238. t.Error("Missing Identified")
  239. }
  240. if len(noticeExpect) != 0 {
  241. t.Errorf("Expected more NOTICEs (%d)", len(noticeExpect))
  242. }
  243. if len(ctcpExpect) != 0 {
  244. t.Errorf("Expected more CTCPs (%d)", len(ctcpExpect))
  245. }
  246. if config.MyNick != config.Nick {
  247. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  248. }
  249. }
  250. func TestConnectKick(t *testing.T) {
  251. var config IRCConfig = IRCConfig{Nick: "test",
  252. Username: "test",
  253. Realname: "testing",
  254. Password: "12345",
  255. UseTLS: true,
  256. UseSASL: true,
  257. Insecure: true,
  258. AutoJoin: []string{"#chat", "#test", "#kick"},
  259. RejoinDelay: 1,
  260. Flood_Num: 2,
  261. Flood_Delay: 10,
  262. }
  263. var listen net.Listener
  264. var address string
  265. listen, address = setupTLSSocket()
  266. var parts []string = strings.Split(address, ":")
  267. config.Hostname = parts[0]
  268. config.Port, _ = strconv.Atoi(parts[1])
  269. go ircServer(listen, t, &config)
  270. var FromIRC chan IRCMsg
  271. FromIRC = make(chan IRCMsg)
  272. config.ReadChannel = FromIRC
  273. config.Connect()
  274. defer config.Close()
  275. var Msg IRCMsg
  276. var motd, identify bool
  277. var joins int
  278. for Msg = range FromIRC {
  279. if Msg.Cmd == "EndMOTD" {
  280. t.Log("Got EndMOTD")
  281. motd = true
  282. }
  283. if Msg.Cmd == "Identified" {
  284. t.Log("Identified")
  285. identify = true
  286. }
  287. if Msg.Cmd == "JOIN" {
  288. joins++
  289. }
  290. }
  291. if joins != 4 {
  292. t.Errorf("Expected to join 4 times, got %d", joins)
  293. }
  294. if !motd {
  295. t.Error("Missing EndMOTD")
  296. }
  297. if !identify {
  298. t.Error("Missing Identified")
  299. }
  300. }