|
@@ -5,6 +5,7 @@ import (
|
|
|
"fmt"
|
|
|
"log"
|
|
|
"os"
|
|
|
+ "strings"
|
|
|
"testing"
|
|
|
)
|
|
|
|
|
@@ -35,6 +36,156 @@ func TestFloodTrack(t *testing.T) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+func TestThrottleOnly(t *testing.T) {
|
|
|
+ // eat log output
|
|
|
+ var logbuffer bytes.Buffer
|
|
|
+ log.SetOutput(&logbuffer)
|
|
|
+ defer func() {
|
|
|
+ log.SetOutput(os.Stderr)
|
|
|
+ }()
|
|
|
+
|
|
|
+ var buff ThrottleBuffer
|
|
|
+ buff.init()
|
|
|
+ buff.push("#chat", "msg1")
|
|
|
+ if !buff.Life_sucks {
|
|
|
+ t.Error("Flood control should be enabled here.")
|
|
|
+ }
|
|
|
+ buff.push("#chat", "msg2")
|
|
|
+ buff.push("#chat", "msg3")
|
|
|
+ if !buff.Life_sucks {
|
|
|
+ t.Error("Flood control should be enabled here.")
|
|
|
+ }
|
|
|
+ buff.delete("#chat")
|
|
|
+ if buff.Life_sucks {
|
|
|
+ t.Error("Flood control should not be enabled here.")
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func TestThrottleDelete(t *testing.T) {
|
|
|
+ // eat log output
|
|
|
+ var logbuff bytes.Buffer
|
|
|
+ log.SetOutput(&logbuff)
|
|
|
+ defer func() {
|
|
|
+ log.SetOutput(os.Stderr)
|
|
|
+ }()
|
|
|
+
|
|
|
+ var expect, line string
|
|
|
+ var buff ThrottleBuffer
|
|
|
+ buff.init()
|
|
|
+ buff.push("#chat", "msg1")
|
|
|
+ buff.push("#chat", "msg2")
|
|
|
+
|
|
|
+ if !buff.Life_sucks {
|
|
|
+ t.Error("Flood control should be enabled here.")
|
|
|
+ }
|
|
|
+ buff.push("#test", "test1")
|
|
|
+ buff.push("#test", "test2")
|
|
|
+
|
|
|
+ buff.push("#another", "msg3")
|
|
|
+ if !buff.Life_sucks {
|
|
|
+ t.Error("Flood control should be enabled here.")
|
|
|
+ }
|
|
|
+ expect = "#chat,#test,#another"
|
|
|
+ line = strings.Join(buff.targets, ",")
|
|
|
+ if line != expect {
|
|
|
+ t.Errorf("Got %s, Expected %s", line, expect)
|
|
|
+ }
|
|
|
+ if buff.last != 0 {
|
|
|
+ t.Errorf("Expected last=0, got %d", buff.last)
|
|
|
+ }
|
|
|
+
|
|
|
+ line = buff.pop()
|
|
|
+ expect = "msg1"
|
|
|
+ if line != expect {
|
|
|
+ t.Errorf("Got %s, Expected %s", line, expect)
|
|
|
+ }
|
|
|
+ if buff.last != 1 {
|
|
|
+ t.Errorf("Expected last=1, got %d", buff.last)
|
|
|
+ }
|
|
|
+ line = buff.pop()
|
|
|
+ expect = "test1"
|
|
|
+ if line != expect {
|
|
|
+ t.Errorf("Got %s, Expected %s", line, expect)
|
|
|
+ }
|
|
|
+ if buff.last != 2 {
|
|
|
+ t.Errorf("Expected last=2, got %d", buff.last)
|
|
|
+ }
|
|
|
+
|
|
|
+ buff.delete("#chat")
|
|
|
+ expect = "#test,#another"
|
|
|
+ line = strings.Join(buff.targets, ",")
|
|
|
+ if line != expect {
|
|
|
+ t.Errorf("Got %s, Expected %s", line, expect)
|
|
|
+ }
|
|
|
+ if buff.last != 1 {
|
|
|
+ t.Errorf("Expected last=1, got %d", buff.last)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func TestThrottlePopDelete(t *testing.T) {
|
|
|
+ // eat log output
|
|
|
+ var logbuff bytes.Buffer
|
|
|
+ log.SetOutput(&logbuff)
|
|
|
+ defer func() {
|
|
|
+ log.SetOutput(os.Stderr)
|
|
|
+ }()
|
|
|
+
|
|
|
+ var buff ThrottleBuffer
|
|
|
+ buff.init()
|
|
|
+ buff.push("#chat", "m1")
|
|
|
+ buff.push("#chat", "m2")
|
|
|
+ buff.push("#chat", "m3")
|
|
|
+ buff.push("#test", "t1")
|
|
|
+ buff.push("#other", "o1")
|
|
|
+ buff.push("#other", "o2")
|
|
|
+ buff.push("#other", "o3")
|
|
|
+
|
|
|
+ // When we pop from #test, it needs to be deleted.
|
|
|
+
|
|
|
+ var line, expect string
|
|
|
+
|
|
|
+ expect = "#chat,#test,#other"
|
|
|
+ line = strings.Join(buff.targets, ",")
|
|
|
+ if line != expect {
|
|
|
+ t.Errorf("Got %s, Expected %s", line, expect)
|
|
|
+ }
|
|
|
+ if buff.last != 0 {
|
|
|
+ t.Errorf("Expected last=0, got %d", buff.last)
|
|
|
+ }
|
|
|
+
|
|
|
+ line = buff.pop()
|
|
|
+ expect = "m1"
|
|
|
+ if line != expect {
|
|
|
+ t.Errorf("Got %s, Expected %s", line, expect)
|
|
|
+ }
|
|
|
+ if buff.last != 1 {
|
|
|
+ t.Errorf("Expected last=1, got %d", buff.last)
|
|
|
+ }
|
|
|
+
|
|
|
+ line = buff.pop()
|
|
|
+ expect = "t1"
|
|
|
+ if line != expect {
|
|
|
+ t.Errorf("Got %s, Expected %s", line, expect)
|
|
|
+ }
|
|
|
+
|
|
|
+ expect = "#chat,#other"
|
|
|
+ line = strings.Join(buff.targets, ",")
|
|
|
+ if line != expect {
|
|
|
+ t.Errorf("Got %s, Expected %s", line, expect)
|
|
|
+ }
|
|
|
+ if buff.last != 1 {
|
|
|
+ t.Errorf("Expected last=1, got %d", buff.last)
|
|
|
+ }
|
|
|
+ line = buff.pop()
|
|
|
+ expect = "o1"
|
|
|
+ if line != expect {
|
|
|
+ t.Errorf("Got %s, Expected %s", line, expect)
|
|
|
+ }
|
|
|
+ if buff.last != 0 {
|
|
|
+ t.Errorf("Expected last=0, got %d", buff.last)
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
func TestThrottleBuffer(t *testing.T) {
|
|
|
// eat log output
|
|
|
var logbuff bytes.Buffer
|