throttle_test.go 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. package ircclient
  2. import (
  3. "bytes"
  4. "fmt"
  5. "log"
  6. "os"
  7. "testing"
  8. )
  9. func TestFloodTrack(t *testing.T) {
  10. var Flood FloodTrack
  11. Flood.Init(3, 2)
  12. if Flood.Full() {
  13. t.Error("Expected Track to be empty")
  14. }
  15. for x := 1; x < 3; x++ {
  16. Flood.Save()
  17. if Flood.Pos != x {
  18. t.Error(fmt.Sprintf("Expected Track Pos to be %d", x))
  19. }
  20. if Flood.Full() {
  21. t.Error("Expected Track to be empty")
  22. }
  23. }
  24. Flood.Save()
  25. if Flood.Pos != 3 {
  26. t.Error("Expected Track Pos to be 3")
  27. }
  28. if !Flood.Full() {
  29. t.Error("Expected Track to be full")
  30. }
  31. }
  32. func TestThrottleBuffer(t *testing.T) {
  33. // eat log output
  34. var logbuff bytes.Buffer
  35. log.SetOutput(&logbuff)
  36. defer func() {
  37. log.SetOutput(os.Stderr)
  38. }()
  39. var buff ThrottleBuffer
  40. buff.init()
  41. buff.push("#chat", "msg1")
  42. if !buff.Life_sucks {
  43. t.Error("Flood control should be enabled here.")
  44. }
  45. buff.push("#chat", "msg2")
  46. buff.push("user", "msg3")
  47. // verify output order
  48. var str string
  49. var expect string
  50. for _, expect = range []string{"msg1", "msg3", "msg2"} {
  51. str = buff.pop()
  52. if str != expect {
  53. t.Error(fmt.Sprintf("Expected %s, got %s", expect, str))
  54. }
  55. }
  56. if buff.Life_sucks {
  57. t.Error("Flood control should not be enabled here.")
  58. }
  59. // verify deleting 1st item works
  60. buff.push("#chat", "msg1")
  61. if !buff.Life_sucks {
  62. t.Error("Flood control should be enabled here.")
  63. }
  64. buff.push("#chat", "msg2")
  65. buff.push("user", "msg3")
  66. buff.delete("#chat")
  67. str = buff.pop()
  68. expect = "msg3"
  69. if str != expect {
  70. t.Error(fmt.Sprintf("Expected %s, got %s", expect, str))
  71. }
  72. if buff.Life_sucks {
  73. t.Error("Flood control should not be enabled here.")
  74. }
  75. // verify deleting 2nd item works
  76. buff.push("#chat", "txt1")
  77. buff.push("user", "txt2")
  78. buff.delete("user")
  79. str = buff.pop()
  80. expect = "txt1"
  81. if str != expect {
  82. t.Error(fmt.Sprintf("Expected %s, got %s", expect, str))
  83. }
  84. if buff.Life_sucks {
  85. t.Error("Flood control should not be enabled here.")
  86. }
  87. }