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()) }