client_test.go 8.9 KB

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