throttle_test.go 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. package ircclient
  2. import (
  3. "bytes"
  4. "fmt"
  5. "log"
  6. "os"
  7. "strings"
  8. "testing"
  9. )
  10. func TestFloodTrack(t *testing.T) {
  11. var Flood FloodTrack
  12. Flood.Init(3, 2)
  13. if Flood.Full() {
  14. t.Error("Expected Track to be empty")
  15. }
  16. for x := 1; x < 3; x++ {
  17. Flood.Save()
  18. if Flood.Pos != x {
  19. t.Error(fmt.Sprintf("Expected Track Pos to be %d", x))
  20. }
  21. if Flood.Full() {
  22. t.Error("Expected Track to be empty")
  23. }
  24. }
  25. Flood.Save()
  26. if Flood.Pos != 3 {
  27. t.Error("Expected Track Pos to be 3")
  28. }
  29. if !Flood.Full() {
  30. t.Error("Expected Track to be full")
  31. }
  32. }
  33. func TestThrottleOnly(t *testing.T) {
  34. // eat log output
  35. var logbuffer bytes.Buffer
  36. log.SetOutput(&logbuffer)
  37. defer func() {
  38. log.SetOutput(os.Stderr)
  39. }()
  40. var buff ThrottleBuffer
  41. buff.init()
  42. buff.push("#chat", "msg1")
  43. if !buff.Life_sucks {
  44. t.Error("Flood control should be enabled here.")
  45. }
  46. buff.push("#chat", "msg2")
  47. buff.push("#chat", "msg3")
  48. if !buff.Life_sucks {
  49. t.Error("Flood control should be enabled here.")
  50. }
  51. buff.delete("#chat")
  52. if buff.Life_sucks {
  53. t.Error("Flood control should not be enabled here.")
  54. }
  55. }
  56. func TestThrottleDelete(t *testing.T) {
  57. // eat log output
  58. var logbuff bytes.Buffer
  59. log.SetOutput(&logbuff)
  60. defer func() {
  61. log.SetOutput(os.Stderr)
  62. }()
  63. var expect, line string
  64. var buff ThrottleBuffer
  65. buff.init()
  66. buff.push("#chat", "msg1")
  67. buff.push("#chat", "msg2")
  68. if !buff.Life_sucks {
  69. t.Error("Flood control should be enabled here.")
  70. }
  71. buff.push("#test", "test1")
  72. buff.push("#test", "test2")
  73. buff.push("#another", "msg3")
  74. if !buff.Life_sucks {
  75. t.Error("Flood control should be enabled here.")
  76. }
  77. expect = "#chat,#test,#another"
  78. line = strings.Join(buff.targets, ",")
  79. if line != expect {
  80. t.Errorf("Got %s, Expected %s", line, expect)
  81. }
  82. if buff.last != 0 {
  83. t.Errorf("Expected last=0, got %d", buff.last)
  84. }
  85. line = buff.pop()
  86. expect = "msg1"
  87. if line != expect {
  88. t.Errorf("Got %s, Expected %s", line, expect)
  89. }
  90. if buff.last != 1 {
  91. t.Errorf("Expected last=1, got %d", buff.last)
  92. }
  93. line = buff.pop()
  94. expect = "test1"
  95. if line != expect {
  96. t.Errorf("Got %s, Expected %s", line, expect)
  97. }
  98. if buff.last != 2 {
  99. t.Errorf("Expected last=2, got %d", buff.last)
  100. }
  101. buff.delete("#chat")
  102. expect = "#test,#another"
  103. line = strings.Join(buff.targets, ",")
  104. if line != expect {
  105. t.Errorf("Got %s, Expected %s", line, expect)
  106. }
  107. if buff.last != 1 {
  108. t.Errorf("Expected last=1, got %d", buff.last)
  109. }
  110. }
  111. func TestThrottlePopDelete(t *testing.T) {
  112. // eat log output
  113. var logbuff bytes.Buffer
  114. log.SetOutput(&logbuff)
  115. defer func() {
  116. log.SetOutput(os.Stderr)
  117. }()
  118. var buff ThrottleBuffer
  119. buff.init()
  120. buff.push("#chat", "m1")
  121. buff.push("#chat", "m2")
  122. buff.push("#chat", "m3")
  123. buff.push("#test", "t1")
  124. buff.push("#other", "o1")
  125. buff.push("#other", "o2")
  126. buff.push("#other", "o3")
  127. // When we pop from #test, it needs to be deleted.
  128. var line, expect string
  129. expect = "#chat,#test,#other"
  130. line = strings.Join(buff.targets, ",")
  131. if line != expect {
  132. t.Errorf("Got %s, Expected %s", line, expect)
  133. }
  134. if buff.last != 0 {
  135. t.Errorf("Expected last=0, got %d", buff.last)
  136. }
  137. line = buff.pop()
  138. expect = "m1"
  139. if line != expect {
  140. t.Errorf("Got %s, Expected %s", line, expect)
  141. }
  142. if buff.last != 1 {
  143. t.Errorf("Expected last=1, got %d", buff.last)
  144. }
  145. line = buff.pop()
  146. expect = "t1"
  147. if line != expect {
  148. t.Errorf("Got %s, Expected %s", line, expect)
  149. }
  150. expect = "#chat,#other"
  151. line = strings.Join(buff.targets, ",")
  152. if line != expect {
  153. t.Errorf("Got %s, Expected %s", line, expect)
  154. }
  155. if buff.last != 1 {
  156. t.Errorf("Expected last=1, got %d", buff.last)
  157. }
  158. line = buff.pop()
  159. expect = "o1"
  160. if line != expect {
  161. t.Errorf("Got %s, Expected %s", line, expect)
  162. }
  163. if buff.last != 0 {
  164. t.Errorf("Expected last=0, got %d", buff.last)
  165. }
  166. }
  167. func TestThrottleBuffer(t *testing.T) {
  168. // eat log output
  169. var logbuff bytes.Buffer
  170. log.SetOutput(&logbuff)
  171. defer func() {
  172. log.SetOutput(os.Stderr)
  173. }()
  174. var buff ThrottleBuffer
  175. buff.init()
  176. buff.push("#chat", "msg1")
  177. if !buff.Life_sucks {
  178. t.Error("Flood control should be enabled here.")
  179. }
  180. buff.push("#chat", "msg2")
  181. buff.push("user", "msg3")
  182. // verify output order
  183. var str string
  184. var expect string
  185. for _, expect = range []string{"msg1", "msg3", "msg2"} {
  186. str = buff.pop()
  187. if str != expect {
  188. t.Error(fmt.Sprintf("Expected %s, got %s", expect, str))
  189. }
  190. }
  191. if buff.Life_sucks {
  192. t.Error("Flood control should not be enabled here.")
  193. }
  194. // verify deleting 1st item works
  195. buff.push("#chat", "msg1")
  196. if !buff.Life_sucks {
  197. t.Error("Flood control should be enabled here.")
  198. }
  199. buff.push("#chat", "msg2")
  200. buff.push("user", "msg3")
  201. buff.delete("#chat")
  202. str = buff.pop()
  203. expect = "msg3"
  204. if str != expect {
  205. t.Error(fmt.Sprintf("Expected %s, got %s", expect, str))
  206. }
  207. if buff.Life_sucks {
  208. t.Error("Flood control should not be enabled here.")
  209. }
  210. // verify deleting 2nd item works
  211. buff.push("#chat", "txt1")
  212. buff.push("user", "txt2")
  213. buff.delete("user")
  214. str = buff.pop()
  215. expect = "txt1"
  216. if str != expect {
  217. t.Error(fmt.Sprintf("Expected %s, got %s", expect, str))
  218. }
  219. if buff.Life_sucks {
  220. t.Error("Flood control should not be enabled here.")
  221. }
  222. }