irc/irc_test.go
blackbeard420 d9a617066f
All checks were successful
continuous-integration/drone/push Build is passing
enable CI
2021-10-27 19:52:18 -04:00

39 lines
705 B
Go

package irc
import (
"log"
"testing"
"time"
)
const (
channel = "#warez"
)
func TestSimpleIrc(t *testing.T) {
con := NewConnection("irc.ouch.chat:6667", "irc-go", "irc-go", nil, []string{channel})
go con.Run()
time.Sleep(10 * time.Second)
log.Printf("%d users in channel %s\n", len(con.userList[channel]), channel)
//con.SendPrivmsg("#warez", fmt.Sprintf("\x0356 FUCK YALL BITCHES %d", len(con.userList["#warez"])))
/*
i := 0
for _, v := range con.userList[channel] {
con.SendPrivmsg(channel, fmt.Sprintf("yo %s fuck you", v))
if i >= 5 {
time.Sleep(1000 * time.Millisecond)
i = 0
}
}
*/
}
func TestParser(t *testing.T) {
log.Printf("testing %s\n", t.Name())
}