Steve Thielemann 3 gadi atpakaļ
vecāks
revīzija
82935af6e9
4 mainītis faili ar 192 papildinājumiem un 1 dzēšanām
  1. 2 0
      client_test.go
  2. 38 0
      color_test.go
  3. 1 1
      go.mod
  4. 151 0
      throttle_test.go

+ 2 - 0
client_test.go

@@ -166,6 +166,8 @@ func ircServer(listener net.Listener, t *testing.T, config *IRCConfig) {
 						expect = fmt.Sprintf(" %s %s", config.Nick, config.Password)
 						expect = fmt.Sprintf(" %s %s", config.Nick, config.Password)
 						if expect != auth {
 						if expect != auth {
 							t.Errorf("Got %s, Expected %s", auth, expect)
 							t.Errorf("Got %s, Expected %s", auth, expect)
+							ircWrite(server, fmt.Sprintf(":irc.red-green.com 904 %s :SASL authentication failed",
+								config.Nick), t)
 						} else {
 						} else {
 							// Success!
 							// Success!
 							ircWrite(server, fmt.Sprintf(":irc.red-green.com 900 %s %s!%[email protected] %s :You are now logged in as %s.",
 							ircWrite(server, fmt.Sprintf(":irc.red-green.com 900 %s %s!%[email protected] %s :You are now logged in as %s.",

+ 38 - 0
color_test.go

@@ -27,3 +27,41 @@ func TestColor(t *testing.T) {
 		}
 		}
 	}
 	}
 }
 }
+
+func TestBold(t *testing.T) {
+	var sent string
+	var expect string
+	var got string
+	var plain string
+	for sent, expect = range map[string]string{"One": "\x02One\x02",
+		"Two":   "\x02Two\x02",
+		"Three": "\x02Three\x02"} {
+		got = Bold(sent)
+		if got != expect {
+			t.Errorf("Got %s, expected %s", got, expect)
+		}
+		plain = Stripper(got)
+		if plain != sent {
+			t.Errorf("Got %s, expected %s", plain, sent)
+		}
+	}
+}
+
+func TestUnderline(t *testing.T) {
+	var sent string
+	var expect string
+	var got string
+	var plain string
+	for sent, expect = range map[string]string{"One": "\x16One\x16",
+		"Two":   "\x16Two\x16",
+		"Three": "\x16Three\x16"} {
+		got = Underline(sent)
+		if got != expect {
+			t.Errorf("Got %s, expected %s", got, expect)
+		}
+		plain = Stripper(got)
+		if plain != sent {
+			t.Errorf("Got %s, expected %s", plain, sent)
+		}
+	}
+}

+ 1 - 1
go.mod

@@ -1,3 +1,3 @@
-module red-green.com/irc-client/v1.1.0
+module red-green.com/irc-client/v0.1.0
 
 
 go 1.18
 go 1.18

+ 151 - 0
throttle_test.go

@@ -5,6 +5,7 @@ import (
 	"fmt"
 	"fmt"
 	"log"
 	"log"
 	"os"
 	"os"
+	"strings"
 	"testing"
 	"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) {
 func TestThrottleBuffer(t *testing.T) {
 	// eat log output
 	// eat log output
 	var logbuff bytes.Buffer
 	var logbuff bytes.Buffer